Skip to content

Commit

Permalink
Version 3.12.0-v2.1-21.3.00.00 release (#127)
Browse files Browse the repository at this point in the history
Co-authored-by: DevCenter-DocuSign <[email protected]>
  • Loading branch information
HobbyProjects and DevCenter-DocuSign authored Sep 21, 2021
1 parent aa5025c commit e730d2c
Show file tree
Hide file tree
Showing 26 changed files with 1,655 additions and 15 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ 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.

## [3.12.0] - ESignature API v2.1-21.3.00.00 - 2021-09-20
### Changed
- Added support for version v2.1-21.3.00.00 of the DocuSign ESignature API.
- Updated the SDK release version.


## [3.12.0rc1] - eSignature API v2.1-21.2.02.00 - 2021-09-01
### Changed
- Added support for version v2.1-21.2.02.00 of the DocuSign eSignature API.
Expand Down
4 changes: 2 additions & 2 deletions docusign_esign/client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ def __init__(self):
self.key_file = None

if PY3:
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0rc1/python3'
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0/python3'
else:
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0rc1/python2'
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0/python2'

@property
def logger_file(self):
Expand Down
27 changes: 27 additions & 0 deletions docusign_esign/models/account_billing_plan.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ class AccountBillingPlan(object):
'plan_id': 'str',
'plan_name': 'str',
'plan_start_date': 'str',
'product_id': 'str',
'renewal_date': 'str',
'renewal_status': 'str',
'seat_discounts': 'list[SeatDiscount]',
Expand Down Expand Up @@ -84,6 +85,7 @@ class AccountBillingPlan(object):
'plan_id': 'planId',
'plan_name': 'planName',
'plan_start_date': 'planStartDate',
'product_id': 'productId',
'renewal_date': 'renewalDate',
'renewal_status': 'renewalStatus',
'seat_discounts': 'seatDiscounts',
Expand Down Expand Up @@ -119,6 +121,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
self._plan_id = None
self._plan_name = None
self._plan_start_date = None
self._product_id = None
self._renewal_date = None
self._renewal_status = None
self._seat_discounts = None
Expand Down Expand Up @@ -148,6 +151,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
setattr(self, "_{}".format('plan_id'), kwargs.get('plan_id', None))
setattr(self, "_{}".format('plan_name'), kwargs.get('plan_name', None))
setattr(self, "_{}".format('plan_start_date'), kwargs.get('plan_start_date', None))
setattr(self, "_{}".format('product_id'), kwargs.get('product_id', None))
setattr(self, "_{}".format('renewal_date'), kwargs.get('renewal_date', None))
setattr(self, "_{}".format('renewal_status'), kwargs.get('renewal_status', None))
setattr(self, "_{}".format('seat_discounts'), kwargs.get('seat_discounts', None))
Expand Down Expand Up @@ -636,6 +640,29 @@ def plan_start_date(self, plan_start_date):

self._plan_start_date = plan_start_date

@property
def product_id(self):
"""Gets the product_id of this AccountBillingPlan. # noqa: E501
# noqa: E501
:return: The product_id of this AccountBillingPlan. # noqa: E501
:rtype: str
"""
return self._product_id

@product_id.setter
def product_id(self, product_id):
"""Sets the product_id of this AccountBillingPlan.
# noqa: E501
:param product_id: The product_id of this AccountBillingPlan. # noqa: E501
:type: str
"""

self._product_id = product_id

@property
def renewal_date(self):
"""Gets the renewal_date of this AccountBillingPlan. # noqa: E501
Expand Down
25 changes: 25 additions & 0 deletions docusign_esign/models/account_billing_plan_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ class AccountBillingPlanResponse(object):
'credit_card_information': 'CreditCardInformation',
'direct_debit_processor_information': 'DirectDebitProcessorInformation',
'downgrade_plan_information': 'DowngradePlanUpdateResponse',
'downgrade_request_information': 'DowngradeRequestInformation',
'entity_name': 'str',
'payment_method': 'str',
'payment_processor_information': 'PaymentProcessorInformation',
Expand All @@ -53,6 +54,7 @@ class AccountBillingPlanResponse(object):
'credit_card_information': 'creditCardInformation',
'direct_debit_processor_information': 'directDebitProcessorInformation',
'downgrade_plan_information': 'downgradePlanInformation',
'downgrade_request_information': 'downgradeRequestInformation',
'entity_name': 'entityName',
'payment_method': 'paymentMethod',
'payment_processor_information': 'paymentProcessorInformation',
Expand All @@ -72,6 +74,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
self._credit_card_information = None
self._direct_debit_processor_information = None
self._downgrade_plan_information = None
self._downgrade_request_information = None
self._entity_name = None
self._payment_method = None
self._payment_processor_information = None
Expand All @@ -85,6 +88,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
setattr(self, "_{}".format('credit_card_information'), kwargs.get('credit_card_information', None))
setattr(self, "_{}".format('direct_debit_processor_information'), kwargs.get('direct_debit_processor_information', None))
setattr(self, "_{}".format('downgrade_plan_information'), kwargs.get('downgrade_plan_information', None))
setattr(self, "_{}".format('downgrade_request_information'), kwargs.get('downgrade_request_information', None))
setattr(self, "_{}".format('entity_name'), kwargs.get('entity_name', None))
setattr(self, "_{}".format('payment_method'), kwargs.get('payment_method', None))
setattr(self, "_{}".format('payment_processor_information'), kwargs.get('payment_processor_information', None))
Expand Down Expand Up @@ -219,6 +223,27 @@ def downgrade_plan_information(self, downgrade_plan_information):

self._downgrade_plan_information = downgrade_plan_information

@property
def downgrade_request_information(self):
"""Gets the downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
:return: The downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
:rtype: DowngradeRequestInformation
"""
return self._downgrade_request_information

@downgrade_request_information.setter
def downgrade_request_information(self, downgrade_request_information):
"""Sets the downgrade_request_information of this AccountBillingPlanResponse.
:param downgrade_request_information: The downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
:type: DowngradeRequestInformation
"""

self._downgrade_request_information = downgrade_request_information

@property
def entity_name(self):
"""Gets the entity_name of this AccountBillingPlanResponse. # noqa: E501
Expand Down
104 changes: 104 additions & 0 deletions docusign_esign/models/account_settings_information.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ class AccountSettingsInformation(object):
'enable_envelope_stamping_by_ds_admin_metadata': 'SettingsMetadata',
'enable_esign_communities': 'str',
'enable_esign_communities_metadata': 'SettingsMetadata',
'enable_id_fx_intuit_kba': 'str',
'enable_id_fx_intuit_kba_metadata': 'SettingsMetadata',
'enable_in_browser_editor': 'str',
'enable_in_browser_editor_metadata': 'SettingsMetadata',
'enable_payment_processing': 'str',
Expand Down Expand Up @@ -410,6 +412,8 @@ class AccountSettingsInformation(object):
'id_check_required_metadata': 'SettingsMetadata',
'identity_verification': 'list[AccountIdentityVerificationWorkflow]',
'identity_verification_metadata': 'SettingsMetadata',
'idfx_phone_authentication_override': 'str',
'idfx_phone_authentication_override_metadata': 'SettingsMetadata',
'ignore_error_if_anchor_tab_not_found': 'str',
'ignore_error_if_anchor_tab_not_found_metadata_enabled': 'SettingsMetadata',
'in_person_id_check_question': 'str',
Expand Down Expand Up @@ -863,6 +867,8 @@ class AccountSettingsInformation(object):
'enable_envelope_stamping_by_ds_admin_metadata': 'enableEnvelopeStampingByDSAdminMetadata',
'enable_esign_communities': 'enableEsignCommunities',
'enable_esign_communities_metadata': 'enableEsignCommunitiesMetadata',
'enable_id_fx_intuit_kba': 'enableIDFxIntuitKBA',
'enable_id_fx_intuit_kba_metadata': 'enableIDFxIntuitKBAMetadata',
'enable_in_browser_editor': 'enableInBrowserEditor',
'enable_in_browser_editor_metadata': 'enableInBrowserEditorMetadata',
'enable_payment_processing': 'enablePaymentProcessing',
Expand Down Expand Up @@ -967,6 +973,8 @@ class AccountSettingsInformation(object):
'id_check_required_metadata': 'idCheckRequiredMetadata',
'identity_verification': 'identityVerification',
'identity_verification_metadata': 'identityVerificationMetadata',
'idfx_phone_authentication_override': 'idfxPhoneAuthenticationOverride',
'idfx_phone_authentication_override_metadata': 'idfxPhoneAuthenticationOverrideMetadata',
'ignore_error_if_anchor_tab_not_found': 'ignoreErrorIfAnchorTabNotFound',
'ignore_error_if_anchor_tab_not_found_metadata_enabled': 'ignoreErrorIfAnchorTabNotFoundMetadataEnabled',
'in_person_id_check_question': 'inPersonIDCheckQuestion',
Expand Down Expand Up @@ -1425,6 +1433,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
self._enable_envelope_stamping_by_ds_admin_metadata = None
self._enable_esign_communities = None
self._enable_esign_communities_metadata = None
self._enable_id_fx_intuit_kba = None
self._enable_id_fx_intuit_kba_metadata = None
self._enable_in_browser_editor = None
self._enable_in_browser_editor_metadata = None
self._enable_payment_processing = None
Expand Down Expand Up @@ -1529,6 +1539,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
self._id_check_required_metadata = None
self._identity_verification = None
self._identity_verification_metadata = None
self._idfx_phone_authentication_override = None
self._idfx_phone_authentication_override_metadata = None
self._ignore_error_if_anchor_tab_not_found = None
self._ignore_error_if_anchor_tab_not_found_metadata_enabled = None
self._in_person_id_check_question = None
Expand Down Expand Up @@ -1981,6 +1993,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
setattr(self, "_{}".format('enable_envelope_stamping_by_ds_admin_metadata'), kwargs.get('enable_envelope_stamping_by_ds_admin_metadata', None))
setattr(self, "_{}".format('enable_esign_communities'), kwargs.get('enable_esign_communities', None))
setattr(self, "_{}".format('enable_esign_communities_metadata'), kwargs.get('enable_esign_communities_metadata', None))
setattr(self, "_{}".format('enable_id_fx_intuit_kba'), kwargs.get('enable_id_fx_intuit_kba', None))
setattr(self, "_{}".format('enable_id_fx_intuit_kba_metadata'), kwargs.get('enable_id_fx_intuit_kba_metadata', None))
setattr(self, "_{}".format('enable_in_browser_editor'), kwargs.get('enable_in_browser_editor', None))
setattr(self, "_{}".format('enable_in_browser_editor_metadata'), kwargs.get('enable_in_browser_editor_metadata', None))
setattr(self, "_{}".format('enable_payment_processing'), kwargs.get('enable_payment_processing', None))
Expand Down Expand Up @@ -2085,6 +2099,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
setattr(self, "_{}".format('id_check_required_metadata'), kwargs.get('id_check_required_metadata', None))
setattr(self, "_{}".format('identity_verification'), kwargs.get('identity_verification', None))
setattr(self, "_{}".format('identity_verification_metadata'), kwargs.get('identity_verification_metadata', None))
setattr(self, "_{}".format('idfx_phone_authentication_override'), kwargs.get('idfx_phone_authentication_override', None))
setattr(self, "_{}".format('idfx_phone_authentication_override_metadata'), kwargs.get('idfx_phone_authentication_override_metadata', None))
setattr(self, "_{}".format('ignore_error_if_anchor_tab_not_found'), kwargs.get('ignore_error_if_anchor_tab_not_found', None))
setattr(self, "_{}".format('ignore_error_if_anchor_tab_not_found_metadata_enabled'), kwargs.get('ignore_error_if_anchor_tab_not_found_metadata_enabled', None))
setattr(self, "_{}".format('in_person_id_check_question'), kwargs.get('in_person_id_check_question', None))
Expand Down Expand Up @@ -8270,6 +8286,50 @@ def enable_esign_communities_metadata(self, enable_esign_communities_metadata):

self._enable_esign_communities_metadata = enable_esign_communities_metadata

@property
def enable_id_fx_intuit_kba(self):
"""Gets the enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501

# noqa: E501

:return: The enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501
:rtype: str
"""
return self._enable_id_fx_intuit_kba

@enable_id_fx_intuit_kba.setter
def enable_id_fx_intuit_kba(self, enable_id_fx_intuit_kba):
"""Sets the enable_id_fx_intuit_kba of this AccountSettingsInformation.

# noqa: E501

:param enable_id_fx_intuit_kba: The enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501
:type: str
"""

self._enable_id_fx_intuit_kba = enable_id_fx_intuit_kba

@property
def enable_id_fx_intuit_kba_metadata(self):
"""Gets the enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501


:return: The enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501
:rtype: SettingsMetadata
"""
return self._enable_id_fx_intuit_kba_metadata

@enable_id_fx_intuit_kba_metadata.setter
def enable_id_fx_intuit_kba_metadata(self, enable_id_fx_intuit_kba_metadata):
"""Sets the enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation.


:param enable_id_fx_intuit_kba_metadata: The enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501
:type: SettingsMetadata
"""

self._enable_id_fx_intuit_kba_metadata = enable_id_fx_intuit_kba_metadata

@property
def enable_in_browser_editor(self):
"""Gets the enable_in_browser_editor of this AccountSettingsInformation. # noqa: E501
Expand Down Expand Up @@ -10558,6 +10618,50 @@ def identity_verification_metadata(self, identity_verification_metadata):

self._identity_verification_metadata = identity_verification_metadata

@property
def idfx_phone_authentication_override(self):
"""Gets the idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501

# noqa: E501

:return: The idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501
:rtype: str
"""
return self._idfx_phone_authentication_override

@idfx_phone_authentication_override.setter
def idfx_phone_authentication_override(self, idfx_phone_authentication_override):
"""Sets the idfx_phone_authentication_override of this AccountSettingsInformation.

# noqa: E501

:param idfx_phone_authentication_override: The idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501
:type: str
"""

self._idfx_phone_authentication_override = idfx_phone_authentication_override

@property
def idfx_phone_authentication_override_metadata(self):
"""Gets the idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501


:return: The idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501
:rtype: SettingsMetadata
"""
return self._idfx_phone_authentication_override_metadata

@idfx_phone_authentication_override_metadata.setter
def idfx_phone_authentication_override_metadata(self, idfx_phone_authentication_override_metadata):
"""Sets the idfx_phone_authentication_override_metadata of this AccountSettingsInformation.


:param idfx_phone_authentication_override_metadata: The idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501
:type: SettingsMetadata
"""

self._idfx_phone_authentication_override_metadata = idfx_phone_authentication_override_metadata

@property
def ignore_error_if_anchor_tab_not_found(self):
"""Gets the ignore_error_if_anchor_tab_not_found of this AccountSettingsInformation. # noqa: E501
Expand Down
Loading

0 comments on commit e730d2c

Please sign in to comment.