コード例 #1
0
 /**
  * @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');
 }
コード例 #2
0
 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');
 }
コード例 #3
0
 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);
     }
 }
コード例 #4
0
ファイル: WidgetInfo.php プロジェクト: nsbucky/echosignv3
 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);
     }
 }
コード例 #5
0
ファイル: AgreementInfo.php プロジェクト: nsbucky/echosignv3
 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);
     }
 }
コード例 #6
0
 /**
  * @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');
 }
コード例 #7
0
 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');
 }
コード例 #8
0
ファイル: BaseUriInfo.php プロジェクト: nsbucky/echosignv3
 /**
  * @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;
 }
コード例 #9
0
 /**
  * @param array $response
  */
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->result = Util::array_get($response, 'result');
 }
コード例 #10
0
 /**
  * @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;
 }
コード例 #11
0
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->message = Util::array_get($response, 'message');
     $this->code = Util::array_get($response, 'code');
 }
コード例 #12
0
 /**
  * @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');
 }
コード例 #13
0
ファイル: UserAgreements.php プロジェクト: nsbucky/echosignv3
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->userAgreementList = Util::array_get($response, 'userAgreementList');
 }
コード例 #14
0
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->libraryDocumentList = Util::array_get($response, 'libraryDocumentList');
 }
コード例 #15
0
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->documentPagesInfo = Util::array_get($response, 'documentPagesInfo');
 }
コード例 #16
0
 /**
  * @param array $response
  */
 public function __construct(array $response)
 {
     $this->transientDocumentId = Util::array_get($response, 'transientDocumentId');
     $this->response = $response;
 }
コード例 #17
0
ファイル: SigningUrls.php プロジェクト: nsbucky/echosignv3
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->signingUrls = Util::array_get($response, 'signingUrls');
 }
コード例 #18
0
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->userId = Util::array_get($response, 'userId');
 }
コード例 #19
0
ファイル: ViewUrl.php プロジェクト: nsbucky/echosignv3
 public function __construct(array $response)
 {
     $this->response = $response;
     $this->viewUrl = Util::array_get($response, 'viewUrl');
 }