/** * @param array $response */ public function __construct(array $response) { $this->response = $response; $this->libraryDocumentid = Util::array_get($response, 'libraryDocumentId'); $this->embeddedCode = Util::array_get($response, 'embeddedCode'); $this->url = Util::array_get($response, 'url'); }
public function __construct(array $response) { $this->response = $response; $this->javascript = Util::array_get($response, 'javascrpt'); $this->widgetId = Util::array_get($response, 'widgetId'); $this->url = Util::array_get($response, 'url'); }
public function __construct(array $response) { $this->response = $response; foreach (['lastName', 'phone', 'locale', 'passwordExpiration', 'roles', 'title', 'email', 'initials', 'company', 'accountType', 'account', 'firstName', 'group', 'channel', 'capabilityFlags'] as $k) { $this->{$k} = Util::array_get($response, $k); } }
public function __construct(array $response) { $this->response = $response; foreach (['message', 'securityOptions', 'status', 'events', 'name', 'locale', 'widgetId', 'participants', 'latestVersionId', 'javascript', 'url'] as $k) { $this->{$k} = Util::array_get($response, $k); } }
public function __construct(array $response) { $this->response = $response; foreach (['message', 'securityOptions', 'status', 'expiration', 'events', 'name', 'locale', 'nextParticipantInfos', 'agreementId', 'participants', 'latestVersionId'] as $k) { $this->{$k} = Util::array_get($response, $k); } }
/** * @param array $response */ public function __construct(array $response) { $this->response = $response; $this->currentPageCursor = Util::array_get($response, 'currentPageCursor'); $this->searchId = Util::array_get($response, 'searchId'); $this->nextPageCursor = Util::array_get($response, 'nextPageCursor'); $this->events = Util::array_get($response, 'events'); }
public function __construct(array $response) { $this->response = $response; $this->expiration = Util::array_get($response, 'expiration'); $this->agreementId = Util::array_get($response, 'agreementId'); $this->embeddedCode = Util::array_get($response, 'embeddedCode'); $this->url = Util::array_get($response, 'url'); }
/** * @param array $response */ public function __construct(array $response) { foreach (['api_access_point', 'web_access_point'] as $f) { if (Util::array_found($response, $f)) { $this->{$f} = $response[$f]; } } $this->response = $response; }
/** * @param array $response */ public function __construct(array $response) { $this->response = $response; $this->result = Util::array_get($response, 'result'); }
/** * @return array */ public function toArray() { $data = ['startDate' => Util::api_date_format($this->startDate), 'endDate' => Util::api_date_format($this->endDate), 'pageSize' => $this->getPageSize(), 'onlyShowLatestEvent' => $this->isOnlyShowLatestEvent()]; if (count($this->filterEvents) > 0) { $data['filterEvents'] = array_unique($this->filterEvents); } return $data; }
public function __construct(array $response) { $this->response = $response; $this->message = Util::array_get($response, 'message'); $this->code = Util::array_get($response, 'code'); }
/** * @param array $response */ public function __construct(array $response) { $this->response = $response; $this->supportingDocuments = Util::array_get($response, 'supportingDocuments'); $this->documents = Util::array_get($response, 'documents'); }
public function __construct(array $response) { $this->response = $response; $this->userAgreementList = Util::array_get($response, 'userAgreementList'); }
public function __construct(array $response) { $this->response = $response; $this->libraryDocumentList = Util::array_get($response, 'libraryDocumentList'); }
public function __construct(array $response) { $this->response = $response; $this->documentPagesInfo = Util::array_get($response, 'documentPagesInfo'); }
/** * @param array $response */ public function __construct(array $response) { $this->transientDocumentId = Util::array_get($response, 'transientDocumentId'); $this->response = $response; }
public function __construct(array $response) { $this->response = $response; $this->signingUrls = Util::array_get($response, 'signingUrls'); }
public function __construct(array $response) { $this->response = $response; $this->userId = Util::array_get($response, 'userId'); }
public function __construct(array $response) { $this->response = $response; $this->viewUrl = Util::array_get($response, 'viewUrl'); }