Skip to content

Commit

Permalink
Version 4.5.0-rc release (#113)
Browse files Browse the repository at this point in the history
* Version 4.5.0-rc-v2-20.2.02.02 release

* Corrected not required overwritten changes

* Updated Changelog

Co-authored-by: DevCenter-DocuSign <[email protected]>
Co-authored-by: Dhaval Brahmbhatt <[email protected]>
  • Loading branch information
3 people authored Aug 12, 2020
1 parent a67ddc9 commit 00047a6
Show file tree
Hide file tree
Showing 5 changed files with 141 additions and 29 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@
All notable changes to this project will be documented in this file.

See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.

## [4.4.0] - eSignature API v2-20.2.00 - 2020-06-02
### Changed

* Added support for version v2-20.2.00 of the DocuSign eSignature API.
* Updated the SDK release version.

### Fixed

* Fixed read member function issue in object serializer [#102](https://github.com/docusign/docusign-php-client/issues/102)

## [4.3.0] - eSignature API v2-20.1.02 - 2020-06-02
### Changed

* Added support for version v2-20.1.02 of the DocuSign eSignature API.
* Updated the SDK release version.

### Fixed

* Date serialization issues [#97](https://github.com/docusign/docusign-php-client/issues/97)

## [4.2.0] - eSignature API v2-20.1.00 - 2020-03-30
### Changed

Expand Down
29 changes: 0 additions & 29 deletions src/Api/BulkEnvelopesApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,31 +55,6 @@ public function setCount($count)
$this->count = $count;
return $this;
}
/**
* $include
* @var string
*/
protected $include;

/**
* Gets include
* @return string
*/
public function getInclude()
{
return $this->include;
}

/**
* Sets include
* @param string $include
* @return $this
*/
public function setInclude($include)
{
$this->include = $include;
return $this;
}
/**
* $start_position The position of the bulk envelope items in the response. This is used for repeated calls, when the number of bulk envelopes returned is too large for one return. The default value is 0.
* @var string
Expand Down Expand Up @@ -352,10 +327,6 @@ public function callListWithHttpInfo($account_id, BulkEnvelopesApi\ListOptions $
$queryParams['count'] = $this->apiClient->getSerializer()->toQueryValue($options->getCount());
}
// query params
if ($options->getInclude() !== null) {
$queryParams['include'] = $this->apiClient->getSerializer()->toQueryValue($options->getInclude());
}
// query params
if ($options->getStartPosition() !== null) {
$queryParams['start_position'] = $this->apiClient->getSerializer()->toQueryValue($options->getStartPosition());
}
Expand Down
30 changes: 30 additions & 0 deletions src/Model/NewUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ class NewUser implements ModelInterface, ArrayAccess
'created_date_time' => 'string',
'email' => 'string',
'error_details' => '\DocuSign\eSign\Model\ErrorDetails',
'membership_id' => 'string',
'permission_profile_id' => 'string',
'permission_profile_name' => 'string',
'uri' => 'string',
Expand All @@ -79,6 +80,7 @@ class NewUser implements ModelInterface, ArrayAccess
'created_date_time' => null,
'email' => null,
'error_details' => null,
'membership_id' => null,
'permission_profile_id' => null,
'permission_profile_name' => null,
'uri' => null,
Expand Down Expand Up @@ -118,6 +120,7 @@ public static function swaggerFormats()
'created_date_time' => 'createdDateTime',
'email' => 'email',
'error_details' => 'errorDetails',
'membership_id' => 'membershipId',
'permission_profile_id' => 'permissionProfileId',
'permission_profile_name' => 'permissionProfileName',
'uri' => 'uri',
Expand All @@ -136,6 +139,7 @@ public static function swaggerFormats()
'created_date_time' => 'setCreatedDateTime',
'email' => 'setEmail',
'error_details' => 'setErrorDetails',
'membership_id' => 'setMembershipId',
'permission_profile_id' => 'setPermissionProfileId',
'permission_profile_name' => 'setPermissionProfileName',
'uri' => 'setUri',
Expand All @@ -154,6 +158,7 @@ public static function swaggerFormats()
'created_date_time' => 'getCreatedDateTime',
'email' => 'getEmail',
'error_details' => 'getErrorDetails',
'membership_id' => 'getMembershipId',
'permission_profile_id' => 'getPermissionProfileId',
'permission_profile_name' => 'getPermissionProfileName',
'uri' => 'getUri',
Expand Down Expand Up @@ -226,6 +231,7 @@ public function __construct(array $data = null)
$this->container['created_date_time'] = isset($data['created_date_time']) ? $data['created_date_time'] : null;
$this->container['email'] = isset($data['email']) ? $data['email'] : null;
$this->container['error_details'] = isset($data['error_details']) ? $data['error_details'] : null;
$this->container['membership_id'] = isset($data['membership_id']) ? $data['membership_id'] : null;
$this->container['permission_profile_id'] = isset($data['permission_profile_id']) ? $data['permission_profile_id'] : null;
$this->container['permission_profile_name'] = isset($data['permission_profile_name']) ? $data['permission_profile_name'] : null;
$this->container['uri'] = isset($data['uri']) ? $data['uri'] : null;
Expand Down Expand Up @@ -354,6 +360,30 @@ public function setErrorDetails($error_details)
return $this;
}

/**
* Gets membership_id
*
* @return string
*/
public function getMembershipId()
{
return $this->container['membership_id'];
}

/**
* Sets membership_id
*
* @param string $membership_id
*
* @return $this
*/
public function setMembershipId($membership_id)
{
$this->container['membership_id'] = $membership_id;

return $this;
}

/**
* Gets permission_profile_id
*
Expand Down
30 changes: 30 additions & 0 deletions src/Model/SenderEmailNotifications.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ class SenderEmailNotifications implements ModelInterface, ArrayAccess
'delivery_failed' => 'string',
'envelope_complete' => 'string',
'offline_signing_failed' => 'string',
'powerform_responses_limit_notification_email' => 'string',
'recipient_viewed' => 'string',
'sender_envelope_declined' => 'string',
'withdrawn_consent' => 'string'
Expand All @@ -80,6 +81,7 @@ class SenderEmailNotifications implements ModelInterface, ArrayAccess
'delivery_failed' => null,
'envelope_complete' => null,
'offline_signing_failed' => null,
'powerform_responses_limit_notification_email' => null,
'recipient_viewed' => null,
'sender_envelope_declined' => null,
'withdrawn_consent' => null
Expand Down Expand Up @@ -118,6 +120,7 @@ public static function swaggerFormats()
'delivery_failed' => 'deliveryFailed',
'envelope_complete' => 'envelopeComplete',
'offline_signing_failed' => 'offlineSigningFailed',
'powerform_responses_limit_notification_email' => 'powerformResponsesLimitNotificationEmail',
'recipient_viewed' => 'recipientViewed',
'sender_envelope_declined' => 'senderEnvelopeDeclined',
'withdrawn_consent' => 'withdrawnConsent'
Expand All @@ -135,6 +138,7 @@ public static function swaggerFormats()
'delivery_failed' => 'setDeliveryFailed',
'envelope_complete' => 'setEnvelopeComplete',
'offline_signing_failed' => 'setOfflineSigningFailed',
'powerform_responses_limit_notification_email' => 'setPowerformResponsesLimitNotificationEmail',
'recipient_viewed' => 'setRecipientViewed',
'sender_envelope_declined' => 'setSenderEnvelopeDeclined',
'withdrawn_consent' => 'setWithdrawnConsent'
Expand All @@ -152,6 +156,7 @@ public static function swaggerFormats()
'delivery_failed' => 'getDeliveryFailed',
'envelope_complete' => 'getEnvelopeComplete',
'offline_signing_failed' => 'getOfflineSigningFailed',
'powerform_responses_limit_notification_email' => 'getPowerformResponsesLimitNotificationEmail',
'recipient_viewed' => 'getRecipientViewed',
'sender_envelope_declined' => 'getSenderEnvelopeDeclined',
'withdrawn_consent' => 'getWithdrawnConsent'
Expand Down Expand Up @@ -223,6 +228,7 @@ public function __construct(array $data = null)
$this->container['delivery_failed'] = isset($data['delivery_failed']) ? $data['delivery_failed'] : null;
$this->container['envelope_complete'] = isset($data['envelope_complete']) ? $data['envelope_complete'] : null;
$this->container['offline_signing_failed'] = isset($data['offline_signing_failed']) ? $data['offline_signing_failed'] : null;
$this->container['powerform_responses_limit_notification_email'] = isset($data['powerform_responses_limit_notification_email']) ? $data['powerform_responses_limit_notification_email'] : null;
$this->container['recipient_viewed'] = isset($data['recipient_viewed']) ? $data['recipient_viewed'] : null;
$this->container['sender_envelope_declined'] = isset($data['sender_envelope_declined']) ? $data['sender_envelope_declined'] : null;
$this->container['withdrawn_consent'] = isset($data['withdrawn_consent']) ? $data['withdrawn_consent'] : null;
Expand Down Expand Up @@ -396,6 +402,30 @@ public function setOfflineSigningFailed($offline_signing_failed)
return $this;
}

/**
* Gets powerform_responses_limit_notification_email
*
* @return string
*/
public function getPowerformResponsesLimitNotificationEmail()
{
return $this->container['powerform_responses_limit_notification_email'];
}

/**
* Sets powerform_responses_limit_notification_email
*
* @param string $powerform_responses_limit_notification_email
*
* @return $this
*/
public function setPowerformResponsesLimitNotificationEmail($powerform_responses_limit_notification_email)
{
$this->container['powerform_responses_limit_notification_email'] = $powerform_responses_limit_notification_email;

return $this;
}

/**
* Gets recipient_viewed
*
Expand Down
60 changes: 60 additions & 0 deletions src/Model/TabMetadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ class TabMetadata implements ModelInterface, ArrayAccess
'payment_item_code' => 'string',
'payment_item_description' => 'string',
'payment_item_name' => 'string',
'require_all' => 'string',
'required' => 'string',
'require_initial_on_shared_change' => 'string',
'scale_value' => 'string',
'selected' => 'string',
'shared' => 'string',
Expand Down Expand Up @@ -145,7 +147,9 @@ class TabMetadata implements ModelInterface, ArrayAccess
'payment_item_code' => null,
'payment_item_description' => null,
'payment_item_name' => null,
'require_all' => null,
'required' => null,
'require_initial_on_shared_change' => null,
'scale_value' => null,
'selected' => null,
'shared' => null,
Expand Down Expand Up @@ -220,7 +224,9 @@ public static function swaggerFormats()
'payment_item_code' => 'paymentItemCode',
'payment_item_description' => 'paymentItemDescription',
'payment_item_name' => 'paymentItemName',
'require_all' => 'requireAll',
'required' => 'required',
'require_initial_on_shared_change' => 'requireInitialOnSharedChange',
'scale_value' => 'scaleValue',
'selected' => 'selected',
'shared' => 'shared',
Expand Down Expand Up @@ -274,7 +280,9 @@ public static function swaggerFormats()
'payment_item_code' => 'setPaymentItemCode',
'payment_item_description' => 'setPaymentItemDescription',
'payment_item_name' => 'setPaymentItemName',
'require_all' => 'setRequireAll',
'required' => 'setRequired',
'require_initial_on_shared_change' => 'setRequireInitialOnSharedChange',
'scale_value' => 'setScaleValue',
'selected' => 'setSelected',
'shared' => 'setShared',
Expand Down Expand Up @@ -328,7 +336,9 @@ public static function swaggerFormats()
'payment_item_code' => 'getPaymentItemCode',
'payment_item_description' => 'getPaymentItemDescription',
'payment_item_name' => 'getPaymentItemName',
'require_all' => 'getRequireAll',
'required' => 'getRequired',
'require_initial_on_shared_change' => 'getRequireInitialOnSharedChange',
'scale_value' => 'getScaleValue',
'selected' => 'getSelected',
'shared' => 'getShared',
Expand Down Expand Up @@ -436,7 +446,9 @@ public function __construct(array $data = null)
$this->container['payment_item_code'] = isset($data['payment_item_code']) ? $data['payment_item_code'] : null;
$this->container['payment_item_description'] = isset($data['payment_item_description']) ? $data['payment_item_description'] : null;
$this->container['payment_item_name'] = isset($data['payment_item_name']) ? $data['payment_item_name'] : null;
$this->container['require_all'] = isset($data['require_all']) ? $data['require_all'] : null;
$this->container['required'] = isset($data['required']) ? $data['required'] : null;
$this->container['require_initial_on_shared_change'] = isset($data['require_initial_on_shared_change']) ? $data['require_initial_on_shared_change'] : null;
$this->container['scale_value'] = isset($data['scale_value']) ? $data['scale_value'] : null;
$this->container['selected'] = isset($data['selected']) ? $data['selected'] : null;
$this->container['shared'] = isset($data['shared']) ? $data['shared'] : null;
Expand Down Expand Up @@ -1290,6 +1302,30 @@ public function setPaymentItemName($payment_item_name)
return $this;
}

/**
* Gets require_all
*
* @return string
*/
public function getRequireAll()
{
return $this->container['require_all'];
}

/**
* Sets require_all
*
* @param string $require_all When set to **true** and shared is true, information must be entered in this field to complete the envelope.
*
* @return $this
*/
public function setRequireAll($require_all)
{
$this->container['require_all'] = $require_all;

return $this;
}

/**
* Gets required
*
Expand All @@ -1314,6 +1350,30 @@ public function setRequired($required)
return $this;
}

/**
* Gets require_initial_on_shared_change
*
* @return string
*/
public function getRequireInitialOnSharedChange()
{
return $this->container['require_initial_on_shared_change'];
}

/**
* Sets require_initial_on_shared_change
*
* @param string $require_initial_on_shared_change Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field.
*
* @return $this
*/
public function setRequireInitialOnSharedChange($require_initial_on_shared_change)
{
$this->container['require_initial_on_shared_change'] = $require_initial_on_shared_change;

return $this;
}

/**
* Gets scale_value
*
Expand Down

0 comments on commit 00047a6

Please sign in to comment.