diff --git a/.swagger-codegen-ignore b/.swagger-codegen-ignore index 05ec67ed..79875a34 100644 --- a/.swagger-codegen-ignore +++ b/.swagger-codegen-ignore @@ -25,7 +25,6 @@ .swagger-codegen-ignore git_push.sh .gitignore -README.md CHANGELOG.md best_practices.md diff --git a/CHANGELOG.md b/CHANGELOG.md index fd43e568..907eb3b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,78 @@ 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. +## [v8.0.0-rc1] - eSignature API v2.1-24.2.00.00 - 2024-07-02 +### Breaking Changes + +
+API Changes (Click to expand) + +
+ +
+Added support for version v2.1-24.2.00.00 of the Docusign ESignature API. + + ## Endpoint-Specific Changes + + ### Updated [Envelopes: get](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/get/) + Added new optional query parameter named `include_anchor_tab_locations` of type string. + + ### Updated [Envelopes: update](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/update/) + Added new optional query parameter named `recycle_on_void` of type string. + + ### Updated [EnvelopeViews : createCorrect](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createcorrect/) + Request body object `correctViewRequest` has been changed to `envelopeViewRequest`. + + ## Model Changes + + ### Updated existing models + + ### `accountInformation` + + - **Added fields:** + - `freeEnvelopeSendsRemainingForAdvancedDocGen` + + ### `accountSettingsInformation` + + - **Added fields:** + - `defaultSigningResponsiveView` + - `defaultSigningResponsiveViewMetadata` + - `dss_SCOREFDN_196_Rebrand_DocuSignIsNotAVerb` + - `enableAdditionalAdvancedWebFormsFeatures` + - `enableAdditionalAdvancedWebFormsFeaturesMetadata` + +- **Removed fields:** + - `enableSaveAsEnvelopeCustomFieldInWebForms` + - `enableSaveAsEnvelopeCustomFieldInWebFormsMetadata` + +### `bulksendingCopyDocGenFormField` + +- **Added field:** + - `rowValues` + +### `notaryRecipient` + +- **Added field:** + - `canNotaryCorrectEnvelope` + +### `tabAccountSettings` + +- **Added field:** + - `enableTabAgreementDetails` + - `enableTabAgreementDetailsMetadata` + + +### Newly added Models + +- `bulkSendingCopyDocGenFormFieldRowValue` + +
+
+ +### Other Changes +- Updated the SDK release version. + + ## [v7.0.0] - eSignature API v2.1-24.1.01.00 - 2024-05-22 ## Endpoint-Specific Changes diff --git a/README.md b/README.md index 52a18803..382eeff7 100644 --- a/README.md +++ b/README.md @@ -1,62 +1,106 @@ -# The Official DocuSign eSignature PHP Client SDK +# The Official Docusign eSignature PHP Client SDK -[![Build status][travis-image]][travis-url] +The Docusign SDK makes integrating Docusign into your apps and websites a seamless experience. -## Requirements -* PHP 7.4+ -* Free [developer account](https://go.docusign.com/sandbox/productshot/?elqCampaignId=16531) +## Table of Contents +- [Introduction](#introduction) +- [Installation](#installation) + * [Version Information](#versionInformation) + * [Requirements](#requirements) + * [Compatibility](#compatibility) + * [Composer](#composer) + * [Manual Install](#manualInstall) +- [Dependencies](#dependencies) +- [API Reference](#apiReference) +- [Code Examples](#codeExamples) +- [OAuth Implementations](#oauthImplementations) +- [Changelog](#changeLog) +- [Support](#support) +- [License](#license) +- [Additional Resources](#additionalResources) -## Compatibility -* PHP 7.4+ + +## Introduction +Integrate eSignatures into your application in minutes. The secure and award-winning Docusign eSignature API makes requesting signatures, automating forms, and tracking documents directly from your app easy. + ## Installation -This SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [DocuSign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below. +This client SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [Docusign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below. + + +### Version Information +- **API version**: v2.1 +- **Latest SDK version**: 8.0.0-rc1 + + +### Requirements +* PHP 7.4+ +* Free [developer account](https://go.docusign.com/o/sandbox/?postActivateUrl=https://developers.docusign.com/) + +### Compatibility +* PHP 7.4+ + + ### Composer: 1. In your PHP console, type: **Composer require docusign/esign-client;** 2. To use the package automatically, add to Composer's Autoload file: `require_once('vendor/autoload.php');` -### Manual install: + +### Manual Install:
  1. Download or clone this repository.
  2. Bind the PHP SDK to your server or place it in a static location.
    1. To bind to your server, edit the init.php file. Add:
      - require_once('/path/to/docusign-esign-client/autoload.php');
    2. + require_once('/path/to/docusign-esign-php-client/autoload.php');
    3. To bind to single pages: In your PHP file that will utilize the PHP SDK, add:
      - require_once('/path/to/docusign-esign-client/autoload.php');
    4. + require_once('/path/to/docusign-esign-php-client/autoload.php');
  3. If you are using Composer V2 and get the error 'namespace cannot be found', add the following class mapping in the composer.json file.
  4. - "autoload": { "classmap": [ "/path/to/docusign-esign-client/src" ] } + "autoload": { "classmap": [ "/path/to/docusign-esign-php-client/src" ] }
