Skip to content

Commit

Permalink
Version 6.17.0-rc-v2.1-23.3.00.01 release (#207)
Browse files Browse the repository at this point in the history
Co-authored-by: root <[email protected]>
  • Loading branch information
InbarGazit and root authored Aug 31, 2023
1 parent 73b3551 commit b27143f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ 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.

## [v6.17.0-rc] - eSignature API v2.1-23.3.00.00 - 2023-08-21
## [v6.17.0-rc] - eSignature API v2.1-23.3.00.01 - 2023-08-30
### Changed
- Added support for version v2.1-23.3.00.00 of the DocuSign ESignature API.
- Added support for version v2.1-23.3.00.01 of the DocuSign ESignature API.
- Updated the SDK release version.

## [v6.16.0] - eSignature API v2.1-23.2.00.00 - 2023-06-27
Expand Down
11 changes: 1 addition & 10 deletions src/Model/Brand.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Brand implements ModelInterface, ArrayAccess
'landing_pages' => null,
'links' => null,
'logos' => null,
'organization_brand_logo' => 'byte',
'organization_brand_logo' => null,
'resources' => null
];

Expand Down Expand Up @@ -288,10 +288,6 @@ public function listInvalidProperties()
{
$invalidProperties = [];

if (!is_null($this->container['organization_brand_logo']) && !preg_match("/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/", $this->container['organization_brand_logo'])) {
$invalidProperties[] = "invalid value for 'organization_brand_logo', must be conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.";
}

return $invalidProperties;
}

Expand Down Expand Up @@ -686,11 +682,6 @@ public function getOrganizationBrandLogo()
*/
public function setOrganizationBrandLogo($organization_brand_logo)
{

if (!is_null($organization_brand_logo) && (!preg_match("/^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/", $organization_brand_logo))) {
throw new \InvalidArgumentException("invalid value for $organization_brand_logo when calling Brand., must conform to the pattern /^(?:[A-Za-z0-9+\/]{4})*(?:[A-Za-z0-9+\/]{2}==|[A-Za-z0-9+\/]{3}=)?$/.");
}

$this->container['organization_brand_logo'] = $organization_brand_logo;

return $this;
Expand Down

0 comments on commit b27143f

Please sign in to comment.