Skip to content

Commit e730d2c

Browse files
Version 3.12.0-v2.1-21.3.00.00 release (#127)
Co-authored-by: DevCenter-DocuSign <dcdev@docusign.com>
1 parent aa5025c commit e730d2c

26 files changed

+1655
-15
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
33

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

6+
## [3.12.0] - ESignature API v2.1-21.3.00.00 - 2021-09-20
7+
### Changed
8+
- Added support for version v2.1-21.3.00.00 of the DocuSign ESignature API.
9+
- Updated the SDK release version.
10+
11+
612
## [3.12.0rc1] - eSignature API v2.1-21.2.02.00 - 2021-09-01
713
### Changed
814
- Added support for version v2.1-21.2.02.00 of the DocuSign eSignature API.

docusign_esign/client/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ def __init__(self):
9090
self.key_file = None
9191

9292
if PY3:
93-
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0rc1/python3'
93+
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0/python3'
9494
else:
95-
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0rc1/python2'
95+
self.user_agent = 'Swagger-Codegen/v2.1/3.12.0/python2'
9696

9797
@property
9898
def logger_file(self):

docusign_esign/models/account_billing_plan.py

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ class AccountBillingPlan(object):
5454
'plan_id': 'str',
5555
'plan_name': 'str',
5656
'plan_start_date': 'str',
57+
'product_id': 'str',
5758
'renewal_date': 'str',
5859
'renewal_status': 'str',
5960
'seat_discounts': 'list[SeatDiscount]',
@@ -84,6 +85,7 @@ class AccountBillingPlan(object):
8485
'plan_id': 'planId',
8586
'plan_name': 'planName',
8687
'plan_start_date': 'planStartDate',
88+
'product_id': 'productId',
8789
'renewal_date': 'renewalDate',
8890
'renewal_status': 'renewalStatus',
8991
'seat_discounts': 'seatDiscounts',
@@ -119,6 +121,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
119121
self._plan_id = None
120122
self._plan_name = None
121123
self._plan_start_date = None
124+
self._product_id = None
122125
self._renewal_date = None
123126
self._renewal_status = None
124127
self._seat_discounts = None
@@ -148,6 +151,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
148151
setattr(self, "_{}".format('plan_id'), kwargs.get('plan_id', None))
149152
setattr(self, "_{}".format('plan_name'), kwargs.get('plan_name', None))
150153
setattr(self, "_{}".format('plan_start_date'), kwargs.get('plan_start_date', None))
154+
setattr(self, "_{}".format('product_id'), kwargs.get('product_id', None))
151155
setattr(self, "_{}".format('renewal_date'), kwargs.get('renewal_date', None))
152156
setattr(self, "_{}".format('renewal_status'), kwargs.get('renewal_status', None))
153157
setattr(self, "_{}".format('seat_discounts'), kwargs.get('seat_discounts', None))
@@ -636,6 +640,29 @@ def plan_start_date(self, plan_start_date):
636640

637641
self._plan_start_date = plan_start_date
638642

643+
@property
644+
def product_id(self):
645+
"""Gets the product_id of this AccountBillingPlan. # noqa: E501
646+
647+
# noqa: E501
648+
649+
:return: The product_id of this AccountBillingPlan. # noqa: E501
650+
:rtype: str
651+
"""
652+
return self._product_id
653+
654+
@product_id.setter
655+
def product_id(self, product_id):
656+
"""Sets the product_id of this AccountBillingPlan.
657+
658+
# noqa: E501
659+
660+
:param product_id: The product_id of this AccountBillingPlan. # noqa: E501
661+
:type: str
662+
"""
663+
664+
self._product_id = product_id
665+
639666
@property
640667
def renewal_date(self):
641668
"""Gets the renewal_date of this AccountBillingPlan. # noqa: E501

docusign_esign/models/account_billing_plan_response.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ class AccountBillingPlanResponse(object):
3939
'credit_card_information': 'CreditCardInformation',
4040
'direct_debit_processor_information': 'DirectDebitProcessorInformation',
4141
'downgrade_plan_information': 'DowngradePlanUpdateResponse',
42+
'downgrade_request_information': 'DowngradeRequestInformation',
4243
'entity_name': 'str',
4344
'payment_method': 'str',
4445
'payment_processor_information': 'PaymentProcessorInformation',
@@ -53,6 +54,7 @@ class AccountBillingPlanResponse(object):
5354
'credit_card_information': 'creditCardInformation',
5455
'direct_debit_processor_information': 'directDebitProcessorInformation',
5556
'downgrade_plan_information': 'downgradePlanInformation',
57+
'downgrade_request_information': 'downgradeRequestInformation',
5658
'entity_name': 'entityName',
5759
'payment_method': 'paymentMethod',
5860
'payment_processor_information': 'paymentProcessorInformation',
@@ -72,6 +74,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
7274
self._credit_card_information = None
7375
self._direct_debit_processor_information = None
7476
self._downgrade_plan_information = None
77+
self._downgrade_request_information = None
7578
self._entity_name = None
7679
self._payment_method = None
7780
self._payment_processor_information = None
@@ -85,6 +88,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
8588
setattr(self, "_{}".format('credit_card_information'), kwargs.get('credit_card_information', None))
8689
setattr(self, "_{}".format('direct_debit_processor_information'), kwargs.get('direct_debit_processor_information', None))
8790
setattr(self, "_{}".format('downgrade_plan_information'), kwargs.get('downgrade_plan_information', None))
91+
setattr(self, "_{}".format('downgrade_request_information'), kwargs.get('downgrade_request_information', None))
8892
setattr(self, "_{}".format('entity_name'), kwargs.get('entity_name', None))
8993
setattr(self, "_{}".format('payment_method'), kwargs.get('payment_method', None))
9094
setattr(self, "_{}".format('payment_processor_information'), kwargs.get('payment_processor_information', None))
@@ -219,6 +223,27 @@ def downgrade_plan_information(self, downgrade_plan_information):
219223

220224
self._downgrade_plan_information = downgrade_plan_information
221225

226+
@property
227+
def downgrade_request_information(self):
228+
"""Gets the downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
229+
230+
231+
:return: The downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
232+
:rtype: DowngradeRequestInformation
233+
"""
234+
return self._downgrade_request_information
235+
236+
@downgrade_request_information.setter
237+
def downgrade_request_information(self, downgrade_request_information):
238+
"""Sets the downgrade_request_information of this AccountBillingPlanResponse.
239+
240+
241+
:param downgrade_request_information: The downgrade_request_information of this AccountBillingPlanResponse. # noqa: E501
242+
:type: DowngradeRequestInformation
243+
"""
244+
245+
self._downgrade_request_information = downgrade_request_information
246+
222247
@property
223248
def entity_name(self):
224249
"""Gets the entity_name of this AccountBillingPlanResponse. # noqa: E501

docusign_esign/models/account_settings_information.py

Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,8 @@ class AccountSettingsInformation(object):
306306
'enable_envelope_stamping_by_ds_admin_metadata': 'SettingsMetadata',
307307
'enable_esign_communities': 'str',
308308
'enable_esign_communities_metadata': 'SettingsMetadata',
309+
'enable_id_fx_intuit_kba': 'str',
310+
'enable_id_fx_intuit_kba_metadata': 'SettingsMetadata',
309311
'enable_in_browser_editor': 'str',
310312
'enable_in_browser_editor_metadata': 'SettingsMetadata',
311313
'enable_payment_processing': 'str',
@@ -410,6 +412,8 @@ class AccountSettingsInformation(object):
410412
'id_check_required_metadata': 'SettingsMetadata',
411413
'identity_verification': 'list[AccountIdentityVerificationWorkflow]',
412414
'identity_verification_metadata': 'SettingsMetadata',
415+
'idfx_phone_authentication_override': 'str',
416+
'idfx_phone_authentication_override_metadata': 'SettingsMetadata',
413417
'ignore_error_if_anchor_tab_not_found': 'str',
414418
'ignore_error_if_anchor_tab_not_found_metadata_enabled': 'SettingsMetadata',
415419
'in_person_id_check_question': 'str',
@@ -863,6 +867,8 @@ class AccountSettingsInformation(object):
863867
'enable_envelope_stamping_by_ds_admin_metadata': 'enableEnvelopeStampingByDSAdminMetadata',
864868
'enable_esign_communities': 'enableEsignCommunities',
865869
'enable_esign_communities_metadata': 'enableEsignCommunitiesMetadata',
870+
'enable_id_fx_intuit_kba': 'enableIDFxIntuitKBA',
871+
'enable_id_fx_intuit_kba_metadata': 'enableIDFxIntuitKBAMetadata',
866872
'enable_in_browser_editor': 'enableInBrowserEditor',
867873
'enable_in_browser_editor_metadata': 'enableInBrowserEditorMetadata',
868874
'enable_payment_processing': 'enablePaymentProcessing',
@@ -967,6 +973,8 @@ class AccountSettingsInformation(object):
967973
'id_check_required_metadata': 'idCheckRequiredMetadata',
968974
'identity_verification': 'identityVerification',
969975
'identity_verification_metadata': 'identityVerificationMetadata',
976+
'idfx_phone_authentication_override': 'idfxPhoneAuthenticationOverride',
977+
'idfx_phone_authentication_override_metadata': 'idfxPhoneAuthenticationOverrideMetadata',
970978
'ignore_error_if_anchor_tab_not_found': 'ignoreErrorIfAnchorTabNotFound',
971979
'ignore_error_if_anchor_tab_not_found_metadata_enabled': 'ignoreErrorIfAnchorTabNotFoundMetadataEnabled',
972980
'in_person_id_check_question': 'inPersonIDCheckQuestion',
@@ -1425,6 +1433,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
14251433
self._enable_envelope_stamping_by_ds_admin_metadata = None
14261434
self._enable_esign_communities = None
14271435
self._enable_esign_communities_metadata = None
1436+
self._enable_id_fx_intuit_kba = None
1437+
self._enable_id_fx_intuit_kba_metadata = None
14281438
self._enable_in_browser_editor = None
14291439
self._enable_in_browser_editor_metadata = None
14301440
self._enable_payment_processing = None
@@ -1529,6 +1539,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
15291539
self._id_check_required_metadata = None
15301540
self._identity_verification = None
15311541
self._identity_verification_metadata = None
1542+
self._idfx_phone_authentication_override = None
1543+
self._idfx_phone_authentication_override_metadata = None
15321544
self._ignore_error_if_anchor_tab_not_found = None
15331545
self._ignore_error_if_anchor_tab_not_found_metadata_enabled = None
15341546
self._in_person_id_check_question = None
@@ -1981,6 +1993,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
19811993
setattr(self, "_{}".format('enable_envelope_stamping_by_ds_admin_metadata'), kwargs.get('enable_envelope_stamping_by_ds_admin_metadata', None))
19821994
setattr(self, "_{}".format('enable_esign_communities'), kwargs.get('enable_esign_communities', None))
19831995
setattr(self, "_{}".format('enable_esign_communities_metadata'), kwargs.get('enable_esign_communities_metadata', None))
1996+
setattr(self, "_{}".format('enable_id_fx_intuit_kba'), kwargs.get('enable_id_fx_intuit_kba', None))
1997+
setattr(self, "_{}".format('enable_id_fx_intuit_kba_metadata'), kwargs.get('enable_id_fx_intuit_kba_metadata', None))
19841998
setattr(self, "_{}".format('enable_in_browser_editor'), kwargs.get('enable_in_browser_editor', None))
19851999
setattr(self, "_{}".format('enable_in_browser_editor_metadata'), kwargs.get('enable_in_browser_editor_metadata', None))
19862000
setattr(self, "_{}".format('enable_payment_processing'), kwargs.get('enable_payment_processing', None))
@@ -2085,6 +2099,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501
20852099
setattr(self, "_{}".format('id_check_required_metadata'), kwargs.get('id_check_required_metadata', None))
20862100
setattr(self, "_{}".format('identity_verification'), kwargs.get('identity_verification', None))
20872101
setattr(self, "_{}".format('identity_verification_metadata'), kwargs.get('identity_verification_metadata', None))
2102+
setattr(self, "_{}".format('idfx_phone_authentication_override'), kwargs.get('idfx_phone_authentication_override', None))
2103+
setattr(self, "_{}".format('idfx_phone_authentication_override_metadata'), kwargs.get('idfx_phone_authentication_override_metadata', None))
20882104
setattr(self, "_{}".format('ignore_error_if_anchor_tab_not_found'), kwargs.get('ignore_error_if_anchor_tab_not_found', None))
20892105
setattr(self, "_{}".format('ignore_error_if_anchor_tab_not_found_metadata_enabled'), kwargs.get('ignore_error_if_anchor_tab_not_found_metadata_enabled', None))
20902106
setattr(self, "_{}".format('in_person_id_check_question'), kwargs.get('in_person_id_check_question', None))
@@ -8270,6 +8286,50 @@ def enable_esign_communities_metadata(self, enable_esign_communities_metadata):
82708286

82718287
self._enable_esign_communities_metadata = enable_esign_communities_metadata
82728288

8289+
@property
8290+
def enable_id_fx_intuit_kba(self):
8291+
"""Gets the enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501
8292+
8293+
# noqa: E501
8294+
8295+
:return: The enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501
8296+
:rtype: str
8297+
"""
8298+
return self._enable_id_fx_intuit_kba
8299+
8300+
@enable_id_fx_intuit_kba.setter
8301+
def enable_id_fx_intuit_kba(self, enable_id_fx_intuit_kba):
8302+
"""Sets the enable_id_fx_intuit_kba of this AccountSettingsInformation.
8303+
8304+
# noqa: E501
8305+
8306+
:param enable_id_fx_intuit_kba: The enable_id_fx_intuit_kba of this AccountSettingsInformation. # noqa: E501
8307+
:type: str
8308+
"""
8309+
8310+
self._enable_id_fx_intuit_kba = enable_id_fx_intuit_kba
8311+
8312+
@property
8313+
def enable_id_fx_intuit_kba_metadata(self):
8314+
"""Gets the enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501
8315+
8316+
8317+
:return: The enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501
8318+
:rtype: SettingsMetadata
8319+
"""
8320+
return self._enable_id_fx_intuit_kba_metadata
8321+
8322+
@enable_id_fx_intuit_kba_metadata.setter
8323+
def enable_id_fx_intuit_kba_metadata(self, enable_id_fx_intuit_kba_metadata):
8324+
"""Sets the enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation.
8325+
8326+
8327+
:param enable_id_fx_intuit_kba_metadata: The enable_id_fx_intuit_kba_metadata of this AccountSettingsInformation. # noqa: E501
8328+
:type: SettingsMetadata
8329+
"""
8330+
8331+
self._enable_id_fx_intuit_kba_metadata = enable_id_fx_intuit_kba_metadata
8332+
82738333
@property
82748334
def enable_in_browser_editor(self):
82758335
"""Gets the enable_in_browser_editor of this AccountSettingsInformation. # noqa: E501
@@ -10558,6 +10618,50 @@ def identity_verification_metadata(self, identity_verification_metadata):
1055810618

1055910619
self._identity_verification_metadata = identity_verification_metadata
1056010620

10621+
@property
10622+
def idfx_phone_authentication_override(self):
10623+
"""Gets the idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501
10624+
10625+
# noqa: E501
10626+
10627+
:return: The idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501
10628+
:rtype: str
10629+
"""
10630+
return self._idfx_phone_authentication_override
10631+
10632+
@idfx_phone_authentication_override.setter
10633+
def idfx_phone_authentication_override(self, idfx_phone_authentication_override):
10634+
"""Sets the idfx_phone_authentication_override of this AccountSettingsInformation.
10635+
10636+
# noqa: E501
10637+
10638+
:param idfx_phone_authentication_override: The idfx_phone_authentication_override of this AccountSettingsInformation. # noqa: E501
10639+
:type: str
10640+
"""
10641+
10642+
self._idfx_phone_authentication_override = idfx_phone_authentication_override
10643+
10644+
@property
10645+
def idfx_phone_authentication_override_metadata(self):
10646+
"""Gets the idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501
10647+
10648+
10649+
:return: The idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501
10650+
:rtype: SettingsMetadata
10651+
"""
10652+
return self._idfx_phone_authentication_override_metadata
10653+
10654+
@idfx_phone_authentication_override_metadata.setter
10655+
def idfx_phone_authentication_override_metadata(self, idfx_phone_authentication_override_metadata):
10656+
"""Sets the idfx_phone_authentication_override_metadata of this AccountSettingsInformation.
10657+
10658+
10659+
:param idfx_phone_authentication_override_metadata: The idfx_phone_authentication_override_metadata of this AccountSettingsInformation. # noqa: E501
10660+
:type: SettingsMetadata
10661+
"""
10662+
10663+
self._idfx_phone_authentication_override_metadata = idfx_phone_authentication_override_metadata
10664+
1056110665
@property
1056210666
def ignore_error_if_anchor_tab_not_found(self):
1056310667
"""Gets the ignore_error_if_anchor_tab_not_found of this AccountSettingsInformation. # noqa: E501

0 commit comments

Comments
 (0)