Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.

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

## [v3.14.0rc1] - eSignature API v2.1-21.4.01.00 - 2022-01-06
### Changed
- Added support for version v2.1-21.4.01.00 of the DocuSign ESignature API.
- Updated the SDK release version.

## [3.13.0] - ESignature API v2.1-21.4.00.00 - 2021-12-13
### Changed
- Added support for version v2.1-21.4.00.00 of the DocuSign ESignature API.
Expand Down
10 changes: 10 additions & 0 deletions docusign_esign/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
from .apis.authentication_api import AuthenticationApi
from .apis.billing_api import BillingApi
from .apis.bulk_envelopes_api import BulkEnvelopesApi
from .apis.bulk_process_data_api import BulkProcessDataApi
from .apis.bulk_process_data_send_api import BulkProcessDataSendApi
from .apis.cloud_storage_api import CloudStorageApi
from .apis.connect_api import ConnectApi
from .apis.custom_tabs_api import CustomTabsApi
Expand Down Expand Up @@ -130,13 +132,20 @@
from docusign_esign.models.brands_response import BrandsResponse
from docusign_esign.models.bulk_envelope import BulkEnvelope
from docusign_esign.models.bulk_envelope_status import BulkEnvelopeStatus
from docusign_esign.models.bulk_process_request import BulkProcessRequest
from docusign_esign.models.bulk_process_response import BulkProcessResponse
from docusign_esign.models.bulk_process_result import BulkProcessResult
from docusign_esign.models.bulk_processing_list_summaries import BulkProcessingListSummaries
from docusign_esign.models.bulk_processing_list_summary import BulkProcessingListSummary
from docusign_esign.models.bulk_processing_lists import BulkProcessingLists
from docusign_esign.models.bulk_recipient import BulkRecipient
from docusign_esign.models.bulk_recipient_signature_provider import BulkRecipientSignatureProvider
from docusign_esign.models.bulk_recipient_tab_label import BulkRecipientTabLabel
from docusign_esign.models.bulk_recipients_request import BulkRecipientsRequest
from docusign_esign.models.bulk_recipients_response import BulkRecipientsResponse
from docusign_esign.models.bulk_recipients_summary_response import BulkRecipientsSummaryResponse
from docusign_esign.models.bulk_recipients_update_response import BulkRecipientsUpdateResponse
from docusign_esign.models.bulk_send_batch_error import BulkSendBatchError
from docusign_esign.models.bulk_send_batch_request import BulkSendBatchRequest
from docusign_esign.models.bulk_send_batch_status import BulkSendBatchStatus
from docusign_esign.models.bulk_send_batch_summaries import BulkSendBatchSummaries
Expand Down Expand Up @@ -246,6 +255,7 @@
from docusign_esign.models.envelope_attachments_result import EnvelopeAttachmentsResult
from docusign_esign.models.envelope_audit_event import EnvelopeAuditEvent
from docusign_esign.models.envelope_audit_event_response import EnvelopeAuditEventResponse
from docusign_esign.models.envelope_custom_metadata import EnvelopeCustomMetadata
from docusign_esign.models.envelope_definition import EnvelopeDefinition
from docusign_esign.models.envelope_delay_rule_api_model import EnvelopeDelayRuleApiModel
from docusign_esign.models.envelope_document import EnvelopeDocument
Expand Down
2 changes: 2 additions & 0 deletions docusign_esign/apis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
from .authentication_api import AuthenticationApi
from .billing_api import BillingApi
from .bulk_envelopes_api import BulkEnvelopesApi
from .bulk_process_data_api import BulkProcessDataApi
from .bulk_process_data_send_api import BulkProcessDataSendApi
from .cloud_storage_api import CloudStorageApi
from .connect_api import ConnectApi
from .custom_tabs_api import CustomTabsApi
Expand Down
6 changes: 5 additions & 1 deletion docusign_esign/apis/billing_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,6 +584,7 @@ def get_plan(self, account_id, **kwargs):
:param str include_downgrade_information:
:param str include_metadata: When set to **true**, the `canUpgrade` and `renewalStatus` properities are included the response and an array of `supportedCountries` property is added to the `billingAddress` information.
:param str include_successor_plans: When set to **true**, excludes successor information from the response.
:param str include_tax_exempt_id:
:return: AccountBillingPlanResponse
If the method is called asynchronously,
returns the request thread.
Expand Down Expand Up @@ -614,12 +615,13 @@ def get_plan_with_http_info(self, account_id, **kwargs):
:param str include_downgrade_information:
:param str include_metadata: When set to **true**, the `canUpgrade` and `renewalStatus` properities are included the response and an array of `supportedCountries` property is added to the `billingAddress` information.
:param str include_successor_plans: When set to **true**, excludes successor information from the response.
:param str include_tax_exempt_id:
:return: AccountBillingPlanResponse
If the method is called asynchronously,
returns the request thread.
"""

all_params = ['account_id', 'include_credit_card_information', 'include_downgrade_information', 'include_metadata', 'include_successor_plans']
all_params = ['account_id', 'include_credit_card_information', 'include_downgrade_information', 'include_metadata', 'include_successor_plans', 'include_tax_exempt_id']
all_params.append('callback')
all_params.append('_return_http_data_only')
all_params.append('_preload_content')
Expand Down Expand Up @@ -655,6 +657,8 @@ def get_plan_with_http_info(self, account_id, **kwargs):
query_params['include_metadata'] = params['include_metadata']
if 'include_successor_plans' in params:
query_params['include_successor_plans'] = params['include_successor_plans']
if 'include_tax_exempt_id' in params:
query_params['include_tax_exempt_id'] = params['include_tax_exempt_id']

header_params = {}

Expand Down
Loading