diff --git a/.swagger-codegen-ignore b/.swagger-codegen-ignore new file mode 100644 index 0000000..c5fa491 --- /dev/null +++ b/.swagger-codegen-ignore @@ -0,0 +1,23 @@ +# Swagger Codegen Ignore +# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen + +# Use this file to prevent files from being overwritten by the generator. +# The patterns follow closely to .gitignore or .dockerignore. + +# As an example, the C# client generator defines ApiClient.cs. +# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line: +#ApiClient.cs + +# You can match any string of characters against a directory, file or extension with a single asterisk (*): +#foo/*/qux +# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux + +# You can recursively match patterns against a directory, file or extension with a double asterisk (**): +#foo/**/qux +# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux + +# You can also negate patterns with an exclamation (!). +# For example, you can ignore all files in a docs folder with the file extension .md: +#docs/*.md +# Then explicitly reverse the ignore rule for a single file: +#!docs/README.md diff --git a/.swagger-codegen/VERSION b/.swagger-codegen/VERSION new file mode 100644 index 0000000..752a79e --- /dev/null +++ b/.swagger-codegen/VERSION @@ -0,0 +1 @@ +2.4.8 \ No newline at end of file diff --git a/README.md b/README.md index b30b944..68e29da 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ API for [SignRequest.com](https://signrequest.com/) PHP 5.5 and later ## Installation & Usage - ### Composer To install the bindings via [Composer](http://getcomposer.org/), add the following to `composer.json`: @@ -17,7 +16,7 @@ To install the bindings via [Composer](http://getcomposer.org/), add the followi ``` { "require": { - "signrequest/signrequest-client": "1.1.*" + "signrequest/signrequest-client": "1.2.0" } } ``` @@ -42,6 +41,7 @@ composer install ``` ## API Documentation + Full API documentation, including code samples, can be found here: https://signrequest.com/api/v1/docs/ @@ -78,96 +78,102 @@ try { ## Documentation for API Endpoints -All URIs are relative to _https://signrequest.com/api/v1_ - -| Class | Method | HTTP request | Description | -| --------------------------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- | --------------------------------------- | -| _ApiTokensApi_ | [**apiTokensCreate**](docs/Api/ApiTokensApi.md#apitokenscreate) | **POST** /api-tokens/ | Create an API token | -| _ApiTokensApi_ | [**apiTokensDelete**](docs/Api/ApiTokensApi.md#apitokensdelete) | **DELETE** /api-tokens/{key}/ | Delete an API token | -| _ApiTokensApi_ | [**apiTokensList**](docs/Api/ApiTokensApi.md#apitokenslist) | **GET** /api-tokens/ | Retrieve a list of API tokens | -| _ApiTokensApi_ | [**apiTokensRead**](docs/Api/ApiTokensApi.md#apitokensread) | **GET** /api-tokens/{key}/ | Retrieve an API token | -| _DocumentAttachmentsApi_ | [**documentAttachmentsCreate**](docs/Api/DocumentAttachmentsApi.md#documentattachmentscreate) | **POST** /document-attachments/ | Create a Document Attachment | -| _DocumentAttachmentsApi_ | [**documentAttachmentsList**](docs/Api/DocumentAttachmentsApi.md#documentattachmentslist) | **GET** /document-attachments/ | Retrieve a list of Document Attachments | -| _DocumentAttachmentsApi_ | [**documentAttachmentsRead**](docs/Api/DocumentAttachmentsApi.md#documentattachmentsread) | **GET** /document-attachments/{uuid}/ | Retrieve a Document Attachment | -| _DocumentsApi_ | [**documentsCreate**](docs/Api/DocumentsApi.md#documentscreate) | **POST** /documents/ | Create a Document | -| _DocumentsApi_ | [**documentsDelete**](docs/Api/DocumentsApi.md#documentsdelete) | **DELETE** /documents/{uuid}/ | Delete a Document | -| _DocumentsApi_ | [**documentsList**](docs/Api/DocumentsApi.md#documentslist) | **GET** /documents/ | Retrieve a list of Documents | -| _DocumentsApi_ | [**documentsRead**](docs/Api/DocumentsApi.md#documentsread) | **GET** /documents/{uuid}/ | Retrieve a Document | -| _DocumentsSearchApi_ | [**documentsSearchList**](docs/Api/DocumentsSearchApi.md#documentssearchlist) | **GET** /documents-search/ | Search documents | -| _EventsApi_ | [**eventsList**](docs/Api/EventsApi.md#eventslist) | **GET** /events/ | Retrieve a list of Events | -| _EventsApi_ | [**eventsRead**](docs/Api/EventsApi.md#eventsread) | **GET** /events/{id}/ | Retrieve an Event | -| _SignrequestQuickCreateApi_ | [**signrequestQuickCreateCreate**](docs/Api/SignrequestQuickCreateApi.md#signrequestquickcreatecreate) | **POST** /signrequest-quick-create/ | Quick create a SignRequest | -| _SignrequestsApi_ | [**signrequestsCancelSignrequest**](docs/Api/SignrequestsApi.md#signrequestscancelsignrequest) | **POST** /signrequests/{uuid}/cancel_signrequest/ | Cancel a SignRequest | -| _SignrequestsApi_ | [**signrequestsCreate**](docs/Api/SignrequestsApi.md#signrequestscreate) | **POST** /signrequests/ | Create a SignRequest | -| _SignrequestsApi_ | [**signrequestsList**](docs/Api/SignrequestsApi.md#signrequestslist) | **GET** /signrequests/ | Retrieve a list of SignRequests | -| _SignrequestsApi_ | [**signrequestsRead**](docs/Api/SignrequestsApi.md#signrequestsread) | **GET** /signrequests/{uuid}/ | Retrieve a SignRequest | -| _SignrequestsApi_ | [**signrequestsResendSignrequestEmail**](docs/Api/SignrequestsApi.md#signrequestsresendsignrequestemail) | **POST** /signrequests/{uuid}/resend_signrequest_email/ | Resend a SignRequest | -| _TeamMembersApi_ | [**teamMembersList**](docs/Api/TeamMembersApi.md#teammemberslist) | **GET** /team-members/ | Retrieve a list of Team Members | -| _TeamMembersApi_ | [**teamMembersRead**](docs/Api/TeamMembersApi.md#teammembersread) | **GET** /team-members/{uuid}/ | Retrieve a Team Member | -| _TeamsApi_ | [**teamsCreate**](docs/Api/TeamsApi.md#teamscreate) | **POST** /teams/ | Create a Team | -| _TeamsApi_ | [**teamsInviteMember**](docs/Api/TeamsApi.md#teamsinvitemember) | **POST** /teams/{subdomain}/invite_member/ | Invite a Team Member | -| _TeamsApi_ | [**teamsList**](docs/Api/TeamsApi.md#teamslist) | **GET** /teams/ | Retrieve a list of Teams | -| _TeamsApi_ | [**teamsPartialUpdate**](docs/Api/TeamsApi.md#teamspartialupdate) | **PATCH** /teams/{subdomain}/ | Update a Team | -| _TeamsApi_ | [**teamsRead**](docs/Api/TeamsApi.md#teamsread) | **GET** /teams/{subdomain}/ | Retrieve a Team | -| _TemplatesApi_ | [**templatesList**](docs/Api/TemplatesApi.md#templateslist) | **GET** /templates/ | Retrieve a list of Templates | -| _TemplatesApi_ | [**templatesRead**](docs/Api/TemplatesApi.md#templatesread) | **GET** /templates/{uuid}/ | Retrieve a Template | -| _WebhooksApi_ | [**webhooksCreate**](docs/Api/WebhooksApi.md#webhookscreate) | **POST** /webhooks/ | Create a Webhook | -| _WebhooksApi_ | [**webhooksDelete**](docs/Api/WebhooksApi.md#webhooksdelete) | **DELETE** /webhooks/{uuid}/ | Delete a Webhook | -| _WebhooksApi_ | [**webhooksList**](docs/Api/WebhooksApi.md#webhookslist) | **GET** /webhooks/ | Retrieve a list of Webhooks | -| _WebhooksApi_ | [**webhooksPartialUpdate**](docs/Api/WebhooksApi.md#webhookspartialupdate) | **PATCH** /webhooks/{uuid}/ | Partially update a Webhook | -| _WebhooksApi_ | [**webhooksRead**](docs/Api/WebhooksApi.md#webhooksread) | **GET** /webhooks/{uuid}/ | Retrieve a Webhook | -| _WebhooksApi_ | [**webhooksUpdate**](docs/Api/WebhooksApi.md#webhooksupdate) | **PUT** /webhooks/{uuid}/ | Update a Webhook | +All URIs are relative to *https://signrequest.com/api/v1* + +Class | Method | HTTP request | Description +------------ | ------------- | ------------- | ------------- +*ApiTokensApi* | [**apiTokensList**](docs/Api/ApiTokensApi.md#apitokenslist) | **GET** /api-tokens/ | Retrieve a list of API tokens +*DocumentAttachmentsApi* | [**documentAttachmentsCreate**](docs/Api/DocumentAttachmentsApi.md#documentattachmentscreate) | **POST** /document-attachments/ | Create a Document Attachment +*DocumentAttachmentsApi* | [**documentAttachmentsList**](docs/Api/DocumentAttachmentsApi.md#documentattachmentslist) | **GET** /document-attachments/ | Retrieve a list of Document Attachments +*DocumentAttachmentsApi* | [**documentAttachmentsRead**](docs/Api/DocumentAttachmentsApi.md#documentattachmentsread) | **GET** /document-attachments/{uuid}/ | Retrieve a Document Attachment +*DocumentsApi* | [**documentsCreate**](docs/Api/DocumentsApi.md#documentscreate) | **POST** /documents/ | Create a Document +*DocumentsApi* | [**documentsDelete**](docs/Api/DocumentsApi.md#documentsdelete) | **DELETE** /documents/{uuid}/ | Delete a Document +*DocumentsApi* | [**documentsList**](docs/Api/DocumentsApi.md#documentslist) | **GET** /documents/ | Retrieve a list of Documents +*DocumentsApi* | [**documentsRead**](docs/Api/DocumentsApi.md#documentsread) | **GET** /documents/{uuid}/ | Retrieve a Document +*DocumentsSearchApi* | [**documentsSearchList**](docs/Api/DocumentsSearchApi.md#documentssearchlist) | **GET** /documents-search/ | Search documents +*EventsApi* | [**eventsList**](docs/Api/EventsApi.md#eventslist) | **GET** /events/ | Retrieve a list of Events +*EventsApi* | [**eventsRead**](docs/Api/EventsApi.md#eventsread) | **GET** /events/{id}/ | Retrieve an Event +*SignrequestQuickCreateApi* | [**signrequestQuickCreateCreate**](docs/Api/SignrequestQuickCreateApi.md#signrequestquickcreatecreate) | **POST** /signrequest-quick-create/ | Quick create a SignRequest +*SignrequestsApi* | [**signrequestsCancelSignrequest**](docs/Api/SignrequestsApi.md#signrequestscancelsignrequest) | **POST** /signrequests/{uuid}/cancel_signrequest/ | Cancel a SignRequest +*SignrequestsApi* | [**signrequestsCreate**](docs/Api/SignrequestsApi.md#signrequestscreate) | **POST** /signrequests/ | Create a SignRequest +*SignrequestsApi* | [**signrequestsList**](docs/Api/SignrequestsApi.md#signrequestslist) | **GET** /signrequests/ | Retrieve a list of SignRequests +*SignrequestsApi* | [**signrequestsRead**](docs/Api/SignrequestsApi.md#signrequestsread) | **GET** /signrequests/{uuid}/ | Retrieve a SignRequest +*SignrequestsApi* | [**signrequestsResendSignrequestEmail**](docs/Api/SignrequestsApi.md#signrequestsresendsignrequestemail) | **POST** /signrequests/{uuid}/resend_signrequest_email/ | Resend a SignRequest +*TeamMembersApi* | [**teamMembersList**](docs/Api/TeamMembersApi.md#teammemberslist) | **GET** /team-members/ | Retrieve a list of Team Members +*TeamMembersApi* | [**teamMembersRead**](docs/Api/TeamMembersApi.md#teammembersread) | **GET** /team-members/{uuid}/ | Retrieve a Team Member +*TeamsApi* | [**teamsCreate**](docs/Api/TeamsApi.md#teamscreate) | **POST** /teams/ | Create a Team +*TeamsApi* | [**teamsDelete**](docs/Api/TeamsApi.md#teamsdelete) | **DELETE** /teams/{subdomain}/ | Delete a Team +*TeamsApi* | [**teamsInviteMember**](docs/Api/TeamsApi.md#teamsinvitemember) | **POST** /teams/{subdomain}/invite_member/ | Invite a Team Member +*TeamsApi* | [**teamsList**](docs/Api/TeamsApi.md#teamslist) | **GET** /teams/ | Retrieve a list of Teams +*TeamsApi* | [**teamsPartialUpdate**](docs/Api/TeamsApi.md#teamspartialupdate) | **PATCH** /teams/{subdomain}/ | Update a Team +*TeamsApi* | [**teamsRead**](docs/Api/TeamsApi.md#teamsread) | **GET** /teams/{subdomain}/ | Retrieve a Team +*TemplatesApi* | [**templatesList**](docs/Api/TemplatesApi.md#templateslist) | **GET** /templates/ | Retrieve a list of Templates +*TemplatesApi* | [**templatesRead**](docs/Api/TemplatesApi.md#templatesread) | **GET** /templates/{uuid}/ | Retrieve a Template +*WebhooksApi* | [**webhooksCreate**](docs/Api/WebhooksApi.md#webhookscreate) | **POST** /webhooks/ | Create a Webhook +*WebhooksApi* | [**webhooksDelete**](docs/Api/WebhooksApi.md#webhooksdelete) | **DELETE** /webhooks/{uuid}/ | Delete a Webhook +*WebhooksApi* | [**webhooksList**](docs/Api/WebhooksApi.md#webhookslist) | **GET** /webhooks/ | Retrieve a list of Webhooks +*WebhooksApi* | [**webhooksPartialUpdate**](docs/Api/WebhooksApi.md#webhookspartialupdate) | **PATCH** /webhooks/{uuid}/ | Partially update a Webhook +*WebhooksApi* | [**webhooksRead**](docs/Api/WebhooksApi.md#webhooksread) | **GET** /webhooks/{uuid}/ | Retrieve a Webhook +*WebhooksApi* | [**webhooksUpdate**](docs/Api/WebhooksApi.md#webhooksupdate) | **PUT** /webhooks/{uuid}/ | Update a Webhook + ## Documentation For Models -- [AuthToken](docs/Model/AuthToken.md) -- [Document](docs/Model/Document.md) -- [DocumentAttachment](docs/Model/DocumentAttachment.md) -- [DocumentSearch](docs/Model/DocumentSearch.md) -- [DocumentSignerTemplateConf](docs/Model/DocumentSignerTemplateConf.md) -- [Event](docs/Model/Event.md) -- [FileFromSf](docs/Model/FileFromSf.md) -- [InlineDocumentSignerIntegrationData](docs/Model/InlineDocumentSignerIntegrationData.md) -- [InlineIntegrationData](docs/Model/InlineIntegrationData.md) -- [InlinePrefillTags](docs/Model/InlinePrefillTags.md) -- [InlineResponse200](docs/Model/InlineResponse200.md) -- [InlineResponse2001](docs/Model/InlineResponse2001.md) -- [InlineResponse2002](docs/Model/InlineResponse2002.md) -- [InlineResponse2003](docs/Model/InlineResponse2003.md) -- [InlineResponse2004](docs/Model/InlineResponse2004.md) -- [InlineResponse2005](docs/Model/InlineResponse2005.md) -- [InlineResponse2006](docs/Model/InlineResponse2006.md) -- [InlineResponse2007](docs/Model/InlineResponse2007.md) -- [InlineResponse2008](docs/Model/InlineResponse2008.md) -- [InlineResponse2009](docs/Model/InlineResponse2009.md) -- [InlineResponse201](docs/Model/InlineResponse201.md) -- [InlineResponse2011](docs/Model/InlineResponse2011.md) -- [InlineSignRequest](docs/Model/InlineSignRequest.md) -- [InlineTeam](docs/Model/InlineTeam.md) -- [InlineTeamMember](docs/Model/InlineTeamMember.md) -- [InviteMember](docs/Model/InviteMember.md) -- [Placeholder](docs/Model/Placeholder.md) -- [RequiredAttachment](docs/Model/RequiredAttachment.md) -- [SignRequest](docs/Model/SignRequest.md) -- [SignRequestQuickCreate](docs/Model/SignRequestQuickCreate.md) -- [Signer](docs/Model/Signer.md) -- [SignerAttachment](docs/Model/SignerAttachment.md) -- [SignerInputs](docs/Model/SignerInputs.md) -- [SigningLog](docs/Model/SigningLog.md) -- [Team](docs/Model/Team.md) -- [TeamMember](docs/Model/TeamMember.md) -- [Template](docs/Model/Template.md) -- [User](docs/Model/User.md) -- [WebhookSubscription](docs/Model/WebhookSubscription.md) + - [AuthToken](docs/Model/AuthToken.md) + - [Document](docs/Model/Document.md) + - [DocumentAttachment](docs/Model/DocumentAttachment.md) + - [DocumentSearch](docs/Model/DocumentSearch.md) + - [DocumentSignerTemplateConf](docs/Model/DocumentSignerTemplateConf.md) + - [DocumentSigningLog](docs/Model/DocumentSigningLog.md) + - [DocumentSignrequest](docs/Model/DocumentSignrequest.md) + - [DocumentTeam](docs/Model/DocumentTeam.md) + - [Event](docs/Model/Event.md) + - [FileFromSf](docs/Model/FileFromSf.md) + - [InlineDocumentSignerIntegrationData](docs/Model/InlineDocumentSignerIntegrationData.md) + - [InlineIntegrationData](docs/Model/InlineIntegrationData.md) + - [InlinePrefillTags](docs/Model/InlinePrefillTags.md) + - [InlineResponse200](docs/Model/InlineResponse200.md) + - [InlineResponse2001](docs/Model/InlineResponse2001.md) + - [InlineResponse2002](docs/Model/InlineResponse2002.md) + - [InlineResponse2003](docs/Model/InlineResponse2003.md) + - [InlineResponse2004](docs/Model/InlineResponse2004.md) + - [InlineResponse2005](docs/Model/InlineResponse2005.md) + - [InlineResponse2006](docs/Model/InlineResponse2006.md) + - [InlineResponse2007](docs/Model/InlineResponse2007.md) + - [InlineResponse2008](docs/Model/InlineResponse2008.md) + - [InlineResponse2009](docs/Model/InlineResponse2009.md) + - [InlineResponse201](docs/Model/InlineResponse201.md) + - [InlineResponse2011](docs/Model/InlineResponse2011.md) + - [InlineSignRequest](docs/Model/InlineSignRequest.md) + - [InlineTeam](docs/Model/InlineTeam.md) + - [InlineTeamMember](docs/Model/InlineTeamMember.md) + - [InviteMember](docs/Model/InviteMember.md) + - [Placeholder](docs/Model/Placeholder.md) + - [RequiredAttachment](docs/Model/RequiredAttachment.md) + - [SignRequest](docs/Model/SignRequest.md) + - [SignRequestQuickCreate](docs/Model/SignRequestQuickCreate.md) + - [Signer](docs/Model/Signer.md) + - [SignerAttachment](docs/Model/SignerAttachment.md) + - [SignerInputs](docs/Model/SignerInputs.md) + - [SigningLog](docs/Model/SigningLog.md) + - [Team](docs/Model/Team.md) + - [TeamMember](docs/Model/TeamMember.md) + - [Template](docs/Model/Template.md) + - [User](docs/Model/User.md) + - [WebhookSubscription](docs/Model/WebhookSubscription.md) + ## Documentation For Authorization + ## Token - **Type**: API key - **API key parameter name**: Authorization - **Location**: HTTP header + ## Author tech-support@signrequest.com + diff --git a/composer.json b/composer.json index 6eb2002..e3b90d4 100644 --- a/composer.json +++ b/composer.json @@ -1,15 +1,15 @@ { - "name": "signrequest/signrequest-client", - "version": "1.1.0", - "description": "Official PHP client for SignRequest.com (https://signrequest.com)", + "name": "signrequest/signrequest-client", + "version": "1.2.0", + "description": "Official PHP client for SignRequest.com (https://signrequest.com)", "keywords": [ "signrequest", "php", "sdk", "api" ], - "homepage": "https://signrequest.com/", - "license": "MIT", + "homepage": "https://signrequest.com/", + "license": "MIT", "authors": [ { "name": "SignRequest", @@ -34,4 +34,4 @@ "autoload-dev": { "psr-4": { "SignRequest\\" : "test/" } } -} +} \ No newline at end of file diff --git a/docs/Model/DocumentSignrequest.md b/docs/Model/DocumentSignrequest.md index 083c9df..3ea2463 100644 --- a/docs/Model/DocumentSignrequest.md +++ b/docs/Model/DocumentSignrequest.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **is_being_prepared** | **bool** | Have the sender of a SignRequest prepare the document before sending the request out, see: [prepare using the web interface](#section/Preparing-a-document/Prepare-using-the-web-interface) | [optional] **prepare_url** | **string** | | [optional] **redirect_url** | **string** | URL at which SignRequest will redirect to when a document is signed | [optional] +**redirect_url_declined** | **string** | URL at which SignRequest will redirect to when a document is declined | [optional] **required_attachments** | [**\SignRequest\Model\RequiredAttachment[]**](RequiredAttachment.md) | | [optional] **disable_attachments** | **bool** | Disable uploading/adding of attachments | [optional] **disable_text_signatures** | **bool** | Disable usage of signatures generated by typing (text) | [optional] diff --git a/docs/Model/InlineSignRequest.md b/docs/Model/InlineSignRequest.md index 3b42a69..676b9ee 100644 --- a/docs/Model/InlineSignRequest.md +++ b/docs/Model/InlineSignRequest.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **is_being_prepared** | **bool** | Have the sender of a SignRequest prepare the document before sending the request out, see: [prepare using the web interface](#section/Preparing-a-document/Prepare-using-the-web-interface) | [optional] **prepare_url** | **string** | | [optional] **redirect_url** | **string** | URL at which SignRequest will redirect to when a document is signed | [optional] +**redirect_url_declined** | **string** | URL at which SignRequest will redirect to when a document is declined | [optional] **required_attachments** | [**\SignRequest\Model\RequiredAttachment[]**](RequiredAttachment.md) | | [optional] **disable_attachments** | **bool** | Disable uploading/adding of attachments | [optional] **disable_text_signatures** | **bool** | Disable usage of signatures generated by typing (text) | [optional] diff --git a/docs/Model/SignRequest.md b/docs/Model/SignRequest.md index a5c30dd..c22696e 100644 --- a/docs/Model/SignRequest.md +++ b/docs/Model/SignRequest.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **is_being_prepared** | **bool** | Have the sender of a SignRequest prepare the document before sending the request out, see: [prepare using the web interface](#section/Preparing-a-document/Prepare-using-the-web-interface) | [optional] **prepare_url** | **string** | | [optional] **redirect_url** | **string** | URL at which SignRequest will redirect to when a document is signed | [optional] +**redirect_url_declined** | **string** | URL at which SignRequest will redirect to when a document is declined | [optional] **required_attachments** | [**\SignRequest\Model\RequiredAttachment[]**](RequiredAttachment.md) | Attachments that signers are required to upload | [optional] **disable_attachments** | **bool** | Disable uploading/adding of attachments | [optional] **disable_text_signatures** | **bool** | Disable usage of signatures generated by typing (text) | [optional] diff --git a/docs/Model/SignRequestQuickCreate.md b/docs/Model/SignRequestQuickCreate.md index 5b8347b..6cb25e7 100644 --- a/docs/Model/SignRequestQuickCreate.md +++ b/docs/Model/SignRequestQuickCreate.md @@ -8,6 +8,7 @@ Name | Type | Description | Notes **is_being_prepared** | **bool** | Have the sender of a SignRequest prepare the document before sending the request out, see: [prepare using the web interface](#section/Preparing-a-document/Prepare-using-the-web-interface) | [optional] **prepare_url** | **string** | | [optional] **redirect_url** | **string** | URL at which SignRequest will redirect to when a document is signed | [optional] +**redirect_url_declined** | **string** | URL at which SignRequest will redirect to when a document is declined | [optional] **required_attachments** | [**\SignRequest\Model\RequiredAttachment[]**](RequiredAttachment.md) | Attachments that signers are required to upload | [optional] **disable_attachments** | **bool** | Disable uploading/adding of attachments | [optional] **disable_text_signatures** | **bool** | Disable usage of signatures generated by typing (text) | [optional] diff --git a/docs/Model/Signer.md b/docs/Model/Signer.md index f00b9a0..21c58e0 100644 --- a/docs/Model/Signer.md +++ b/docs/Model/Signer.md @@ -35,6 +35,7 @@ Name | Type | Description | Notes **embed_url** | **string** | | [optional] **attachments** | [**\SignRequest\Model\SignerAttachment[]**](SignerAttachment.md) | | [optional] **redirect_url** | **string** | | [optional] +**redirect_url_declined** | **string** | | [optional] **after_document** | **string** | | [optional] **integrations** | [**\SignRequest\Model\InlineDocumentSignerIntegrationData[]**](InlineDocumentSignerIntegrationData.md) | | [optional] **password** | **string** | Require the signer to enter this password before signing a document. This field is write only. | [optional] diff --git a/src/Api/ApiTokensApi.php b/src/Api/ApiTokensApi.php index 54463aa..c42ed77 100644 --- a/src/Api/ApiTokensApi.php +++ b/src/Api/ApiTokensApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/DocumentAttachmentsApi.php b/src/Api/DocumentAttachmentsApi.php index 409eaba..c3b5bfc 100644 --- a/src/Api/DocumentAttachmentsApi.php +++ b/src/Api/DocumentAttachmentsApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/DocumentsApi.php b/src/Api/DocumentsApi.php index d03aa1e..d93f0ad 100644 --- a/src/Api/DocumentsApi.php +++ b/src/Api/DocumentsApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/DocumentsSearchApi.php b/src/Api/DocumentsSearchApi.php index 57c6381..72540bc 100644 --- a/src/Api/DocumentsSearchApi.php +++ b/src/Api/DocumentsSearchApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/EventsApi.php b/src/Api/EventsApi.php index 8d8f87b..5d35bb4 100644 --- a/src/Api/EventsApi.php +++ b/src/Api/EventsApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/SignrequestQuickCreateApi.php b/src/Api/SignrequestQuickCreateApi.php index e563d32..6d77653 100644 --- a/src/Api/SignrequestQuickCreateApi.php +++ b/src/Api/SignrequestQuickCreateApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/SignrequestsApi.php b/src/Api/SignrequestsApi.php index 1eda300..03f880a 100644 --- a/src/Api/SignrequestsApi.php +++ b/src/Api/SignrequestsApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/TeamMembersApi.php b/src/Api/TeamMembersApi.php index 45010b2..f692cd2 100644 --- a/src/Api/TeamMembersApi.php +++ b/src/Api/TeamMembersApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/TeamsApi.php b/src/Api/TeamsApi.php index c790936..aeb1c42 100644 --- a/src/Api/TeamsApi.php +++ b/src/Api/TeamsApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/TemplatesApi.php b/src/Api/TemplatesApi.php index 5a9e24b..36289b5 100644 --- a/src/Api/TemplatesApi.php +++ b/src/Api/TemplatesApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Api/WebhooksApi.php b/src/Api/WebhooksApi.php index ee6d859..823aecc 100644 --- a/src/Api/WebhooksApi.php +++ b/src/Api/WebhooksApi.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/ApiException.php b/src/ApiException.php index a064233..c87ea0a 100644 --- a/src/ApiException.php +++ b/src/ApiException.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Configuration.php b/src/Configuration.php index a7ee6ba..8a88c4d 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -88,7 +86,7 @@ class Configuration * * @var string */ - protected $userAgent = 'Swagger-Codegen/1.1.0/php'; + protected $userAgent = 'Swagger-Codegen/1.2.0/php'; /** * Debug switch (default set to false) @@ -397,7 +395,7 @@ public static function toDebugReport() $report .= ' OS: ' . php_uname() . PHP_EOL; $report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL; $report .= ' OpenAPI Spec Version: v1' . PHP_EOL; - $report .= ' SDK Package Version: 1.1.0' . PHP_EOL; + $report .= ' SDK Package Version: 1.2.0' . PHP_EOL; $report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL; return $report; diff --git a/src/HeaderSelector.php b/src/HeaderSelector.php index 0074387..c5e027c 100644 --- a/src/HeaderSelector.php +++ b/src/HeaderSelector.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/AuthToken.php b/src/Model/AuthToken.php index 610921e..265edc9 100644 --- a/src/Model/AuthToken.php +++ b/src/Model/AuthToken.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/Document.php b/src/Model/Document.php index 12acdbd..6db8d1f 100644 --- a/src/Model/Document.php +++ b/src/Model/Document.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/DocumentAttachment.php b/src/Model/DocumentAttachment.php index 850138d..1b1139e 100644 --- a/src/Model/DocumentAttachment.php +++ b/src/Model/DocumentAttachment.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/DocumentSearch.php b/src/Model/DocumentSearch.php index ff82e0d..c8fbd91 100644 --- a/src/Model/DocumentSearch.php +++ b/src/Model/DocumentSearch.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/DocumentSignerTemplateConf.php b/src/Model/DocumentSignerTemplateConf.php index 75f2653..669aa67 100644 --- a/src/Model/DocumentSignerTemplateConf.php +++ b/src/Model/DocumentSignerTemplateConf.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/DocumentSigningLog.php b/src/Model/DocumentSigningLog.php index 4433170..73f422f 100644 --- a/src/Model/DocumentSigningLog.php +++ b/src/Model/DocumentSigningLog.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/DocumentSignrequest.php b/src/Model/DocumentSignrequest.php index 13b76ca..5d501b4 100644 --- a/src/Model/DocumentSignrequest.php +++ b/src/Model/DocumentSignrequest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -62,6 +60,7 @@ class DocumentSignrequest implements ModelInterface, ArrayAccess 'is_being_prepared' => 'bool', 'prepare_url' => 'string', 'redirect_url' => 'string', + 'redirect_url_declined' => 'string', 'required_attachments' => '\SignRequest\Model\RequiredAttachment[]', 'disable_attachments' => 'bool', 'disable_text_signatures' => 'bool', @@ -90,6 +89,7 @@ class DocumentSignrequest implements ModelInterface, ArrayAccess 'is_being_prepared' => null, 'prepare_url' => 'uri', 'redirect_url' => 'uri', + 'redirect_url_declined' => 'uri', 'required_attachments' => null, 'disable_attachments' => null, 'disable_text_signatures' => null, @@ -139,6 +139,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'is_being_prepared', 'prepare_url' => 'prepare_url', 'redirect_url' => 'redirect_url', + 'redirect_url_declined' => 'redirect_url_declined', 'required_attachments' => 'required_attachments', 'disable_attachments' => 'disable_attachments', 'disable_text_signatures' => 'disable_text_signatures', @@ -167,6 +168,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'setIsBeingPrepared', 'prepare_url' => 'setPrepareUrl', 'redirect_url' => 'setRedirectUrl', + 'redirect_url_declined' => 'setRedirectUrlDeclined', 'required_attachments' => 'setRequiredAttachments', 'disable_attachments' => 'setDisableAttachments', 'disable_text_signatures' => 'setDisableTextSignatures', @@ -195,6 +197,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'getIsBeingPrepared', 'prepare_url' => 'getPrepareUrl', 'redirect_url' => 'getRedirectUrl', + 'redirect_url_declined' => 'getRedirectUrlDeclined', 'required_attachments' => 'getRequiredAttachments', 'disable_attachments' => 'getDisableAttachments', 'disable_text_signatures' => 'getDisableTextSignatures', @@ -294,6 +297,7 @@ public function __construct(array $data = null) $this->container['is_being_prepared'] = isset($data['is_being_prepared']) ? $data['is_being_prepared'] : null; $this->container['prepare_url'] = isset($data['prepare_url']) ? $data['prepare_url'] : null; $this->container['redirect_url'] = isset($data['redirect_url']) ? $data['redirect_url'] : null; + $this->container['redirect_url_declined'] = isset($data['redirect_url_declined']) ? $data['redirect_url_declined'] : null; $this->container['required_attachments'] = isset($data['required_attachments']) ? $data['required_attachments'] : null; $this->container['disable_attachments'] = isset($data['disable_attachments']) ? $data['disable_attachments'] : null; $this->container['disable_text_signatures'] = isset($data['disable_text_signatures']) ? $data['disable_text_signatures'] : null; @@ -336,6 +340,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'redirect_url', the character length must be bigger than or equal to 1."; } + if (!is_null($this->container['redirect_url_declined']) && (mb_strlen($this->container['redirect_url_declined']) < 1)) { + $invalidProperties[] = "invalid value for 'redirect_url_declined', the character length must be bigger than or equal to 1."; + } + if (!is_null($this->container['subject']) && (mb_strlen($this->container['subject']) < 1)) { $invalidProperties[] = "invalid value for 'subject', the character length must be bigger than or equal to 1."; } @@ -511,6 +519,35 @@ public function setRedirectUrl($redirect_url) return $this; } + /** + * Gets redirect_url_declined + * + * @return string + */ + public function getRedirectUrlDeclined() + { + return $this->container['redirect_url_declined']; + } + + /** + * Sets redirect_url_declined + * + * @param string $redirect_url_declined URL at which SignRequest will redirect to when a document is declined + * + * @return $this + */ + public function setRedirectUrlDeclined($redirect_url_declined) + { + + if (!is_null($redirect_url_declined) && (mb_strlen($redirect_url_declined) < 1)) { + throw new \InvalidArgumentException('invalid length for $redirect_url_declined when calling DocumentSignrequest., must be bigger than or equal to 1.'); + } + + $this->container['redirect_url_declined'] = $redirect_url_declined; + + return $this; + } + /** * Gets required_attachments * diff --git a/src/Model/DocumentTeam.php b/src/Model/DocumentTeam.php index 2083c32..653b6ef 100644 --- a/src/Model/DocumentTeam.php +++ b/src/Model/DocumentTeam.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/Event.php b/src/Model/Event.php index 29f55e9..2995ee7 100644 --- a/src/Model/Event.php +++ b/src/Model/Event.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/FileFromSf.php b/src/Model/FileFromSf.php index 6ef80ba..b6f0c05 100644 --- a/src/Model/FileFromSf.php +++ b/src/Model/FileFromSf.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineDocumentSignerIntegrationData.php b/src/Model/InlineDocumentSignerIntegrationData.php index 2c6e069..8d94fa7 100644 --- a/src/Model/InlineDocumentSignerIntegrationData.php +++ b/src/Model/InlineDocumentSignerIntegrationData.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineIntegrationData.php b/src/Model/InlineIntegrationData.php index e7c751e..2b72da8 100644 --- a/src/Model/InlineIntegrationData.php +++ b/src/Model/InlineIntegrationData.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlinePrefillTags.php b/src/Model/InlinePrefillTags.php index e31e26f..c05931c 100644 --- a/src/Model/InlinePrefillTags.php +++ b/src/Model/InlinePrefillTags.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse200.php b/src/Model/InlineResponse200.php index d4c9686..1aebdcd 100644 --- a/src/Model/InlineResponse200.php +++ b/src/Model/InlineResponse200.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2001.php b/src/Model/InlineResponse2001.php index bac9086..451f169 100644 --- a/src/Model/InlineResponse2001.php +++ b/src/Model/InlineResponse2001.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2002.php b/src/Model/InlineResponse2002.php index 87b1452..371580f 100644 --- a/src/Model/InlineResponse2002.php +++ b/src/Model/InlineResponse2002.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2003.php b/src/Model/InlineResponse2003.php index 59d6ad4..65dc455 100644 --- a/src/Model/InlineResponse2003.php +++ b/src/Model/InlineResponse2003.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2004.php b/src/Model/InlineResponse2004.php index 155f4f6..819bd79 100644 --- a/src/Model/InlineResponse2004.php +++ b/src/Model/InlineResponse2004.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2005.php b/src/Model/InlineResponse2005.php index 60c9a0b..68dd7c3 100644 --- a/src/Model/InlineResponse2005.php +++ b/src/Model/InlineResponse2005.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2006.php b/src/Model/InlineResponse2006.php index 398defc..29ca7be 100644 --- a/src/Model/InlineResponse2006.php +++ b/src/Model/InlineResponse2006.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2007.php b/src/Model/InlineResponse2007.php index d2f9ad0..963e72c 100644 --- a/src/Model/InlineResponse2007.php +++ b/src/Model/InlineResponse2007.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2008.php b/src/Model/InlineResponse2008.php index a5063e6..c6d96c4 100644 --- a/src/Model/InlineResponse2008.php +++ b/src/Model/InlineResponse2008.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2009.php b/src/Model/InlineResponse2009.php index cadf853..e9e89b5 100644 --- a/src/Model/InlineResponse2009.php +++ b/src/Model/InlineResponse2009.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse201.php b/src/Model/InlineResponse201.php index 73931cc..39cd1a1 100644 --- a/src/Model/InlineResponse201.php +++ b/src/Model/InlineResponse201.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineResponse2011.php b/src/Model/InlineResponse2011.php index 7af5131..8900ace 100644 --- a/src/Model/InlineResponse2011.php +++ b/src/Model/InlineResponse2011.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineSignRequest.php b/src/Model/InlineSignRequest.php index ae47d67..846b44a 100644 --- a/src/Model/InlineSignRequest.php +++ b/src/Model/InlineSignRequest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -62,6 +60,7 @@ class InlineSignRequest implements ModelInterface, ArrayAccess 'is_being_prepared' => 'bool', 'prepare_url' => 'string', 'redirect_url' => 'string', + 'redirect_url_declined' => 'string', 'required_attachments' => '\SignRequest\Model\RequiredAttachment[]', 'disable_attachments' => 'bool', 'disable_text_signatures' => 'bool', @@ -90,6 +89,7 @@ class InlineSignRequest implements ModelInterface, ArrayAccess 'is_being_prepared' => null, 'prepare_url' => 'uri', 'redirect_url' => 'uri', + 'redirect_url_declined' => 'uri', 'required_attachments' => null, 'disable_attachments' => null, 'disable_text_signatures' => null, @@ -139,6 +139,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'is_being_prepared', 'prepare_url' => 'prepare_url', 'redirect_url' => 'redirect_url', + 'redirect_url_declined' => 'redirect_url_declined', 'required_attachments' => 'required_attachments', 'disable_attachments' => 'disable_attachments', 'disable_text_signatures' => 'disable_text_signatures', @@ -167,6 +168,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'setIsBeingPrepared', 'prepare_url' => 'setPrepareUrl', 'redirect_url' => 'setRedirectUrl', + 'redirect_url_declined' => 'setRedirectUrlDeclined', 'required_attachments' => 'setRequiredAttachments', 'disable_attachments' => 'setDisableAttachments', 'disable_text_signatures' => 'setDisableTextSignatures', @@ -195,6 +197,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'getIsBeingPrepared', 'prepare_url' => 'getPrepareUrl', 'redirect_url' => 'getRedirectUrl', + 'redirect_url_declined' => 'getRedirectUrlDeclined', 'required_attachments' => 'getRequiredAttachments', 'disable_attachments' => 'getDisableAttachments', 'disable_text_signatures' => 'getDisableTextSignatures', @@ -294,6 +297,7 @@ public function __construct(array $data = null) $this->container['is_being_prepared'] = isset($data['is_being_prepared']) ? $data['is_being_prepared'] : null; $this->container['prepare_url'] = isset($data['prepare_url']) ? $data['prepare_url'] : null; $this->container['redirect_url'] = isset($data['redirect_url']) ? $data['redirect_url'] : null; + $this->container['redirect_url_declined'] = isset($data['redirect_url_declined']) ? $data['redirect_url_declined'] : null; $this->container['required_attachments'] = isset($data['required_attachments']) ? $data['required_attachments'] : null; $this->container['disable_attachments'] = isset($data['disable_attachments']) ? $data['disable_attachments'] : null; $this->container['disable_text_signatures'] = isset($data['disable_text_signatures']) ? $data['disable_text_signatures'] : null; @@ -336,6 +340,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'redirect_url', the character length must be bigger than or equal to 1."; } + if (!is_null($this->container['redirect_url_declined']) && (mb_strlen($this->container['redirect_url_declined']) < 1)) { + $invalidProperties[] = "invalid value for 'redirect_url_declined', the character length must be bigger than or equal to 1."; + } + if (!is_null($this->container['subject']) && (mb_strlen($this->container['subject']) < 1)) { $invalidProperties[] = "invalid value for 'subject', the character length must be bigger than or equal to 1."; } @@ -511,6 +519,35 @@ public function setRedirectUrl($redirect_url) return $this; } + /** + * Gets redirect_url_declined + * + * @return string + */ + public function getRedirectUrlDeclined() + { + return $this->container['redirect_url_declined']; + } + + /** + * Sets redirect_url_declined + * + * @param string $redirect_url_declined URL at which SignRequest will redirect to when a document is declined + * + * @return $this + */ + public function setRedirectUrlDeclined($redirect_url_declined) + { + + if (!is_null($redirect_url_declined) && (mb_strlen($redirect_url_declined) < 1)) { + throw new \InvalidArgumentException('invalid length for $redirect_url_declined when calling InlineSignRequest., must be bigger than or equal to 1.'); + } + + $this->container['redirect_url_declined'] = $redirect_url_declined; + + return $this; + } + /** * Gets required_attachments * diff --git a/src/Model/InlineTeam.php b/src/Model/InlineTeam.php index 3f30c81..2273425 100644 --- a/src/Model/InlineTeam.php +++ b/src/Model/InlineTeam.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InlineTeamMember.php b/src/Model/InlineTeamMember.php index ff0cb48..7a1485f 100644 --- a/src/Model/InlineTeamMember.php +++ b/src/Model/InlineTeamMember.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/InviteMember.php b/src/Model/InviteMember.php index fae1f27..a65be8e 100644 --- a/src/Model/InviteMember.php +++ b/src/Model/InviteMember.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/ModelInterface.php b/src/Model/ModelInterface.php index 8b45452..77c5459 100644 --- a/src/Model/ModelInterface.php +++ b/src/Model/ModelInterface.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/Placeholder.php b/src/Model/Placeholder.php index 1c62a07..bfcf45a 100644 --- a/src/Model/Placeholder.php +++ b/src/Model/Placeholder.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/RequiredAttachment.php b/src/Model/RequiredAttachment.php index 1fc1297..f940d90 100644 --- a/src/Model/RequiredAttachment.php +++ b/src/Model/RequiredAttachment.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/SignRequest.php b/src/Model/SignRequest.php index 7db8578..2b5151f 100644 --- a/src/Model/SignRequest.php +++ b/src/Model/SignRequest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -62,6 +60,7 @@ class SignRequest implements ModelInterface, ArrayAccess 'is_being_prepared' => 'bool', 'prepare_url' => 'string', 'redirect_url' => 'string', + 'redirect_url_declined' => 'string', 'required_attachments' => '\SignRequest\Model\RequiredAttachment[]', 'disable_attachments' => 'bool', 'disable_text_signatures' => 'bool', @@ -94,6 +93,7 @@ class SignRequest implements ModelInterface, ArrayAccess 'is_being_prepared' => null, 'prepare_url' => 'uri', 'redirect_url' => 'uri', + 'redirect_url_declined' => 'uri', 'required_attachments' => null, 'disable_attachments' => null, 'disable_text_signatures' => null, @@ -147,6 +147,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'is_being_prepared', 'prepare_url' => 'prepare_url', 'redirect_url' => 'redirect_url', + 'redirect_url_declined' => 'redirect_url_declined', 'required_attachments' => 'required_attachments', 'disable_attachments' => 'disable_attachments', 'disable_text_signatures' => 'disable_text_signatures', @@ -179,6 +180,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'setIsBeingPrepared', 'prepare_url' => 'setPrepareUrl', 'redirect_url' => 'setRedirectUrl', + 'redirect_url_declined' => 'setRedirectUrlDeclined', 'required_attachments' => 'setRequiredAttachments', 'disable_attachments' => 'setDisableAttachments', 'disable_text_signatures' => 'setDisableTextSignatures', @@ -211,6 +213,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'getIsBeingPrepared', 'prepare_url' => 'getPrepareUrl', 'redirect_url' => 'getRedirectUrl', + 'redirect_url_declined' => 'getRedirectUrlDeclined', 'required_attachments' => 'getRequiredAttachments', 'disable_attachments' => 'getDisableAttachments', 'disable_text_signatures' => 'getDisableTextSignatures', @@ -335,6 +338,7 @@ public function __construct(array $data = null) $this->container['is_being_prepared'] = isset($data['is_being_prepared']) ? $data['is_being_prepared'] : null; $this->container['prepare_url'] = isset($data['prepare_url']) ? $data['prepare_url'] : null; $this->container['redirect_url'] = isset($data['redirect_url']) ? $data['redirect_url'] : null; + $this->container['redirect_url_declined'] = isset($data['redirect_url_declined']) ? $data['redirect_url_declined'] : null; $this->container['required_attachments'] = isset($data['required_attachments']) ? $data['required_attachments'] : null; $this->container['disable_attachments'] = isset($data['disable_attachments']) ? $data['disable_attachments'] : null; $this->container['disable_text_signatures'] = isset($data['disable_text_signatures']) ? $data['disable_text_signatures'] : null; @@ -385,6 +389,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'redirect_url', the character length must be smaller than or equal to 2100."; } + if (!is_null($this->container['redirect_url_declined']) && (mb_strlen($this->container['redirect_url_declined']) > 2100)) { + $invalidProperties[] = "invalid value for 'redirect_url_declined', the character length must be smaller than or equal to 2100."; + } + if (!is_null($this->container['subject']) && (mb_strlen($this->container['subject']) > 512)) { $invalidProperties[] = "invalid value for 'subject', the character length must be smaller than or equal to 512."; } @@ -570,6 +578,34 @@ public function setRedirectUrl($redirect_url) return $this; } + /** + * Gets redirect_url_declined + * + * @return string + */ + public function getRedirectUrlDeclined() + { + return $this->container['redirect_url_declined']; + } + + /** + * Sets redirect_url_declined + * + * @param string $redirect_url_declined URL at which SignRequest will redirect to when a document is declined + * + * @return $this + */ + public function setRedirectUrlDeclined($redirect_url_declined) + { + if (!is_null($redirect_url_declined) && (mb_strlen($redirect_url_declined) > 2100)) { + throw new \InvalidArgumentException('invalid length for $redirect_url_declined when calling SignRequest., must be smaller than or equal to 2100.'); + } + + $this->container['redirect_url_declined'] = $redirect_url_declined; + + return $this; + } + /** * Gets required_attachments * diff --git a/src/Model/SignRequestQuickCreate.php b/src/Model/SignRequestQuickCreate.php index 14d1b18..c600349 100644 --- a/src/Model/SignRequestQuickCreate.php +++ b/src/Model/SignRequestQuickCreate.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -62,6 +60,7 @@ class SignRequestQuickCreate implements ModelInterface, ArrayAccess 'is_being_prepared' => 'bool', 'prepare_url' => 'string', 'redirect_url' => 'string', + 'redirect_url_declined' => 'string', 'required_attachments' => '\SignRequest\Model\RequiredAttachment[]', 'disable_attachments' => 'bool', 'disable_text_signatures' => 'bool', @@ -108,6 +107,7 @@ class SignRequestQuickCreate implements ModelInterface, ArrayAccess 'is_being_prepared' => null, 'prepare_url' => 'uri', 'redirect_url' => 'uri', + 'redirect_url_declined' => 'uri', 'required_attachments' => null, 'disable_attachments' => null, 'disable_text_signatures' => null, @@ -175,6 +175,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'is_being_prepared', 'prepare_url' => 'prepare_url', 'redirect_url' => 'redirect_url', + 'redirect_url_declined' => 'redirect_url_declined', 'required_attachments' => 'required_attachments', 'disable_attachments' => 'disable_attachments', 'disable_text_signatures' => 'disable_text_signatures', @@ -221,6 +222,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'setIsBeingPrepared', 'prepare_url' => 'setPrepareUrl', 'redirect_url' => 'setRedirectUrl', + 'redirect_url_declined' => 'setRedirectUrlDeclined', 'required_attachments' => 'setRequiredAttachments', 'disable_attachments' => 'setDisableAttachments', 'disable_text_signatures' => 'setDisableTextSignatures', @@ -267,6 +269,7 @@ public static function swaggerFormats() 'is_being_prepared' => 'getIsBeingPrepared', 'prepare_url' => 'getPrepareUrl', 'redirect_url' => 'getRedirectUrl', + 'redirect_url_declined' => 'getRedirectUrlDeclined', 'required_attachments' => 'getRequiredAttachments', 'disable_attachments' => 'getDisableAttachments', 'disable_text_signatures' => 'getDisableTextSignatures', @@ -405,6 +408,7 @@ public function __construct(array $data = null) $this->container['is_being_prepared'] = isset($data['is_being_prepared']) ? $data['is_being_prepared'] : null; $this->container['prepare_url'] = isset($data['prepare_url']) ? $data['prepare_url'] : null; $this->container['redirect_url'] = isset($data['redirect_url']) ? $data['redirect_url'] : null; + $this->container['redirect_url_declined'] = isset($data['redirect_url_declined']) ? $data['redirect_url_declined'] : null; $this->container['required_attachments'] = isset($data['required_attachments']) ? $data['required_attachments'] : null; $this->container['disable_attachments'] = isset($data['disable_attachments']) ? $data['disable_attachments'] : null; $this->container['disable_text_signatures'] = isset($data['disable_text_signatures']) ? $data['disable_text_signatures'] : null; @@ -469,6 +473,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'redirect_url', the character length must be smaller than or equal to 2100."; } + if (!is_null($this->container['redirect_url_declined']) && (mb_strlen($this->container['redirect_url_declined']) > 2100)) { + $invalidProperties[] = "invalid value for 'redirect_url_declined', the character length must be smaller than or equal to 2100."; + } + if (!is_null($this->container['subject']) && (mb_strlen($this->container['subject']) > 512)) { $invalidProperties[] = "invalid value for 'subject', the character length must be smaller than or equal to 512."; } @@ -687,6 +695,34 @@ public function setRedirectUrl($redirect_url) return $this; } + /** + * Gets redirect_url_declined + * + * @return string + */ + public function getRedirectUrlDeclined() + { + return $this->container['redirect_url_declined']; + } + + /** + * Sets redirect_url_declined + * + * @param string $redirect_url_declined URL at which SignRequest will redirect to when a document is declined + * + * @return $this + */ + public function setRedirectUrlDeclined($redirect_url_declined) + { + if (!is_null($redirect_url_declined) && (mb_strlen($redirect_url_declined) > 2100)) { + throw new \InvalidArgumentException('invalid length for $redirect_url_declined when calling SignRequestQuickCreate., must be smaller than or equal to 2100.'); + } + + $this->container['redirect_url_declined'] = $redirect_url_declined; + + return $this; + } + /** * Gets required_attachments * diff --git a/src/Model/Signer.php b/src/Model/Signer.php index 56a07f5..84565d2 100644 --- a/src/Model/Signer.php +++ b/src/Model/Signer.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -89,6 +87,7 @@ class Signer implements ModelInterface, ArrayAccess 'embed_url' => 'string', 'attachments' => '\SignRequest\Model\SignerAttachment[]', 'redirect_url' => 'string', + 'redirect_url_declined' => 'string', 'after_document' => 'string', 'integrations' => '\SignRequest\Model\InlineDocumentSignerIntegrationData[]', 'password' => 'string' @@ -132,6 +131,7 @@ class Signer implements ModelInterface, ArrayAccess 'embed_url' => 'uri', 'attachments' => null, 'redirect_url' => 'uri', + 'redirect_url_declined' => 'uri', 'after_document' => 'uri', 'integrations' => null, 'password' => null @@ -196,6 +196,7 @@ public static function swaggerFormats() 'embed_url' => 'embed_url', 'attachments' => 'attachments', 'redirect_url' => 'redirect_url', + 'redirect_url_declined' => 'redirect_url_declined', 'after_document' => 'after_document', 'integrations' => 'integrations', 'password' => 'password' @@ -239,6 +240,7 @@ public static function swaggerFormats() 'embed_url' => 'setEmbedUrl', 'attachments' => 'setAttachments', 'redirect_url' => 'setRedirectUrl', + 'redirect_url_declined' => 'setRedirectUrlDeclined', 'after_document' => 'setAfterDocument', 'integrations' => 'setIntegrations', 'password' => 'setPassword' @@ -282,6 +284,7 @@ public static function swaggerFormats() 'embed_url' => 'getEmbedUrl', 'attachments' => 'getAttachments', 'redirect_url' => 'getRedirectUrl', + 'redirect_url_declined' => 'getRedirectUrlDeclined', 'after_document' => 'getAfterDocument', 'integrations' => 'getIntegrations', 'password' => 'getPassword' @@ -422,6 +425,7 @@ public function __construct(array $data = null) $this->container['embed_url'] = isset($data['embed_url']) ? $data['embed_url'] : null; $this->container['attachments'] = isset($data['attachments']) ? $data['attachments'] : null; $this->container['redirect_url'] = isset($data['redirect_url']) ? $data['redirect_url'] : null; + $this->container['redirect_url_declined'] = isset($data['redirect_url_declined']) ? $data['redirect_url_declined'] : null; $this->container['after_document'] = isset($data['after_document']) ? $data['after_document'] : null; $this->container['integrations'] = isset($data['integrations']) ? $data['integrations'] : null; $this->container['password'] = isset($data['password']) ? $data['password'] : null; @@ -507,6 +511,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'redirect_url', the character length must be smaller than or equal to 2100."; } + if (!is_null($this->container['redirect_url_declined']) && (mb_strlen($this->container['redirect_url_declined']) > 2100)) { + $invalidProperties[] = "invalid value for 'redirect_url_declined', the character length must be smaller than or equal to 2100."; + } + if (!is_null($this->container['password']) && (mb_strlen($this->container['password']) < 1)) { $invalidProperties[] = "invalid value for 'password', the character length must be bigger than or equal to 1."; } @@ -1367,6 +1375,34 @@ public function setRedirectUrl($redirect_url) return $this; } + /** + * Gets redirect_url_declined + * + * @return string + */ + public function getRedirectUrlDeclined() + { + return $this->container['redirect_url_declined']; + } + + /** + * Sets redirect_url_declined + * + * @param string $redirect_url_declined redirect_url_declined + * + * @return $this + */ + public function setRedirectUrlDeclined($redirect_url_declined) + { + if (!is_null($redirect_url_declined) && (mb_strlen($redirect_url_declined) > 2100)) { + throw new \InvalidArgumentException('invalid length for $redirect_url_declined when calling Signer., must be smaller than or equal to 2100.'); + } + + $this->container['redirect_url_declined'] = $redirect_url_declined; + + return $this; + } + /** * Gets after_document * diff --git a/src/Model/SignerAttachment.php b/src/Model/SignerAttachment.php index 440f51a..b160fc4 100644 --- a/src/Model/SignerAttachment.php +++ b/src/Model/SignerAttachment.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/SignerInputs.php b/src/Model/SignerInputs.php index 3246d77..346cc90 100644 --- a/src/Model/SignerInputs.php +++ b/src/Model/SignerInputs.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/SigningLog.php b/src/Model/SigningLog.php index d4248ab..612e43b 100644 --- a/src/Model/SigningLog.php +++ b/src/Model/SigningLog.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/Team.php b/src/Model/Team.php index 9c1127b..db35607 100644 --- a/src/Model/Team.php +++ b/src/Model/Team.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -273,6 +271,10 @@ public function listInvalidProperties() $invalidProperties[] = "invalid value for 'primary_color', the character length must be smaller than or equal to 100."; } + if (!is_null($this->container['primary_color']) && !preg_match("/^[#a-zA-Z0-9]+$/", $this->container['primary_color'])) { + $invalidProperties[] = "invalid value for 'primary_color', must be conform to the pattern /^[#a-zA-Z0-9]+$/."; + } + if (!is_null($this->container['events_callback_url']) && (mb_strlen($this->container['events_callback_url']) > 2100)) { $invalidProperties[] = "invalid value for 'events_callback_url', the character length must be smaller than or equal to 2100."; } @@ -452,6 +454,9 @@ public function setPrimaryColor($primary_color) if (!is_null($primary_color) && (mb_strlen($primary_color) > 100)) { throw new \InvalidArgumentException('invalid length for $primary_color when calling Team., must be smaller than or equal to 100.'); } + if (!is_null($primary_color) && (!preg_match("/^[#a-zA-Z0-9]+$/", $primary_color))) { + throw new \InvalidArgumentException("invalid value for $primary_color when calling Team., must conform to the pattern /^[#a-zA-Z0-9]+$/."); + } $this->container['primary_color'] = $primary_color; diff --git a/src/Model/TeamMember.php b/src/Model/TeamMember.php index eefa505..5ae7cec 100644 --- a/src/Model/TeamMember.php +++ b/src/Model/TeamMember.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/Template.php b/src/Model/Template.php index 95a480c..cf36f46 100644 --- a/src/Model/Template.php +++ b/src/Model/Template.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/User.php b/src/Model/User.php index 811cdd1..6097524 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/Model/WebhookSubscription.php b/src/Model/WebhookSubscription.php index f3763e3..9497e35 100644 --- a/src/Model/WebhookSubscription.php +++ b/src/Model/WebhookSubscription.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/src/ObjectSerializer.php b/src/ObjectSerializer.php index d5fb281..bee9339 100644 --- a/src/ObjectSerializer.php +++ b/src/ObjectSerializer.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -59,6 +57,11 @@ public static function sanitizeForSerialization($data, $type = null, $format = n $data[$property] = self::sanitizeForSerialization($value); } return $data; + } elseif ($data instanceof \stdClass) { + foreach ($data as $property => $value) { + $data->$property = self::sanitizeForSerialization($value); + } + return $data; } elseif (is_object($data)) { $values = []; $formats = $data::swaggerFormats(); diff --git a/test/Api/ApiTokensApiTest.php b/test/Api/ApiTokensApiTest.php index 7d36daf..102c034 100644 --- a/test/Api/ApiTokensApiTest.php +++ b/test/Api/ApiTokensApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -71,26 +69,6 @@ public static function tearDownAfterClass() { } - /** - * Test case for apiTokensCreate - * - * Create an API token. - * - */ - public function testApiTokensCreate() - { - } - - /** - * Test case for apiTokensDelete - * - * Delete an API token. - * - */ - public function testApiTokensDelete() - { - } - /** * Test case for apiTokensList * @@ -100,14 +78,4 @@ public function testApiTokensDelete() public function testApiTokensList() { } - - /** - * Test case for apiTokensRead - * - * Retrieve an API token. - * - */ - public function testApiTokensRead() - { - } } diff --git a/test/Api/DocumentAttachmentsApiTest.php b/test/Api/DocumentAttachmentsApiTest.php index 5813f9c..60053c4 100644 --- a/test/Api/DocumentAttachmentsApiTest.php +++ b/test/Api/DocumentAttachmentsApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/DocumentsApiTest.php b/test/Api/DocumentsApiTest.php index c7d36bf..565a8a5 100644 --- a/test/Api/DocumentsApiTest.php +++ b/test/Api/DocumentsApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/DocumentsSearchApiTest.php b/test/Api/DocumentsSearchApiTest.php index fff1646..985cf9c 100644 --- a/test/Api/DocumentsSearchApiTest.php +++ b/test/Api/DocumentsSearchApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/EventsApiTest.php b/test/Api/EventsApiTest.php index b8a339a..2cd13f2 100644 --- a/test/Api/EventsApiTest.php +++ b/test/Api/EventsApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/SignrequestQuickCreateApiTest.php b/test/Api/SignrequestQuickCreateApiTest.php index a0ed4cc..4d12470 100644 --- a/test/Api/SignrequestQuickCreateApiTest.php +++ b/test/Api/SignrequestQuickCreateApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/SignrequestsApiTest.php b/test/Api/SignrequestsApiTest.php index 913c5c0..6a0b177 100644 --- a/test/Api/SignrequestsApiTest.php +++ b/test/Api/SignrequestsApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/TeamMembersApiTest.php b/test/Api/TeamMembersApiTest.php index 59864ea..fdc5ec1 100644 --- a/test/Api/TeamMembersApiTest.php +++ b/test/Api/TeamMembersApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/TeamsApiTest.php b/test/Api/TeamsApiTest.php index 2dad37d..a650b86 100644 --- a/test/Api/TeamsApiTest.php +++ b/test/Api/TeamsApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -81,6 +79,16 @@ public function testTeamsCreate() { } + /** + * Test case for teamsDelete + * + * Delete a Team. + * + */ + public function testTeamsDelete() + { + } + /** * Test case for teamsInviteMember * diff --git a/test/Api/TemplatesApiTest.php b/test/Api/TemplatesApiTest.php index e365ac8..17f888c 100644 --- a/test/Api/TemplatesApiTest.php +++ b/test/Api/TemplatesApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Api/WebhooksApiTest.php b/test/Api/WebhooksApiTest.php index 2250157..6b15afd 100644 --- a/test/Api/WebhooksApiTest.php +++ b/test/Api/WebhooksApiTest.php @@ -13,13 +13,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/AuthTokenTest.php b/test/Model/AuthTokenTest.php index da3d984..0be1bf3 100644 --- a/test/Model/AuthTokenTest.php +++ b/test/Model/AuthTokenTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * AuthTokenTest Class Doc Comment * - * @category Class */ -// * @description AuthToken -/** + * @category Class + * @description AuthToken * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/DocumentAttachmentTest.php b/test/Model/DocumentAttachmentTest.php index 3606cfe..94c4150 100644 --- a/test/Model/DocumentAttachmentTest.php +++ b/test/Model/DocumentAttachmentTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * DocumentAttachmentTest Class Doc Comment * - * @category Class */ -// * @description DocumentAttachment -/** + * @category Class + * @description DocumentAttachment * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/DocumentSearchTest.php b/test/Model/DocumentSearchTest.php index bb943fe..15a70d2 100644 --- a/test/Model/DocumentSearchTest.php +++ b/test/Model/DocumentSearchTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * DocumentSearchTest Class Doc Comment * - * @category Class */ -// * @description DocumentSearch -/** + * @category Class + * @description DocumentSearch * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -78,58 +75,58 @@ public function testDocumentSearch() } /** - * Test attribute "status" + * Test attribute "uuid" */ - public function testPropertyStatus() + public function testPropertyUuid() { } /** - * Test attribute "name" + * Test attribute "created" */ - public function testPropertyName() + public function testPropertyCreated() { } /** - * Test attribute "who" + * Test attribute "status" */ - public function testPropertyWho() + public function testPropertyStatus() { } /** - * Test attribute "nr_extra_docs" + * Test attribute "who" */ - public function testPropertyNrExtraDocs() + public function testPropertyWho() { } /** - * Test attribute "from_email" + * Test attribute "name" */ - public function testPropertyFromEmail() + public function testPropertyName() { } /** - * Test attribute "uuid" + * Test attribute "autocomplete" */ - public function testPropertyUuid() + public function testPropertyAutocomplete() { } /** - * Test attribute "created" + * Test attribute "from_email" */ - public function testPropertyCreated() + public function testPropertyFromEmail() { } /** - * Test attribute "autocomplete" + * Test attribute "nr_extra_docs" */ - public function testPropertyAutocomplete() + public function testPropertyNrExtraDocs() { } diff --git a/test/Model/DocumentSignerTemplateConfTest.php b/test/Model/DocumentSignerTemplateConfTest.php index 511cb49..17e061a 100644 --- a/test/Model/DocumentSignerTemplateConfTest.php +++ b/test/Model/DocumentSignerTemplateConfTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * DocumentSignerTemplateConfTest Class Doc Comment * - * @category Class */ -// * @description DocumentSignerTemplateConf -/** + * @category Class + * @description DocumentSignerTemplateConf * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/DocumentSigningLogTest.php b/test/Model/DocumentSigningLogTest.php index e59f51c..61b173d 100644 --- a/test/Model/DocumentSigningLogTest.php +++ b/test/Model/DocumentSigningLogTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/DocumentSignrequestTest.php b/test/Model/DocumentSignrequestTest.php index ea00799..98486d4 100644 --- a/test/Model/DocumentSignrequestTest.php +++ b/test/Model/DocumentSignrequestTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -111,6 +109,13 @@ public function testPropertyRedirectUrl() { } + /** + * Test attribute "redirect_url_declined" + */ + public function testPropertyRedirectUrlDeclined() + { + } + /** * Test attribute "required_attachments" */ diff --git a/test/Model/DocumentTeamTest.php b/test/Model/DocumentTeamTest.php index 3afbeb2..7975f50 100644 --- a/test/Model/DocumentTeamTest.php +++ b/test/Model/DocumentTeamTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.4.5 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/DocumentTest.php b/test/Model/DocumentTest.php index 0a9480b..22be359 100644 --- a/test/Model/DocumentTest.php +++ b/test/Model/DocumentTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * DocumentTest Class Doc Comment * - * @category Class */ -// * @description Document -/** + * @category Class + * @description Document * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -84,6 +81,13 @@ public function testPropertyUrl() { } + /** + * Test attribute "team" + */ + public function testPropertyTeam() + { + } + /** * Test attribute "uuid" */ @@ -196,6 +200,13 @@ public function testPropertyAutoDeleteDays() { } + /** + * Test attribute "auto_expire_days" + */ + public function testPropertyAutoExpireDays() + { + } + /** * Test attribute "pdf" */ @@ -210,6 +221,13 @@ public function testPropertyStatus() { } + /** + * Test attribute "signrequest" + */ + public function testPropertySignrequest() + { + } + /** * Test attribute "api_used" */ @@ -217,6 +235,13 @@ public function testPropertyApiUsed() { } + /** + * Test attribute "signing_log" + */ + public function testPropertySigningLog() + { + } + /** * Test attribute "security_hash" */ @@ -237,4 +262,18 @@ public function testPropertyAttachments() public function testPropertyAutoDeleteAfter() { } + + /** + * Test attribute "sandbox" + */ + public function testPropertySandbox() + { + } + + /** + * Test attribute "auto_expire_after" + */ + public function testPropertyAutoExpireAfter() + { + } } diff --git a/test/Model/EventTest.php b/test/Model/EventTest.php index 3b2b990..ba71891 100644 --- a/test/Model/EventTest.php +++ b/test/Model/EventTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * EventTest Class Doc Comment * - * @category Class */ -// * @description Event -/** + * @category Class + * @description Event * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -126,6 +123,13 @@ public function testPropertyTimestamp() { } + /** + * Test attribute "team" + */ + public function testPropertyTeam() + { + } + /** * Test attribute "document" */ diff --git a/test/Model/FileFromSfTest.php b/test/Model/FileFromSfTest.php index b4d8fed..71c86d2 100644 --- a/test/Model/FileFromSfTest.php +++ b/test/Model/FileFromSfTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * FileFromSfTest Class Doc Comment * - * @category Class */ -// * @description FileFromSf -/** + * @category Class + * @description FileFromSf * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -90,4 +87,11 @@ public function testPropertyObjectType() public function testPropertyObjectId() { } + + /** + * Test attribute "uid" + */ + public function testPropertyUid() + { + } } diff --git a/test/Model/InlineDocumentSignerIntegrationDataTest.php b/test/Model/InlineDocumentSignerIntegrationDataTest.php index 0fe4f55..a5afe62 100644 --- a/test/Model/InlineDocumentSignerIntegrationDataTest.php +++ b/test/Model/InlineDocumentSignerIntegrationDataTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineDocumentSignerIntegrationDataTest Class Doc Comment * - * @category Class */ -// * @description InlineDocumentSignerIntegrationData -/** + * @category Class + * @description InlineDocumentSignerIntegrationData * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineIntegrationDataTest.php b/test/Model/InlineIntegrationDataTest.php index d3deaad..7ef35ba 100644 --- a/test/Model/InlineIntegrationDataTest.php +++ b/test/Model/InlineIntegrationDataTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineIntegrationDataTest Class Doc Comment * - * @category Class */ -// * @description InlineIntegrationData -/** + * @category Class + * @description InlineIntegrationData * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlinePrefillTagsTest.php b/test/Model/InlinePrefillTagsTest.php index cb1fa4a..56c47c9 100644 --- a/test/Model/InlinePrefillTagsTest.php +++ b/test/Model/InlinePrefillTagsTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlinePrefillTagsTest Class Doc Comment * - * @category Class */ -// * @description Prefill signer input data, see [prefill tags](#section/Preparing-a-document/Prefill-tags-templates) -/** + * @category Class + * @description Prefill signer input data, see [prefill tags](#section/Preparing-a-document/Prefill-tags-templates) * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2001Test.php b/test/Model/InlineResponse2001Test.php index e83e725..2324198 100644 --- a/test/Model/InlineResponse2001Test.php +++ b/test/Model/InlineResponse2001Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2001Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2001 -/** + * @category Class + * @description InlineResponse2001 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2002Test.php b/test/Model/InlineResponse2002Test.php index 35210bf..c0e9972 100644 --- a/test/Model/InlineResponse2002Test.php +++ b/test/Model/InlineResponse2002Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2002Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2002 -/** + * @category Class + * @description InlineResponse2002 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2003Test.php b/test/Model/InlineResponse2003Test.php index 404db39..2358d14 100644 --- a/test/Model/InlineResponse2003Test.php +++ b/test/Model/InlineResponse2003Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2003Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2003 -/** + * @category Class + * @description InlineResponse2003 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2004Test.php b/test/Model/InlineResponse2004Test.php index 696b078..43aa7f2 100644 --- a/test/Model/InlineResponse2004Test.php +++ b/test/Model/InlineResponse2004Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2004Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2004 -/** + * @category Class + * @description InlineResponse2004 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2005Test.php b/test/Model/InlineResponse2005Test.php index fd68183..c109897 100644 --- a/test/Model/InlineResponse2005Test.php +++ b/test/Model/InlineResponse2005Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2005Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2005 -/** + * @category Class + * @description InlineResponse2005 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2006Test.php b/test/Model/InlineResponse2006Test.php index 335a1f5..23e7b49 100644 --- a/test/Model/InlineResponse2006Test.php +++ b/test/Model/InlineResponse2006Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2006Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2006 -/** + * @category Class + * @description InlineResponse2006 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2007Test.php b/test/Model/InlineResponse2007Test.php index 6db2113..29e9642 100644 --- a/test/Model/InlineResponse2007Test.php +++ b/test/Model/InlineResponse2007Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2007Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2007 -/** + * @category Class + * @description InlineResponse2007 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2008Test.php b/test/Model/InlineResponse2008Test.php index 39beeda..9f215e8 100644 --- a/test/Model/InlineResponse2008Test.php +++ b/test/Model/InlineResponse2008Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2008Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2008 -/** + * @category Class + * @description InlineResponse2008 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2009Test.php b/test/Model/InlineResponse2009Test.php index 6d24dae..95252cf 100644 --- a/test/Model/InlineResponse2009Test.php +++ b/test/Model/InlineResponse2009Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2009Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2009 -/** + * @category Class + * @description InlineResponse2009 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse200Test.php b/test/Model/InlineResponse200Test.php index 3495617..41cfeae 100644 --- a/test/Model/InlineResponse200Test.php +++ b/test/Model/InlineResponse200Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse200Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse200 -/** + * @category Class + * @description InlineResponse200 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse2011Test.php b/test/Model/InlineResponse2011Test.php index 5665c85..b83cf7c 100644 --- a/test/Model/InlineResponse2011Test.php +++ b/test/Model/InlineResponse2011Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse2011Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse2011 -/** + * @category Class + * @description InlineResponse2011 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineResponse201Test.php b/test/Model/InlineResponse201Test.php index 3dea383..3225c4f 100644 --- a/test/Model/InlineResponse201Test.php +++ b/test/Model/InlineResponse201Test.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineResponse201Test Class Doc Comment * - * @category Class */ -// * @description InlineResponse201 -/** + * @category Class + * @description InlineResponse201 * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -78,16 +75,16 @@ public function testInlineResponse201() } /** - * Test attribute "cancelled" + * Test attribute "detail" */ - public function testPropertyCancelled() + public function testPropertyDetail() { } /** - * Test attribute "detail" + * Test attribute "cancelled" */ - public function testPropertyDetail() + public function testPropertyCancelled() { } } diff --git a/test/Model/InlineSignRequestTest.php b/test/Model/InlineSignRequestTest.php index ee342be..d780cb9 100644 --- a/test/Model/InlineSignRequestTest.php +++ b/test/Model/InlineSignRequestTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineSignRequestTest Class Doc Comment * - * @category Class */ -// * @description InlineSignRequest -/** + * @category Class + * @description InlineSignRequest * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -112,6 +109,13 @@ public function testPropertyRedirectUrl() { } + /** + * Test attribute "redirect_url_declined" + */ + public function testPropertyRedirectUrlDeclined() + { + } + /** * Test attribute "required_attachments" */ @@ -161,6 +165,20 @@ public function testPropertyDisableUploadSignatures() { } + /** + * Test attribute "disable_blockchain_proof" + */ + public function testPropertyDisableBlockchainProof() + { + } + + /** + * Test attribute "text_message_verification_locked" + */ + public function testPropertyTextMessageVerificationLocked() + { + } + /** * Test attribute "subject" */ diff --git a/test/Model/InlineTeamMemberTest.php b/test/Model/InlineTeamMemberTest.php index fa2d7e3..06f5d0c 100644 --- a/test/Model/InlineTeamMemberTest.php +++ b/test/Model/InlineTeamMemberTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineTeamMemberTest Class Doc Comment * - * @category Class */ -// * @description InlineTeamMember -/** + * @category Class + * @description InlineTeamMember * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InlineTeamTest.php b/test/Model/InlineTeamTest.php index fa36742..2f8aca0 100644 --- a/test/Model/InlineTeamTest.php +++ b/test/Model/InlineTeamTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InlineTeamTest Class Doc Comment * - * @category Class */ -// * @description InlineTeam -/** + * @category Class + * @description InlineTeam * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/InviteMemberTest.php b/test/Model/InviteMemberTest.php index 71d3fbe..2fd4186 100644 --- a/test/Model/InviteMemberTest.php +++ b/test/Model/InviteMemberTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * InviteMemberTest Class Doc Comment * - * @category Class */ -// * @description InviteMember -/** + * @category Class + * @description InviteMember * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/PlaceholderTest.php b/test/Model/PlaceholderTest.php index e6cb0ac..9586f91 100644 --- a/test/Model/PlaceholderTest.php +++ b/test/Model/PlaceholderTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * PlaceholderTest Class Doc Comment * - * @category Class */ -// * @description Placeholder -/** + * @category Class + * @description Placeholder * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/RequiredAttachmentTest.php b/test/Model/RequiredAttachmentTest.php index 3aa156f..a92d35b 100644 --- a/test/Model/RequiredAttachmentTest.php +++ b/test/Model/RequiredAttachmentTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * RequiredAttachmentTest Class Doc Comment * - * @category Class */ -// * @description RequiredAttachment -/** + * @category Class + * @description RequiredAttachment * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/SignRequestQuickCreateTest.php b/test/Model/SignRequestQuickCreateTest.php index ed32323..39d57d9 100644 --- a/test/Model/SignRequestQuickCreateTest.php +++ b/test/Model/SignRequestQuickCreateTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SignRequestQuickCreateTest Class Doc Comment * - * @category Class */ -// * @description SignRequestQuickCreate -/** + * @category Class + * @description SignRequestQuickCreate * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -112,6 +109,13 @@ public function testPropertyRedirectUrl() { } + /** + * Test attribute "redirect_url_declined" + */ + public function testPropertyRedirectUrlDeclined() + { + } + /** * Test attribute "required_attachments" */ @@ -161,6 +165,20 @@ public function testPropertyDisableUploadSignatures() { } + /** + * Test attribute "disable_blockchain_proof" + */ + public function testPropertyDisableBlockchainProof() + { + } + + /** + * Test attribute "text_message_verification_locked" + */ + public function testPropertyTextMessageVerificationLocked() + { + } + /** * Test attribute "subject" */ @@ -321,4 +339,11 @@ public function testPropertyFileFromSf() public function testPropertyAutoDeleteDays() { } + + /** + * Test attribute "auto_expire_days" + */ + public function testPropertyAutoExpireDays() + { + } } diff --git a/test/Model/SignRequestTest.php b/test/Model/SignRequestTest.php index aaa7d5d..11b82a4 100644 --- a/test/Model/SignRequestTest.php +++ b/test/Model/SignRequestTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SignRequestTest Class Doc Comment * - * @category Class */ -// * @description SignRequest -/** + * @category Class + * @description SignRequest * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -112,6 +109,13 @@ public function testPropertyRedirectUrl() { } + /** + * Test attribute "redirect_url_declined" + */ + public function testPropertyRedirectUrlDeclined() + { + } + /** * Test attribute "required_attachments" */ @@ -161,6 +165,20 @@ public function testPropertyDisableUploadSignatures() { } + /** + * Test attribute "disable_blockchain_proof" + */ + public function testPropertyDisableBlockchainProof() + { + } + + /** + * Test attribute "text_message_verification_locked" + */ + public function testPropertyTextMessageVerificationLocked() + { + } + /** * Test attribute "subject" */ diff --git a/test/Model/SignerAttachmentTest.php b/test/Model/SignerAttachmentTest.php index af4d3cb..5350ee8 100644 --- a/test/Model/SignerAttachmentTest.php +++ b/test/Model/SignerAttachmentTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SignerAttachmentTest Class Doc Comment * - * @category Class */ -// * @description SignerAttachment -/** + * @category Class + * @description SignerAttachment * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/SignerInputsTest.php b/test/Model/SignerInputsTest.php index a81ca02..53d92f5 100644 --- a/test/Model/SignerInputsTest.php +++ b/test/Model/SignerInputsTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SignerInputsTest Class Doc Comment * - * @category Class */ -// * @description SignerInputs -/** + * @category Class + * @description SignerInputs * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/SignerTest.php b/test/Model/SignerTest.php index e020e26..8b10ceb 100644 --- a/test/Model/SignerTest.php +++ b/test/Model/SignerTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SignerTest Class Doc Comment * - * @category Class */ -// * @description Signer -/** + * @category Class + * @description Signer * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -273,6 +270,13 @@ public function testPropertyInputs() { } + /** + * Test attribute "use_stamp_for_approve_only" + */ + public function testPropertyUseStampForApproveOnly() + { + } + /** * Test attribute "embed_url" */ @@ -294,6 +298,13 @@ public function testPropertyRedirectUrl() { } + /** + * Test attribute "redirect_url_declined" + */ + public function testPropertyRedirectUrlDeclined() + { + } + /** * Test attribute "after_document" */ @@ -307,4 +318,11 @@ public function testPropertyAfterDocument() public function testPropertyIntegrations() { } + + /** + * Test attribute "password" + */ + public function testPropertyPassword() + { + } } diff --git a/test/Model/SigningLogTest.php b/test/Model/SigningLogTest.php index b0348b9..ffd1167 100644 --- a/test/Model/SigningLogTest.php +++ b/test/Model/SigningLogTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * SigningLogTest Class Doc Comment * - * @category Class */ -// * @description SigningLog -/** + * @category Class + * @description SigningLog * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/TeamMemberTest.php b/test/Model/TeamMemberTest.php index 03ff534..92feb79 100644 --- a/test/Model/TeamMemberTest.php +++ b/test/Model/TeamMemberTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * TeamMemberTest Class Doc Comment * - * @category Class */ -// * @description TeamMember -/** + * @category Class + * @description TeamMember * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -98,6 +95,13 @@ public function testPropertyUser() { } + /** + * Test attribute "team" + */ + public function testPropertyTeam() + { + } + /** * Test attribute "is_admin" */ diff --git a/test/Model/TeamTest.php b/test/Model/TeamTest.php index 2dc5162..01bea69 100644 --- a/test/Model/TeamTest.php +++ b/test/Model/TeamTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * TeamTest Class Doc Comment * - * @category Class */ -// * @description Team -/** + * @category Class + * @description Team * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -132,4 +129,18 @@ public function testPropertyEventsCallbackUrl() public function testPropertyMembers() { } + + /** + * Test attribute "delete_after" + */ + public function testPropertyDeleteAfter() + { + } + + /** + * Test attribute "sandbox" + */ + public function testPropertySandbox() + { + } } diff --git a/test/Model/TemplateTest.php b/test/Model/TemplateTest.php index 6b370b8..3b46c9c 100644 --- a/test/Model/TemplateTest.php +++ b/test/Model/TemplateTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * TemplateTest Class Doc Comment * - * @category Class */ -// * @description Template -/** + * @category Class + * @description Template * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -105,6 +102,13 @@ public function testPropertyUser() { } + /** + * Test attribute "team" + */ + public function testPropertyTeam() + { + } + /** * Test attribute "who" */ diff --git a/test/Model/UserTest.php b/test/Model/UserTest.php index 14f908e..1b399c8 100644 --- a/test/Model/UserTest.php +++ b/test/Model/UserTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * UserTest Class Doc Comment * - * @category Class */ -// * @description User -/** + * @category Class + * @description User * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen diff --git a/test/Model/WebhookSubscriptionTest.php b/test/Model/WebhookSubscriptionTest.php index c925004..4b7a2ce 100644 --- a/test/Model/WebhookSubscriptionTest.php +++ b/test/Model/WebhookSubscriptionTest.php @@ -14,13 +14,11 @@ * SignRequest API * * API for SignRequest.com - * * OpenAPI spec version: v1 * Contact: tech-support@signrequest.com * Generated by: https://github.com/swagger-api/swagger-codegen.git - * Swagger Codegen version: 2.3.1 + * Swagger Codegen version: 2.4.8 */ - /** * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen @@ -32,9 +30,8 @@ /** * WebhookSubscriptionTest Class Doc Comment * - * @category Class */ -// * @description WebhookSubscription -/** + * @category Class + * @description WebhookSubscription * @package SignRequest * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen @@ -119,6 +116,13 @@ public function testPropertyIntegration() { } + /** + * Test attribute "team" + */ + public function testPropertyTeam() + { + } + /** * Test attribute "created" */