diff --git a/src/Model/InPersonSigner.php b/src/Model/InPersonSigner.php index 1b98cfe7..1ece4983 100644 --- a/src/Model/InPersonSigner.php +++ b/src/Model/InPersonSigner.php @@ -82,7 +82,6 @@ class InPersonSigner implements ArrayAccess 'name' => 'string', 'notary_host' => '\DocuSign\eSign\Model\NotaryHost', 'note' => 'string', - 'offline_attributes' => '\DocuSign\eSign\Model\OfflineAttributes', 'phone_authentication' => '\DocuSign\eSign\Model\RecipientPhoneAuthentication', 'recipient_attachments' => '\DocuSign\eSign\Model\RecipientAttachment[]', 'recipient_authentication_status' => '\DocuSign\eSign\Model\AuthenticationStatus', @@ -153,7 +152,6 @@ public static function swaggerTypes() 'name' => 'name', 'notary_host' => 'notaryHost', 'note' => 'note', - 'offline_attributes' => 'offlineAttributes', 'phone_authentication' => 'phoneAuthentication', 'recipient_attachments' => 'recipientAttachments', 'recipient_authentication_status' => 'recipientAuthenticationStatus', @@ -220,7 +218,6 @@ public static function swaggerTypes() 'name' => 'setName', 'notary_host' => 'setNotaryHost', 'note' => 'setNote', - 'offline_attributes' => 'setOfflineAttributes', 'phone_authentication' => 'setPhoneAuthentication', 'recipient_attachments' => 'setRecipientAttachments', 'recipient_authentication_status' => 'setRecipientAuthenticationStatus', @@ -287,7 +284,6 @@ public static function swaggerTypes() 'name' => 'getName', 'notary_host' => 'getNotaryHost', 'note' => 'getNote', - 'offline_attributes' => 'getOfflineAttributes', 'phone_authentication' => 'getPhoneAuthentication', 'recipient_attachments' => 'getRecipientAttachments', 'recipient_authentication_status' => 'getRecipientAuthenticationStatus', @@ -379,7 +375,6 @@ public function __construct(array $data = null) $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['notary_host'] = isset($data['notary_host']) ? $data['notary_host'] : null; $this->container['note'] = isset($data['note']) ? $data['note'] : null; - $this->container['offline_attributes'] = isset($data['offline_attributes']) ? $data['offline_attributes'] : null; $this->container['phone_authentication'] = isset($data['phone_authentication']) ? $data['phone_authentication'] : null; $this->container['recipient_attachments'] = isset($data['recipient_attachments']) ? $data['recipient_attachments'] : null; $this->container['recipient_authentication_status'] = isset($data['recipient_authentication_status']) ? $data['recipient_authentication_status'] : null; @@ -1023,27 +1018,6 @@ public function setNote($note) return $this; } - /** - * Gets offline_attributes - * @return \DocuSign\eSign\Model\OfflineAttributes - */ - public function getOfflineAttributes() - { - return $this->container['offline_attributes']; - } - - /** - * Sets offline_attributes - * @param \DocuSign\eSign\Model\OfflineAttributes $offline_attributes - * @return $this - */ - public function setOfflineAttributes($offline_attributes) - { - $this->container['offline_attributes'] = $offline_attributes; - - return $this; - } - /** * Gets phone_authentication * @return \DocuSign\eSign\Model\RecipientPhoneAuthentication diff --git a/src/Model/Signer.php b/src/Model/Signer.php index d7d35fda..66794482 100644 --- a/src/Model/Signer.php +++ b/src/Model/Signer.php @@ -86,7 +86,6 @@ class Signer implements ArrayAccess 'last_name' => 'string', 'name' => 'string', 'note' => 'string', - 'offline_attributes' => '\DocuSign\eSign\Model\OfflineAttributes', 'phone_authentication' => '\DocuSign\eSign\Model\RecipientPhoneAuthentication', 'recipient_attachments' => '\DocuSign\eSign\Model\RecipientAttachment[]', 'recipient_authentication_status' => '\DocuSign\eSign\Model\AuthenticationStatus', @@ -159,7 +158,6 @@ public static function swaggerTypes() 'last_name' => 'lastName', 'name' => 'name', 'note' => 'note', - 'offline_attributes' => 'offlineAttributes', 'phone_authentication' => 'phoneAuthentication', 'recipient_attachments' => 'recipientAttachments', 'recipient_authentication_status' => 'recipientAuthenticationStatus', @@ -228,7 +226,6 @@ public static function swaggerTypes() 'last_name' => 'setLastName', 'name' => 'setName', 'note' => 'setNote', - 'offline_attributes' => 'setOfflineAttributes', 'phone_authentication' => 'setPhoneAuthentication', 'recipient_attachments' => 'setRecipientAttachments', 'recipient_authentication_status' => 'setRecipientAuthenticationStatus', @@ -297,7 +294,6 @@ public static function swaggerTypes() 'last_name' => 'getLastName', 'name' => 'getName', 'note' => 'getNote', - 'offline_attributes' => 'getOfflineAttributes', 'phone_authentication' => 'getPhoneAuthentication', 'recipient_attachments' => 'getRecipientAttachments', 'recipient_authentication_status' => 'getRecipientAuthenticationStatus', @@ -391,7 +387,6 @@ public function __construct(array $data = null) $this->container['last_name'] = isset($data['last_name']) ? $data['last_name'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['note'] = isset($data['note']) ? $data['note'] : null; - $this->container['offline_attributes'] = isset($data['offline_attributes']) ? $data['offline_attributes'] : null; $this->container['phone_authentication'] = isset($data['phone_authentication']) ? $data['phone_authentication'] : null; $this->container['recipient_attachments'] = isset($data['recipient_attachments']) ? $data['recipient_attachments'] : null; $this->container['recipient_authentication_status'] = isset($data['recipient_authentication_status']) ? $data['recipient_authentication_status'] : null; @@ -1117,27 +1112,6 @@ public function setNote($note) return $this; } - /** - * Gets offline_attributes - * @return \DocuSign\eSign\Model\OfflineAttributes - */ - public function getOfflineAttributes() - { - return $this->container['offline_attributes']; - } - - /** - * Sets offline_attributes - * @param \DocuSign\eSign\Model\OfflineAttributes $offline_attributes - * @return $this - */ - public function setOfflineAttributes($offline_attributes) - { - $this->container['offline_attributes'] = $offline_attributes; - - return $this; - } - /** * Gets phone_authentication * @return \DocuSign\eSign\Model\RecipientPhoneAuthentication diff --git a/src/Model/Witness.php b/src/Model/Witness.php index 93ebbba4..7e9e254f 100644 --- a/src/Model/Witness.php +++ b/src/Model/Witness.php @@ -86,7 +86,6 @@ class Witness implements ArrayAccess 'last_name' => 'string', 'name' => 'string', 'note' => 'string', - 'offline_attributes' => '\DocuSign\eSign\Model\OfflineAttributes', 'phone_authentication' => '\DocuSign\eSign\Model\RecipientPhoneAuthentication', 'recipient_attachments' => '\DocuSign\eSign\Model\RecipientAttachment[]', 'recipient_authentication_status' => '\DocuSign\eSign\Model\AuthenticationStatus', @@ -161,7 +160,6 @@ public static function swaggerTypes() 'last_name' => 'lastName', 'name' => 'name', 'note' => 'note', - 'offline_attributes' => 'offlineAttributes', 'phone_authentication' => 'phoneAuthentication', 'recipient_attachments' => 'recipientAttachments', 'recipient_authentication_status' => 'recipientAuthenticationStatus', @@ -232,7 +230,6 @@ public static function swaggerTypes() 'last_name' => 'setLastName', 'name' => 'setName', 'note' => 'setNote', - 'offline_attributes' => 'setOfflineAttributes', 'phone_authentication' => 'setPhoneAuthentication', 'recipient_attachments' => 'setRecipientAttachments', 'recipient_authentication_status' => 'setRecipientAuthenticationStatus', @@ -303,7 +300,6 @@ public static function swaggerTypes() 'last_name' => 'getLastName', 'name' => 'getName', 'note' => 'getNote', - 'offline_attributes' => 'getOfflineAttributes', 'phone_authentication' => 'getPhoneAuthentication', 'recipient_attachments' => 'getRecipientAttachments', 'recipient_authentication_status' => 'getRecipientAuthenticationStatus', @@ -399,7 +395,6 @@ public function __construct(array $data = null) $this->container['last_name'] = isset($data['last_name']) ? $data['last_name'] : null; $this->container['name'] = isset($data['name']) ? $data['name'] : null; $this->container['note'] = isset($data['note']) ? $data['note'] : null; - $this->container['offline_attributes'] = isset($data['offline_attributes']) ? $data['offline_attributes'] : null; $this->container['phone_authentication'] = isset($data['phone_authentication']) ? $data['phone_authentication'] : null; $this->container['recipient_attachments'] = isset($data['recipient_attachments']) ? $data['recipient_attachments'] : null; $this->container['recipient_authentication_status'] = isset($data['recipient_authentication_status']) ? $data['recipient_authentication_status'] : null; @@ -1127,27 +1122,6 @@ public function setNote($note) return $this; } - /** - * Gets offline_attributes - * @return \DocuSign\eSign\Model\OfflineAttributes - */ - public function getOfflineAttributes() - { - return $this->container['offline_attributes']; - } - - /** - * Sets offline_attributes - * @param \DocuSign\eSign\Model\OfflineAttributes $offline_attributes - * @return $this - */ - public function setOfflineAttributes($offline_attributes) - { - $this->container['offline_attributes'] = $offline_attributes; - - return $this; - } - /** * Gets phone_authentication * @return \DocuSign\eSign\Model\RecipientPhoneAuthentication