Skip to content

Commit

Permalink
Version 6.6.0 release (#162)
Browse files Browse the repository at this point in the history
* Version 6.6.0-v2.1-21.4.01.00 release

* Fixed test case to support phpunit version 9

Co-authored-by: root <[email protected]>
Co-authored-by: Dhaval <d>
  • Loading branch information
HobbyProjects and root authored Jan 11, 2022
1 parent beefddc commit 337c149
Show file tree
Hide file tree
Showing 26 changed files with 4,854 additions and 23 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ 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.6.0] - eSignature API v2.1-21.4.01.00 - 2022-01-06
### Changed
- Added support for version v2.1-21.4.01.00 of the DocuSign ESignature API.
- Updated the SDK release version.

## [6.6.0-rc] - ESignature API v2.1-21.4.00.00 - 2021-12-13
### Changed
- Added support for version v2.1-21.4.00.00 of the DocuSign ESignature API.
Expand Down
30 changes: 30 additions & 0 deletions src/Api/BillingApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,33 @@ public function setIncludeSuccessorPlans(?string $include_successor_plans): self
$this->include_successor_plans = $include_successor_plans;
return $this;
}
/**
* $include_tax_exempt_id
* @var ?string
*/
protected ?string $include_tax_exempt_id = null;

/**
* Gets include_tax_exempt_id
*
* @return ?string
*/
public function getIncludeTaxExemptId(): ?string
{
return $this->include_tax_exempt_id;
}

/**
* Sets include_tax_exempt_id
* @param ?string $include_tax_exempt_id
*
* @return self
*/
public function setIncludeTaxExemptId(?string $include_tax_exempt_id): self
{
$this->include_tax_exempt_id = $include_tax_exempt_id;
return $this;
}
}


Expand Down Expand Up @@ -923,6 +950,9 @@ public function getPlanWithHttpInfo($account_id, \DocuSign\eSign\Api\BillingApi\
if ($options->getIncludeSuccessorPlans() != 'null') {
$queryParams['include_successor_plans'] = $this->apiClient->getSerializer()->toQueryValue($options->getIncludeSuccessorPlans());
}
if ($options->getIncludeTaxExemptId() != 'null') {
$queryParams['include_tax_exempt_id'] = $this->apiClient->getSerializer()->toQueryValue($options->getIncludeTaxExemptId());
}
}

// path params
Expand Down
Loading

0 comments on commit 337c149

Please sign in to comment.