-## Dependencies + +## SDK Dependencies This client has the following external dependencies: * [PHP cURL extension](https://www.php.net/manual/en/intro.curl.php) * [PHP JSON extension](https://php.net/manual/en/book.json.php) +* [PHP MBString extension](https://www.php.net/manual/en/intro.mbstring.php) +* firebase/php-jwt v6.0 + + +## API Reference +You can refer to the API reference [here](https://developers.docusign.com/docs/esign-rest-api/reference/). + ## Code examples -You can find on our GitHub a self-executing package of code examples for the eSignature PHP SDK, called a [Launcher](https://github.com/docusign/code-examples-php/blob/master/README.md), that demonstrates common use cases. You can also download a version preconfigured for your DocuSign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples can use either the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) or [JSON Web Token (JWT)](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-jsonwebtoken) authentication workflows. +Explore our GitHub repository for the [Launcher](https://github.com/docusign/code-examples-php/), a self-executing package housing code examples for the eSignature PHP SDK. This package showcases several common use cases and their respective source files. Additionally, you can download a version preconfigured for your Docusign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples support both the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) and [JSON Web Token (JWT)](https://developers.docusign.com/platform/auth/jwt/) authentication workflows. + ## OAuth implementations -For details regarding which type of OAuth grant will work best for your DocuSign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [DocuSign Developer Center](https://developers.docusign.com/). +For details regarding which type of OAuth grant will work best for your Docusign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [Docusign Developer Center](https://developers.docusign.com/). -For security purposes, DocuSign recommends using the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) flow. +For security purposes, Docusign recommends using the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) flow. + +## Changelog +You can refer to the complete changelog [here](https://github.com/docusign/docusign-esign-php-client/blob/master/CHANGELOG.md). + + ## Support -Log issues against this client through GitHub. We also have an [active developer community on Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi). +Log issues against this client SDK through GitHub. You can also reach out to us through [Docusign Community](https://community.docusign.com/developer-59) and [Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi). + ## License -The DocuSign eSignature PHP Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-php-client/blob/master/LICENSE). +The Docusign eSignature PHP Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-esign-php-client/blob/master/LICENSE). + ### Additional resources -* [DocuSign Developer Center](https://developers.docusign.com/) -* [DocuSign API on Twitter](https://twitter.com/docusignapi) -* [DocuSign For Developers on LinkedIn](https://www.linkedin.com/showcase/docusign-for-developers/) -* [DocuSign For Developers on YouTube](https://www.youtube.com/channel/UCJSJ2kMs_qeQotmw4-lX2NQ) - -[travis-image]: https://img.shields.io/travis/docusign/docusign-php-client.svg?style=flat -[travis-url]: https://travis-ci.org/docusign/docusign-php-client \ No newline at end of file +* [Docusign Developer Center](https://developers.docusign.com/) +* [Docusign API on Twitter](https://twitter.com/docusignapi) +* [Docusign For Developers on LinkedIn](https://www.linkedin.com/showcase/docusign-for-developers/) +* [Docusign For Developers on YouTube](https://www.youtube.com/channel/UCJSJ2kMs_qeQotmw4-lX2NQ) \ No newline at end of file diff --git a/src/Api/AccountsApi.php b/src/Api/AccountsApi.php index 98adb9a6..8fc1b268 100644 --- a/src/Api/AccountsApi.php +++ b/src/Api/AccountsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/AuthenticationApi.php b/src/Api/AuthenticationApi.php index cd011fa7..a636ebc6 100644 --- a/src/Api/AuthenticationApi.php +++ b/src/Api/AuthenticationApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/BillingApi.php b/src/Api/BillingApi.php index 7835f015..c9f2185a 100644 --- a/src/Api/BillingApi.php +++ b/src/Api/BillingApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/BulkEnvelopesApi.php b/src/Api/BulkEnvelopesApi.php index 6b830fba..ab150402 100644 --- a/src/Api/BulkEnvelopesApi.php +++ b/src/Api/BulkEnvelopesApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/BulkProcessDataApi.php b/src/Api/BulkProcessDataApi.php index cb58d760..90e91e68 100644 --- a/src/Api/BulkProcessDataApi.php +++ b/src/Api/BulkProcessDataApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/BulkProcessDataSendApi.php b/src/Api/BulkProcessDataSendApi.php index 836d7df9..2ae991f7 100644 --- a/src/Api/BulkProcessDataSendApi.php +++ b/src/Api/BulkProcessDataSendApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/CloudStorageApi.php b/src/Api/CloudStorageApi.php index f9efd5bd..0a4decf1 100644 --- a/src/Api/CloudStorageApi.php +++ b/src/Api/CloudStorageApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/ConnectApi.php b/src/Api/ConnectApi.php index 054e480d..7d26a04a 100644 --- a/src/Api/ConnectApi.php +++ b/src/Api/ConnectApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/CustomTabsApi.php b/src/Api/CustomTabsApi.php index 86671231..79b9baf5 100644 --- a/src/Api/CustomTabsApi.php +++ b/src/Api/CustomTabsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/DiagnosticsApi.php b/src/Api/DiagnosticsApi.php index fd8edc77..daa59c3b 100644 --- a/src/Api/DiagnosticsApi.php +++ b/src/Api/DiagnosticsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/EmailArchiveApi.php b/src/Api/EmailArchiveApi.php index e0323a88..3527301b 100644 --- a/src/Api/EmailArchiveApi.php +++ b/src/Api/EmailArchiveApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/EnvelopesApi.php b/src/Api/EnvelopesApi.php index 806dec13..681de251 100644 --- a/src/Api/EnvelopesApi.php +++ b/src/Api/EnvelopesApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -1022,6 +1022,33 @@ public function setInclude(?string $include): self $this->include = $include; return $this; } + /** + * $include_anchor_tab_locations + * @var ?string + */ + protected ?string $include_anchor_tab_locations = null; + + /** + * Gets include_anchor_tab_locations + * + * @return ?string + */ + public function getIncludeAnchorTabLocations(): ?string + { + return $this->include_anchor_tab_locations; + } + + /** + * Sets include_anchor_tab_locations + * @param ?string $include_anchor_tab_locations + * + * @return self + */ + public function setIncludeAnchorTabLocations(?string $include_anchor_tab_locations): self + { + $this->include_anchor_tab_locations = $include_anchor_tab_locations; + return $this; + } } @@ -3080,6 +3107,33 @@ public function setAdvancedUpdate(?string $advanced_update): self $this->advanced_update = $advanced_update; return $this; } + /** + * $recycle_on_void + * @var ?string + */ + protected ?string $recycle_on_void = null; + + /** + * Gets recycle_on_void + * + * @return ?string + */ + public function getRecycleOnVoid(): ?string + { + return $this->recycle_on_void; + } + + /** + * Sets recycle_on_void + * @param ?string $recycle_on_void + * + * @return self + */ + public function setRecycleOnVoid(?string $recycle_on_void): self + { + $this->recycle_on_void = $recycle_on_void; + return $this; + } /** * $resend_envelope When set to **true**, sends the specified envelope again. * @var ?string @@ -3798,14 +3852,14 @@ public function createConsoleViewWithHttpInfo($account_id, $console_view_request * * @param ?string $account_id The external account number (int) or account ID Guid. * @param ?string $envelope_id The envelopeId Guid of the envelope being accessed. - * @param \DocuSign\eSign\Model\CorrectViewRequest $correct_view_request (optional) + * @param \DocuSign\eSign\Model\EnvelopeViewRequest $envelope_view_request (optional) * * @throws ApiException on non-2xx response * @return \DocuSign\eSign\Model\ViewUrl */ - public function createCorrectView($account_id, $envelope_id, $correct_view_request = null) + public function createCorrectView($account_id, $envelope_id, $envelope_view_request = null) { - list($response) = $this->createCorrectViewWithHttpInfo($account_id, $envelope_id, $correct_view_request); + list($response) = $this->createCorrectViewWithHttpInfo($account_id, $envelope_id, $envelope_view_request); return $response; } @@ -3816,12 +3870,12 @@ public function createCorrectView($account_id, $envelope_id, $correct_view_reque * * @param ?string $account_id The external account number (int) or account ID Guid. * @param ?string $envelope_id The envelopeId Guid of the envelope being accessed. - * @param \DocuSign\eSign\Model\CorrectViewRequest $correct_view_request (optional) + * @param \DocuSign\eSign\Model\EnvelopeViewRequest $envelope_view_request (optional) * * @throws ApiException on non-2xx response * @return array of \DocuSign\eSign\Model\ViewUrl, HTTP status code, HTTP response headers (array of strings) */ - public function createCorrectViewWithHttpInfo($account_id, $envelope_id, $correct_view_request = null): array + public function createCorrectViewWithHttpInfo($account_id, $envelope_id, $envelope_view_request = null): array { // verify the required parameter 'account_id' is set if ($account_id === null) { @@ -3852,8 +3906,8 @@ public function createCorrectViewWithHttpInfo($account_id, $envelope_id, $correc $resourcePath = str_replace("{format}", "json", $resourcePath); // body params $_tempBody = null; - if (isset($correct_view_request)) { - $_tempBody = $correct_view_request; + if (isset($envelope_view_request)) { + $_tempBody = $envelope_view_request; } // for model (json/xml) @@ -9909,6 +9963,9 @@ public function getEnvelopeWithHttpInfo($account_id, $envelope_id, \DocuSign\eSi if ($options->getInclude() != 'null') { $queryParams['include'] = $this->apiClient->getSerializer()->toQueryValue($options->getInclude()); } + if ($options->getIncludeAnchorTabLocations() != 'null') { + $queryParams['include_anchor_tab_locations'] = $this->apiClient->getSerializer()->toQueryValue($options->getIncludeAnchorTabLocations()); + } } // path params @@ -13962,6 +14019,9 @@ public function updateWithHttpInfo($account_id, $envelope_id, $envelope = null, if ($options->getAdvancedUpdate() != 'null') { $queryParams['advanced_update'] = $this->apiClient->getSerializer()->toQueryValue($options->getAdvancedUpdate()); } + if ($options->getRecycleOnVoid() != 'null') { + $queryParams['recycle_on_void'] = $this->apiClient->getSerializer()->toQueryValue($options->getRecycleOnVoid()); + } if ($options->getResendEnvelope() != 'null') { $queryParams['resend_envelope'] = $this->apiClient->getSerializer()->toQueryValue($options->getResendEnvelope()); } diff --git a/src/Api/FoldersApi.php b/src/Api/FoldersApi.php index dc73b826..49a36967 100644 --- a/src/Api/FoldersApi.php +++ b/src/Api/FoldersApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/GroupsApi.php b/src/Api/GroupsApi.php index 8096a8b2..7cb93bb9 100644 --- a/src/Api/GroupsApi.php +++ b/src/Api/GroupsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/NotaryApi.php b/src/Api/NotaryApi.php index 21255762..003f11b5 100644 --- a/src/Api/NotaryApi.php +++ b/src/Api/NotaryApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/OrganizationsApi.php b/src/Api/OrganizationsApi.php index c712ce4c..1605fe1d 100644 --- a/src/Api/OrganizationsApi.php +++ b/src/Api/OrganizationsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/PowerFormsApi.php b/src/Api/PowerFormsApi.php index 6ed62e46..c6b0efd7 100644 --- a/src/Api/PowerFormsApi.php +++ b/src/Api/PowerFormsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/SigningGroupsApi.php b/src/Api/SigningGroupsApi.php index d87239f1..7452cabf 100644 --- a/src/Api/SigningGroupsApi.php +++ b/src/Api/SigningGroupsApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/TemplatesApi.php b/src/Api/TemplatesApi.php index 32281a52..032d2969 100644 --- a/src/Api/TemplatesApi.php +++ b/src/Api/TemplatesApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/TrustServiceProvidersApi.php b/src/Api/TrustServiceProvidersApi.php index 4031bd2f..6e7a4ea1 100644 --- a/src/Api/TrustServiceProvidersApi.php +++ b/src/Api/TrustServiceProvidersApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/UsersApi.php b/src/Api/UsersApi.php index 1cd39cdc..0bbfd2dd 100644 --- a/src/Api/UsersApi.php +++ b/src/Api/UsersApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Api/WorkspacesApi.php b/src/Api/WorkspacesApi.php index 9c92acd5..901856b9 100644 --- a/src/Api/WorkspacesApi.php +++ b/src/Api/WorkspacesApi.php @@ -14,9 +14,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Configuration.php b/src/Configuration.php index 439e759d..e062a5f2 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -11,9 +11,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -111,7 +111,7 @@ class Configuration * * @var string */ - protected $userAgent = 'Swagger-Codegen/v2.1/7.0.0/php/' . PHP_VERSION; + protected $userAgent = 'Swagger-Codegen/v2.1/8.0.0-rc1/php/' . PHP_VERSION; /** * Debug switch (default set to false) @@ -774,7 +774,7 @@ public static function toDebugReport() $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' OpenAPI Spec Version: v2.1' . PHP_EOL; - $report .= ' SDK Package Version: 7.0.0' . PHP_EOL; + $report .= ' SDK Package Version: 8.0.0-rc1' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/src/HeaderSelector.php b/src/HeaderSelector.php index a8c55ced..e09843bf 100644 --- a/src/HeaderSelector.php +++ b/src/HeaderSelector.php @@ -11,9 +11,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccessCodeFormat.php b/src/Model/AccessCodeFormat.php index cd8e9a31..b7bf001e 100644 --- a/src/Model/AccessCodeFormat.php +++ b/src/Model/AccessCodeFormat.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountAddress.php b/src/Model/AccountAddress.php index 4b16d92f..861df206 100644 --- a/src/Model/AccountAddress.php +++ b/src/Model/AccountAddress.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountBillingPlan.php b/src/Model/AccountBillingPlan.php index bd91d0e8..22bce691 100644 --- a/src/Model/AccountBillingPlan.php +++ b/src/Model/AccountBillingPlan.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountBillingPlanResponse.php b/src/Model/AccountBillingPlanResponse.php index 8ee9b9a6..3f8c4bb5 100644 --- a/src/Model/AccountBillingPlanResponse.php +++ b/src/Model/AccountBillingPlanResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountIdentityInputOption.php b/src/Model/AccountIdentityInputOption.php index 321a7b9c..e495c6e2 100644 --- a/src/Model/AccountIdentityInputOption.php +++ b/src/Model/AccountIdentityInputOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountIdentityVerificationResponse.php b/src/Model/AccountIdentityVerificationResponse.php index ac0def3d..a97b9ea2 100644 --- a/src/Model/AccountIdentityVerificationResponse.php +++ b/src/Model/AccountIdentityVerificationResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountIdentityVerificationStep.php b/src/Model/AccountIdentityVerificationStep.php index 02d4b903..f72288f9 100644 --- a/src/Model/AccountIdentityVerificationStep.php +++ b/src/Model/AccountIdentityVerificationStep.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountIdentityVerificationWorkflow.php b/src/Model/AccountIdentityVerificationWorkflow.php index 6fc9226a..b55e1ea2 100644 --- a/src/Model/AccountIdentityVerificationWorkflow.php +++ b/src/Model/AccountIdentityVerificationWorkflow.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountInformation.php b/src/Model/AccountInformation.php index 5fb588b4..c33ebe7c 100644 --- a/src/Model/AccountInformation.php +++ b/src/Model/AccountInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -85,6 +85,7 @@ class AccountInformation implements ModelInterface, ArrayAccess 'envelope_unit_price' => '?string', 'external_account_id' => '?string', 'forgotten_password_questions_count' => '?string', + 'free_envelope_sends_remaining_for_advanced_doc_gen' => '?int', 'is_downgrade' => '?string', 'payment_method' => '?string', 'plan_classification' => '?string', @@ -131,6 +132,7 @@ class AccountInformation implements ModelInterface, ArrayAccess 'envelope_unit_price' => null, 'external_account_id' => null, 'forgotten_password_questions_count' => null, + 'free_envelope_sends_remaining_for_advanced_doc_gen' => 'int32', 'is_downgrade' => null, 'payment_method' => null, 'plan_classification' => null, @@ -198,6 +200,7 @@ public static function swaggerFormats() 'envelope_unit_price' => 'envelopeUnitPrice', 'external_account_id' => 'externalAccountId', 'forgotten_password_questions_count' => 'forgottenPasswordQuestionsCount', + 'free_envelope_sends_remaining_for_advanced_doc_gen' => 'freeEnvelopeSendsRemainingForAdvancedDocGen', 'is_downgrade' => 'isDowngrade', 'payment_method' => 'paymentMethod', 'plan_classification' => 'planClassification', @@ -244,6 +247,7 @@ public static function swaggerFormats() 'envelope_unit_price' => 'setEnvelopeUnitPrice', 'external_account_id' => 'setExternalAccountId', 'forgotten_password_questions_count' => 'setForgottenPasswordQuestionsCount', + 'free_envelope_sends_remaining_for_advanced_doc_gen' => 'setFreeEnvelopeSendsRemainingForAdvancedDocGen', 'is_downgrade' => 'setIsDowngrade', 'payment_method' => 'setPaymentMethod', 'plan_classification' => 'setPlanClassification', @@ -290,6 +294,7 @@ public static function swaggerFormats() 'envelope_unit_price' => 'getEnvelopeUnitPrice', 'external_account_id' => 'getExternalAccountId', 'forgotten_password_questions_count' => 'getForgottenPasswordQuestionsCount', + 'free_envelope_sends_remaining_for_advanced_doc_gen' => 'getFreeEnvelopeSendsRemainingForAdvancedDocGen', 'is_downgrade' => 'getIsDowngrade', 'payment_method' => 'getPaymentMethod', 'plan_classification' => 'getPlanClassification', @@ -390,6 +395,7 @@ public function __construct(array $data = null) $this->container['envelope_unit_price'] = isset($data['envelope_unit_price']) ? $data['envelope_unit_price'] : null; $this->container['external_account_id'] = isset($data['external_account_id']) ? $data['external_account_id'] : null; $this->container['forgotten_password_questions_count'] = isset($data['forgotten_password_questions_count']) ? $data['forgotten_password_questions_count'] : null; + $this->container['free_envelope_sends_remaining_for_advanced_doc_gen'] = isset($data['free_envelope_sends_remaining_for_advanced_doc_gen']) ? $data['free_envelope_sends_remaining_for_advanced_doc_gen'] : null; $this->container['is_downgrade'] = isset($data['is_downgrade']) ? $data['is_downgrade'] : null; $this->container['payment_method'] = isset($data['payment_method']) ? $data['payment_method'] : null; $this->container['plan_classification'] = isset($data['plan_classification']) ? $data['plan_classification'] : null; @@ -1029,6 +1035,30 @@ public function setForgottenPasswordQuestionsCount($forgotten_password_questions return $this; } + /** + * Gets free_envelope_sends_remaining_for_advanced_doc_gen + * + * @return ?int + */ + public function getFreeEnvelopeSendsRemainingForAdvancedDocGen() + { + return $this->container['free_envelope_sends_remaining_for_advanced_doc_gen']; + } + + /** + * Sets free_envelope_sends_remaining_for_advanced_doc_gen + * + * @param ?int $free_envelope_sends_remaining_for_advanced_doc_gen + * + * @return $this + */ + public function setFreeEnvelopeSendsRemainingForAdvancedDocGen($free_envelope_sends_remaining_for_advanced_doc_gen) + { + $this->container['free_envelope_sends_remaining_for_advanced_doc_gen'] = $free_envelope_sends_remaining_for_advanced_doc_gen; + + return $this; + } + /** * Gets is_downgrade * diff --git a/src/Model/AccountMinimumPasswordLength.php b/src/Model/AccountMinimumPasswordLength.php index 0533c9f2..4f4d64f8 100644 --- a/src/Model/AccountMinimumPasswordLength.php +++ b/src/Model/AccountMinimumPasswordLength.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountNotification.php b/src/Model/AccountNotification.php index d9a6678c..2ae2ff8d 100644 --- a/src/Model/AccountNotification.php +++ b/src/Model/AccountNotification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordExpirePasswordDays.php b/src/Model/AccountPasswordExpirePasswordDays.php index 4fedf271..0566f266 100644 --- a/src/Model/AccountPasswordExpirePasswordDays.php +++ b/src/Model/AccountPasswordExpirePasswordDays.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordLockoutDurationMinutes.php b/src/Model/AccountPasswordLockoutDurationMinutes.php index 589d6680..7a0936a4 100644 --- a/src/Model/AccountPasswordLockoutDurationMinutes.php +++ b/src/Model/AccountPasswordLockoutDurationMinutes.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordLockoutDurationType.php b/src/Model/AccountPasswordLockoutDurationType.php index 7e995535..849ab2e0 100644 --- a/src/Model/AccountPasswordLockoutDurationType.php +++ b/src/Model/AccountPasswordLockoutDurationType.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordMinimumPasswordAgeDays.php b/src/Model/AccountPasswordMinimumPasswordAgeDays.php index 9740cd58..2526cb75 100644 --- a/src/Model/AccountPasswordMinimumPasswordAgeDays.php +++ b/src/Model/AccountPasswordMinimumPasswordAgeDays.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordQuestionsRequired.php b/src/Model/AccountPasswordQuestionsRequired.php index ecd082fd..a2346bd4 100644 --- a/src/Model/AccountPasswordQuestionsRequired.php +++ b/src/Model/AccountPasswordQuestionsRequired.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordRules.php b/src/Model/AccountPasswordRules.php index 931326e0..7f2c7df4 100644 --- a/src/Model/AccountPasswordRules.php +++ b/src/Model/AccountPasswordRules.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordStrengthType.php b/src/Model/AccountPasswordStrengthType.php index 2d20a954..c3b4c68c 100644 --- a/src/Model/AccountPasswordStrengthType.php +++ b/src/Model/AccountPasswordStrengthType.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountPasswordStrengthTypeOption.php b/src/Model/AccountPasswordStrengthTypeOption.php index 6c8a20a8..3d408d72 100644 --- a/src/Model/AccountPasswordStrengthTypeOption.php +++ b/src/Model/AccountPasswordStrengthTypeOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountRoleSettings.php b/src/Model/AccountRoleSettings.php index e801d62a..225ece8b 100644 --- a/src/Model/AccountRoleSettings.php +++ b/src/Model/AccountRoleSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSeals.php b/src/Model/AccountSeals.php index 8d4464b9..a09a53ee 100644 --- a/src/Model/AccountSeals.php +++ b/src/Model/AccountSeals.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSettingsInformation.php b/src/Model/AccountSettingsInformation.php index 39a13649..3e301d2e 100644 --- a/src/Model/AccountSettingsInformation.php +++ b/src/Model/AccountSettingsInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -337,6 +337,8 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'convert_pdf_fields_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'data_population_scope' => '?string', 'data_population_scope_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', + 'default_signing_responsive_view' => '?string', + 'default_signing_responsive_view_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'default_to_advanced_envelopes_filter_form' => '?string', 'default_to_advanced_envelopes_filter_form_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'disable_auto_template_matching' => '?string', @@ -375,6 +377,7 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'draft_envelope_retention_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'dss_enable_provisioning_pen_configuration_radmin_option' => '?string', 'dss_enable_signature_type_custom_tag_radmin_radmin_option' => '?string', + 'dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb' => '?string', 'dss_sign_28411_enable_leave_page_prompt_radmin_option' => '?string', 'dss_sign_29182_slide_up_bar_radmin_option' => '?string', 'email_template_version' => '?string', @@ -383,6 +386,8 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'enable_access_code_generator_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_account_wide_search' => '?string', 'enable_account_wide_search_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', + 'enable_additional_advanced_web_forms_features' => '?string', + 'enable_additional_advanced_web_forms_features_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_adm_healthcare' => '?string', 'enable_adm_healthcare_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_advanced_envelopes_search' => '?string', @@ -494,8 +499,6 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'enable_reserved_domain_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_responsive_signing' => '?string', 'enable_responsive_signing_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', - 'enable_save_as_envelope_custom_field_in_web_forms' => '?string', - 'enable_save_as_envelope_custom_field_in_web_forms_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_scheduled_release' => '?string', 'enable_scheduled_release_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'enable_search_service_azure_uri' => '?string', @@ -1094,6 +1097,8 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'convert_pdf_fields_metadata' => null, 'data_population_scope' => null, 'data_population_scope_metadata' => null, + 'default_signing_responsive_view' => null, + 'default_signing_responsive_view_metadata' => null, 'default_to_advanced_envelopes_filter_form' => null, 'default_to_advanced_envelopes_filter_form_metadata' => null, 'disable_auto_template_matching' => null, @@ -1132,6 +1137,7 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'draft_envelope_retention_metadata' => null, 'dss_enable_provisioning_pen_configuration_radmin_option' => null, 'dss_enable_signature_type_custom_tag_radmin_radmin_option' => null, + 'dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb' => null, 'dss_sign_28411_enable_leave_page_prompt_radmin_option' => null, 'dss_sign_29182_slide_up_bar_radmin_option' => null, 'email_template_version' => null, @@ -1140,6 +1146,8 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'enable_access_code_generator_metadata' => null, 'enable_account_wide_search' => null, 'enable_account_wide_search_metadata' => null, + 'enable_additional_advanced_web_forms_features' => null, + 'enable_additional_advanced_web_forms_features_metadata' => null, 'enable_adm_healthcare' => null, 'enable_adm_healthcare_metadata' => null, 'enable_advanced_envelopes_search' => null, @@ -1251,8 +1259,6 @@ class AccountSettingsInformation implements ModelInterface, ArrayAccess 'enable_reserved_domain_metadata' => null, 'enable_responsive_signing' => null, 'enable_responsive_signing_metadata' => null, - 'enable_save_as_envelope_custom_field_in_web_forms' => null, - 'enable_save_as_envelope_custom_field_in_web_forms_metadata' => null, 'enable_scheduled_release' => null, 'enable_scheduled_release_metadata' => null, 'enable_search_service_azure_uri' => null, @@ -1872,6 +1878,8 @@ public static function swaggerFormats() 'convert_pdf_fields_metadata' => 'convertPdfFieldsMetadata', 'data_population_scope' => 'dataPopulationScope', 'data_population_scope_metadata' => 'dataPopulationScopeMetadata', + 'default_signing_responsive_view' => 'defaultSigningResponsiveView', + 'default_signing_responsive_view_metadata' => 'defaultSigningResponsiveViewMetadata', 'default_to_advanced_envelopes_filter_form' => 'defaultToAdvancedEnvelopesFilterForm', 'default_to_advanced_envelopes_filter_form_metadata' => 'defaultToAdvancedEnvelopesFilterFormMetadata', 'disable_auto_template_matching' => 'disableAutoTemplateMatching', @@ -1910,6 +1918,7 @@ public static function swaggerFormats() 'draft_envelope_retention_metadata' => 'draftEnvelopeRetentionMetadata', 'dss_enable_provisioning_pen_configuration_radmin_option' => 'dss_EnableProvisioningPenConfiguration_RadminOption', 'dss_enable_signature_type_custom_tag_radmin_radmin_option' => 'dss_EnableSignatureTypeCustomTagRadmin_RadminOption', + 'dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb' => 'dss_SCOREFDN_196_Rebrand_DocuSignIsNotAVerb', 'dss_sign_28411_enable_leave_page_prompt_radmin_option' => 'dss_SIGN_28411_EnableLeavePagePrompt_RadminOption', 'dss_sign_29182_slide_up_bar_radmin_option' => 'dss_SIGN_29182_SlideUpBar_RadminOption', 'email_template_version' => 'emailTemplateVersion', @@ -1918,6 +1927,8 @@ public static function swaggerFormats() 'enable_access_code_generator_metadata' => 'enableAccessCodeGeneratorMetadata', 'enable_account_wide_search' => 'enableAccountWideSearch', 'enable_account_wide_search_metadata' => 'enableAccountWideSearchMetadata', + 'enable_additional_advanced_web_forms_features' => 'enableAdditionalAdvancedWebFormsFeatures', + 'enable_additional_advanced_web_forms_features_metadata' => 'enableAdditionalAdvancedWebFormsFeaturesMetadata', 'enable_adm_healthcare' => 'enableAdmHealthcare', 'enable_adm_healthcare_metadata' => 'enableAdmHealthcareMetadata', 'enable_advanced_envelopes_search' => 'enableAdvancedEnvelopesSearch', @@ -2029,8 +2040,6 @@ public static function swaggerFormats() 'enable_reserved_domain_metadata' => 'enableReservedDomainMetadata', 'enable_responsive_signing' => 'enableResponsiveSigning', 'enable_responsive_signing_metadata' => 'enableResponsiveSigningMetadata', - 'enable_save_as_envelope_custom_field_in_web_forms' => 'enableSaveAsEnvelopeCustomFieldInWebForms', - 'enable_save_as_envelope_custom_field_in_web_forms_metadata' => 'enableSaveAsEnvelopeCustomFieldInWebFormsMetadata', 'enable_scheduled_release' => 'enableScheduledRelease', 'enable_scheduled_release_metadata' => 'enableScheduledReleaseMetadata', 'enable_search_service_azure_uri' => 'enableSearchServiceAzureUri', @@ -2629,6 +2638,8 @@ public static function swaggerFormats() 'convert_pdf_fields_metadata' => 'setConvertPdfFieldsMetadata', 'data_population_scope' => 'setDataPopulationScope', 'data_population_scope_metadata' => 'setDataPopulationScopeMetadata', + 'default_signing_responsive_view' => 'setDefaultSigningResponsiveView', + 'default_signing_responsive_view_metadata' => 'setDefaultSigningResponsiveViewMetadata', 'default_to_advanced_envelopes_filter_form' => 'setDefaultToAdvancedEnvelopesFilterForm', 'default_to_advanced_envelopes_filter_form_metadata' => 'setDefaultToAdvancedEnvelopesFilterFormMetadata', 'disable_auto_template_matching' => 'setDisableAutoTemplateMatching', @@ -2667,6 +2678,7 @@ public static function swaggerFormats() 'draft_envelope_retention_metadata' => 'setDraftEnvelopeRetentionMetadata', 'dss_enable_provisioning_pen_configuration_radmin_option' => 'setDssEnableProvisioningPenConfigurationRadminOption', 'dss_enable_signature_type_custom_tag_radmin_radmin_option' => 'setDssEnableSignatureTypeCustomTagRadminRadminOption', + 'dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb' => 'setDssScorefdn196RebrandDocuSignIsNotAVerb', 'dss_sign_28411_enable_leave_page_prompt_radmin_option' => 'setDssSign28411EnableLeavePagePromptRadminOption', 'dss_sign_29182_slide_up_bar_radmin_option' => 'setDssSign29182SlideUpBarRadminOption', 'email_template_version' => 'setEmailTemplateVersion', @@ -2675,6 +2687,8 @@ public static function swaggerFormats() 'enable_access_code_generator_metadata' => 'setEnableAccessCodeGeneratorMetadata', 'enable_account_wide_search' => 'setEnableAccountWideSearch', 'enable_account_wide_search_metadata' => 'setEnableAccountWideSearchMetadata', + 'enable_additional_advanced_web_forms_features' => 'setEnableAdditionalAdvancedWebFormsFeatures', + 'enable_additional_advanced_web_forms_features_metadata' => 'setEnableAdditionalAdvancedWebFormsFeaturesMetadata', 'enable_adm_healthcare' => 'setEnableAdmHealthcare', 'enable_adm_healthcare_metadata' => 'setEnableAdmHealthcareMetadata', 'enable_advanced_envelopes_search' => 'setEnableAdvancedEnvelopesSearch', @@ -2786,8 +2800,6 @@ public static function swaggerFormats() 'enable_reserved_domain_metadata' => 'setEnableReservedDomainMetadata', 'enable_responsive_signing' => 'setEnableResponsiveSigning', 'enable_responsive_signing_metadata' => 'setEnableResponsiveSigningMetadata', - 'enable_save_as_envelope_custom_field_in_web_forms' => 'setEnableSaveAsEnvelopeCustomFieldInWebForms', - 'enable_save_as_envelope_custom_field_in_web_forms_metadata' => 'setEnableSaveAsEnvelopeCustomFieldInWebFormsMetadata', 'enable_scheduled_release' => 'setEnableScheduledRelease', 'enable_scheduled_release_metadata' => 'setEnableScheduledReleaseMetadata', 'enable_search_service_azure_uri' => 'setEnableSearchServiceAzureUri', @@ -3386,6 +3398,8 @@ public static function swaggerFormats() 'convert_pdf_fields_metadata' => 'getConvertPdfFieldsMetadata', 'data_population_scope' => 'getDataPopulationScope', 'data_population_scope_metadata' => 'getDataPopulationScopeMetadata', + 'default_signing_responsive_view' => 'getDefaultSigningResponsiveView', + 'default_signing_responsive_view_metadata' => 'getDefaultSigningResponsiveViewMetadata', 'default_to_advanced_envelopes_filter_form' => 'getDefaultToAdvancedEnvelopesFilterForm', 'default_to_advanced_envelopes_filter_form_metadata' => 'getDefaultToAdvancedEnvelopesFilterFormMetadata', 'disable_auto_template_matching' => 'getDisableAutoTemplateMatching', @@ -3424,6 +3438,7 @@ public static function swaggerFormats() 'draft_envelope_retention_metadata' => 'getDraftEnvelopeRetentionMetadata', 'dss_enable_provisioning_pen_configuration_radmin_option' => 'getDssEnableProvisioningPenConfigurationRadminOption', 'dss_enable_signature_type_custom_tag_radmin_radmin_option' => 'getDssEnableSignatureTypeCustomTagRadminRadminOption', + 'dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb' => 'getDssScorefdn196RebrandDocuSignIsNotAVerb', 'dss_sign_28411_enable_leave_page_prompt_radmin_option' => 'getDssSign28411EnableLeavePagePromptRadminOption', 'dss_sign_29182_slide_up_bar_radmin_option' => 'getDssSign29182SlideUpBarRadminOption', 'email_template_version' => 'getEmailTemplateVersion', @@ -3432,6 +3447,8 @@ public static function swaggerFormats() 'enable_access_code_generator_metadata' => 'getEnableAccessCodeGeneratorMetadata', 'enable_account_wide_search' => 'getEnableAccountWideSearch', 'enable_account_wide_search_metadata' => 'getEnableAccountWideSearchMetadata', + 'enable_additional_advanced_web_forms_features' => 'getEnableAdditionalAdvancedWebFormsFeatures', + 'enable_additional_advanced_web_forms_features_metadata' => 'getEnableAdditionalAdvancedWebFormsFeaturesMetadata', 'enable_adm_healthcare' => 'getEnableAdmHealthcare', 'enable_adm_healthcare_metadata' => 'getEnableAdmHealthcareMetadata', 'enable_advanced_envelopes_search' => 'getEnableAdvancedEnvelopesSearch', @@ -3543,8 +3560,6 @@ public static function swaggerFormats() 'enable_reserved_domain_metadata' => 'getEnableReservedDomainMetadata', 'enable_responsive_signing' => 'getEnableResponsiveSigning', 'enable_responsive_signing_metadata' => 'getEnableResponsiveSigningMetadata', - 'enable_save_as_envelope_custom_field_in_web_forms' => 'getEnableSaveAsEnvelopeCustomFieldInWebForms', - 'enable_save_as_envelope_custom_field_in_web_forms_metadata' => 'getEnableSaveAsEnvelopeCustomFieldInWebFormsMetadata', 'enable_scheduled_release' => 'getEnableScheduledRelease', 'enable_scheduled_release_metadata' => 'getEnableScheduledReleaseMetadata', 'enable_search_service_azure_uri' => 'getEnableSearchServiceAzureUri', @@ -4197,6 +4212,8 @@ public function __construct(array $data = null) $this->container['convert_pdf_fields_metadata'] = isset($data['convert_pdf_fields_metadata']) ? $data['convert_pdf_fields_metadata'] : null; $this->container['data_population_scope'] = isset($data['data_population_scope']) ? $data['data_population_scope'] : null; $this->container['data_population_scope_metadata'] = isset($data['data_population_scope_metadata']) ? $data['data_population_scope_metadata'] : null; + $this->container['default_signing_responsive_view'] = isset($data['default_signing_responsive_view']) ? $data['default_signing_responsive_view'] : null; + $this->container['default_signing_responsive_view_metadata'] = isset($data['default_signing_responsive_view_metadata']) ? $data['default_signing_responsive_view_metadata'] : null; $this->container['default_to_advanced_envelopes_filter_form'] = isset($data['default_to_advanced_envelopes_filter_form']) ? $data['default_to_advanced_envelopes_filter_form'] : null; $this->container['default_to_advanced_envelopes_filter_form_metadata'] = isset($data['default_to_advanced_envelopes_filter_form_metadata']) ? $data['default_to_advanced_envelopes_filter_form_metadata'] : null; $this->container['disable_auto_template_matching'] = isset($data['disable_auto_template_matching']) ? $data['disable_auto_template_matching'] : null; @@ -4235,6 +4252,7 @@ public function __construct(array $data = null) $this->container['draft_envelope_retention_metadata'] = isset($data['draft_envelope_retention_metadata']) ? $data['draft_envelope_retention_metadata'] : null; $this->container['dss_enable_provisioning_pen_configuration_radmin_option'] = isset($data['dss_enable_provisioning_pen_configuration_radmin_option']) ? $data['dss_enable_provisioning_pen_configuration_radmin_option'] : null; $this->container['dss_enable_signature_type_custom_tag_radmin_radmin_option'] = isset($data['dss_enable_signature_type_custom_tag_radmin_radmin_option']) ? $data['dss_enable_signature_type_custom_tag_radmin_radmin_option'] : null; + $this->container['dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb'] = isset($data['dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb']) ? $data['dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb'] : null; $this->container['dss_sign_28411_enable_leave_page_prompt_radmin_option'] = isset($data['dss_sign_28411_enable_leave_page_prompt_radmin_option']) ? $data['dss_sign_28411_enable_leave_page_prompt_radmin_option'] : null; $this->container['dss_sign_29182_slide_up_bar_radmin_option'] = isset($data['dss_sign_29182_slide_up_bar_radmin_option']) ? $data['dss_sign_29182_slide_up_bar_radmin_option'] : null; $this->container['email_template_version'] = isset($data['email_template_version']) ? $data['email_template_version'] : null; @@ -4243,6 +4261,8 @@ public function __construct(array $data = null) $this->container['enable_access_code_generator_metadata'] = isset($data['enable_access_code_generator_metadata']) ? $data['enable_access_code_generator_metadata'] : null; $this->container['enable_account_wide_search'] = isset($data['enable_account_wide_search']) ? $data['enable_account_wide_search'] : null; $this->container['enable_account_wide_search_metadata'] = isset($data['enable_account_wide_search_metadata']) ? $data['enable_account_wide_search_metadata'] : null; + $this->container['enable_additional_advanced_web_forms_features'] = isset($data['enable_additional_advanced_web_forms_features']) ? $data['enable_additional_advanced_web_forms_features'] : null; + $this->container['enable_additional_advanced_web_forms_features_metadata'] = isset($data['enable_additional_advanced_web_forms_features_metadata']) ? $data['enable_additional_advanced_web_forms_features_metadata'] : null; $this->container['enable_adm_healthcare'] = isset($data['enable_adm_healthcare']) ? $data['enable_adm_healthcare'] : null; $this->container['enable_adm_healthcare_metadata'] = isset($data['enable_adm_healthcare_metadata']) ? $data['enable_adm_healthcare_metadata'] : null; $this->container['enable_advanced_envelopes_search'] = isset($data['enable_advanced_envelopes_search']) ? $data['enable_advanced_envelopes_search'] : null; @@ -4354,8 +4374,6 @@ public function __construct(array $data = null) $this->container['enable_reserved_domain_metadata'] = isset($data['enable_reserved_domain_metadata']) ? $data['enable_reserved_domain_metadata'] : null; $this->container['enable_responsive_signing'] = isset($data['enable_responsive_signing']) ? $data['enable_responsive_signing'] : null; $this->container['enable_responsive_signing_metadata'] = isset($data['enable_responsive_signing_metadata']) ? $data['enable_responsive_signing_metadata'] : null; - $this->container['enable_save_as_envelope_custom_field_in_web_forms'] = isset($data['enable_save_as_envelope_custom_field_in_web_forms']) ? $data['enable_save_as_envelope_custom_field_in_web_forms'] : null; - $this->container['enable_save_as_envelope_custom_field_in_web_forms_metadata'] = isset($data['enable_save_as_envelope_custom_field_in_web_forms_metadata']) ? $data['enable_save_as_envelope_custom_field_in_web_forms_metadata'] : null; $this->container['enable_scheduled_release'] = isset($data['enable_scheduled_release']) ? $data['enable_scheduled_release'] : null; $this->container['enable_scheduled_release_metadata'] = isset($data['enable_scheduled_release_metadata']) ? $data['enable_scheduled_release_metadata'] : null; $this->container['enable_search_service_azure_uri'] = isset($data['enable_search_service_azure_uri']) ? $data['enable_search_service_azure_uri'] : null; @@ -11343,6 +11361,54 @@ public function setDataPopulationScopeMetadata($data_population_scope_metadata) return $this; } + /** + * Gets default_signing_responsive_view + * + * @return ?string + */ + public function getDefaultSigningResponsiveView() + { + return $this->container['default_signing_responsive_view']; + } + + /** + * Sets default_signing_responsive_view + * + * @param ?string $default_signing_responsive_view + * + * @return $this + */ + public function setDefaultSigningResponsiveView($default_signing_responsive_view) + { + $this->container['default_signing_responsive_view'] = $default_signing_responsive_view; + + return $this; + } + + /** + * Gets default_signing_responsive_view_metadata + * + * @return \DocuSign\eSign\Model\SettingsMetadata + */ + public function getDefaultSigningResponsiveViewMetadata() + { + return $this->container['default_signing_responsive_view_metadata']; + } + + /** + * Sets default_signing_responsive_view_metadata + * + * @param \DocuSign\eSign\Model\SettingsMetadata $default_signing_responsive_view_metadata + * + * @return $this + */ + public function setDefaultSigningResponsiveViewMetadata($default_signing_responsive_view_metadata) + { + $this->container['default_signing_responsive_view_metadata'] = $default_signing_responsive_view_metadata; + + return $this; + } + /** * Gets default_to_advanced_envelopes_filter_form * @@ -12255,6 +12321,30 @@ public function setDssEnableSignatureTypeCustomTagRadminRadminOption($dss_enable return $this; } + /** + * Gets dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb + * + * @return ?string + */ + public function getDssScorefdn196RebrandDocuSignIsNotAVerb() + { + return $this->container['dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb']; + } + + /** + * Sets dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb + * + * @param ?string $dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb + * + * @return $this + */ + public function setDssScorefdn196RebrandDocuSignIsNotAVerb($dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb) + { + $this->container['dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb'] = $dss_scorefdn_196_rebrand_docu_sign_is_not_a_verb; + + return $this; + } + /** * Gets dss_sign_28411_enable_leave_page_prompt_radmin_option * @@ -12447,6 +12537,54 @@ public function setEnableAccountWideSearchMetadata($enable_account_wide_search_m return $this; } + /** + * Gets enable_additional_advanced_web_forms_features + * + * @return ?string + */ + public function getEnableAdditionalAdvancedWebFormsFeatures() + { + return $this->container['enable_additional_advanced_web_forms_features']; + } + + /** + * Sets enable_additional_advanced_web_forms_features + * + * @param ?string $enable_additional_advanced_web_forms_features + * + * @return $this + */ + public function setEnableAdditionalAdvancedWebFormsFeatures($enable_additional_advanced_web_forms_features) + { + $this->container['enable_additional_advanced_web_forms_features'] = $enable_additional_advanced_web_forms_features; + + return $this; + } + + /** + * Gets enable_additional_advanced_web_forms_features_metadata + * + * @return \DocuSign\eSign\Model\SettingsMetadata + */ + public function getEnableAdditionalAdvancedWebFormsFeaturesMetadata() + { + return $this->container['enable_additional_advanced_web_forms_features_metadata']; + } + + /** + * Sets enable_additional_advanced_web_forms_features_metadata + * + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_additional_advanced_web_forms_features_metadata + * + * @return $this + */ + public function setEnableAdditionalAdvancedWebFormsFeaturesMetadata($enable_additional_advanced_web_forms_features_metadata) + { + $this->container['enable_additional_advanced_web_forms_features_metadata'] = $enable_additional_advanced_web_forms_features_metadata; + + return $this; + } + /** * Gets enable_adm_healthcare * @@ -15111,54 +15249,6 @@ public function setEnableResponsiveSigningMetadata($enable_responsive_signing_me return $this; } - /** - * Gets enable_save_as_envelope_custom_field_in_web_forms - * - * @return ?string - */ - public function getEnableSaveAsEnvelopeCustomFieldInWebForms() - { - return $this->container['enable_save_as_envelope_custom_field_in_web_forms']; - } - - /** - * Sets enable_save_as_envelope_custom_field_in_web_forms - * - * @param ?string $enable_save_as_envelope_custom_field_in_web_forms - * - * @return $this - */ - public function setEnableSaveAsEnvelopeCustomFieldInWebForms($enable_save_as_envelope_custom_field_in_web_forms) - { - $this->container['enable_save_as_envelope_custom_field_in_web_forms'] = $enable_save_as_envelope_custom_field_in_web_forms; - - return $this; - } - - /** - * Gets enable_save_as_envelope_custom_field_in_web_forms_metadata - * - * @return \DocuSign\eSign\Model\SettingsMetadata - */ - public function getEnableSaveAsEnvelopeCustomFieldInWebFormsMetadata() - { - return $this->container['enable_save_as_envelope_custom_field_in_web_forms_metadata']; - } - - /** - * Sets enable_save_as_envelope_custom_field_in_web_forms_metadata - * - * @param \DocuSign\eSign\Model\SettingsMetadata $enable_save_as_envelope_custom_field_in_web_forms_metadata - * - * @return $this - */ - public function setEnableSaveAsEnvelopeCustomFieldInWebFormsMetadata($enable_save_as_envelope_custom_field_in_web_forms_metadata) - { - $this->container['enable_save_as_envelope_custom_field_in_web_forms_metadata'] = $enable_save_as_envelope_custom_field_in_web_forms_metadata; - - return $this; - } - /** * Gets enable_scheduled_release * diff --git a/src/Model/AccountSharedAccess.php b/src/Model/AccountSharedAccess.php index 73a5a841..9b9b5564 100644 --- a/src/Model/AccountSharedAccess.php +++ b/src/Model/AccountSharedAccess.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignature.php b/src/Model/AccountSignature.php index 931286fc..22f682e5 100644 --- a/src/Model/AccountSignature.php +++ b/src/Model/AccountSignature.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignatureDefinition.php b/src/Model/AccountSignatureDefinition.php index 5b137948..bffc469d 100644 --- a/src/Model/AccountSignatureDefinition.php +++ b/src/Model/AccountSignatureDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignatureProvider.php b/src/Model/AccountSignatureProvider.php index 1ac0054c..b152126d 100644 --- a/src/Model/AccountSignatureProvider.php +++ b/src/Model/AccountSignatureProvider.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignatureProviderOption.php b/src/Model/AccountSignatureProviderOption.php index a7e5107a..d7abef0c 100644 --- a/src/Model/AccountSignatureProviderOption.php +++ b/src/Model/AccountSignatureProviderOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignatureProviders.php b/src/Model/AccountSignatureProviders.php index 72ce60de..ab7e9ad5 100644 --- a/src/Model/AccountSignatureProviders.php +++ b/src/Model/AccountSignatureProviders.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountSignaturesInformation.php b/src/Model/AccountSignaturesInformation.php index fb6454c2..ea40f4a1 100644 --- a/src/Model/AccountSignaturesInformation.php +++ b/src/Model/AccountSignaturesInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AccountUISettings.php b/src/Model/AccountUISettings.php index 7f8d49a6..89ec215d 100644 --- a/src/Model/AccountUISettings.php +++ b/src/Model/AccountUISettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AddOn.php b/src/Model/AddOn.php index ddd38d38..f829512e 100644 --- a/src/Model/AddOn.php +++ b/src/Model/AddOn.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AddressInformation.php b/src/Model/AddressInformation.php index ff8f09bb..652e78f7 100644 --- a/src/Model/AddressInformation.php +++ b/src/Model/AddressInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AddressInformationInput.php b/src/Model/AddressInformationInput.php index f10c338e..478d1257 100644 --- a/src/Model/AddressInformationInput.php +++ b/src/Model/AddressInformationInput.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AdminMessage.php b/src/Model/AdminMessage.php index 294a571a..b266b768 100644 --- a/src/Model/AdminMessage.php +++ b/src/Model/AdminMessage.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Agent.php b/src/Model/Agent.php index d3a5b194..49c9ce86 100644 --- a/src/Model/Agent.php +++ b/src/Model/Agent.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ApiRequestLog.php b/src/Model/ApiRequestLog.php index 06d2fbb3..cedf2eb7 100644 --- a/src/Model/ApiRequestLog.php +++ b/src/Model/ApiRequestLog.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ApiRequestLogsResult.php b/src/Model/ApiRequestLogsResult.php index 416e82ab..91cff452 100644 --- a/src/Model/ApiRequestLogsResult.php +++ b/src/Model/ApiRequestLogsResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AppStoreProduct.php b/src/Model/AppStoreProduct.php index 4fd4f363..4617a165 100644 --- a/src/Model/AppStoreProduct.php +++ b/src/Model/AppStoreProduct.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AppStoreReceipt.php b/src/Model/AppStoreReceipt.php index b55130ef..6f375f09 100644 --- a/src/Model/AppStoreReceipt.php +++ b/src/Model/AppStoreReceipt.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Approve.php b/src/Model/Approve.php index 1599e4ae..f604bdd6 100644 --- a/src/Model/Approve.php +++ b/src/Model/Approve.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AskAnAdmin.php b/src/Model/AskAnAdmin.php index a962b53d..ea5de842 100644 --- a/src/Model/AskAnAdmin.php +++ b/src/Model/AskAnAdmin.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Attachment.php b/src/Model/Attachment.php index 99b7a0d8..b541f2f5 100644 --- a/src/Model/Attachment.php +++ b/src/Model/Attachment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AuthenticationMethod.php b/src/Model/AuthenticationMethod.php index 66a671ab..42725acc 100644 --- a/src/Model/AuthenticationMethod.php +++ b/src/Model/AuthenticationMethod.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AuthenticationStatus.php b/src/Model/AuthenticationStatus.php index 365170dd..a3b009b5 100644 --- a/src/Model/AuthenticationStatus.php +++ b/src/Model/AuthenticationStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/AuthorizationUser.php b/src/Model/AuthorizationUser.php index b35aff02..6a9a5b1f 100644 --- a/src/Model/AuthorizationUser.php +++ b/src/Model/AuthorizationUser.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BccEmailAddress.php b/src/Model/BccEmailAddress.php index be5e183e..80b1384c 100644 --- a/src/Model/BccEmailAddress.php +++ b/src/Model/BccEmailAddress.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BccEmailArchive.php b/src/Model/BccEmailArchive.php index e8d4a5ca..87197b05 100644 --- a/src/Model/BccEmailArchive.php +++ b/src/Model/BccEmailArchive.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BccEmailArchiveHistory.php b/src/Model/BccEmailArchiveHistory.php index 791c36c1..2ad37b13 100644 --- a/src/Model/BccEmailArchiveHistory.php +++ b/src/Model/BccEmailArchiveHistory.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BccEmailArchiveHistoryList.php b/src/Model/BccEmailArchiveHistoryList.php index 78b9766e..84e0fc86 100644 --- a/src/Model/BccEmailArchiveHistoryList.php +++ b/src/Model/BccEmailArchiveHistoryList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BccEmailArchiveList.php b/src/Model/BccEmailArchiveList.php index 41fb2540..d9804e92 100644 --- a/src/Model/BccEmailArchiveList.php +++ b/src/Model/BccEmailArchiveList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingCharge.php b/src/Model/BillingCharge.php index 1c1b886c..ae83e50a 100644 --- a/src/Model/BillingCharge.php +++ b/src/Model/BillingCharge.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingChargeResponse.php b/src/Model/BillingChargeResponse.php index af43e506..c13be49a 100644 --- a/src/Model/BillingChargeResponse.php +++ b/src/Model/BillingChargeResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingDiscount.php b/src/Model/BillingDiscount.php index d471054c..811b7067 100644 --- a/src/Model/BillingDiscount.php +++ b/src/Model/BillingDiscount.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingEntityInformationResponse.php b/src/Model/BillingEntityInformationResponse.php index 501e86dc..60bc6653 100644 --- a/src/Model/BillingEntityInformationResponse.php +++ b/src/Model/BillingEntityInformationResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingInvoice.php b/src/Model/BillingInvoice.php index 3d677993..fd54095f 100644 --- a/src/Model/BillingInvoice.php +++ b/src/Model/BillingInvoice.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingInvoiceItem.php b/src/Model/BillingInvoiceItem.php index 9414458d..bbe7cd09 100644 --- a/src/Model/BillingInvoiceItem.php +++ b/src/Model/BillingInvoiceItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingInvoicesResponse.php b/src/Model/BillingInvoicesResponse.php index 7f681a6f..87cfdf5a 100644 --- a/src/Model/BillingInvoicesResponse.php +++ b/src/Model/BillingInvoicesResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingInvoicesSummary.php b/src/Model/BillingInvoicesSummary.php index 9aa7a7f2..aefd6213 100644 --- a/src/Model/BillingInvoicesSummary.php +++ b/src/Model/BillingInvoicesSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPayment.php b/src/Model/BillingPayment.php index 4ab3e9ee..af8b5e1d 100644 --- a/src/Model/BillingPayment.php +++ b/src/Model/BillingPayment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPaymentItem.php b/src/Model/BillingPaymentItem.php index e81bf184..2aa83b3f 100644 --- a/src/Model/BillingPaymentItem.php +++ b/src/Model/BillingPaymentItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPaymentRequest.php b/src/Model/BillingPaymentRequest.php index 6127c5e5..c1a6a38c 100644 --- a/src/Model/BillingPaymentRequest.php +++ b/src/Model/BillingPaymentRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPaymentResponse.php b/src/Model/BillingPaymentResponse.php index ef22d617..b6781b6b 100644 --- a/src/Model/BillingPaymentResponse.php +++ b/src/Model/BillingPaymentResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPaymentsResponse.php b/src/Model/BillingPaymentsResponse.php index e763b62f..6c8b256b 100644 --- a/src/Model/BillingPaymentsResponse.php +++ b/src/Model/BillingPaymentsResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlan.php b/src/Model/BillingPlan.php index d846271c..f0b3c6c9 100644 --- a/src/Model/BillingPlan.php +++ b/src/Model/BillingPlan.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlanInformation.php b/src/Model/BillingPlanInformation.php index d7627140..ec3d1530 100644 --- a/src/Model/BillingPlanInformation.php +++ b/src/Model/BillingPlanInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlanPreview.php b/src/Model/BillingPlanPreview.php index 1bcaafc5..364f4749 100644 --- a/src/Model/BillingPlanPreview.php +++ b/src/Model/BillingPlanPreview.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlanResponse.php b/src/Model/BillingPlanResponse.php index 53712941..399b2b7c 100644 --- a/src/Model/BillingPlanResponse.php +++ b/src/Model/BillingPlanResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlanUpdateResponse.php b/src/Model/BillingPlanUpdateResponse.php index 4eef9ac3..59cd2085 100644 --- a/src/Model/BillingPlanUpdateResponse.php +++ b/src/Model/BillingPlanUpdateResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPlansResponse.php b/src/Model/BillingPlansResponse.php index 2b167aeb..e7538444 100644 --- a/src/Model/BillingPlansResponse.php +++ b/src/Model/BillingPlansResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BillingPrice.php b/src/Model/BillingPrice.php index 0a2de3a4..c09309cc 100644 --- a/src/Model/BillingPrice.php +++ b/src/Model/BillingPrice.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Brand.php b/src/Model/Brand.php index ebd7c422..5580da3d 100644 --- a/src/Model/Brand.php +++ b/src/Model/Brand.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandEmailContent.php b/src/Model/BrandEmailContent.php index 1d5fbf14..8e5d48aa 100644 --- a/src/Model/BrandEmailContent.php +++ b/src/Model/BrandEmailContent.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandLink.php b/src/Model/BrandLink.php index d05ce8a3..d4018106 100644 --- a/src/Model/BrandLink.php +++ b/src/Model/BrandLink.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandLogos.php b/src/Model/BrandLogos.php index 9a37c33c..3e27ab2e 100644 --- a/src/Model/BrandLogos.php +++ b/src/Model/BrandLogos.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandRequest.php b/src/Model/BrandRequest.php index 5034f19f..39da5f15 100644 --- a/src/Model/BrandRequest.php +++ b/src/Model/BrandRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandResourceUrls.php b/src/Model/BrandResourceUrls.php index 27efdc3b..57697079 100644 --- a/src/Model/BrandResourceUrls.php +++ b/src/Model/BrandResourceUrls.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandResources.php b/src/Model/BrandResources.php index 130d8acc..4fa5b658 100644 --- a/src/Model/BrandResources.php +++ b/src/Model/BrandResources.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandResourcesList.php b/src/Model/BrandResourcesList.php index d7b9d4db..2d929684 100644 --- a/src/Model/BrandResourcesList.php +++ b/src/Model/BrandResourcesList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandsRequest.php b/src/Model/BrandsRequest.php index 268660e4..f5b6bca7 100644 --- a/src/Model/BrandsRequest.php +++ b/src/Model/BrandsRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BrandsResponse.php b/src/Model/BrandsResponse.php index 63ec993e..5361624d 100644 --- a/src/Model/BrandsResponse.php +++ b/src/Model/BrandsResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkEnvelope.php b/src/Model/BulkEnvelope.php index 903186c8..2704848a 100644 --- a/src/Model/BulkEnvelope.php +++ b/src/Model/BulkEnvelope.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkEnvelopeStatus.php b/src/Model/BulkEnvelopeStatus.php index d55f130a..96e8fd58 100644 --- a/src/Model/BulkEnvelopeStatus.php +++ b/src/Model/BulkEnvelopeStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessRequest.php b/src/Model/BulkProcessRequest.php index d9a1bda1..ced6c2ed 100644 --- a/src/Model/BulkProcessRequest.php +++ b/src/Model/BulkProcessRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessResponse.php b/src/Model/BulkProcessResponse.php index 4ee240f7..9fbaa892 100644 --- a/src/Model/BulkProcessResponse.php +++ b/src/Model/BulkProcessResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessResult.php b/src/Model/BulkProcessResult.php index 404d2641..1480b004 100644 --- a/src/Model/BulkProcessResult.php +++ b/src/Model/BulkProcessResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessingListSummaries.php b/src/Model/BulkProcessingListSummaries.php index e0acfd25..2716e083 100644 --- a/src/Model/BulkProcessingListSummaries.php +++ b/src/Model/BulkProcessingListSummaries.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessingListSummary.php b/src/Model/BulkProcessingListSummary.php index 5d9c2703..a7440146 100644 --- a/src/Model/BulkProcessingListSummary.php +++ b/src/Model/BulkProcessingListSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkProcessingLists.php b/src/Model/BulkProcessingLists.php index d808f25d..a9151970 100644 --- a/src/Model/BulkProcessingLists.php +++ b/src/Model/BulkProcessingLists.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchActionRequest.php b/src/Model/BulkSendBatchActionRequest.php index db4c30b8..4504deb4 100644 --- a/src/Model/BulkSendBatchActionRequest.php +++ b/src/Model/BulkSendBatchActionRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchError.php b/src/Model/BulkSendBatchError.php index 5d1eb205..9d0324ee 100644 --- a/src/Model/BulkSendBatchError.php +++ b/src/Model/BulkSendBatchError.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchRequest.php b/src/Model/BulkSendBatchRequest.php index d68d9aa0..b82b2521 100644 --- a/src/Model/BulkSendBatchRequest.php +++ b/src/Model/BulkSendBatchRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchStatus.php b/src/Model/BulkSendBatchStatus.php index 41a98aa8..c0b5bff8 100644 --- a/src/Model/BulkSendBatchStatus.php +++ b/src/Model/BulkSendBatchStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchSummaries.php b/src/Model/BulkSendBatchSummaries.php index d1f3593f..57b142bf 100644 --- a/src/Model/BulkSendBatchSummaries.php +++ b/src/Model/BulkSendBatchSummaries.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendBatchSummary.php b/src/Model/BulkSendBatchSummary.php index 4301dfb6..c89b7c76 100644 --- a/src/Model/BulkSendBatchSummary.php +++ b/src/Model/BulkSendBatchSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendEnvelopesInfo.php b/src/Model/BulkSendEnvelopesInfo.php index 22d47fc4..a67b1036 100644 --- a/src/Model/BulkSendEnvelopesInfo.php +++ b/src/Model/BulkSendEnvelopesInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendErrorStatus.php b/src/Model/BulkSendErrorStatus.php index 9371c41a..80d81054 100644 --- a/src/Model/BulkSendErrorStatus.php +++ b/src/Model/BulkSendErrorStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendRequest.php b/src/Model/BulkSendRequest.php index e00e2e1d..6e04fbfb 100644 --- a/src/Model/BulkSendRequest.php +++ b/src/Model/BulkSendRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendResponse.php b/src/Model/BulkSendResponse.php index c2aabbed..fb52d947 100644 --- a/src/Model/BulkSendResponse.php +++ b/src/Model/BulkSendResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendTestResponse.php b/src/Model/BulkSendTestResponse.php index 5af4583f..b37b18c4 100644 --- a/src/Model/BulkSendTestResponse.php +++ b/src/Model/BulkSendTestResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingCopy.php b/src/Model/BulkSendingCopy.php index 3f4174ca..0ca7291e 100644 --- a/src/Model/BulkSendingCopy.php +++ b/src/Model/BulkSendingCopy.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingCopyCustomField.php b/src/Model/BulkSendingCopyCustomField.php index c19e33d8..b05ba5de 100644 --- a/src/Model/BulkSendingCopyCustomField.php +++ b/src/Model/BulkSendingCopyCustomField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php b/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php new file mode 100644 index 00000000..d504a521 --- /dev/null +++ b/src/Model/BulkSendingCopyDocGenFormFieldRowValue.php @@ -0,0 +1,306 @@ + + * @license The DocuSign PHP Client SDK is licensed under the MIT License. + * @link https://github.com/swagger-api/swagger-codegen + */ + +/** + * Docusign eSignature REST API + * + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. + * + * OpenAPI spec version: v2.1 + * Contact: devcenter@docusign.com + * Generated by: https://github.com/swagger-api/swagger-codegen.git + * Swagger Codegen version: 2.4.21 + */ + +/** + * NOTE: This class is auto generated by the swagger code generator program. + * https://github.com/swagger-api/swagger-codegen + * Do not edit the class manually. + */ + +namespace DocuSign\eSign\Model; + +use \ArrayAccess; +use DocuSign\eSign\ObjectSerializer; + +/** + * BulkSendingCopyDocGenFormFieldRowValue Class Doc Comment + * + * @category Class + * @package DocuSign\eSign + * @author Swagger Codegen team + * @license The DocuSign PHP Client SDK is licensed under the MIT License. + * @link https://github.com/swagger-api/swagger-codegen + */ +class BulkSendingCopyDocGenFormFieldRowValue implements ModelInterface, ArrayAccess +{ + const DISCRIMINATOR = null; + + /** + * The original name of the model. + * + * @var string + */ + protected static $swaggerModelName = 'bulkSendingCopyDocGenFormFieldRowValue'; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $swaggerTypes = [ + 'doc_gen_form_field_list' => '\DocuSign\eSign\Model\BulksendingCopyDocGenFormField[]' + ]; + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @var string[] + */ + protected static $swaggerFormats = [ + 'doc_gen_form_field_list' => null + ]; + + /** + * Array of property to type mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerTypes() + { + return self::$swaggerTypes; + } + + /** + * Array of property to format mappings. Used for (de)serialization + * + * @return array + */ + public static function swaggerFormats() + { + return self::$swaggerFormats; + } + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @var string[] + */ + protected static $attributeMap = [ + 'doc_gen_form_field_list' => 'docGenFormFieldList' + ]; + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @var string[] + */ + protected static $setters = [ + 'doc_gen_form_field_list' => 'setDocGenFormFieldList' + ]; + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @var string[] + */ + protected static $getters = [ + 'doc_gen_form_field_list' => 'getDocGenFormFieldList' + ]; + + /** + * Array of attributes where the key is the local name, + * and the value is the original name + * + * @return array + */ + public static function attributeMap() + { + return self::$attributeMap; + } + + /** + * Array of attributes to setter functions (for deserialization of responses) + * + * @return array + */ + public static function setters() + { + return self::$setters; + } + + /** + * Array of attributes to getter functions (for serialization of requests) + * + * @return array + */ + public static function getters() + { + return self::$getters; + } + + /** + * The original name of the model. + * + * @return string + */ + public function getModelName() + { + return self::$swaggerModelName; + } + + + + + + /** + * Associative array for storing property values + * + * @var mixed[] + */ + protected $container = []; + + /** + * Constructor + * + * @param mixed[] $data Associated array of property values + * initializing the model + */ + public function __construct(array $data = null) + { + $this->container['doc_gen_form_field_list'] = isset($data['doc_gen_form_field_list']) ? $data['doc_gen_form_field_list'] : null; + } + + /** + * Show all the invalid properties with reasons. + * + * @return array invalid properties with reasons + */ + public function listInvalidProperties() + { + $invalidProperties = []; + + return $invalidProperties; + } + + /** + * Validate all the properties in the model + * return true if all passed + * + * @return bool True if all properties are valid + */ + public function valid() + { + return count($this->listInvalidProperties()) === 0; + } + + + /** + * Gets doc_gen_form_field_list + * + * @return \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] + */ + public function getDocGenFormFieldList() + { + return $this->container['doc_gen_form_field_list']; + } + + /** + * Sets doc_gen_form_field_list + * + * @param \DocuSign\eSign\Model\BulksendingCopyDocGenFormField[] $doc_gen_form_field_list + * + * @return $this + */ + public function setDocGenFormFieldList($doc_gen_form_field_list) + { + $this->container['doc_gen_form_field_list'] = $doc_gen_form_field_list; + + return $this; + } + /** + * Returns true if offset exists. False otherwise. + * + * @param integer $offset Offset + * + * @return boolean + */ + #[\ReturnTypeWillChange] + public function offsetExists($offset) + { + return isset($this->container[$offset]); + } + + /** + * Gets offset. + * + * @param integer $offset Offset + * + * @return mixed + */ + #[\ReturnTypeWillChange] + public function offsetGet($offset) + { + return isset($this->container[$offset]) ? $this->container[$offset] : null; + } + + /** + * Sets value based on offset. + * + * @param integer $offset Offset + * @param mixed $value Value to be set + * + * @return void + */ + #[\ReturnTypeWillChange] + public function offsetSet($offset, $value) + { + if (is_null($offset)) { + $this->container[] = $value; + } else { + $this->container[$offset] = $value; + } + } + + /** + * Unsets offset. + * + * @param integer $offset Offset + * + * @return void + */ + #[\ReturnTypeWillChange] + public function offsetUnset($offset) + { + unset($this->container[$offset]); + } + + /** + * Gets the string presentation of the object + * + * @return string + */ + public function __toString() + { + if (defined('JSON_PRETTY_PRINT')) { // use JSON pretty print + return json_encode( + ObjectSerializer::sanitizeForSerialization($this), + JSON_PRETTY_PRINT + ); + } + + return json_encode(ObjectSerializer::sanitizeForSerialization($this)); + } +} + diff --git a/src/Model/BulkSendingCopyRecipient.php b/src/Model/BulkSendingCopyRecipient.php index d9ee6153..6e2e7f15 100644 --- a/src/Model/BulkSendingCopyRecipient.php +++ b/src/Model/BulkSendingCopyRecipient.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingCopyTab.php b/src/Model/BulkSendingCopyTab.php index a82b21c0..b55893f0 100644 --- a/src/Model/BulkSendingCopyTab.php +++ b/src/Model/BulkSendingCopyTab.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingList.php b/src/Model/BulkSendingList.php index 7722134b..55114558 100644 --- a/src/Model/BulkSendingList.php +++ b/src/Model/BulkSendingList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingListSummaries.php b/src/Model/BulkSendingListSummaries.php index da526fec..aa48f070 100644 --- a/src/Model/BulkSendingListSummaries.php +++ b/src/Model/BulkSendingListSummaries.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulkSendingListSummary.php b/src/Model/BulkSendingListSummary.php index e809a0cb..2168c77f 100644 --- a/src/Model/BulkSendingListSummary.php +++ b/src/Model/BulkSendingListSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/BulksendingCopyDocGenFormField.php b/src/Model/BulksendingCopyDocGenFormField.php index 38a64476..aca15c67 100644 --- a/src/Model/BulksendingCopyDocGenFormField.php +++ b/src/Model/BulksendingCopyDocGenFormField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -60,6 +60,7 @@ class BulksendingCopyDocGenFormField implements ModelInterface, ArrayAccess */ protected static $swaggerTypes = [ 'name' => '?string', + 'row_values' => '\DocuSign\eSign\Model\BulkSendingCopyDocGenFormFieldRowValue[]', 'value' => '?string' ]; @@ -70,6 +71,7 @@ class BulksendingCopyDocGenFormField implements ModelInterface, ArrayAccess */ protected static $swaggerFormats = [ 'name' => null, + 'row_values' => null, 'value' => null ]; @@ -101,6 +103,7 @@ public static function swaggerFormats() */ protected static $attributeMap = [ 'name' => 'name', + 'row_values' => 'rowValues', 'value' => 'value' ]; @@ -111,6 +114,7 @@ public static function swaggerFormats() */ protected static $setters = [ 'name' => 'setName', + 'row_values' => 'setRowValues', 'value' => 'setValue' ]; @@ -121,6 +125,7 @@ public static function swaggerFormats() */ protected static $getters = [ 'name' => 'getName', + 'row_values' => 'getRowValues', 'value' => 'getValue' ]; @@ -185,6 +190,7 @@ public function getModelName() public function __construct(array $data = null) { $this->container['name'] = isset($data['name']) ? $data['name'] : null; + $this->container['row_values'] = isset($data['row_values']) ? $data['row_values'] : null; $this->container['value'] = isset($data['value']) ? $data['value'] : null; } @@ -236,6 +242,30 @@ public function setName($name) return $this; } + /** + * Gets row_values + * + * @return \DocuSign\eSign\Model\BulkSendingCopyDocGenFormFieldRowValue[] + */ + public function getRowValues() + { + return $this->container['row_values']; + } + + /** + * Sets row_values + * + * @param \DocuSign\eSign\Model\BulkSendingCopyDocGenFormFieldRowValue[] $row_values + * + * @return $this + */ + public function setRowValues($row_values) + { + $this->container['row_values'] = $row_values; + + return $this; + } + /** * Gets value * diff --git a/src/Model/CaptiveRecipient.php b/src/Model/CaptiveRecipient.php index 90c79187..17a3f54d 100644 --- a/src/Model/CaptiveRecipient.php +++ b/src/Model/CaptiveRecipient.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CaptiveRecipientInformation.php b/src/Model/CaptiveRecipientInformation.php index 3bfefa06..95de87b4 100644 --- a/src/Model/CaptiveRecipientInformation.php +++ b/src/Model/CaptiveRecipientInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CarbonCopy.php b/src/Model/CarbonCopy.php index c1e5927a..73b9e760 100644 --- a/src/Model/CarbonCopy.php +++ b/src/Model/CarbonCopy.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CertifiedDelivery.php b/src/Model/CertifiedDelivery.php index d76af57a..d786306d 100644 --- a/src/Model/CertifiedDelivery.php +++ b/src/Model/CertifiedDelivery.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Checkbox.php b/src/Model/Checkbox.php index 9be4b125..a6c010f3 100644 --- a/src/Model/Checkbox.php +++ b/src/Model/Checkbox.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ChunkedUploadPart.php b/src/Model/ChunkedUploadPart.php index 70a2f7ef..30e8f2f4 100644 --- a/src/Model/ChunkedUploadPart.php +++ b/src/Model/ChunkedUploadPart.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ChunkedUploadRequest.php b/src/Model/ChunkedUploadRequest.php index d2f1d4e7..2e68621b 100644 --- a/src/Model/ChunkedUploadRequest.php +++ b/src/Model/ChunkedUploadRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ChunkedUploadResponse.php b/src/Model/ChunkedUploadResponse.php index 30086da0..3839fb56 100644 --- a/src/Model/ChunkedUploadResponse.php +++ b/src/Model/ChunkedUploadResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CloudStorageProvider.php b/src/Model/CloudStorageProvider.php index be85a188..31b0b29b 100644 --- a/src/Model/CloudStorageProvider.php +++ b/src/Model/CloudStorageProvider.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CloudStorageProviders.php b/src/Model/CloudStorageProviders.php index da843b91..ea067519 100644 --- a/src/Model/CloudStorageProviders.php +++ b/src/Model/CloudStorageProviders.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Comment.php b/src/Model/Comment.php index 5496ef2b..ea7ff11b 100644 --- a/src/Model/Comment.php +++ b/src/Model/Comment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommentHistoryResult.php b/src/Model/CommentHistoryResult.php index 86d1e2f8..b8c91006 100644 --- a/src/Model/CommentHistoryResult.php +++ b/src/Model/CommentHistoryResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommentPublish.php b/src/Model/CommentPublish.php index 867dae3e..b52e6407 100644 --- a/src/Model/CommentPublish.php +++ b/src/Model/CommentPublish.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommentThread.php b/src/Model/CommentThread.php index 3dc379b0..d24a17e9 100644 --- a/src/Model/CommentThread.php +++ b/src/Model/CommentThread.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommentsPublish.php b/src/Model/CommentsPublish.php index c460f118..6ff62c97 100644 --- a/src/Model/CommentsPublish.php +++ b/src/Model/CommentsPublish.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommissionCounty.php b/src/Model/CommissionCounty.php index 7143f7b2..0b47dbfd 100644 --- a/src/Model/CommissionCounty.php +++ b/src/Model/CommissionCounty.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommissionExpiration.php b/src/Model/CommissionExpiration.php index 2ca60c81..f03cef9b 100644 --- a/src/Model/CommissionExpiration.php +++ b/src/Model/CommissionExpiration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommissionNumber.php b/src/Model/CommissionNumber.php index 3f7803ed..ee8d0dd8 100644 --- a/src/Model/CommissionNumber.php +++ b/src/Model/CommissionNumber.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CommissionState.php b/src/Model/CommissionState.php index 836f5caa..a676cd46 100644 --- a/src/Model/CommissionState.php +++ b/src/Model/CommissionState.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Company.php b/src/Model/Company.php index 138f228a..8a340457 100644 --- a/src/Model/Company.php +++ b/src/Model/Company.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CompositeTemplate.php b/src/Model/CompositeTemplate.php index f6d8a12c..d5f6600e 100644 --- a/src/Model/CompositeTemplate.php +++ b/src/Model/CompositeTemplate.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConditionalRecipientRule.php b/src/Model/ConditionalRecipientRule.php index 077a7ba6..db2725f1 100644 --- a/src/Model/ConditionalRecipientRule.php +++ b/src/Model/ConditionalRecipientRule.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConditionalRecipientRuleCondition.php b/src/Model/ConditionalRecipientRuleCondition.php index 6a3b24d8..43d97c3e 100644 --- a/src/Model/ConditionalRecipientRuleCondition.php +++ b/src/Model/ConditionalRecipientRuleCondition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConditionalRecipientRuleFilter.php b/src/Model/ConditionalRecipientRuleFilter.php index f314fbf9..1e07b3b1 100644 --- a/src/Model/ConditionalRecipientRuleFilter.php +++ b/src/Model/ConditionalRecipientRuleFilter.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectConfigResults.php b/src/Model/ConnectConfigResults.php index 5b83b409..7249369f 100644 --- a/src/Model/ConnectConfigResults.php +++ b/src/Model/ConnectConfigResults.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectCustomConfiguration.php b/src/Model/ConnectCustomConfiguration.php index 0097a949..e42acabe 100644 --- a/src/Model/ConnectCustomConfiguration.php +++ b/src/Model/ConnectCustomConfiguration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectDebugLog.php b/src/Model/ConnectDebugLog.php index a09addda..6da4f6de 100644 --- a/src/Model/ConnectDebugLog.php +++ b/src/Model/ConnectDebugLog.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectDeleteFailureResult.php b/src/Model/ConnectDeleteFailureResult.php index 64f8c2f9..c1509ce2 100644 --- a/src/Model/ConnectDeleteFailureResult.php +++ b/src/Model/ConnectDeleteFailureResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectEventData.php b/src/Model/ConnectEventData.php index 807acd06..4ced25af 100644 --- a/src/Model/ConnectEventData.php +++ b/src/Model/ConnectEventData.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectFailureFilter.php b/src/Model/ConnectFailureFilter.php index 9cbc5bef..5b4efc3a 100644 --- a/src/Model/ConnectFailureFilter.php +++ b/src/Model/ConnectFailureFilter.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectFailureResult.php b/src/Model/ConnectFailureResult.php index db241021..f6ad2090 100644 --- a/src/Model/ConnectFailureResult.php +++ b/src/Model/ConnectFailureResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectFailureResults.php b/src/Model/ConnectFailureResults.php index f913f53f..6f91465d 100644 --- a/src/Model/ConnectFailureResults.php +++ b/src/Model/ConnectFailureResults.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectHistoricalEnvelopeRepublish.php b/src/Model/ConnectHistoricalEnvelopeRepublish.php index 3dbcb9f6..e8ad2704 100644 --- a/src/Model/ConnectHistoricalEnvelopeRepublish.php +++ b/src/Model/ConnectHistoricalEnvelopeRepublish.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectLog.php b/src/Model/ConnectLog.php index 192e8278..9e651a62 100644 --- a/src/Model/ConnectLog.php +++ b/src/Model/ConnectLog.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectLogs.php b/src/Model/ConnectLogs.php index 57d07fb5..2e02a10f 100644 --- a/src/Model/ConnectLogs.php +++ b/src/Model/ConnectLogs.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectOAuthConfig.php b/src/Model/ConnectOAuthConfig.php index 38b4fd55..8d572c36 100644 --- a/src/Model/ConnectOAuthConfig.php +++ b/src/Model/ConnectOAuthConfig.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectSalesforceField.php b/src/Model/ConnectSalesforceField.php index 1a81821a..e69eabe9 100644 --- a/src/Model/ConnectSalesforceField.php +++ b/src/Model/ConnectSalesforceField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectSalesforceObject.php b/src/Model/ConnectSalesforceObject.php index 1406a3d8..84e282c2 100644 --- a/src/Model/ConnectSalesforceObject.php +++ b/src/Model/ConnectSalesforceObject.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectUserInfo.php b/src/Model/ConnectUserInfo.php index 546d4d5b..83a413d1 100644 --- a/src/Model/ConnectUserInfo.php +++ b/src/Model/ConnectUserInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConnectUserObject.php b/src/Model/ConnectUserObject.php index 04af8bd6..694bbadc 100644 --- a/src/Model/ConnectUserObject.php +++ b/src/Model/ConnectUserObject.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConsentDetails.php b/src/Model/ConsentDetails.php index 2e10e64f..dc4ad4e7 100644 --- a/src/Model/ConsentDetails.php +++ b/src/Model/ConsentDetails.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConsoleViewRequest.php b/src/Model/ConsoleViewRequest.php index 7485e3cd..d13182b4 100644 --- a/src/Model/ConsoleViewRequest.php +++ b/src/Model/ConsoleViewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ConsumerDisclosure.php b/src/Model/ConsumerDisclosure.php index 0bb6da68..00c5ead9 100644 --- a/src/Model/ConsumerDisclosure.php +++ b/src/Model/ConsumerDisclosure.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Contact.php b/src/Model/Contact.php index 9d358343..eeb59a2e 100644 --- a/src/Model/Contact.php +++ b/src/Model/Contact.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ContactGetResponse.php b/src/Model/ContactGetResponse.php index 94f51585..9fed8dd5 100644 --- a/src/Model/ContactGetResponse.php +++ b/src/Model/ContactGetResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ContactModRequest.php b/src/Model/ContactModRequest.php index 9fa93118..070d6887 100644 --- a/src/Model/ContactModRequest.php +++ b/src/Model/ContactModRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ContactPhoneNumber.php b/src/Model/ContactPhoneNumber.php index 5a103024..872b8f93 100644 --- a/src/Model/ContactPhoneNumber.php +++ b/src/Model/ContactPhoneNumber.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ContactUpdateResponse.php b/src/Model/ContactUpdateResponse.php index b6b89b0e..52786559 100644 --- a/src/Model/ContactUpdateResponse.php +++ b/src/Model/ContactUpdateResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CorrectViewRequest.php b/src/Model/CorrectViewRequest.php index 2df1193a..53a54b4a 100644 --- a/src/Model/CorrectViewRequest.php +++ b/src/Model/CorrectViewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Country.php b/src/Model/Country.php index bcd3c013..848fb212 100644 --- a/src/Model/Country.php +++ b/src/Model/Country.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CreditCardInformation.php b/src/Model/CreditCardInformation.php index de65a6da..9300c56c 100644 --- a/src/Model/CreditCardInformation.php +++ b/src/Model/CreditCardInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CreditCardTypes.php b/src/Model/CreditCardTypes.php index d4bc725a..228e4e99 100644 --- a/src/Model/CreditCardTypes.php +++ b/src/Model/CreditCardTypes.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CurrencyFeatureSetPrice.php b/src/Model/CurrencyFeatureSetPrice.php index 2921a6af..310f89f8 100644 --- a/src/Model/CurrencyFeatureSetPrice.php +++ b/src/Model/CurrencyFeatureSetPrice.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CurrencyPlanPrice.php b/src/Model/CurrencyPlanPrice.php index 9364b4b9..140301ac 100644 --- a/src/Model/CurrencyPlanPrice.php +++ b/src/Model/CurrencyPlanPrice.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CustomField.php b/src/Model/CustomField.php index 068ddc6a..9adb0cb4 100644 --- a/src/Model/CustomField.php +++ b/src/Model/CustomField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CustomFields.php b/src/Model/CustomFields.php index b4c786d3..147c68fc 100644 --- a/src/Model/CustomFields.php +++ b/src/Model/CustomFields.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CustomFieldsEnvelope.php b/src/Model/CustomFieldsEnvelope.php index a168b8d0..044cfea3 100644 --- a/src/Model/CustomFieldsEnvelope.php +++ b/src/Model/CustomFieldsEnvelope.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/CustomSettingsInformation.php b/src/Model/CustomSettingsInformation.php index fc4a6470..c6bcc05b 100644 --- a/src/Model/CustomSettingsInformation.php +++ b/src/Model/CustomSettingsInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Date.php b/src/Model/Date.php index fc0a79f2..aa03cc69 100644 --- a/src/Model/Date.php +++ b/src/Model/Date.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DateSigned.php b/src/Model/DateSigned.php index fd61bafe..18dd9d3c 100644 --- a/src/Model/DateSigned.php +++ b/src/Model/DateSigned.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DateStampProperties.php b/src/Model/DateStampProperties.php index bfe1f064..c27c9760 100644 --- a/src/Model/DateStampProperties.php +++ b/src/Model/DateStampProperties.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Decline.php b/src/Model/Decline.php index 745b9e90..1394fac8 100644 --- a/src/Model/Decline.php +++ b/src/Model/Decline.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DelayedRouting.php b/src/Model/DelayedRouting.php index 1984fa30..d135d005 100644 --- a/src/Model/DelayedRouting.php +++ b/src/Model/DelayedRouting.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DelegationInfo.php b/src/Model/DelegationInfo.php index cc69bf48..88c9dc08 100644 --- a/src/Model/DelegationInfo.php +++ b/src/Model/DelegationInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DiagnosticsSettingsInformation.php b/src/Model/DiagnosticsSettingsInformation.php index 4b3d1a67..fdef3cfb 100644 --- a/src/Model/DiagnosticsSettingsInformation.php +++ b/src/Model/DiagnosticsSettingsInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DirectDebitProcessorInformation.php b/src/Model/DirectDebitProcessorInformation.php index f2c1d748..e3a7ca2b 100644 --- a/src/Model/DirectDebitProcessorInformation.php +++ b/src/Model/DirectDebitProcessorInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DobInformationInput.php b/src/Model/DobInformationInput.php index c42d122e..bf9a3936 100644 --- a/src/Model/DobInformationInput.php +++ b/src/Model/DobInformationInput.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormField.php b/src/Model/DocGenFormField.php index 15da462b..8583f663 100644 --- a/src/Model/DocGenFormField.php +++ b/src/Model/DocGenFormField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFieldOption.php b/src/Model/DocGenFormFieldOption.php index 4e526198..542004a3 100644 --- a/src/Model/DocGenFormFieldOption.php +++ b/src/Model/DocGenFormFieldOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFieldRequest.php b/src/Model/DocGenFormFieldRequest.php index 08264a21..3ff68784 100644 --- a/src/Model/DocGenFormFieldRequest.php +++ b/src/Model/DocGenFormFieldRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFieldResponse.php b/src/Model/DocGenFormFieldResponse.php index c4350958..37e612c4 100644 --- a/src/Model/DocGenFormFieldResponse.php +++ b/src/Model/DocGenFormFieldResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFieldRowValue.php b/src/Model/DocGenFormFieldRowValue.php index 01a3abae..753128ca 100644 --- a/src/Model/DocGenFormFieldRowValue.php +++ b/src/Model/DocGenFormFieldRowValue.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFieldValidation.php b/src/Model/DocGenFormFieldValidation.php index fcdf2e68..57277517 100644 --- a/src/Model/DocGenFormFieldValidation.php +++ b/src/Model/DocGenFormFieldValidation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenFormFields.php b/src/Model/DocGenFormFields.php index 2c085ddc..233bac1c 100644 --- a/src/Model/DocGenFormFields.php +++ b/src/Model/DocGenFormFields.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocGenSyntaxError.php b/src/Model/DocGenSyntaxError.php index 4d6836f8..22cb8b12 100644 --- a/src/Model/DocGenSyntaxError.php +++ b/src/Model/DocGenSyntaxError.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Document.php b/src/Model/Document.php index 2335fd21..eaa6c08a 100644 --- a/src/Model/Document.php +++ b/src/Model/Document.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentFieldsInformation.php b/src/Model/DocumentFieldsInformation.php index 18a2864b..98672685 100644 --- a/src/Model/DocumentFieldsInformation.php +++ b/src/Model/DocumentFieldsInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlCollapsibleDisplaySettings.php b/src/Model/DocumentHtmlCollapsibleDisplaySettings.php index 6d6c0192..2ba8bf3b 100644 --- a/src/Model/DocumentHtmlCollapsibleDisplaySettings.php +++ b/src/Model/DocumentHtmlCollapsibleDisplaySettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDefinition.php b/src/Model/DocumentHtmlDefinition.php index f8338cb2..74e5a505 100644 --- a/src/Model/DocumentHtmlDefinition.php +++ b/src/Model/DocumentHtmlDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDefinitionOriginal.php b/src/Model/DocumentHtmlDefinitionOriginal.php index dab689c7..ce03afa8 100644 --- a/src/Model/DocumentHtmlDefinitionOriginal.php +++ b/src/Model/DocumentHtmlDefinitionOriginal.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDefinitionOriginals.php b/src/Model/DocumentHtmlDefinitionOriginals.php index bdc89452..6c1f130a 100644 --- a/src/Model/DocumentHtmlDefinitionOriginals.php +++ b/src/Model/DocumentHtmlDefinitionOriginals.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDefinitions.php b/src/Model/DocumentHtmlDefinitions.php index b24f33e4..e6218659 100644 --- a/src/Model/DocumentHtmlDefinitions.php +++ b/src/Model/DocumentHtmlDefinitions.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDisplayAnchor.php b/src/Model/DocumentHtmlDisplayAnchor.php index 8dc5f76a..a1a175e0 100644 --- a/src/Model/DocumentHtmlDisplayAnchor.php +++ b/src/Model/DocumentHtmlDisplayAnchor.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentHtmlDisplaySettings.php b/src/Model/DocumentHtmlDisplaySettings.php index 5544ae71..e2e0b9b7 100644 --- a/src/Model/DocumentHtmlDisplaySettings.php +++ b/src/Model/DocumentHtmlDisplaySettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentTemplate.php b/src/Model/DocumentTemplate.php index ead091bb..b4e2c308 100644 --- a/src/Model/DocumentTemplate.php +++ b/src/Model/DocumentTemplate.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentTemplateList.php b/src/Model/DocumentTemplateList.php index 3d64f7a8..b4fcbbc5 100644 --- a/src/Model/DocumentTemplateList.php +++ b/src/Model/DocumentTemplateList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentVisibility.php b/src/Model/DocumentVisibility.php index 5f5b8adf..cb4c0f63 100644 --- a/src/Model/DocumentVisibility.php +++ b/src/Model/DocumentVisibility.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DocumentVisibilityList.php b/src/Model/DocumentVisibilityList.php index 9dfb0bdc..d073aff9 100644 --- a/src/Model/DocumentVisibilityList.php +++ b/src/Model/DocumentVisibilityList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DowngradRequestBillingInfoResponse.php b/src/Model/DowngradRequestBillingInfoResponse.php index a2be8d34..224dd19a 100644 --- a/src/Model/DowngradRequestBillingInfoResponse.php +++ b/src/Model/DowngradRequestBillingInfoResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DowngradeBillingPlanInformation.php b/src/Model/DowngradeBillingPlanInformation.php index 3ee9a469..fd85ad3d 100644 --- a/src/Model/DowngradeBillingPlanInformation.php +++ b/src/Model/DowngradeBillingPlanInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DowngradePlanUpdateResponse.php b/src/Model/DowngradePlanUpdateResponse.php index 2c07e0bb..0919d0d4 100644 --- a/src/Model/DowngradePlanUpdateResponse.php +++ b/src/Model/DowngradePlanUpdateResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/DowngradeRequestInformation.php b/src/Model/DowngradeRequestInformation.php index b3985d9d..21f59440 100644 --- a/src/Model/DowngradeRequestInformation.php +++ b/src/Model/DowngradeRequestInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Draw.php b/src/Model/Draw.php index 1df06e6c..d236548c 100644 --- a/src/Model/Draw.php +++ b/src/Model/Draw.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ENoteConfiguration.php b/src/Model/ENoteConfiguration.php index 617a1501..7e067392 100644 --- a/src/Model/ENoteConfiguration.php +++ b/src/Model/ENoteConfiguration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Editor.php b/src/Model/Editor.php index 6bd668eb..ea378c18 100644 --- a/src/Model/Editor.php +++ b/src/Model/Editor.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Email.php b/src/Model/Email.php index 36620e4c..453cd08b 100644 --- a/src/Model/Email.php +++ b/src/Model/Email.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EmailAddress.php b/src/Model/EmailAddress.php index df500ba7..7b386431 100644 --- a/src/Model/EmailAddress.php +++ b/src/Model/EmailAddress.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EmailSettings.php b/src/Model/EmailSettings.php index 69d2f4e2..cc31cf1b 100644 --- a/src/Model/EmailSettings.php +++ b/src/Model/EmailSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Envelope.php b/src/Model/Envelope.php index babf1f28..fda62ec9 100644 --- a/src/Model/Envelope.php +++ b/src/Model/Envelope.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeAttachment.php b/src/Model/EnvelopeAttachment.php index 4f8e4ce0..6e091f41 100644 --- a/src/Model/EnvelopeAttachment.php +++ b/src/Model/EnvelopeAttachment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeAttachmentsRequest.php b/src/Model/EnvelopeAttachmentsRequest.php index 820de11f..0bfcbf1c 100644 --- a/src/Model/EnvelopeAttachmentsRequest.php +++ b/src/Model/EnvelopeAttachmentsRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeAttachmentsResult.php b/src/Model/EnvelopeAttachmentsResult.php index d7c61ebc..6246d588 100644 --- a/src/Model/EnvelopeAttachmentsResult.php +++ b/src/Model/EnvelopeAttachmentsResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeAuditEvent.php b/src/Model/EnvelopeAuditEvent.php index 3847e75d..0728bf6c 100644 --- a/src/Model/EnvelopeAuditEvent.php +++ b/src/Model/EnvelopeAuditEvent.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeAuditEventResponse.php b/src/Model/EnvelopeAuditEventResponse.php index 72c7a286..ebdbc501 100644 --- a/src/Model/EnvelopeAuditEventResponse.php +++ b/src/Model/EnvelopeAuditEventResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeCustomMetadata.php b/src/Model/EnvelopeCustomMetadata.php index a9ccce97..7e6c5bb0 100644 --- a/src/Model/EnvelopeCustomMetadata.php +++ b/src/Model/EnvelopeCustomMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeDefinition.php b/src/Model/EnvelopeDefinition.php index a63439bf..fb7bb867 100644 --- a/src/Model/EnvelopeDefinition.php +++ b/src/Model/EnvelopeDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeDelayRule.php b/src/Model/EnvelopeDelayRule.php index 17438b39..e11f6bc2 100644 --- a/src/Model/EnvelopeDelayRule.php +++ b/src/Model/EnvelopeDelayRule.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeDocument.php b/src/Model/EnvelopeDocument.php index 3a13b97c..d12278b2 100644 --- a/src/Model/EnvelopeDocument.php +++ b/src/Model/EnvelopeDocument.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeDocumentsResult.php b/src/Model/EnvelopeDocumentsResult.php index 1ac1c57e..be39d83d 100644 --- a/src/Model/EnvelopeDocumentsResult.php +++ b/src/Model/EnvelopeDocumentsResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeEvent.php b/src/Model/EnvelopeEvent.php index ad3c5e20..5a42a11b 100644 --- a/src/Model/EnvelopeEvent.php +++ b/src/Model/EnvelopeEvent.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeFormData.php b/src/Model/EnvelopeFormData.php index b9c03afb..655d5cef 100644 --- a/src/Model/EnvelopeFormData.php +++ b/src/Model/EnvelopeFormData.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeId.php b/src/Model/EnvelopeId.php index 085f0a5b..c7578610 100644 --- a/src/Model/EnvelopeId.php +++ b/src/Model/EnvelopeId.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeIdsRequest.php b/src/Model/EnvelopeIdsRequest.php index 81ec7f97..dff00993 100644 --- a/src/Model/EnvelopeIdsRequest.php +++ b/src/Model/EnvelopeIdsRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeMetadata.php b/src/Model/EnvelopeMetadata.php index 4b0170bc..99754447 100644 --- a/src/Model/EnvelopeMetadata.php +++ b/src/Model/EnvelopeMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeNotificationRequest.php b/src/Model/EnvelopeNotificationRequest.php index 7b2893fa..68b5e1ef 100644 --- a/src/Model/EnvelopeNotificationRequest.php +++ b/src/Model/EnvelopeNotificationRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopePublishTransaction.php b/src/Model/EnvelopePublishTransaction.php index 5a67f517..2d384b40 100644 --- a/src/Model/EnvelopePublishTransaction.php +++ b/src/Model/EnvelopePublishTransaction.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopePublishTransactionErrorRollup.php b/src/Model/EnvelopePublishTransactionErrorRollup.php index ce5b7d65..66d6e8e2 100644 --- a/src/Model/EnvelopePublishTransactionErrorRollup.php +++ b/src/Model/EnvelopePublishTransactionErrorRollup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopePurgeConfiguration.php b/src/Model/EnvelopePurgeConfiguration.php index 85bc07b3..f6d994d1 100644 --- a/src/Model/EnvelopePurgeConfiguration.php +++ b/src/Model/EnvelopePurgeConfiguration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeSummary.php b/src/Model/EnvelopeSummary.php index b84defdd..e9b1ab3f 100644 --- a/src/Model/EnvelopeSummary.php +++ b/src/Model/EnvelopeSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTemplate.php b/src/Model/EnvelopeTemplate.php index de026fb0..ac5b5fe3 100644 --- a/src/Model/EnvelopeTemplate.php +++ b/src/Model/EnvelopeTemplate.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTemplateResults.php b/src/Model/EnvelopeTemplateResults.php index f33ed5f7..151d1866 100644 --- a/src/Model/EnvelopeTemplateResults.php +++ b/src/Model/EnvelopeTemplateResults.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTransactionStatus.php b/src/Model/EnvelopeTransactionStatus.php index 9038ea4a..6334158f 100644 --- a/src/Model/EnvelopeTransactionStatus.php +++ b/src/Model/EnvelopeTransactionStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTransferRule.php b/src/Model/EnvelopeTransferRule.php index 9126b9f3..ad9f8da9 100644 --- a/src/Model/EnvelopeTransferRule.php +++ b/src/Model/EnvelopeTransferRule.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTransferRuleInformation.php b/src/Model/EnvelopeTransferRuleInformation.php index 5cfc2fbf..91c1bb93 100644 --- a/src/Model/EnvelopeTransferRuleInformation.php +++ b/src/Model/EnvelopeTransferRuleInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeTransferRuleRequest.php b/src/Model/EnvelopeTransferRuleRequest.php index 74f4c3b0..113cb330 100644 --- a/src/Model/EnvelopeTransferRuleRequest.php +++ b/src/Model/EnvelopeTransferRuleRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeUpdateSummary.php b/src/Model/EnvelopeUpdateSummary.php index 0b9013cd..0992d6cb 100644 --- a/src/Model/EnvelopeUpdateSummary.php +++ b/src/Model/EnvelopeUpdateSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewDocumentSettings.php b/src/Model/EnvelopeViewDocumentSettings.php index 82bd11b8..bb7f7b7c 100644 --- a/src/Model/EnvelopeViewDocumentSettings.php +++ b/src/Model/EnvelopeViewDocumentSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php b/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php index 3aac0f96..f2e50501 100644 --- a/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php +++ b/src/Model/EnvelopeViewEnvelopeCustomFieldSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewRecipientSettings.php b/src/Model/EnvelopeViewRecipientSettings.php index 5fe0b5e5..2f5f1a06 100644 --- a/src/Model/EnvelopeViewRecipientSettings.php +++ b/src/Model/EnvelopeViewRecipientSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewRequest.php b/src/Model/EnvelopeViewRequest.php index f87bc3a2..73b8d79f 100644 --- a/src/Model/EnvelopeViewRequest.php +++ b/src/Model/EnvelopeViewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewSettings.php b/src/Model/EnvelopeViewSettings.php index 4c6ebf10..7d7d86fc 100644 --- a/src/Model/EnvelopeViewSettings.php +++ b/src/Model/EnvelopeViewSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewTaggerSettings.php b/src/Model/EnvelopeViewTaggerSettings.php index c5dd0342..46b22ed2 100644 --- a/src/Model/EnvelopeViewTaggerSettings.php +++ b/src/Model/EnvelopeViewTaggerSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopeViewTemplateSettings.php b/src/Model/EnvelopeViewTemplateSettings.php index e52206ac..15bd8aa5 100644 --- a/src/Model/EnvelopeViewTemplateSettings.php +++ b/src/Model/EnvelopeViewTemplateSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EnvelopesInformation.php b/src/Model/EnvelopesInformation.php index 4dbce45d..7050cbd8 100644 --- a/src/Model/EnvelopesInformation.php +++ b/src/Model/EnvelopesInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ErrorDetails.php b/src/Model/ErrorDetails.php index b76b8856..53fa68aa 100644 --- a/src/Model/ErrorDetails.php +++ b/src/Model/ErrorDetails.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EventNotification.php b/src/Model/EventNotification.php index 2708f010..03528819 100644 --- a/src/Model/EventNotification.php +++ b/src/Model/EventNotification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/EventResult.php b/src/Model/EventResult.php index 89e1db19..e6d4efd2 100644 --- a/src/Model/EventResult.php +++ b/src/Model/EventResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Expirations.php b/src/Model/Expirations.php index e06d6f7f..19d2935b 100644 --- a/src/Model/Expirations.php +++ b/src/Model/Expirations.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ExternalDocServiceErrorDetails.php b/src/Model/ExternalDocServiceErrorDetails.php index 1ff3af5a..f1274f7d 100644 --- a/src/Model/ExternalDocServiceErrorDetails.php +++ b/src/Model/ExternalDocServiceErrorDetails.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ExternalDocumentSources.php b/src/Model/ExternalDocumentSources.php index c13fc927..8b921bea 100644 --- a/src/Model/ExternalDocumentSources.php +++ b/src/Model/ExternalDocumentSources.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ExternalFile.php b/src/Model/ExternalFile.php index 16b1e9f9..8f8588b1 100644 --- a/src/Model/ExternalFile.php +++ b/src/Model/ExternalFile.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ExternalFolder.php b/src/Model/ExternalFolder.php index 20fb1960..7aaef006 100644 --- a/src/Model/ExternalFolder.php +++ b/src/Model/ExternalFolder.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php b/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php index f0cdf92c..51dbb3f0 100644 --- a/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php +++ b/src/Model/ExternalPrimaryAccountRecipientAuthRequirements.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FavoriteTemplatesContentItem.php b/src/Model/FavoriteTemplatesContentItem.php index c511c69a..b92f9463 100644 --- a/src/Model/FavoriteTemplatesContentItem.php +++ b/src/Model/FavoriteTemplatesContentItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FavoriteTemplatesInfo.php b/src/Model/FavoriteTemplatesInfo.php index b2a7e6f2..a890dbb9 100644 --- a/src/Model/FavoriteTemplatesInfo.php +++ b/src/Model/FavoriteTemplatesInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FeatureAvailableMetadata.php b/src/Model/FeatureAvailableMetadata.php index 5f3b5243..22c5690f 100644 --- a/src/Model/FeatureAvailableMetadata.php +++ b/src/Model/FeatureAvailableMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FeatureSet.php b/src/Model/FeatureSet.php index 2dfa4f52..5bfcdff5 100644 --- a/src/Model/FeatureSet.php +++ b/src/Model/FeatureSet.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FileType.php b/src/Model/FileType.php index f5fd484c..b05f53b9 100644 --- a/src/Model/FileType.php +++ b/src/Model/FileType.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FileTypeList.php b/src/Model/FileTypeList.php index d144146b..51924094 100644 --- a/src/Model/FileTypeList.php +++ b/src/Model/FileTypeList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Filter.php b/src/Model/Filter.php index 55ba63f1..df0a239f 100644 --- a/src/Model/Filter.php +++ b/src/Model/Filter.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FirstName.php b/src/Model/FirstName.php index 9d1cb255..d35432dc 100644 --- a/src/Model/FirstName.php +++ b/src/Model/FirstName.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Folder.php b/src/Model/Folder.php index ae1cc4f9..22995405 100644 --- a/src/Model/Folder.php +++ b/src/Model/Folder.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FolderItemResponse.php b/src/Model/FolderItemResponse.php index 67c8147d..7ddf8b8e 100644 --- a/src/Model/FolderItemResponse.php +++ b/src/Model/FolderItemResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FolderItemV2.php b/src/Model/FolderItemV2.php index 4b016c6a..8d23dfad 100644 --- a/src/Model/FolderItemV2.php +++ b/src/Model/FolderItemV2.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FolderItemsResponse.php b/src/Model/FolderItemsResponse.php index c15e2600..f34ad7ad 100644 --- a/src/Model/FolderItemsResponse.php +++ b/src/Model/FolderItemsResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FolderSharedItem.php b/src/Model/FolderSharedItem.php index caadd2df..9febf11f 100644 --- a/src/Model/FolderSharedItem.php +++ b/src/Model/FolderSharedItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FoldersRequest.php b/src/Model/FoldersRequest.php index dd633ea3..633d4fe8 100644 --- a/src/Model/FoldersRequest.php +++ b/src/Model/FoldersRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FoldersResponse.php b/src/Model/FoldersResponse.php index a9b1ed35..97d27ce6 100644 --- a/src/Model/FoldersResponse.php +++ b/src/Model/FoldersResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ForgottenPasswordInformation.php b/src/Model/ForgottenPasswordInformation.php index d9068f27..622e1d7c 100644 --- a/src/Model/ForgottenPasswordInformation.php +++ b/src/Model/ForgottenPasswordInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FormDataItem.php b/src/Model/FormDataItem.php index 440637c1..620409ff 100644 --- a/src/Model/FormDataItem.php +++ b/src/Model/FormDataItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FormulaTab.php b/src/Model/FormulaTab.php index 2ee41350..f6b48d8b 100644 --- a/src/Model/FormulaTab.php +++ b/src/Model/FormulaTab.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/FullName.php b/src/Model/FullName.php index d46271f5..2858bd99 100644 --- a/src/Model/FullName.php +++ b/src/Model/FullName.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/GraphicsContext.php b/src/Model/GraphicsContext.php index 42eed6f6..26a5fef3 100644 --- a/src/Model/GraphicsContext.php +++ b/src/Model/GraphicsContext.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Group.php b/src/Model/Group.php index 3520947f..0eabfd52 100644 --- a/src/Model/Group.php +++ b/src/Model/Group.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/GroupInformation.php b/src/Model/GroupInformation.php index c026e70b..9eae424a 100644 --- a/src/Model/GroupInformation.php +++ b/src/Model/GroupInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IdCheckConfiguration.php b/src/Model/IdCheckConfiguration.php index 346eb97c..5738347c 100644 --- a/src/Model/IdCheckConfiguration.php +++ b/src/Model/IdCheckConfiguration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IdCheckInformationInput.php b/src/Model/IdCheckInformationInput.php index 91d6c9eb..92564b78 100644 --- a/src/Model/IdCheckInformationInput.php +++ b/src/Model/IdCheckInformationInput.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IdCheckSecurityStep.php b/src/Model/IdCheckSecurityStep.php index 00a9f5bc..35db49d8 100644 --- a/src/Model/IdCheckSecurityStep.php +++ b/src/Model/IdCheckSecurityStep.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IdEvidenceResourceToken.php b/src/Model/IdEvidenceResourceToken.php index 4c372c55..535c0998 100644 --- a/src/Model/IdEvidenceResourceToken.php +++ b/src/Model/IdEvidenceResourceToken.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IdEvidenceViewLink.php b/src/Model/IdEvidenceViewLink.php index 5a6cce7d..287698b0 100644 --- a/src/Model/IdEvidenceViewLink.php +++ b/src/Model/IdEvidenceViewLink.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/InPersonSigner.php b/src/Model/InPersonSigner.php index db1be3ac..8b1c6dfe 100644 --- a/src/Model/InPersonSigner.php +++ b/src/Model/InPersonSigner.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/InitialHere.php b/src/Model/InitialHere.php index 6e3f5cfe..b6d429b5 100644 --- a/src/Model/InitialHere.php +++ b/src/Model/InitialHere.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/InlineTemplate.php b/src/Model/InlineTemplate.php index 812bd1bf..7a8743d0 100644 --- a/src/Model/InlineTemplate.php +++ b/src/Model/InlineTemplate.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IntegratedConnectUserInfoList.php b/src/Model/IntegratedConnectUserInfoList.php index e782f94a..cf11122d 100644 --- a/src/Model/IntegratedConnectUserInfoList.php +++ b/src/Model/IntegratedConnectUserInfoList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/IntegratedUserInfoList.php b/src/Model/IntegratedUserInfoList.php index e17906c2..4a1a66af 100644 --- a/src/Model/IntegratedUserInfoList.php +++ b/src/Model/IntegratedUserInfoList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Intermediary.php b/src/Model/Intermediary.php index 6e88bfd9..030ee00b 100644 --- a/src/Model/Intermediary.php +++ b/src/Model/Intermediary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Jurisdiction.php b/src/Model/Jurisdiction.php index 80ff5e18..b3fa0b25 100644 --- a/src/Model/Jurisdiction.php +++ b/src/Model/Jurisdiction.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/JurisdictionSummary.php b/src/Model/JurisdictionSummary.php index 230e9f59..b07bc943 100644 --- a/src/Model/JurisdictionSummary.php +++ b/src/Model/JurisdictionSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LastName.php b/src/Model/LastName.php index 5e1fdb1c..7703b668 100644 --- a/src/Model/LastName.php +++ b/src/Model/LastName.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LinkedExternalPrimaryAccount.php b/src/Model/LinkedExternalPrimaryAccount.php index 8cb98e65..e4ca03c1 100644 --- a/src/Model/LinkedExternalPrimaryAccount.php +++ b/src/Model/LinkedExternalPrimaryAccount.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ListCustomField.php b/src/Model/ListCustomField.php index 51fe378e..ea3bc92f 100644 --- a/src/Model/ListCustomField.php +++ b/src/Model/ListCustomField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ListItem.php b/src/Model/ListItem.php index 830d7b52..f5c79423 100644 --- a/src/Model/ListItem.php +++ b/src/Model/ListItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LocalePolicy.php b/src/Model/LocalePolicy.php index 2a6a78dc..47609122 100644 --- a/src/Model/LocalePolicy.php +++ b/src/Model/LocalePolicy.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LocalePolicyTab.php b/src/Model/LocalePolicyTab.php index 253b674a..0d086056 100644 --- a/src/Model/LocalePolicyTab.php +++ b/src/Model/LocalePolicyTab.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LockInformation.php b/src/Model/LockInformation.php index 236fb1ac..50db81b3 100644 --- a/src/Model/LockInformation.php +++ b/src/Model/LockInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LockRequest.php b/src/Model/LockRequest.php index 4a77017c..7e8204be 100644 --- a/src/Model/LockRequest.php +++ b/src/Model/LockRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LoginAccount.php b/src/Model/LoginAccount.php index 9d9ed43b..98cc38e4 100644 --- a/src/Model/LoginAccount.php +++ b/src/Model/LoginAccount.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/LoginInformation.php b/src/Model/LoginInformation.php index e3af4b98..1f512d34 100644 --- a/src/Model/LoginInformation.php +++ b/src/Model/LoginInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MatchBox.php b/src/Model/MatchBox.php index 962bc0e4..39d2b85f 100644 --- a/src/Model/MatchBox.php +++ b/src/Model/MatchBox.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MemberGroupSharedItem.php b/src/Model/MemberGroupSharedItem.php index fddd47c9..70816344 100644 --- a/src/Model/MemberGroupSharedItem.php +++ b/src/Model/MemberGroupSharedItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MemberSharedItems.php b/src/Model/MemberSharedItems.php index d0ca8fdf..187cfa2d 100644 --- a/src/Model/MemberSharedItems.php +++ b/src/Model/MemberSharedItems.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MergeField.php b/src/Model/MergeField.php index da34dec3..733308e1 100644 --- a/src/Model/MergeField.php +++ b/src/Model/MergeField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MobileNotifierConfiguration.php b/src/Model/MobileNotifierConfiguration.php index 699eb8bf..f685cc96 100644 --- a/src/Model/MobileNotifierConfiguration.php +++ b/src/Model/MobileNotifierConfiguration.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/MobileNotifierConfigurationInformation.php b/src/Model/MobileNotifierConfigurationInformation.php index cb1a1079..babf6efd 100644 --- a/src/Model/MobileNotifierConfigurationInformation.php +++ b/src/Model/MobileNotifierConfigurationInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ModelInterface.php b/src/Model/ModelInterface.php index 35581018..86703385 100644 --- a/src/Model/ModelInterface.php +++ b/src/Model/ModelInterface.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ModelList.php b/src/Model/ModelList.php index 084a4b03..2e351c56 100644 --- a/src/Model/ModelList.php +++ b/src/Model/ModelList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Money.php b/src/Model/Money.php index bd1f767c..d0af3094 100644 --- a/src/Model/Money.php +++ b/src/Model/Money.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NameValue.php b/src/Model/NameValue.php index 4f1ac3a2..d4d26013 100644 --- a/src/Model/NameValue.php +++ b/src/Model/NameValue.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NewAccountDefinition.php b/src/Model/NewAccountDefinition.php index b57c7c74..3e517e35 100644 --- a/src/Model/NewAccountDefinition.php +++ b/src/Model/NewAccountDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NewAccountSummary.php b/src/Model/NewAccountSummary.php index 5ec00b99..5061a8a6 100644 --- a/src/Model/NewAccountSummary.php +++ b/src/Model/NewAccountSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NewUser.php b/src/Model/NewUser.php index df86511f..725ef3aa 100644 --- a/src/Model/NewUser.php +++ b/src/Model/NewUser.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NewUsersDefinition.php b/src/Model/NewUsersDefinition.php index e2d0d584..d5ed3ffc 100644 --- a/src/Model/NewUsersDefinition.php +++ b/src/Model/NewUsersDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NewUsersSummary.php b/src/Model/NewUsersSummary.php index 273292ca..46de73d2 100644 --- a/src/Model/NewUsersSummary.php +++ b/src/Model/NewUsersSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Notarize.php b/src/Model/Notarize.php index 17aaf73d..378d203b 100644 --- a/src/Model/Notarize.php +++ b/src/Model/Notarize.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Notary.php b/src/Model/Notary.php index 76ba964a..66fd1769 100644 --- a/src/Model/Notary.php +++ b/src/Model/Notary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryContactDetails.php b/src/Model/NotaryContactDetails.php index 23f77b64..c576367e 100644 --- a/src/Model/NotaryContactDetails.php +++ b/src/Model/NotaryContactDetails.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryHost.php b/src/Model/NotaryHost.php index 9dc72d1a..1ab061b1 100644 --- a/src/Model/NotaryHost.php +++ b/src/Model/NotaryHost.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJournal.php b/src/Model/NotaryJournal.php index 79438743..4aa0052a 100644 --- a/src/Model/NotaryJournal.php +++ b/src/Model/NotaryJournal.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJournalCredibleWitness.php b/src/Model/NotaryJournalCredibleWitness.php index 3e1e3ce3..c633466f 100644 --- a/src/Model/NotaryJournalCredibleWitness.php +++ b/src/Model/NotaryJournalCredibleWitness.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJournalList.php b/src/Model/NotaryJournalList.php index 4011bd3e..a8a7a1c7 100644 --- a/src/Model/NotaryJournalList.php +++ b/src/Model/NotaryJournalList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJournalMetaData.php b/src/Model/NotaryJournalMetaData.php index ce51d11b..6e37c7f0 100644 --- a/src/Model/NotaryJournalMetaData.php +++ b/src/Model/NotaryJournalMetaData.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJurisdiction.php b/src/Model/NotaryJurisdiction.php index 2e85e554..387fb504 100644 --- a/src/Model/NotaryJurisdiction.php +++ b/src/Model/NotaryJurisdiction.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryJurisdictionList.php b/src/Model/NotaryJurisdictionList.php index ad44d105..29623c4a 100644 --- a/src/Model/NotaryJurisdictionList.php +++ b/src/Model/NotaryJurisdictionList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotaryRecipient.php b/src/Model/NotaryRecipient.php index 8232e2cd..2fcbb1a0 100644 --- a/src/Model/NotaryRecipient.php +++ b/src/Model/NotaryRecipient.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -70,6 +70,7 @@ class NotaryRecipient implements ModelInterface, ArrayAccess 'auto_responded_reason' => '?string', 'bulk_recipients_uri' => '?string', 'bulk_send_v2_recipient' => '?string', + 'can_notary_correct_envelope' => '?string', 'can_sign_offline' => '?string', 'client_user_id' => '?string', 'completed_count' => '?string', @@ -181,6 +182,7 @@ class NotaryRecipient implements ModelInterface, ArrayAccess 'auto_responded_reason' => null, 'bulk_recipients_uri' => null, 'bulk_send_v2_recipient' => null, + 'can_notary_correct_envelope' => null, 'can_sign_offline' => null, 'client_user_id' => null, 'completed_count' => null, @@ -313,6 +315,7 @@ public static function swaggerFormats() 'auto_responded_reason' => 'autoRespondedReason', 'bulk_recipients_uri' => 'bulkRecipientsUri', 'bulk_send_v2_recipient' => 'bulkSendV2Recipient', + 'can_notary_correct_envelope' => 'canNotaryCorrectEnvelope', 'can_sign_offline' => 'canSignOffline', 'client_user_id' => 'clientUserId', 'completed_count' => 'completedCount', @@ -424,6 +427,7 @@ public static function swaggerFormats() 'auto_responded_reason' => 'setAutoRespondedReason', 'bulk_recipients_uri' => 'setBulkRecipientsUri', 'bulk_send_v2_recipient' => 'setBulkSendV2Recipient', + 'can_notary_correct_envelope' => 'setCanNotaryCorrectEnvelope', 'can_sign_offline' => 'setCanSignOffline', 'client_user_id' => 'setClientUserId', 'completed_count' => 'setCompletedCount', @@ -535,6 +539,7 @@ public static function swaggerFormats() 'auto_responded_reason' => 'getAutoRespondedReason', 'bulk_recipients_uri' => 'getBulkRecipientsUri', 'bulk_send_v2_recipient' => 'getBulkSendV2Recipient', + 'can_notary_correct_envelope' => 'getCanNotaryCorrectEnvelope', 'can_sign_offline' => 'getCanSignOffline', 'client_user_id' => 'getClientUserId', 'completed_count' => 'getCompletedCount', @@ -700,6 +705,7 @@ public function __construct(array $data = null) $this->container['auto_responded_reason'] = isset($data['auto_responded_reason']) ? $data['auto_responded_reason'] : null; $this->container['bulk_recipients_uri'] = isset($data['bulk_recipients_uri']) ? $data['bulk_recipients_uri'] : null; $this->container['bulk_send_v2_recipient'] = isset($data['bulk_send_v2_recipient']) ? $data['bulk_send_v2_recipient'] : null; + $this->container['can_notary_correct_envelope'] = isset($data['can_notary_correct_envelope']) ? $data['can_notary_correct_envelope'] : null; $this->container['can_sign_offline'] = isset($data['can_sign_offline']) ? $data['can_sign_offline'] : null; $this->container['client_user_id'] = isset($data['client_user_id']) ? $data['client_user_id'] : null; $this->container['completed_count'] = isset($data['completed_count']) ? $data['completed_count'] : null; @@ -1082,6 +1088,30 @@ public function setBulkSendV2Recipient($bulk_send_v2_recipient) return $this; } + /** + * Gets can_notary_correct_envelope + * + * @return ?string + */ + public function getCanNotaryCorrectEnvelope() + { + return $this->container['can_notary_correct_envelope']; + } + + /** + * Sets can_notary_correct_envelope + * + * @param ?string $can_notary_correct_envelope + * + * @return $this + */ + public function setCanNotaryCorrectEnvelope($can_notary_correct_envelope) + { + $this->container['can_notary_correct_envelope'] = $can_notary_correct_envelope; + + return $this; + } + /** * Gets can_sign_offline * diff --git a/src/Model/NotaryResult.php b/src/Model/NotaryResult.php index fe7bb4b6..a902aede 100644 --- a/src/Model/NotaryResult.php +++ b/src/Model/NotaryResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotarySeal.php b/src/Model/NotarySeal.php index 74493fd2..615e71e8 100644 --- a/src/Model/NotarySeal.php +++ b/src/Model/NotarySeal.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Note.php b/src/Model/Note.php index 75329a4f..c9999c5c 100644 --- a/src/Model/Note.php +++ b/src/Model/Note.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Notification.php b/src/Model/Notification.php index 335444d8..a74ffb0c 100644 --- a/src/Model/Notification.php +++ b/src/Model/Notification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotificationDefaultSettings.php b/src/Model/NotificationDefaultSettings.php index eec144e3..9a3b2a73 100644 --- a/src/Model/NotificationDefaultSettings.php +++ b/src/Model/NotificationDefaultSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/NotificationDefaults.php b/src/Model/NotificationDefaults.php index 906227fc..c86c12e5 100644 --- a/src/Model/NotificationDefaults.php +++ b/src/Model/NotificationDefaults.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Number.php b/src/Model/Number.php index c0b943b0..9c0b0957 100644 --- a/src/Model/Number.php +++ b/src/Model/Number.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Numerical.php b/src/Model/Numerical.php index e9a12d8b..486e2143 100644 --- a/src/Model/Numerical.php +++ b/src/Model/Numerical.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/OauthAccess.php b/src/Model/OauthAccess.php index 4e35ffad..d1b3aa95 100644 --- a/src/Model/OauthAccess.php +++ b/src/Model/OauthAccess.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/OfflineAttributes.php b/src/Model/OfflineAttributes.php index 1b42a338..514325ba 100644 --- a/src/Model/OfflineAttributes.php +++ b/src/Model/OfflineAttributes.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Page.php b/src/Model/Page.php index fafa496d..6b87228f 100644 --- a/src/Model/Page.php +++ b/src/Model/Page.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PageImages.php b/src/Model/PageImages.php index ecca475a..24e35fd5 100644 --- a/src/Model/PageImages.php +++ b/src/Model/PageImages.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PageRequest.php b/src/Model/PageRequest.php index 9b621081..e710a809 100644 --- a/src/Model/PageRequest.php +++ b/src/Model/PageRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaletteItemSettings.php b/src/Model/PaletteItemSettings.php index badeb3a1..b49ec949 100644 --- a/src/Model/PaletteItemSettings.php +++ b/src/Model/PaletteItemSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaletteSettings.php b/src/Model/PaletteSettings.php index d7aa4617..836e2452 100644 --- a/src/Model/PaletteSettings.php +++ b/src/Model/PaletteSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Participant.php b/src/Model/Participant.php index d8312850..e20effdc 100644 --- a/src/Model/Participant.php +++ b/src/Model/Participant.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PathExtendedElement.php b/src/Model/PathExtendedElement.php index 43741227..ea3c1a9d 100644 --- a/src/Model/PathExtendedElement.php +++ b/src/Model/PathExtendedElement.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PayPalLegacySettings.php b/src/Model/PayPalLegacySettings.php index 1c40b2eb..000626db 100644 --- a/src/Model/PayPalLegacySettings.php +++ b/src/Model/PayPalLegacySettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentDetails.php b/src/Model/PaymentDetails.php index b961f136..f0050457 100644 --- a/src/Model/PaymentDetails.php +++ b/src/Model/PaymentDetails.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentGatewayAccount.php b/src/Model/PaymentGatewayAccount.php index 2b5d6f29..abaa3952 100644 --- a/src/Model/PaymentGatewayAccount.php +++ b/src/Model/PaymentGatewayAccount.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentGatewayAccountSetting.php b/src/Model/PaymentGatewayAccountSetting.php index a0d6fcaf..6c7ef81a 100644 --- a/src/Model/PaymentGatewayAccountSetting.php +++ b/src/Model/PaymentGatewayAccountSetting.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentGatewayAccountsInfo.php b/src/Model/PaymentGatewayAccountsInfo.php index f5c491f2..76de4d5d 100644 --- a/src/Model/PaymentGatewayAccountsInfo.php +++ b/src/Model/PaymentGatewayAccountsInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentLineItem.php b/src/Model/PaymentLineItem.php index a85f2723..b48f676a 100644 --- a/src/Model/PaymentLineItem.php +++ b/src/Model/PaymentLineItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentMethodWithOptions.php b/src/Model/PaymentMethodWithOptions.php index 5ad6cdd6..a5c08ff3 100644 --- a/src/Model/PaymentMethodWithOptions.php +++ b/src/Model/PaymentMethodWithOptions.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentProcessorInformation.php b/src/Model/PaymentProcessorInformation.php index 8540efec..1775c2cb 100644 --- a/src/Model/PaymentProcessorInformation.php +++ b/src/Model/PaymentProcessorInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PaymentSignerValues.php b/src/Model/PaymentSignerValues.php index b6337cc3..3d65406e 100644 --- a/src/Model/PaymentSignerValues.php +++ b/src/Model/PaymentSignerValues.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PermissionProfile.php b/src/Model/PermissionProfile.php index ea833b36..dd8f84e0 100644 --- a/src/Model/PermissionProfile.php +++ b/src/Model/PermissionProfile.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PermissionProfileInformation.php b/src/Model/PermissionProfileInformation.php index 088fca3a..919f7471 100644 --- a/src/Model/PermissionProfileInformation.php +++ b/src/Model/PermissionProfileInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PhoneNumber.php b/src/Model/PhoneNumber.php index f6880dd2..974e32b0 100644 --- a/src/Model/PhoneNumber.php +++ b/src/Model/PhoneNumber.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PlanInformation.php b/src/Model/PlanInformation.php index cfdc5ab0..160cdfda 100644 --- a/src/Model/PlanInformation.php +++ b/src/Model/PlanInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PolyLine.php b/src/Model/PolyLine.php index 503d9509..2d80ff05 100644 --- a/src/Model/PolyLine.php +++ b/src/Model/PolyLine.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PolyLineOverlay.php b/src/Model/PolyLineOverlay.php index 6e6e6fff..9a0e97c5 100644 --- a/src/Model/PolyLineOverlay.php +++ b/src/Model/PolyLineOverlay.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerForm.php b/src/Model/PowerForm.php index b003546c..7cf4e52f 100644 --- a/src/Model/PowerForm.php +++ b/src/Model/PowerForm.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormFormDataEnvelope.php b/src/Model/PowerFormFormDataEnvelope.php index 037dd365..777f57a1 100644 --- a/src/Model/PowerFormFormDataEnvelope.php +++ b/src/Model/PowerFormFormDataEnvelope.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormFormDataRecipient.php b/src/Model/PowerFormFormDataRecipient.php index 0facd227..a661659f 100644 --- a/src/Model/PowerFormFormDataRecipient.php +++ b/src/Model/PowerFormFormDataRecipient.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormRecipient.php b/src/Model/PowerFormRecipient.php index b6c17746..81197323 100644 --- a/src/Model/PowerFormRecipient.php +++ b/src/Model/PowerFormRecipient.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormSendersResponse.php b/src/Model/PowerFormSendersResponse.php index 71b57377..f537393f 100644 --- a/src/Model/PowerFormSendersResponse.php +++ b/src/Model/PowerFormSendersResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormsFormDataResponse.php b/src/Model/PowerFormsFormDataResponse.php index 18c4748a..9846c906 100644 --- a/src/Model/PowerFormsFormDataResponse.php +++ b/src/Model/PowerFormsFormDataResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormsRequest.php b/src/Model/PowerFormsRequest.php index 98492578..a1a330aa 100644 --- a/src/Model/PowerFormsRequest.php +++ b/src/Model/PowerFormsRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PowerFormsResponse.php b/src/Model/PowerFormsResponse.php index cd0e5ee5..a1ca644f 100644 --- a/src/Model/PowerFormsResponse.php +++ b/src/Model/PowerFormsResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PrefillFormData.php b/src/Model/PrefillFormData.php index 3c4bd8ed..1fbc76e8 100644 --- a/src/Model/PrefillFormData.php +++ b/src/Model/PrefillFormData.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PrefillTabs.php b/src/Model/PrefillTabs.php index 269c00fe..8a1de347 100644 --- a/src/Model/PrefillTabs.php +++ b/src/Model/PrefillTabs.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PropertyMetadata.php b/src/Model/PropertyMetadata.php index 8655eb2a..c0e9d717 100644 --- a/src/Model/PropertyMetadata.php +++ b/src/Model/PropertyMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Province.php b/src/Model/Province.php index 3e8e9456..9d5931c3 100644 --- a/src/Model/Province.php +++ b/src/Model/Province.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ProvisioningInformation.php b/src/Model/ProvisioningInformation.php index d9f7d186..c8e0b0f8 100644 --- a/src/Model/ProvisioningInformation.php +++ b/src/Model/ProvisioningInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/PurchasedEnvelopesInformation.php b/src/Model/PurchasedEnvelopesInformation.php index cad11ab8..9f533ed9 100644 --- a/src/Model/PurchasedEnvelopesInformation.php +++ b/src/Model/PurchasedEnvelopesInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Radio.php b/src/Model/Radio.php index 74dc68a9..3b638919 100644 --- a/src/Model/Radio.php +++ b/src/Model/Radio.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RadioGroup.php b/src/Model/RadioGroup.php index c58c7e8d..618729a1 100644 --- a/src/Model/RadioGroup.php +++ b/src/Model/RadioGroup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientAdditionalNotification.php b/src/Model/RecipientAdditionalNotification.php index 42ac2538..f57a3d3a 100644 --- a/src/Model/RecipientAdditionalNotification.php +++ b/src/Model/RecipientAdditionalNotification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientAttachment.php b/src/Model/RecipientAttachment.php index efc74975..431172d4 100644 --- a/src/Model/RecipientAttachment.php +++ b/src/Model/RecipientAttachment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientDomain.php b/src/Model/RecipientDomain.php index ab5d8b39..59a6e548 100644 --- a/src/Model/RecipientDomain.php +++ b/src/Model/RecipientDomain.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientEmailNotification.php b/src/Model/RecipientEmailNotification.php index 85ed2157..cb323d4c 100644 --- a/src/Model/RecipientEmailNotification.php +++ b/src/Model/RecipientEmailNotification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientEvent.php b/src/Model/RecipientEvent.php index cffb81c3..d81219b6 100644 --- a/src/Model/RecipientEvent.php +++ b/src/Model/RecipientEvent.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientFormData.php b/src/Model/RecipientFormData.php index 7477d722..5f8c375b 100644 --- a/src/Model/RecipientFormData.php +++ b/src/Model/RecipientFormData.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientGroup.php b/src/Model/RecipientGroup.php index d67705c9..44fce74b 100644 --- a/src/Model/RecipientGroup.php +++ b/src/Model/RecipientGroup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientIdentityInputOption.php b/src/Model/RecipientIdentityInputOption.php index d28c1277..c7db5452 100644 --- a/src/Model/RecipientIdentityInputOption.php +++ b/src/Model/RecipientIdentityInputOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientIdentityPhoneNumber.php b/src/Model/RecipientIdentityPhoneNumber.php index a9737152..6b9399cf 100644 --- a/src/Model/RecipientIdentityPhoneNumber.php +++ b/src/Model/RecipientIdentityPhoneNumber.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientIdentityVerification.php b/src/Model/RecipientIdentityVerification.php index d55ada17..2cc4a844 100644 --- a/src/Model/RecipientIdentityVerification.php +++ b/src/Model/RecipientIdentityVerification.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientNamesResponse.php b/src/Model/RecipientNamesResponse.php index d0380133..652af662 100644 --- a/src/Model/RecipientNamesResponse.php +++ b/src/Model/RecipientNamesResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientOption.php b/src/Model/RecipientOption.php index 18db02b1..49c69e81 100644 --- a/src/Model/RecipientOption.php +++ b/src/Model/RecipientOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientPhoneAuthentication.php b/src/Model/RecipientPhoneAuthentication.php index b1bc1e8b..a34a6ba1 100644 --- a/src/Model/RecipientPhoneAuthentication.php +++ b/src/Model/RecipientPhoneAuthentication.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientPhoneNumber.php b/src/Model/RecipientPhoneNumber.php index 8a537f6f..0cef5a9a 100644 --- a/src/Model/RecipientPhoneNumber.php +++ b/src/Model/RecipientPhoneNumber.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientPreviewRequest.php b/src/Model/RecipientPreviewRequest.php index 4601e27a..bb44ae76 100644 --- a/src/Model/RecipientPreviewRequest.php +++ b/src/Model/RecipientPreviewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientProofFile.php b/src/Model/RecipientProofFile.php index 4600aba1..d1c99228 100644 --- a/src/Model/RecipientProofFile.php +++ b/src/Model/RecipientProofFile.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientRouting.php b/src/Model/RecipientRouting.php index 78a7e643..9cbdb76a 100644 --- a/src/Model/RecipientRouting.php +++ b/src/Model/RecipientRouting.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientRules.php b/src/Model/RecipientRules.php index 947b5fc0..003fb130 100644 --- a/src/Model/RecipientRules.php +++ b/src/Model/RecipientRules.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientSMSAuthentication.php b/src/Model/RecipientSMSAuthentication.php index 90c43be2..24615ae3 100644 --- a/src/Model/RecipientSMSAuthentication.php +++ b/src/Model/RecipientSMSAuthentication.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientSignatureInformation.php b/src/Model/RecipientSignatureInformation.php index cea50660..9d57b756 100644 --- a/src/Model/RecipientSignatureInformation.php +++ b/src/Model/RecipientSignatureInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientSignatureProvider.php b/src/Model/RecipientSignatureProvider.php index 1331ca90..3d254406 100644 --- a/src/Model/RecipientSignatureProvider.php +++ b/src/Model/RecipientSignatureProvider.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientSignatureProviderOptions.php b/src/Model/RecipientSignatureProviderOptions.php index d09ddf41..a64b280a 100644 --- a/src/Model/RecipientSignatureProviderOptions.php +++ b/src/Model/RecipientSignatureProviderOptions.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientTokenClientURLs.php b/src/Model/RecipientTokenClientURLs.php index 2c30cda0..2f84e312 100644 --- a/src/Model/RecipientTokenClientURLs.php +++ b/src/Model/RecipientTokenClientURLs.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientUpdateResponse.php b/src/Model/RecipientUpdateResponse.php index 08847b69..4961ad65 100644 --- a/src/Model/RecipientUpdateResponse.php +++ b/src/Model/RecipientUpdateResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientViewRequest.php b/src/Model/RecipientViewRequest.php index c815bb1c..326b12d1 100644 --- a/src/Model/RecipientViewRequest.php +++ b/src/Model/RecipientViewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Recipients.php b/src/Model/Recipients.php index 0a532ac8..03b7c5e4 100644 --- a/src/Model/Recipients.php +++ b/src/Model/Recipients.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/RecipientsUpdateSummary.php b/src/Model/RecipientsUpdateSummary.php index 01769e92..4175d55f 100644 --- a/src/Model/RecipientsUpdateSummary.php +++ b/src/Model/RecipientsUpdateSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ReferralInformation.php b/src/Model/ReferralInformation.php index 02631668..c706612c 100644 --- a/src/Model/ReferralInformation.php +++ b/src/Model/ReferralInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Reminders.php b/src/Model/Reminders.php index f5005833..c99fb4d9 100644 --- a/src/Model/Reminders.php +++ b/src/Model/Reminders.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ResourceInformation.php b/src/Model/ResourceInformation.php index d5b46bce..2aa3c108 100644 --- a/src/Model/ResourceInformation.php +++ b/src/Model/ResourceInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ScheduledSending.php b/src/Model/ScheduledSending.php index 59b6ee33..fb49ce51 100644 --- a/src/Model/ScheduledSending.php +++ b/src/Model/ScheduledSending.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SealIdentifier.php b/src/Model/SealIdentifier.php index d2be07ec..05802462 100644 --- a/src/Model/SealIdentifier.php +++ b/src/Model/SealIdentifier.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SealSign.php b/src/Model/SealSign.php index c16247c2..4ba69ebc 100644 --- a/src/Model/SealSign.php +++ b/src/Model/SealSign.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SeatDiscount.php b/src/Model/SeatDiscount.php index 2c1b8f2e..e9236a19 100644 --- a/src/Model/SeatDiscount.php +++ b/src/Model/SeatDiscount.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SenderCompany.php b/src/Model/SenderCompany.php index f735fda9..baebe6a8 100644 --- a/src/Model/SenderCompany.php +++ b/src/Model/SenderCompany.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SenderEmailNotifications.php b/src/Model/SenderEmailNotifications.php index d851c73d..9e53a98e 100644 --- a/src/Model/SenderEmailNotifications.php +++ b/src/Model/SenderEmailNotifications.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SenderName.php b/src/Model/SenderName.php index 95097e7c..2cc92984 100644 --- a/src/Model/SenderName.php +++ b/src/Model/SenderName.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ServerTemplate.php b/src/Model/ServerTemplate.php index 955ea9aa..de07f6a6 100644 --- a/src/Model/ServerTemplate.php +++ b/src/Model/ServerTemplate.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ServiceInformation.php b/src/Model/ServiceInformation.php index d5868eaf..d2527e88 100644 --- a/src/Model/ServiceInformation.php +++ b/src/Model/ServiceInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ServiceVersion.php b/src/Model/ServiceVersion.php index a509089f..19f3bd42 100644 --- a/src/Model/ServiceVersion.php +++ b/src/Model/ServiceVersion.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SettingsMetadata.php b/src/Model/SettingsMetadata.php index 7986c5c4..e150c506 100644 --- a/src/Model/SettingsMetadata.php +++ b/src/Model/SettingsMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SharedItem.php b/src/Model/SharedItem.php index b96aec20..f7dbb185 100644 --- a/src/Model/SharedItem.php +++ b/src/Model/SharedItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignHere.php b/src/Model/SignHere.php index 9c2595d8..6e24d542 100644 --- a/src/Model/SignHere.php +++ b/src/Model/SignHere.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureGroup.php b/src/Model/SignatureGroup.php index f628ead7..6606d540 100644 --- a/src/Model/SignatureGroup.php +++ b/src/Model/SignatureGroup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureGroupDef.php b/src/Model/SignatureGroupDef.php index 99a04091..fb27350d 100644 --- a/src/Model/SignatureGroupDef.php +++ b/src/Model/SignatureGroupDef.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureProviderRequiredOption.php b/src/Model/SignatureProviderRequiredOption.php index 2c8e1194..c8ead2cc 100644 --- a/src/Model/SignatureProviderRequiredOption.php +++ b/src/Model/SignatureProviderRequiredOption.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureType.php b/src/Model/SignatureType.php index ea4959cf..c313a857 100644 --- a/src/Model/SignatureType.php +++ b/src/Model/SignatureType.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureUser.php b/src/Model/SignatureUser.php index 927a87ec..b096cd23 100644 --- a/src/Model/SignatureUser.php +++ b/src/Model/SignatureUser.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignatureUserDef.php b/src/Model/SignatureUserDef.php index ecb8f725..5a02b606 100644 --- a/src/Model/SignatureUserDef.php +++ b/src/Model/SignatureUserDef.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Signer.php b/src/Model/Signer.php index c43e69d9..a70c43be 100644 --- a/src/Model/Signer.php +++ b/src/Model/Signer.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignerAttachment.php b/src/Model/SignerAttachment.php index 7071ddd6..f5f9f3ed 100644 --- a/src/Model/SignerAttachment.php +++ b/src/Model/SignerAttachment.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SignerEmailNotifications.php b/src/Model/SignerEmailNotifications.php index e7f7c092..46b33e98 100644 --- a/src/Model/SignerEmailNotifications.php +++ b/src/Model/SignerEmailNotifications.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SigningGroup.php b/src/Model/SigningGroup.php index cdad8584..d946ce9b 100644 --- a/src/Model/SigningGroup.php +++ b/src/Model/SigningGroup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SigningGroupInformation.php b/src/Model/SigningGroupInformation.php index c9ef7182..880b6294 100644 --- a/src/Model/SigningGroupInformation.php +++ b/src/Model/SigningGroupInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SigningGroupUser.php b/src/Model/SigningGroupUser.php index 75a61932..42ea3d64 100644 --- a/src/Model/SigningGroupUser.php +++ b/src/Model/SigningGroupUser.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SigningGroupUsers.php b/src/Model/SigningGroupUsers.php index e4bef892..97e6d5ac 100644 --- a/src/Model/SigningGroupUsers.php +++ b/src/Model/SigningGroupUsers.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SmartContractInformation.php b/src/Model/SmartContractInformation.php index 24296a8f..324a85fb 100644 --- a/src/Model/SmartContractInformation.php +++ b/src/Model/SmartContractInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SmartSection.php b/src/Model/SmartSection.php index 7519e8ac..8c96669a 100644 --- a/src/Model/SmartSection.php +++ b/src/Model/SmartSection.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SmartSectionAnchorPosition.php b/src/Model/SmartSectionAnchorPosition.php index 5b6fba11..feec5405 100644 --- a/src/Model/SmartSectionAnchorPosition.php +++ b/src/Model/SmartSectionAnchorPosition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SmartSectionCollapsibleDisplaySettings.php b/src/Model/SmartSectionCollapsibleDisplaySettings.php index 2681ab32..ff2ef76c 100644 --- a/src/Model/SmartSectionCollapsibleDisplaySettings.php +++ b/src/Model/SmartSectionCollapsibleDisplaySettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SmartSectionDisplaySettings.php b/src/Model/SmartSectionDisplaySettings.php index c1430d5b..df99491a 100644 --- a/src/Model/SmartSectionDisplaySettings.php +++ b/src/Model/SmartSectionDisplaySettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SocialAccountInformation.php b/src/Model/SocialAccountInformation.php index 9e92cfbd..0a896b69 100644 --- a/src/Model/SocialAccountInformation.php +++ b/src/Model/SocialAccountInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SocialAuthentication.php b/src/Model/SocialAuthentication.php index 98744029..dfd5ff4b 100644 --- a/src/Model/SocialAuthentication.php +++ b/src/Model/SocialAuthentication.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Ssn.php b/src/Model/Ssn.php index f773e4f8..decba1cc 100644 --- a/src/Model/Ssn.php +++ b/src/Model/Ssn.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Ssn4InformationInput.php b/src/Model/Ssn4InformationInput.php index 3384b44d..9d916cd5 100644 --- a/src/Model/Ssn4InformationInput.php +++ b/src/Model/Ssn4InformationInput.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Ssn9InformationInput.php b/src/Model/Ssn9InformationInput.php index f3b5bfa8..f1cd319c 100644 --- a/src/Model/Ssn9InformationInput.php +++ b/src/Model/Ssn9InformationInput.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Stamp.php b/src/Model/Stamp.php index 48546339..e9a37b0d 100644 --- a/src/Model/Stamp.php +++ b/src/Model/Stamp.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/SupportedLanguages.php b/src/Model/SupportedLanguages.php index 7e7799d4..33c98e5c 100644 --- a/src/Model/SupportedLanguages.php +++ b/src/Model/SupportedLanguages.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TabAccountSettings.php b/src/Model/TabAccountSettings.php index 5baccb07..2d291df2 100644 --- a/src/Model/TabAccountSettings.php +++ b/src/Model/TabAccountSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com @@ -73,6 +73,8 @@ class TabAccountSettings implements ModelInterface, ArrayAccess 'data_field_size_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'draw_tabs_enabled' => '?string', 'draw_tabs_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', + 'enable_tab_agreement_details' => '?string', + 'enable_tab_agreement_details_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'first_last_email_tabs_enabled' => '?string', 'first_last_email_tabs_metadata' => '\DocuSign\eSign\Model\SettingsMetadata', 'list_tabs_enabled' => '?string', @@ -125,6 +127,8 @@ class TabAccountSettings implements ModelInterface, ArrayAccess 'data_field_size_metadata' => null, 'draw_tabs_enabled' => null, 'draw_tabs_metadata' => null, + 'enable_tab_agreement_details' => null, + 'enable_tab_agreement_details_metadata' => null, 'first_last_email_tabs_enabled' => null, 'first_last_email_tabs_metadata' => null, 'list_tabs_enabled' => null, @@ -198,6 +202,8 @@ public static function swaggerFormats() 'data_field_size_metadata' => 'dataFieldSizeMetadata', 'draw_tabs_enabled' => 'drawTabsEnabled', 'draw_tabs_metadata' => 'drawTabsMetadata', + 'enable_tab_agreement_details' => 'enableTabAgreementDetails', + 'enable_tab_agreement_details_metadata' => 'enableTabAgreementDetailsMetadata', 'first_last_email_tabs_enabled' => 'firstLastEmailTabsEnabled', 'first_last_email_tabs_metadata' => 'firstLastEmailTabsMetadata', 'list_tabs_enabled' => 'listTabsEnabled', @@ -250,6 +256,8 @@ public static function swaggerFormats() 'data_field_size_metadata' => 'setDataFieldSizeMetadata', 'draw_tabs_enabled' => 'setDrawTabsEnabled', 'draw_tabs_metadata' => 'setDrawTabsMetadata', + 'enable_tab_agreement_details' => 'setEnableTabAgreementDetails', + 'enable_tab_agreement_details_metadata' => 'setEnableTabAgreementDetailsMetadata', 'first_last_email_tabs_enabled' => 'setFirstLastEmailTabsEnabled', 'first_last_email_tabs_metadata' => 'setFirstLastEmailTabsMetadata', 'list_tabs_enabled' => 'setListTabsEnabled', @@ -302,6 +310,8 @@ public static function swaggerFormats() 'data_field_size_metadata' => 'getDataFieldSizeMetadata', 'draw_tabs_enabled' => 'getDrawTabsEnabled', 'draw_tabs_metadata' => 'getDrawTabsMetadata', + 'enable_tab_agreement_details' => 'getEnableTabAgreementDetails', + 'enable_tab_agreement_details_metadata' => 'getEnableTabAgreementDetailsMetadata', 'first_last_email_tabs_enabled' => 'getFirstLastEmailTabsEnabled', 'first_last_email_tabs_metadata' => 'getFirstLastEmailTabsMetadata', 'list_tabs_enabled' => 'getListTabsEnabled', @@ -408,6 +418,8 @@ public function __construct(array $data = null) $this->container['data_field_size_metadata'] = isset($data['data_field_size_metadata']) ? $data['data_field_size_metadata'] : null; $this->container['draw_tabs_enabled'] = isset($data['draw_tabs_enabled']) ? $data['draw_tabs_enabled'] : null; $this->container['draw_tabs_metadata'] = isset($data['draw_tabs_metadata']) ? $data['draw_tabs_metadata'] : null; + $this->container['enable_tab_agreement_details'] = isset($data['enable_tab_agreement_details']) ? $data['enable_tab_agreement_details'] : null; + $this->container['enable_tab_agreement_details_metadata'] = isset($data['enable_tab_agreement_details_metadata']) ? $data['enable_tab_agreement_details_metadata'] : null; $this->container['first_last_email_tabs_enabled'] = isset($data['first_last_email_tabs_enabled']) ? $data['first_last_email_tabs_enabled'] : null; $this->container['first_last_email_tabs_metadata'] = isset($data['first_last_email_tabs_metadata']) ? $data['first_last_email_tabs_metadata'] : null; $this->container['list_tabs_enabled'] = isset($data['list_tabs_enabled']) ? $data['list_tabs_enabled'] : null; @@ -800,6 +812,54 @@ public function setDrawTabsMetadata($draw_tabs_metadata) return $this; } + /** + * Gets enable_tab_agreement_details + * + * @return ?string + */ + public function getEnableTabAgreementDetails() + { + return $this->container['enable_tab_agreement_details']; + } + + /** + * Sets enable_tab_agreement_details + * + * @param ?string $enable_tab_agreement_details + * + * @return $this + */ + public function setEnableTabAgreementDetails($enable_tab_agreement_details) + { + $this->container['enable_tab_agreement_details'] = $enable_tab_agreement_details; + + return $this; + } + + /** + * Gets enable_tab_agreement_details_metadata + * + * @return \DocuSign\eSign\Model\SettingsMetadata + */ + public function getEnableTabAgreementDetailsMetadata() + { + return $this->container['enable_tab_agreement_details_metadata']; + } + + /** + * Sets enable_tab_agreement_details_metadata + * + * @param \DocuSign\eSign\Model\SettingsMetadata $enable_tab_agreement_details_metadata + * + * @return $this + */ + public function setEnableTabAgreementDetailsMetadata($enable_tab_agreement_details_metadata) + { + $this->container['enable_tab_agreement_details_metadata'] = $enable_tab_agreement_details_metadata; + + return $this; + } + /** * Gets first_last_email_tabs_enabled * diff --git a/src/Model/TabGroup.php b/src/Model/TabGroup.php index bf3de2c0..252b6d82 100644 --- a/src/Model/TabGroup.php +++ b/src/Model/TabGroup.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TabMetadata.php b/src/Model/TabMetadata.php index 34ec22a0..0e77668a 100644 --- a/src/Model/TabMetadata.php +++ b/src/Model/TabMetadata.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TabMetadataList.php b/src/Model/TabMetadataList.php index 595667d9..2aaf95a6 100644 --- a/src/Model/TabMetadataList.php +++ b/src/Model/TabMetadataList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Tabs.php b/src/Model/Tabs.php index 71b6f66f..91b97514 100644 --- a/src/Model/Tabs.php +++ b/src/Model/Tabs.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateCustomFields.php b/src/Model/TemplateCustomFields.php index 3ac2d9fa..f89f1bb5 100644 --- a/src/Model/TemplateCustomFields.php +++ b/src/Model/TemplateCustomFields.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateDocumentVisibilityList.php b/src/Model/TemplateDocumentVisibilityList.php index d7411cc1..78406369 100644 --- a/src/Model/TemplateDocumentVisibilityList.php +++ b/src/Model/TemplateDocumentVisibilityList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateDocumentsResult.php b/src/Model/TemplateDocumentsResult.php index 99d92b38..9e2f0217 100644 --- a/src/Model/TemplateDocumentsResult.php +++ b/src/Model/TemplateDocumentsResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateInformation.php b/src/Model/TemplateInformation.php index 5070b302..5b2b9e93 100644 --- a/src/Model/TemplateInformation.php +++ b/src/Model/TemplateInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateMatch.php b/src/Model/TemplateMatch.php index ea48b645..16992114 100644 --- a/src/Model/TemplateMatch.php +++ b/src/Model/TemplateMatch.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateNotificationRequest.php b/src/Model/TemplateNotificationRequest.php index 24edd6b4..db310459 100644 --- a/src/Model/TemplateNotificationRequest.php +++ b/src/Model/TemplateNotificationRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateRecipients.php b/src/Model/TemplateRecipients.php index 77441640..f3ddca2b 100644 --- a/src/Model/TemplateRecipients.php +++ b/src/Model/TemplateRecipients.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateRole.php b/src/Model/TemplateRole.php index 8c4781bd..5b3d7264 100644 --- a/src/Model/TemplateRole.php +++ b/src/Model/TemplateRole.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateSharedItem.php b/src/Model/TemplateSharedItem.php index 8d8f6564..7ae1d52e 100644 --- a/src/Model/TemplateSharedItem.php +++ b/src/Model/TemplateSharedItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateSummary.php b/src/Model/TemplateSummary.php index 94922d03..5b323f65 100644 --- a/src/Model/TemplateSummary.php +++ b/src/Model/TemplateSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateTabs.php b/src/Model/TemplateTabs.php index f824c62f..a5314be5 100644 --- a/src/Model/TemplateTabs.php +++ b/src/Model/TemplateTabs.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateUpdateSummary.php b/src/Model/TemplateUpdateSummary.php index 47cb13a9..dd610670 100644 --- a/src/Model/TemplateUpdateSummary.php +++ b/src/Model/TemplateUpdateSummary.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TemplateViewRequest.php b/src/Model/TemplateViewRequest.php index 2bec4d75..a83911ea 100644 --- a/src/Model/TemplateViewRequest.php +++ b/src/Model/TemplateViewRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Text.php b/src/Model/Text.php index 86c72f6f..a233f3d2 100644 --- a/src/Model/Text.php +++ b/src/Model/Text.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/TextCustomField.php b/src/Model/TextCustomField.php index cad0415a..342ce21b 100644 --- a/src/Model/TextCustomField.php +++ b/src/Model/TextCustomField.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Title.php b/src/Model/Title.php index 70b9604e..4f76a73c 100644 --- a/src/Model/Title.php +++ b/src/Model/Title.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UsageHistory.php b/src/Model/UsageHistory.php index 5a2ad7f2..2bcaf000 100644 --- a/src/Model/UsageHistory.php +++ b/src/Model/UsageHistory.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAccountManagementGranularInformation.php b/src/Model/UserAccountManagementGranularInformation.php index 93f42a02..2ace9e14 100644 --- a/src/Model/UserAccountManagementGranularInformation.php +++ b/src/Model/UserAccountManagementGranularInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorization.php b/src/Model/UserAuthorization.php index aa819080..b01cf37a 100644 --- a/src/Model/UserAuthorization.php +++ b/src/Model/UserAuthorization.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationCreateRequest.php b/src/Model/UserAuthorizationCreateRequest.php index 861142bb..e7be39e5 100644 --- a/src/Model/UserAuthorizationCreateRequest.php +++ b/src/Model/UserAuthorizationCreateRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationCreateRequestWithId.php b/src/Model/UserAuthorizationCreateRequestWithId.php index 7a4b58e8..fbb629b6 100644 --- a/src/Model/UserAuthorizationCreateRequestWithId.php +++ b/src/Model/UserAuthorizationCreateRequestWithId.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationIdWithStatus.php b/src/Model/UserAuthorizationIdWithStatus.php index 1805980f..5b0cc6a8 100644 --- a/src/Model/UserAuthorizationIdWithStatus.php +++ b/src/Model/UserAuthorizationIdWithStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationUpdateRequest.php b/src/Model/UserAuthorizationUpdateRequest.php index c5c79248..18892fba 100644 --- a/src/Model/UserAuthorizationUpdateRequest.php +++ b/src/Model/UserAuthorizationUpdateRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationWithStatus.php b/src/Model/UserAuthorizationWithStatus.php index 1f58aece..6d3677a8 100644 --- a/src/Model/UserAuthorizationWithStatus.php +++ b/src/Model/UserAuthorizationWithStatus.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizations.php b/src/Model/UserAuthorizations.php index 7f7ea3e9..6fecdfb9 100644 --- a/src/Model/UserAuthorizations.php +++ b/src/Model/UserAuthorizations.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationsDeleteRequest.php b/src/Model/UserAuthorizationsDeleteRequest.php index 5561b09d..bf16eb7c 100644 --- a/src/Model/UserAuthorizationsDeleteRequest.php +++ b/src/Model/UserAuthorizationsDeleteRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationsDeleteResponse.php b/src/Model/UserAuthorizationsDeleteResponse.php index 3753714d..0dd5467c 100644 --- a/src/Model/UserAuthorizationsDeleteResponse.php +++ b/src/Model/UserAuthorizationsDeleteResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationsRequest.php b/src/Model/UserAuthorizationsRequest.php index 59d86573..eeafebca 100644 --- a/src/Model/UserAuthorizationsRequest.php +++ b/src/Model/UserAuthorizationsRequest.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserAuthorizationsResponse.php b/src/Model/UserAuthorizationsResponse.php index b8c270fc..d4ef6974 100644 --- a/src/Model/UserAuthorizationsResponse.php +++ b/src/Model/UserAuthorizationsResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserInfo.php b/src/Model/UserInfo.php index fd71c447..245c16a7 100644 --- a/src/Model/UserInfo.php +++ b/src/Model/UserInfo.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserInfoList.php b/src/Model/UserInfoList.php index adbb3643..46b5b853 100644 --- a/src/Model/UserInfoList.php +++ b/src/Model/UserInfoList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserInformation.php b/src/Model/UserInformation.php index 826b00c8..5f69ac5f 100644 --- a/src/Model/UserInformation.php +++ b/src/Model/UserInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserInformationList.php b/src/Model/UserInformationList.php index e74f4b18..53df2811 100644 --- a/src/Model/UserInformationList.php +++ b/src/Model/UserInformationList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserPasswordInformation.php b/src/Model/UserPasswordInformation.php index d28dfdf5..1bacbd42 100644 --- a/src/Model/UserPasswordInformation.php +++ b/src/Model/UserPasswordInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserPasswordRules.php b/src/Model/UserPasswordRules.php index 7dc08e17..60f5f57a 100644 --- a/src/Model/UserPasswordRules.php +++ b/src/Model/UserPasswordRules.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserProfile.php b/src/Model/UserProfile.php index e48c13cb..2e358845 100644 --- a/src/Model/UserProfile.php +++ b/src/Model/UserProfile.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSettingsInformation.php b/src/Model/UserSettingsInformation.php index 4e3233a4..f4489c64 100644 --- a/src/Model/UserSettingsInformation.php +++ b/src/Model/UserSettingsInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSharedItem.php b/src/Model/UserSharedItem.php index a86d40a2..01b485b4 100644 --- a/src/Model/UserSharedItem.php +++ b/src/Model/UserSharedItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSignature.php b/src/Model/UserSignature.php index 8b3ac253..1bfd2139 100644 --- a/src/Model/UserSignature.php +++ b/src/Model/UserSignature.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSignatureDefinition.php b/src/Model/UserSignatureDefinition.php index 54494f9d..0b9e9219 100644 --- a/src/Model/UserSignatureDefinition.php +++ b/src/Model/UserSignatureDefinition.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSignaturesInformation.php b/src/Model/UserSignaturesInformation.php index 9881875c..f66f0632 100644 --- a/src/Model/UserSignaturesInformation.php +++ b/src/Model/UserSignaturesInformation.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UserSocialIdResult.php b/src/Model/UserSocialIdResult.php index e389bb31..91da5ba1 100644 --- a/src/Model/UserSocialIdResult.php +++ b/src/Model/UserSocialIdResult.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/UsersResponse.php b/src/Model/UsersResponse.php index 9f3c03b7..0d64a816 100644 --- a/src/Model/UsersResponse.php +++ b/src/Model/UsersResponse.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/View.php b/src/Model/View.php index 11fd1fb7..b65721af 100644 --- a/src/Model/View.php +++ b/src/Model/View.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/ViewUrl.php b/src/Model/ViewUrl.php index 9fd83b34..8402aec0 100644 --- a/src/Model/ViewUrl.php +++ b/src/Model/ViewUrl.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Watermark.php b/src/Model/Watermark.php index d0ec57a8..cc6cd288 100644 --- a/src/Model/Watermark.php +++ b/src/Model/Watermark.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Witness.php b/src/Model/Witness.php index e520643b..a61bcde2 100644 --- a/src/Model/Witness.php +++ b/src/Model/Witness.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Workflow.php b/src/Model/Workflow.php index a8fb6881..598498ce 100644 --- a/src/Model/Workflow.php +++ b/src/Model/Workflow.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkflowStep.php b/src/Model/WorkflowStep.php index 87bc1a4a..e326dd4d 100644 --- a/src/Model/WorkflowStep.php +++ b/src/Model/WorkflowStep.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Workspace.php b/src/Model/Workspace.php index aace64b8..3c211b04 100644 --- a/src/Model/Workspace.php +++ b/src/Model/Workspace.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceFolderContents.php b/src/Model/WorkspaceFolderContents.php index e2aaf800..06de55d5 100644 --- a/src/Model/WorkspaceFolderContents.php +++ b/src/Model/WorkspaceFolderContents.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceItem.php b/src/Model/WorkspaceItem.php index 7b54ac01..ddd33642 100644 --- a/src/Model/WorkspaceItem.php +++ b/src/Model/WorkspaceItem.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceItemList.php b/src/Model/WorkspaceItemList.php index 9731d94e..1f34fc2d 100644 --- a/src/Model/WorkspaceItemList.php +++ b/src/Model/WorkspaceItemList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceList.php b/src/Model/WorkspaceList.php index 7a9628c6..c81fbd1e 100644 --- a/src/Model/WorkspaceList.php +++ b/src/Model/WorkspaceList.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceSettings.php b/src/Model/WorkspaceSettings.php index 8e355bd3..c45f22f0 100644 --- a/src/Model/WorkspaceSettings.php +++ b/src/Model/WorkspaceSettings.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceUser.php b/src/Model/WorkspaceUser.php index b35da832..fb53f3ff 100644 --- a/src/Model/WorkspaceUser.php +++ b/src/Model/WorkspaceUser.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/WorkspaceUserAuthorization.php b/src/Model/WorkspaceUserAuthorization.php index 102794c5..a88bfd68 100644 --- a/src/Model/WorkspaceUserAuthorization.php +++ b/src/Model/WorkspaceUserAuthorization.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/Model/Zip.php b/src/Model/Zip.php index 1245cc9c..99693d4d 100644 --- a/src/Model/Zip.php +++ b/src/Model/Zip.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com diff --git a/src/ObjectSerializer.php b/src/ObjectSerializer.php index 7a529d95..52d8cd8c 100644 --- a/src/ObjectSerializer.php +++ b/src/ObjectSerializer.php @@ -12,9 +12,9 @@ */ /** - * DocuSign REST API + * Docusign eSignature REST API * - * The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + * The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. * * OpenAPI spec version: v2.1 * Contact: devcenter@docusign.com