From ba9ad359176fce49c23feb1500736c43ebcdcfe1 Mon Sep 17 00:00:00 2001 From: asif-docusign <165984682+asif-docusign@users.noreply.github.com> Date: Fri, 3 May 2024 20:41:22 +0530 Subject: [PATCH] Version 4.0.0rc1-v2.1-24.1.01.00 release (#187) Co-authored-by: root --- CHANGELOG.md | 5 + docusign_esign/__init__.py | 11 +- docusign_esign/apis/envelopes_api.py | 47 +- docusign_esign/apis/templates_api.py | 10 +- docusign_esign/client/configuration.py | 6 +- docusign_esign/models/__init__.py | 11 +- .../models/account_settings_information.py | 663 +++++++++++++----- docusign_esign/models/account_ui_settings.py | 54 ++ docusign_esign/models/envelope.py | 27 + docusign_esign/models/envelope_definition.py | 27 + docusign_esign/models/envelope_template.py | 27 + .../models/envelope_view_document_settings.py | 205 ++++++ ...ope_view_envelope_custom_field_settings.py | 124 ++++ .../envelope_view_recipient_settings.py | 205 ++++++ .../models/envelope_view_request.py | 178 +++++ .../models/envelope_view_settings.py | 448 ++++++++++++ .../models/envelope_view_tagger_settings.py | 178 +++++ .../models/envelope_view_template_settings.py | 124 ++++ docusign_esign/models/group.py | 27 + .../models/palette_item_settings.py | 124 ++++ docusign_esign/models/palette_settings.py | 286 ++++++++ .../models/recipient_view_request.py | 27 + .../models/template_view_request.py | 151 ++++ .../models/user_settings_information.py | 162 +++++ setup.py | 2 +- 25 files changed, 2937 insertions(+), 192 deletions(-) create mode 100644 docusign_esign/models/envelope_view_document_settings.py create mode 100644 docusign_esign/models/envelope_view_envelope_custom_field_settings.py create mode 100644 docusign_esign/models/envelope_view_recipient_settings.py create mode 100644 docusign_esign/models/envelope_view_request.py create mode 100644 docusign_esign/models/envelope_view_settings.py create mode 100644 docusign_esign/models/envelope_view_tagger_settings.py create mode 100644 docusign_esign/models/envelope_view_template_settings.py create mode 100644 docusign_esign/models/palette_item_settings.py create mode 100644 docusign_esign/models/palette_settings.py create mode 100644 docusign_esign/models/template_view_request.py diff --git a/CHANGELOG.md b/CHANGELOG.md index a767d484..396ec782 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. +## [v4.0.0rc1] - eSignature API v2.1-24.1.01.00 - 2024-05-02 +### Changed +- Added support for version v2.1-24.1.01.00 of the DocuSign ESignature API. +- Updated the SDK release version. + ## [v3.26.0] - eSignature API v2.1-23.4.02.00 - 2024-04-30 ### Changed - Revised the logic to determine the `oauth_host_name` based on the `base_path`. diff --git a/docusign_esign/__init__.py b/docusign_esign/__init__.py index a798c6b7..bee9072b 100644 --- a/docusign_esign/__init__.py +++ b/docusign_esign/__init__.py @@ -284,6 +284,13 @@ from docusign_esign.models.envelope_transfer_rule_information import EnvelopeTransferRuleInformation from docusign_esign.models.envelope_transfer_rule_request import EnvelopeTransferRuleRequest from docusign_esign.models.envelope_update_summary import EnvelopeUpdateSummary +from docusign_esign.models.envelope_view_document_settings import EnvelopeViewDocumentSettings +from docusign_esign.models.envelope_view_envelope_custom_field_settings import EnvelopeViewEnvelopeCustomFieldSettings +from docusign_esign.models.envelope_view_recipient_settings import EnvelopeViewRecipientSettings +from docusign_esign.models.envelope_view_request import EnvelopeViewRequest +from docusign_esign.models.envelope_view_settings import EnvelopeViewSettings +from docusign_esign.models.envelope_view_tagger_settings import EnvelopeViewTaggerSettings +from docusign_esign.models.envelope_view_template_settings import EnvelopeViewTemplateSettings from docusign_esign.models.envelopes_information import EnvelopesInformation from docusign_esign.models.error_details import ErrorDetails from docusign_esign.models.event_notification import EventNotification @@ -377,6 +384,8 @@ from docusign_esign.models.page import Page from docusign_esign.models.page_images import PageImages from docusign_esign.models.page_request import PageRequest +from docusign_esign.models.palette_item_settings import PaletteItemSettings +from docusign_esign.models.palette_settings import PaletteSettings from docusign_esign.models.participant import Participant from docusign_esign.models.path_extended_element import PathExtendedElement from docusign_esign.models.pay_pal_legacy_settings import PayPalLegacySettings @@ -440,7 +449,6 @@ from docusign_esign.models.referral_information import ReferralInformation from docusign_esign.models.reminders import Reminders from docusign_esign.models.resource_information import ResourceInformation -from docusign_esign.models.return_url_request import ReturnUrlRequest from docusign_esign.models.scheduled_sending import ScheduledSending from docusign_esign.models.seal_identifier import SealIdentifier from docusign_esign.models.seal_sign import SealSign @@ -496,6 +504,7 @@ from docusign_esign.models.template_summary import TemplateSummary from docusign_esign.models.template_tabs import TemplateTabs from docusign_esign.models.template_update_summary import TemplateUpdateSummary +from docusign_esign.models.template_view_request import TemplateViewRequest from docusign_esign.models.text import Text from docusign_esign.models.text_custom_field import TextCustomField from docusign_esign.models.title import Title diff --git a/docusign_esign/apis/envelopes_api.py b/docusign_esign/apis/envelopes_api.py index e2378774..8539be14 100644 --- a/docusign_esign/apis/envelopes_api.py +++ b/docusign_esign/apis/envelopes_api.py @@ -1104,7 +1104,7 @@ def create_edit_view(self, account_id, envelope_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param EnvelopeViewRequest envelope_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. @@ -1132,13 +1132,13 @@ def create_edit_view_with_http_info(self, account_id, envelope_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param EnvelopeViewRequest envelope_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. """ - all_params = ['account_id', 'envelope_id', 'return_url_request'] + all_params = ['account_id', 'envelope_id', 'envelope_view_request'] all_params.append('callback') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -1178,8 +1178,8 @@ def create_edit_view_with_http_info(self, account_id, envelope_id, **kwargs): local_var_files = {} body_params = None - if 'return_url_request' in params: - body_params = params['return_url_request'] + if 'envelope_view_request' in params: + body_params = params['envelope_view_request'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) @@ -2575,7 +2575,7 @@ def create_recipient_proof_file_link_with_http_info(self, account_id, envelope_i _request_timeout=params.get('_request_timeout'), collection_formats=collection_formats) - def create_recipient_proof_file_resource_token(self, account_id, envelope_id, recipient_id, token_scopes, **kwargs): + def create_recipient_proof_file_resource_token(self, account_id, envelope_id, recipient_id, **kwargs): """ Returns a resource token to get access to the identity events stored in the proof service related to this recipient. Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/). @@ -2585,26 +2585,26 @@ def create_recipient_proof_file_resource_token(self, account_id, envelope_id, re >>> def callback_function(response): >>> pprint(response) >>> - >>> thread = api.create_recipient_proof_file_resource_token(account_id, envelope_id, recipient_id, token_scopes, callback=callback_function) + >>> thread = api.create_recipient_proof_file_resource_token(account_id, envelope_id, recipient_id, callback=callback_function) :param callback function: The callback function for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) :param str recipient_id: The ID of the recipient being accessed. (required) - :param str token_scopes: (required) + :param str token_scopes: :return: IdEvidenceResourceToken If the method is called asynchronously, returns the request thread. """ kwargs['_return_http_data_only'] = True if kwargs.get('callback'): - return self.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, token_scopes, **kwargs) + return self.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, **kwargs) else: - (data) = self.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, token_scopes, **kwargs) + (data) = self.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, **kwargs) return data - def create_recipient_proof_file_resource_token_with_http_info(self, account_id, envelope_id, recipient_id, token_scopes, **kwargs): + def create_recipient_proof_file_resource_token_with_http_info(self, account_id, envelope_id, recipient_id, **kwargs): """ Returns a resource token to get access to the identity events stored in the proof service related to this recipient. Creates a resource token for a sender. This token allows a sender to return identification data for a recipient using the [ID Evidence API](/docs/idevidence-api/). @@ -2614,14 +2614,14 @@ def create_recipient_proof_file_resource_token_with_http_info(self, account_id, >>> def callback_function(response): >>> pprint(response) >>> - >>> thread = api.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, token_scopes, callback=callback_function) + >>> thread = api.create_recipient_proof_file_resource_token_with_http_info(account_id, envelope_id, recipient_id, callback=callback_function) :param callback function: The callback function for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) :param str recipient_id: The ID of the recipient being accessed. (required) - :param str token_scopes: (required) + :param str token_scopes: :return: IdEvidenceResourceToken If the method is called asynchronously, returns the request thread. @@ -2651,9 +2651,6 @@ def create_recipient_proof_file_resource_token_with_http_info(self, account_id, # verify the required parameter 'recipient_id' is set if ('recipient_id' not in params) or (params['recipient_id'] is None): raise ValueError("Missing the required parameter `recipient_id` when calling `create_recipient_proof_file_resource_token`") - # verify the required parameter 'token_scopes' is set - if ('token_scopes' not in params) or (params['token_scopes'] is None): - raise ValueError("Missing the required parameter `token_scopes` when calling `create_recipient_proof_file_resource_token`") collection_formats = {} @@ -2666,10 +2663,10 @@ def create_recipient_proof_file_resource_token_with_http_info(self, account_id, path_params['envelopeId'] = params['envelope_id'] if 'recipient_id' in params: path_params['recipientId'] = params['recipient_id'] - if 'token_scopes' in params: - path_params['token_scopes'] = params['token_scopes'] query_params = {} + if 'token_scopes' in params: + query_params['token_scopes'] = params['token_scopes'] header_params = {} @@ -2943,7 +2940,7 @@ def create_sender_view(self, account_id, envelope_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param EnvelopeViewRequest envelope_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. @@ -2971,13 +2968,13 @@ def create_sender_view_with_http_info(self, account_id, envelope_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param EnvelopeViewRequest envelope_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. """ - all_params = ['account_id', 'envelope_id', 'return_url_request'] + all_params = ['account_id', 'envelope_id', 'envelope_view_request'] all_params.append('callback') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -3017,8 +3014,8 @@ def create_sender_view_with_http_info(self, account_id, envelope_id, **kwargs): local_var_files = {} body_params = None - if 'return_url_request' in params: - body_params = params['return_url_request'] + if 'envelope_view_request' in params: + body_params = params['envelope_view_request'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) @@ -6381,7 +6378,7 @@ def get_consumer_disclosure(self, account_id, envelope_id, lang_code, recipient_ :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) :param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required) :param str recipient_id: The ID of the recipient being accessed. (required) - :param str lang_code2: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. + :param str lang_code2: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. :return: ConsumerDisclosure If the method is called asynchronously, returns the request thread. @@ -6411,7 +6408,7 @@ def get_consumer_disclosure_with_http_info(self, account_id, envelope_id, lang_c :param str envelope_id: The envelopeId Guid of the envelope being accessed. (required) :param str lang_code: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. (required) :param str recipient_id: The ID of the recipient being accessed. (required) - :param str lang_code2: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. + :param str lang_code2: The simple type enumeration the language used in the response. The supported languages, with the language value shown in parenthesis, are:Arabic (ar), Armenian (hy), Bulgarian (bg), Czech (cs), Chinese Simplified (zh_CN), Chinese Traditional (zh_TW), Croatian (hr), Danish (da), Dutch (nl), English US (en), English UK (en_GB), Estonian (et), Farsi (fa), Finnish (fi), French (fr), French Canada (fr_CA), German (de), Greek (el), Hebrew (he), Hindi (hi), Hungarian (hu), Bahasa Indonesia (id), Italian (it), Japanese (ja), Korean (ko), Latvian (lv), Lithuanian (lt), Bahasa Melayu (ms), Norwegian (no), Polish (pl), Portuguese (pt), Portuguese Brazil (pt_BR), Romanian (ro), Russian (ru), Serbian (sr), Slovak (sk), Slovenian (sl), Spanish (es),Spanish Latin America (es_MX), Swedish (sv), Thai (th), Turkish (tr), Ukrainian (uk) and Vietnamese (vi). Additionally, the value can be set to �browser� to automatically detect the browser language being used by the viewer and display the disclosure in that language. :return: ConsumerDisclosure If the method is called asynchronously, returns the request thread. diff --git a/docusign_esign/apis/templates_api.py b/docusign_esign/apis/templates_api.py index c66a8f18..dca87ba0 100644 --- a/docusign_esign/apis/templates_api.py +++ b/docusign_esign/apis/templates_api.py @@ -291,7 +291,7 @@ def create_edit_view(self, account_id, template_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str template_id: The ID of the template being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param TemplateViewRequest template_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. @@ -319,13 +319,13 @@ def create_edit_view_with_http_info(self, account_id, template_id, **kwargs): for asynchronous request. (optional) :param str account_id: The external account number (int) or account ID Guid. (required) :param str template_id: The ID of the template being accessed. (required) - :param ReturnUrlRequest return_url_request: + :param TemplateViewRequest template_view_request: :return: ViewUrl If the method is called asynchronously, returns the request thread. """ - all_params = ['account_id', 'template_id', 'return_url_request'] + all_params = ['account_id', 'template_id', 'template_view_request'] all_params.append('callback') all_params.append('_return_http_data_only') all_params.append('_preload_content') @@ -365,8 +365,8 @@ def create_edit_view_with_http_info(self, account_id, template_id, **kwargs): local_var_files = {} body_params = None - if 'return_url_request' in params: - body_params = params['return_url_request'] + if 'template_view_request' in params: + body_params = params['template_view_request'] # HTTP header `Accept` header_params['Accept'] = self.api_client.\ select_header_accept(['application/json']) diff --git a/docusign_esign/client/configuration.py b/docusign_esign/client/configuration.py index 0ee17ce4..c0aa6a96 100644 --- a/docusign_esign/client/configuration.py +++ b/docusign_esign/client/configuration.py @@ -119,9 +119,9 @@ def __init__(self): python_version = platform.python_version() if six.PY3: - self.user_agent = "Swagger-Codegen/v2.1/3.26.0/python3/" + f"{python_version}" + self.user_agent = "Swagger-Codegen/v2.1/4.0.0rc1/python3/" + f"{python_version}" else: - self.user_agent = "Swagger-Codegen/v2.1/3.26.0/python2/" + f"{python_version}" + self.user_agent = "Swagger-Codegen/v2.1/4.0.0rc1/python2/" + f"{python_version}" @classmethod @@ -277,5 +277,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: v2.1\n"\ - "SDK Package Version: 3.26.0".\ + "SDK Package Version: 4.0.0rc1".\ format(env=sys.platform, pyversion=sys.version) diff --git a/docusign_esign/models/__init__.py b/docusign_esign/models/__init__.py index 270b6e07..e751f2fe 100644 --- a/docusign_esign/models/__init__.py +++ b/docusign_esign/models/__init__.py @@ -248,6 +248,13 @@ from docusign_esign.models.envelope_transfer_rule_information import EnvelopeTransferRuleInformation from docusign_esign.models.envelope_transfer_rule_request import EnvelopeTransferRuleRequest from docusign_esign.models.envelope_update_summary import EnvelopeUpdateSummary +from docusign_esign.models.envelope_view_document_settings import EnvelopeViewDocumentSettings +from docusign_esign.models.envelope_view_envelope_custom_field_settings import EnvelopeViewEnvelopeCustomFieldSettings +from docusign_esign.models.envelope_view_recipient_settings import EnvelopeViewRecipientSettings +from docusign_esign.models.envelope_view_request import EnvelopeViewRequest +from docusign_esign.models.envelope_view_settings import EnvelopeViewSettings +from docusign_esign.models.envelope_view_tagger_settings import EnvelopeViewTaggerSettings +from docusign_esign.models.envelope_view_template_settings import EnvelopeViewTemplateSettings from docusign_esign.models.envelopes_information import EnvelopesInformation from docusign_esign.models.error_details import ErrorDetails from docusign_esign.models.event_notification import EventNotification @@ -341,6 +348,8 @@ from docusign_esign.models.page import Page from docusign_esign.models.page_images import PageImages from docusign_esign.models.page_request import PageRequest +from docusign_esign.models.palette_item_settings import PaletteItemSettings +from docusign_esign.models.palette_settings import PaletteSettings from docusign_esign.models.participant import Participant from docusign_esign.models.path_extended_element import PathExtendedElement from docusign_esign.models.pay_pal_legacy_settings import PayPalLegacySettings @@ -404,7 +413,6 @@ from docusign_esign.models.referral_information import ReferralInformation from docusign_esign.models.reminders import Reminders from docusign_esign.models.resource_information import ResourceInformation -from docusign_esign.models.return_url_request import ReturnUrlRequest from docusign_esign.models.scheduled_sending import ScheduledSending from docusign_esign.models.seal_identifier import SealIdentifier from docusign_esign.models.seal_sign import SealSign @@ -460,6 +468,7 @@ from docusign_esign.models.template_summary import TemplateSummary from docusign_esign.models.template_tabs import TemplateTabs from docusign_esign.models.template_update_summary import TemplateUpdateSummary +from docusign_esign.models.template_view_request import TemplateViewRequest from docusign_esign.models.text import Text from docusign_esign.models.text_custom_field import TextCustomField from docusign_esign.models.title import Title diff --git a/docusign_esign/models/account_settings_information.py b/docusign_esign/models/account_settings_information.py index adbd7be3..753e1a29 100644 --- a/docusign_esign/models/account_settings_information.py +++ b/docusign_esign/models/account_settings_information.py @@ -76,6 +76,7 @@ class AccountSettingsInformation(object): 'allow_bulk_send_metadata': 'SettingsMetadata', 'allow_cd_withdraw': 'str', 'allow_cd_withdraw_metadata': 'SettingsMetadata', + 'allow_connect_envelope_removed_event': 'str', 'allow_connect_http_listener_configs': 'str', 'allow_connect_identity_verification_ui': 'str', 'allow_connect_o_auth_ui': 'str', @@ -162,6 +163,8 @@ class AccountSettingsInformation(object): 'allow_offline_signing_metadata': 'SettingsMetadata', 'allow_open_trust_signer_certificate': 'str', 'allow_open_trust_signer_certificate_metadata': 'SettingsMetadata', + 'allow_organization_branding': 'str', + 'allow_organization_branding_metadata': 'SettingsMetadata', 'allow_organization_docusign_monitor': 'str', 'allow_organization_docusign_monitor_free': 'str', 'allow_organization_docusign_monitor_free_metadata': 'SettingsMetadata', @@ -182,6 +185,8 @@ class AccountSettingsInformation(object): 'allow_participant_recipient_type_metadata': 'SettingsMetadata', 'allow_payment_processing': 'str', 'allow_payment_processing_metadata': 'SettingsMetadata', + 'allow_pending_destination_url_edition': 'str', + 'allow_pending_destination_url_edition_metadata': 'SettingsMetadata', 'allow_performance_analytics': 'str', 'allow_performance_analytics_metadata': 'SettingsMetadata', 'allow_phone_authentication': 'str', @@ -309,6 +314,8 @@ class AccountSettingsInformation(object): 'default_to_advanced_envelopes_filter_form_metadata': 'SettingsMetadata', 'disable_auto_template_matching': 'str', 'disable_auto_template_matching_metadata': 'SettingsMetadata', + 'disable_bulk_send_recipient_limit': 'str', + 'disable_bulk_send_recipient_limit_meta_data': 'SettingsMetadata', 'disable_mobile_app': 'str', 'disable_mobile_app_metadata': 'SettingsMetadata', 'disable_mobile_push_notifications': 'str', @@ -357,6 +364,8 @@ class AccountSettingsInformation(object): 'enable_advanced_payments_metadata': 'SettingsMetadata', 'enable_advanced_power_forms': 'str', 'enable_advanced_power_forms_metadata': 'SettingsMetadata', + 'enable_advanced_search': 'str', + 'enable_advanced_search_metadata': 'SettingsMetadata', 'enable_agreement_actions_for_clm': 'str', 'enable_agreement_actions_for_clm_metadata': 'SettingsMetadata', 'enable_agreement_actions_for_e_sign': 'str', @@ -384,6 +393,8 @@ class AccountSettingsInformation(object): 'enable_comments_history_download_in_signing_metadata': 'SettingsMetadata', 'enable_contact_suggestions': 'str', 'enable_contact_suggestions_metadata': 'SettingsMetadata', + 'enable_content_search': 'str', + 'enable_content_search_metadata': 'SettingsMetadata', 'enable_customer_satisfaction_metric_tracking': 'str', 'enable_customer_satisfaction_metric_tracking_metadata': 'SettingsMetadata', 'enable_data_verification_extensions': 'str', @@ -424,8 +435,6 @@ class AccountSettingsInformation(object): 'enable_inbox_browse_views_powered_by_elastic_search': 'str', 'enable_inbox_browse_views_powered_by_elastic_search_metadata': 'SettingsMetadata', 'enable_inbox_relevance_sort': 'str', - 'enable_inbox_relevance_sort_for_recent_accounts': 'str', - 'enable_inbox_relevance_sort_for_recent_accounts_metadata': 'SettingsMetadata', 'enable_inbox_relevance_sort_metadata': 'SettingsMetadata', 'enable_in_browser_editor': 'str', 'enable_in_browser_editor_metadata': 'SettingsMetadata', @@ -433,6 +442,8 @@ class AccountSettingsInformation(object): 'enable_key_terms_suggestions_by_document_type_metadata': 'SettingsMetadata', 'enable_large_file_support': 'str', 'enable_large_file_support_metadata': 'SettingsMetadata', + 'enable_multi_user_repository_features': 'str', + 'enable_multi_user_repository_features_metadata': 'SettingsMetadata', 'enable_participant_recipient_setting_metadata': 'SettingsMetadata', 'enable_payment_processing': 'str', 'enable_payment_processing_metadata': 'SettingsMetadata', @@ -442,6 +453,8 @@ class AccountSettingsInformation(object): 'enable_power_form_direct': 'str', 'enable_power_form_direct_metadata': 'SettingsMetadata', 'enable_power_form_metadata': 'SettingsMetadata', + 'enable_premium_data_verification_extensions': 'str', + 'enable_premium_data_verification_extensions_metadata': 'SettingsMetadata', 'enable_recipient_domain_validation': 'str', 'enable_recipient_domain_validation_metadata': 'SettingsMetadata', 'enable_recipient_may_provide_phone_number': 'str', @@ -454,16 +467,14 @@ class AccountSettingsInformation(object): 'enable_reserved_domain_metadata': 'SettingsMetadata', 'enable_responsive_signing': 'str', 'enable_responsive_signing_metadata': 'SettingsMetadata', + 'enable_save_as_envelope_custom_field_in_web_forms': 'str', + 'enable_save_as_envelope_custom_field_in_web_forms_metadata': 'SettingsMetadata', 'enable_scheduled_release': 'str', 'enable_scheduled_release_metadata': 'SettingsMetadata', - 'enable_search': 'str', - 'enable_search_metadata': 'SettingsMetadata', 'enable_search_service_azure_uri': 'str', 'enable_search_service_azure_uri_metadata': 'SettingsMetadata', 'enable_search_site_specific_api': 'str', 'enable_search_site_specific_api_metadata': 'SettingsMetadata', - 'enable_search_ui': 'str', - 'enable_search_ui_metadata': 'SettingsMetadata', 'enable_sending_tags_font_settings': 'str', 'enable_sending_tags_font_settings_metadata': 'SettingsMetadata', 'enable_send_to_agent': 'str', @@ -579,6 +590,8 @@ class AccountSettingsInformation(object): 'in_session_suppress_emails': 'str', 'in_session_suppress_emails_metadata': 'SettingsMetadata', 'is_connect_document_fields_enabled': 'str', + 'isv_oem_embed': 'str', + 'isv_oem_embed_meta_data': 'SettingsMetadata', 'linked_external_primary_accounts': 'list[LinkedExternalPrimaryAccount]', 'maximum_signing_groups': 'str', 'maximum_signing_groups_metadata': 'SettingsMetadata', @@ -815,6 +828,7 @@ class AccountSettingsInformation(object): 'allow_bulk_send_metadata': 'allowBulkSendMetadata', 'allow_cd_withdraw': 'allowCDWithdraw', 'allow_cd_withdraw_metadata': 'allowCDWithdrawMetadata', + 'allow_connect_envelope_removed_event': 'allowConnectEnvelopeRemovedEvent', 'allow_connect_http_listener_configs': 'allowConnectHttpListenerConfigs', 'allow_connect_identity_verification_ui': 'AllowConnectIdentityVerificationUI', 'allow_connect_o_auth_ui': 'allowConnectOAuthUI', @@ -901,6 +915,8 @@ class AccountSettingsInformation(object): 'allow_offline_signing_metadata': 'allowOfflineSigningMetadata', 'allow_open_trust_signer_certificate': 'allowOpenTrustSignerCertificate', 'allow_open_trust_signer_certificate_metadata': 'allowOpenTrustSignerCertificateMetadata', + 'allow_organization_branding': 'allowOrganizationBranding', + 'allow_organization_branding_metadata': 'allowOrganizationBrandingMetadata', 'allow_organization_docusign_monitor': 'allowOrganizationDocusignMonitor', 'allow_organization_docusign_monitor_free': 'allowOrganizationDocusignMonitorFree', 'allow_organization_docusign_monitor_free_metadata': 'allowOrganizationDocusignMonitorFreeMetadata', @@ -921,6 +937,8 @@ class AccountSettingsInformation(object): 'allow_participant_recipient_type_metadata': 'allowParticipantRecipientTypeMetadata', 'allow_payment_processing': 'allowPaymentProcessing', 'allow_payment_processing_metadata': 'allowPaymentProcessingMetadata', + 'allow_pending_destination_url_edition': 'allowPendingDestinationUrlEdition', + 'allow_pending_destination_url_edition_metadata': 'allowPendingDestinationUrlEditionMetadata', 'allow_performance_analytics': 'allowPerformanceAnalytics', 'allow_performance_analytics_metadata': 'allowPerformanceAnalyticsMetadata', 'allow_phone_authentication': 'allowPhoneAuthentication', @@ -1048,6 +1066,8 @@ class AccountSettingsInformation(object): 'default_to_advanced_envelopes_filter_form_metadata': 'defaultToAdvancedEnvelopesFilterFormMetadata', 'disable_auto_template_matching': 'disableAutoTemplateMatching', 'disable_auto_template_matching_metadata': 'disableAutoTemplateMatchingMetadata', + 'disable_bulk_send_recipient_limit': 'disableBulkSendRecipientLimit', + 'disable_bulk_send_recipient_limit_meta_data': 'disableBulkSendRecipientLimitMetaData', 'disable_mobile_app': 'disableMobileApp', 'disable_mobile_app_metadata': 'disableMobileAppMetadata', 'disable_mobile_push_notifications': 'disableMobilePushNotifications', @@ -1096,6 +1116,8 @@ class AccountSettingsInformation(object): 'enable_advanced_payments_metadata': 'enableAdvancedPaymentsMetadata', 'enable_advanced_power_forms': 'enableAdvancedPowerForms', 'enable_advanced_power_forms_metadata': 'enableAdvancedPowerFormsMetadata', + 'enable_advanced_search': 'enableAdvancedSearch', + 'enable_advanced_search_metadata': 'enableAdvancedSearchMetadata', 'enable_agreement_actions_for_clm': 'enableAgreementActionsForCLM', 'enable_agreement_actions_for_clm_metadata': 'enableAgreementActionsForCLMMetadata', 'enable_agreement_actions_for_e_sign': 'enableAgreementActionsForESign', @@ -1123,6 +1145,8 @@ class AccountSettingsInformation(object): 'enable_comments_history_download_in_signing_metadata': 'enableCommentsHistoryDownloadInSigningMetadata', 'enable_contact_suggestions': 'enableContactSuggestions', 'enable_contact_suggestions_metadata': 'enableContactSuggestionsMetadata', + 'enable_content_search': 'enableContentSearch', + 'enable_content_search_metadata': 'enableContentSearchMetadata', 'enable_customer_satisfaction_metric_tracking': 'enableCustomerSatisfactionMetricTracking', 'enable_customer_satisfaction_metric_tracking_metadata': 'enableCustomerSatisfactionMetricTrackingMetadata', 'enable_data_verification_extensions': 'enableDataVerificationExtensions', @@ -1163,8 +1187,6 @@ class AccountSettingsInformation(object): 'enable_inbox_browse_views_powered_by_elastic_search': 'enableInboxBrowseViewsPoweredByElasticSearch', 'enable_inbox_browse_views_powered_by_elastic_search_metadata': 'enableInboxBrowseViewsPoweredByElasticSearchMetadata', 'enable_inbox_relevance_sort': 'enableInboxRelevanceSort', - 'enable_inbox_relevance_sort_for_recent_accounts': 'enableInboxRelevanceSortForRecentAccounts', - 'enable_inbox_relevance_sort_for_recent_accounts_metadata': 'enableInboxRelevanceSortForRecentAccountsMetadata', 'enable_inbox_relevance_sort_metadata': 'enableInboxRelevanceSortMetadata', 'enable_in_browser_editor': 'enableInBrowserEditor', 'enable_in_browser_editor_metadata': 'enableInBrowserEditorMetadata', @@ -1172,6 +1194,8 @@ class AccountSettingsInformation(object): 'enable_key_terms_suggestions_by_document_type_metadata': 'enableKeyTermsSuggestionsByDocumentTypeMetadata', 'enable_large_file_support': 'enableLargeFileSupport', 'enable_large_file_support_metadata': 'enableLargeFileSupportMetadata', + 'enable_multi_user_repository_features': 'enableMultiUserRepositoryFeatures', + 'enable_multi_user_repository_features_metadata': 'enableMultiUserRepositoryFeaturesMetadata', 'enable_participant_recipient_setting_metadata': 'enableParticipantRecipientSettingMetadata', 'enable_payment_processing': 'enablePaymentProcessing', 'enable_payment_processing_metadata': 'enablePaymentProcessingMetadata', @@ -1181,6 +1205,8 @@ class AccountSettingsInformation(object): 'enable_power_form_direct': 'enablePowerFormDirect', 'enable_power_form_direct_metadata': 'enablePowerFormDirectMetadata', 'enable_power_form_metadata': 'enablePowerFormMetadata', + 'enable_premium_data_verification_extensions': 'enablePremiumDataVerificationExtensions', + 'enable_premium_data_verification_extensions_metadata': 'enablePremiumDataVerificationExtensionsMetadata', 'enable_recipient_domain_validation': 'enableRecipientDomainValidation', 'enable_recipient_domain_validation_metadata': 'enableRecipientDomainValidationMetadata', 'enable_recipient_may_provide_phone_number': 'enableRecipientMayProvidePhoneNumber', @@ -1193,16 +1219,14 @@ class AccountSettingsInformation(object): 'enable_reserved_domain_metadata': 'enableReservedDomainMetadata', 'enable_responsive_signing': 'enableResponsiveSigning', 'enable_responsive_signing_metadata': 'enableResponsiveSigningMetadata', + 'enable_save_as_envelope_custom_field_in_web_forms': 'enableSaveAsEnvelopeCustomFieldInWebForms', + 'enable_save_as_envelope_custom_field_in_web_forms_metadata': 'enableSaveAsEnvelopeCustomFieldInWebFormsMetadata', 'enable_scheduled_release': 'enableScheduledRelease', 'enable_scheduled_release_metadata': 'enableScheduledReleaseMetadata', - 'enable_search': 'enableSearch', - 'enable_search_metadata': 'enableSearchMetadata', 'enable_search_service_azure_uri': 'enableSearchServiceAzureUri', 'enable_search_service_azure_uri_metadata': 'enableSearchServiceAzureUriMetadata', 'enable_search_site_specific_api': 'enableSearchSiteSpecificApi', 'enable_search_site_specific_api_metadata': 'enableSearchSiteSpecificApiMetadata', - 'enable_search_ui': 'enableSearchUI', - 'enable_search_ui_metadata': 'enableSearchUIMetadata', 'enable_sending_tags_font_settings': 'enableSendingTagsFontSettings', 'enable_sending_tags_font_settings_metadata': 'enableSendingTagsFontSettingsMetadata', 'enable_send_to_agent': 'enableSendToAgent', @@ -1318,6 +1342,8 @@ class AccountSettingsInformation(object): 'in_session_suppress_emails': 'inSessionSuppressEmails', 'in_session_suppress_emails_metadata': 'inSessionSuppressEmailsMetadata', 'is_connect_document_fields_enabled': 'isConnectDocumentFieldsEnabled', + 'isv_oem_embed': 'isvOemEmbed', + 'isv_oem_embed_meta_data': 'isvOemEmbedMetaData', 'linked_external_primary_accounts': 'linkedExternalPrimaryAccounts', 'maximum_signing_groups': 'maximumSigningGroups', 'maximum_signing_groups_metadata': 'maximumSigningGroupsMetadata', @@ -1559,6 +1585,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._allow_bulk_send_metadata = None self._allow_cd_withdraw = None self._allow_cd_withdraw_metadata = None + self._allow_connect_envelope_removed_event = None self._allow_connect_http_listener_configs = None self._allow_connect_identity_verification_ui = None self._allow_connect_o_auth_ui = None @@ -1645,6 +1672,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._allow_offline_signing_metadata = None self._allow_open_trust_signer_certificate = None self._allow_open_trust_signer_certificate_metadata = None + self._allow_organization_branding = None + self._allow_organization_branding_metadata = None self._allow_organization_docusign_monitor = None self._allow_organization_docusign_monitor_free = None self._allow_organization_docusign_monitor_free_metadata = None @@ -1665,6 +1694,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._allow_participant_recipient_type_metadata = None self._allow_payment_processing = None self._allow_payment_processing_metadata = None + self._allow_pending_destination_url_edition = None + self._allow_pending_destination_url_edition_metadata = None self._allow_performance_analytics = None self._allow_performance_analytics_metadata = None self._allow_phone_authentication = None @@ -1792,6 +1823,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._default_to_advanced_envelopes_filter_form_metadata = None self._disable_auto_template_matching = None self._disable_auto_template_matching_metadata = None + self._disable_bulk_send_recipient_limit = None + self._disable_bulk_send_recipient_limit_meta_data = None self._disable_mobile_app = None self._disable_mobile_app_metadata = None self._disable_mobile_push_notifications = None @@ -1840,6 +1873,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_advanced_payments_metadata = None self._enable_advanced_power_forms = None self._enable_advanced_power_forms_metadata = None + self._enable_advanced_search = None + self._enable_advanced_search_metadata = None self._enable_agreement_actions_for_clm = None self._enable_agreement_actions_for_clm_metadata = None self._enable_agreement_actions_for_e_sign = None @@ -1867,6 +1902,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_comments_history_download_in_signing_metadata = None self._enable_contact_suggestions = None self._enable_contact_suggestions_metadata = None + self._enable_content_search = None + self._enable_content_search_metadata = None self._enable_customer_satisfaction_metric_tracking = None self._enable_customer_satisfaction_metric_tracking_metadata = None self._enable_data_verification_extensions = None @@ -1907,8 +1944,6 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_inbox_browse_views_powered_by_elastic_search = None self._enable_inbox_browse_views_powered_by_elastic_search_metadata = None self._enable_inbox_relevance_sort = None - self._enable_inbox_relevance_sort_for_recent_accounts = None - self._enable_inbox_relevance_sort_for_recent_accounts_metadata = None self._enable_inbox_relevance_sort_metadata = None self._enable_in_browser_editor = None self._enable_in_browser_editor_metadata = None @@ -1916,6 +1951,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_key_terms_suggestions_by_document_type_metadata = None self._enable_large_file_support = None self._enable_large_file_support_metadata = None + self._enable_multi_user_repository_features = None + self._enable_multi_user_repository_features_metadata = None self._enable_participant_recipient_setting_metadata = None self._enable_payment_processing = None self._enable_payment_processing_metadata = None @@ -1925,6 +1962,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_power_form_direct = None self._enable_power_form_direct_metadata = None self._enable_power_form_metadata = None + self._enable_premium_data_verification_extensions = None + self._enable_premium_data_verification_extensions_metadata = None self._enable_recipient_domain_validation = None self._enable_recipient_domain_validation_metadata = None self._enable_recipient_may_provide_phone_number = None @@ -1937,16 +1976,14 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_reserved_domain_metadata = None self._enable_responsive_signing = None self._enable_responsive_signing_metadata = None + self._enable_save_as_envelope_custom_field_in_web_forms = None + self._enable_save_as_envelope_custom_field_in_web_forms_metadata = None self._enable_scheduled_release = None self._enable_scheduled_release_metadata = None - self._enable_search = None - self._enable_search_metadata = None self._enable_search_service_azure_uri = None self._enable_search_service_azure_uri_metadata = None self._enable_search_site_specific_api = None self._enable_search_site_specific_api_metadata = None - self._enable_search_ui = None - self._enable_search_ui_metadata = None self._enable_sending_tags_font_settings = None self._enable_sending_tags_font_settings_metadata = None self._enable_send_to_agent = None @@ -2062,6 +2099,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._in_session_suppress_emails = None self._in_session_suppress_emails_metadata = None self._is_connect_document_fields_enabled = None + self._isv_oem_embed = None + self._isv_oem_embed_meta_data = None self._linked_external_primary_accounts = None self._maximum_signing_groups = None self._maximum_signing_groups_metadata = None @@ -2297,6 +2336,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('allow_bulk_send_metadata'), kwargs.get('allow_bulk_send_metadata', None)) setattr(self, "_{}".format('allow_cd_withdraw'), kwargs.get('allow_cd_withdraw', None)) setattr(self, "_{}".format('allow_cd_withdraw_metadata'), kwargs.get('allow_cd_withdraw_metadata', None)) + setattr(self, "_{}".format('allow_connect_envelope_removed_event'), kwargs.get('allow_connect_envelope_removed_event', None)) setattr(self, "_{}".format('allow_connect_http_listener_configs'), kwargs.get('allow_connect_http_listener_configs', None)) setattr(self, "_{}".format('allow_connect_identity_verification_ui'), kwargs.get('allow_connect_identity_verification_ui', None)) setattr(self, "_{}".format('allow_connect_o_auth_ui'), kwargs.get('allow_connect_o_auth_ui', None)) @@ -2383,6 +2423,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('allow_offline_signing_metadata'), kwargs.get('allow_offline_signing_metadata', None)) setattr(self, "_{}".format('allow_open_trust_signer_certificate'), kwargs.get('allow_open_trust_signer_certificate', None)) setattr(self, "_{}".format('allow_open_trust_signer_certificate_metadata'), kwargs.get('allow_open_trust_signer_certificate_metadata', None)) + setattr(self, "_{}".format('allow_organization_branding'), kwargs.get('allow_organization_branding', None)) + setattr(self, "_{}".format('allow_organization_branding_metadata'), kwargs.get('allow_organization_branding_metadata', None)) setattr(self, "_{}".format('allow_organization_docusign_monitor'), kwargs.get('allow_organization_docusign_monitor', None)) setattr(self, "_{}".format('allow_organization_docusign_monitor_free'), kwargs.get('allow_organization_docusign_monitor_free', None)) setattr(self, "_{}".format('allow_organization_docusign_monitor_free_metadata'), kwargs.get('allow_organization_docusign_monitor_free_metadata', None)) @@ -2403,6 +2445,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('allow_participant_recipient_type_metadata'), kwargs.get('allow_participant_recipient_type_metadata', None)) setattr(self, "_{}".format('allow_payment_processing'), kwargs.get('allow_payment_processing', None)) setattr(self, "_{}".format('allow_payment_processing_metadata'), kwargs.get('allow_payment_processing_metadata', None)) + setattr(self, "_{}".format('allow_pending_destination_url_edition'), kwargs.get('allow_pending_destination_url_edition', None)) + setattr(self, "_{}".format('allow_pending_destination_url_edition_metadata'), kwargs.get('allow_pending_destination_url_edition_metadata', None)) setattr(self, "_{}".format('allow_performance_analytics'), kwargs.get('allow_performance_analytics', None)) setattr(self, "_{}".format('allow_performance_analytics_metadata'), kwargs.get('allow_performance_analytics_metadata', None)) setattr(self, "_{}".format('allow_phone_authentication'), kwargs.get('allow_phone_authentication', None)) @@ -2530,6 +2574,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('default_to_advanced_envelopes_filter_form_metadata'), kwargs.get('default_to_advanced_envelopes_filter_form_metadata', None)) setattr(self, "_{}".format('disable_auto_template_matching'), kwargs.get('disable_auto_template_matching', None)) setattr(self, "_{}".format('disable_auto_template_matching_metadata'), kwargs.get('disable_auto_template_matching_metadata', None)) + setattr(self, "_{}".format('disable_bulk_send_recipient_limit'), kwargs.get('disable_bulk_send_recipient_limit', None)) + setattr(self, "_{}".format('disable_bulk_send_recipient_limit_meta_data'), kwargs.get('disable_bulk_send_recipient_limit_meta_data', None)) setattr(self, "_{}".format('disable_mobile_app'), kwargs.get('disable_mobile_app', None)) setattr(self, "_{}".format('disable_mobile_app_metadata'), kwargs.get('disable_mobile_app_metadata', None)) setattr(self, "_{}".format('disable_mobile_push_notifications'), kwargs.get('disable_mobile_push_notifications', None)) @@ -2578,6 +2624,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_advanced_payments_metadata'), kwargs.get('enable_advanced_payments_metadata', None)) setattr(self, "_{}".format('enable_advanced_power_forms'), kwargs.get('enable_advanced_power_forms', None)) setattr(self, "_{}".format('enable_advanced_power_forms_metadata'), kwargs.get('enable_advanced_power_forms_metadata', None)) + setattr(self, "_{}".format('enable_advanced_search'), kwargs.get('enable_advanced_search', None)) + setattr(self, "_{}".format('enable_advanced_search_metadata'), kwargs.get('enable_advanced_search_metadata', None)) setattr(self, "_{}".format('enable_agreement_actions_for_clm'), kwargs.get('enable_agreement_actions_for_clm', None)) setattr(self, "_{}".format('enable_agreement_actions_for_clm_metadata'), kwargs.get('enable_agreement_actions_for_clm_metadata', None)) setattr(self, "_{}".format('enable_agreement_actions_for_e_sign'), kwargs.get('enable_agreement_actions_for_e_sign', None)) @@ -2605,6 +2653,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_comments_history_download_in_signing_metadata'), kwargs.get('enable_comments_history_download_in_signing_metadata', None)) setattr(self, "_{}".format('enable_contact_suggestions'), kwargs.get('enable_contact_suggestions', None)) setattr(self, "_{}".format('enable_contact_suggestions_metadata'), kwargs.get('enable_contact_suggestions_metadata', None)) + setattr(self, "_{}".format('enable_content_search'), kwargs.get('enable_content_search', None)) + setattr(self, "_{}".format('enable_content_search_metadata'), kwargs.get('enable_content_search_metadata', None)) setattr(self, "_{}".format('enable_customer_satisfaction_metric_tracking'), kwargs.get('enable_customer_satisfaction_metric_tracking', None)) setattr(self, "_{}".format('enable_customer_satisfaction_metric_tracking_metadata'), kwargs.get('enable_customer_satisfaction_metric_tracking_metadata', None)) setattr(self, "_{}".format('enable_data_verification_extensions'), kwargs.get('enable_data_verification_extensions', None)) @@ -2645,8 +2695,6 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_inbox_browse_views_powered_by_elastic_search'), kwargs.get('enable_inbox_browse_views_powered_by_elastic_search', None)) setattr(self, "_{}".format('enable_inbox_browse_views_powered_by_elastic_search_metadata'), kwargs.get('enable_inbox_browse_views_powered_by_elastic_search_metadata', None)) setattr(self, "_{}".format('enable_inbox_relevance_sort'), kwargs.get('enable_inbox_relevance_sort', None)) - setattr(self, "_{}".format('enable_inbox_relevance_sort_for_recent_accounts'), kwargs.get('enable_inbox_relevance_sort_for_recent_accounts', None)) - setattr(self, "_{}".format('enable_inbox_relevance_sort_for_recent_accounts_metadata'), kwargs.get('enable_inbox_relevance_sort_for_recent_accounts_metadata', None)) setattr(self, "_{}".format('enable_inbox_relevance_sort_metadata'), kwargs.get('enable_inbox_relevance_sort_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)) @@ -2654,6 +2702,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_key_terms_suggestions_by_document_type_metadata'), kwargs.get('enable_key_terms_suggestions_by_document_type_metadata', None)) setattr(self, "_{}".format('enable_large_file_support'), kwargs.get('enable_large_file_support', None)) setattr(self, "_{}".format('enable_large_file_support_metadata'), kwargs.get('enable_large_file_support_metadata', None)) + setattr(self, "_{}".format('enable_multi_user_repository_features'), kwargs.get('enable_multi_user_repository_features', None)) + setattr(self, "_{}".format('enable_multi_user_repository_features_metadata'), kwargs.get('enable_multi_user_repository_features_metadata', None)) setattr(self, "_{}".format('enable_participant_recipient_setting_metadata'), kwargs.get('enable_participant_recipient_setting_metadata', None)) setattr(self, "_{}".format('enable_payment_processing'), kwargs.get('enable_payment_processing', None)) setattr(self, "_{}".format('enable_payment_processing_metadata'), kwargs.get('enable_payment_processing_metadata', None)) @@ -2663,6 +2713,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_power_form_direct'), kwargs.get('enable_power_form_direct', None)) setattr(self, "_{}".format('enable_power_form_direct_metadata'), kwargs.get('enable_power_form_direct_metadata', None)) setattr(self, "_{}".format('enable_power_form_metadata'), kwargs.get('enable_power_form_metadata', None)) + setattr(self, "_{}".format('enable_premium_data_verification_extensions'), kwargs.get('enable_premium_data_verification_extensions', None)) + setattr(self, "_{}".format('enable_premium_data_verification_extensions_metadata'), kwargs.get('enable_premium_data_verification_extensions_metadata', None)) setattr(self, "_{}".format('enable_recipient_domain_validation'), kwargs.get('enable_recipient_domain_validation', None)) setattr(self, "_{}".format('enable_recipient_domain_validation_metadata'), kwargs.get('enable_recipient_domain_validation_metadata', None)) setattr(self, "_{}".format('enable_recipient_may_provide_phone_number'), kwargs.get('enable_recipient_may_provide_phone_number', None)) @@ -2675,16 +2727,14 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_reserved_domain_metadata'), kwargs.get('enable_reserved_domain_metadata', None)) setattr(self, "_{}".format('enable_responsive_signing'), kwargs.get('enable_responsive_signing', None)) setattr(self, "_{}".format('enable_responsive_signing_metadata'), kwargs.get('enable_responsive_signing_metadata', None)) + setattr(self, "_{}".format('enable_save_as_envelope_custom_field_in_web_forms'), kwargs.get('enable_save_as_envelope_custom_field_in_web_forms', None)) + setattr(self, "_{}".format('enable_save_as_envelope_custom_field_in_web_forms_metadata'), kwargs.get('enable_save_as_envelope_custom_field_in_web_forms_metadata', None)) setattr(self, "_{}".format('enable_scheduled_release'), kwargs.get('enable_scheduled_release', None)) setattr(self, "_{}".format('enable_scheduled_release_metadata'), kwargs.get('enable_scheduled_release_metadata', None)) - setattr(self, "_{}".format('enable_search'), kwargs.get('enable_search', None)) - setattr(self, "_{}".format('enable_search_metadata'), kwargs.get('enable_search_metadata', None)) setattr(self, "_{}".format('enable_search_service_azure_uri'), kwargs.get('enable_search_service_azure_uri', None)) setattr(self, "_{}".format('enable_search_service_azure_uri_metadata'), kwargs.get('enable_search_service_azure_uri_metadata', None)) setattr(self, "_{}".format('enable_search_site_specific_api'), kwargs.get('enable_search_site_specific_api', None)) setattr(self, "_{}".format('enable_search_site_specific_api_metadata'), kwargs.get('enable_search_site_specific_api_metadata', None)) - setattr(self, "_{}".format('enable_search_ui'), kwargs.get('enable_search_ui', None)) - setattr(self, "_{}".format('enable_search_ui_metadata'), kwargs.get('enable_search_ui_metadata', None)) setattr(self, "_{}".format('enable_sending_tags_font_settings'), kwargs.get('enable_sending_tags_font_settings', None)) setattr(self, "_{}".format('enable_sending_tags_font_settings_metadata'), kwargs.get('enable_sending_tags_font_settings_metadata', None)) setattr(self, "_{}".format('enable_send_to_agent'), kwargs.get('enable_send_to_agent', None)) @@ -2800,6 +2850,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('in_session_suppress_emails'), kwargs.get('in_session_suppress_emails', None)) setattr(self, "_{}".format('in_session_suppress_emails_metadata'), kwargs.get('in_session_suppress_emails_metadata', None)) setattr(self, "_{}".format('is_connect_document_fields_enabled'), kwargs.get('is_connect_document_fields_enabled', None)) + setattr(self, "_{}".format('isv_oem_embed'), kwargs.get('isv_oem_embed', None)) + setattr(self, "_{}".format('isv_oem_embed_meta_data'), kwargs.get('isv_oem_embed_meta_data', None)) setattr(self, "_{}".format('linked_external_primary_accounts'), kwargs.get('linked_external_primary_accounts', None)) setattr(self, "_{}".format('maximum_signing_groups'), kwargs.get('maximum_signing_groups', None)) setattr(self, "_{}".format('maximum_signing_groups_metadata'), kwargs.get('maximum_signing_groups_metadata', None)) @@ -3980,6 +4032,29 @@ def allow_cd_withdraw_metadata(self, allow_cd_withdraw_metadata): self._allow_cd_withdraw_metadata = allow_cd_withdraw_metadata + @property + def allow_connect_envelope_removed_event(self): + """Gets the allow_connect_envelope_removed_event of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The allow_connect_envelope_removed_event of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._allow_connect_envelope_removed_event + + @allow_connect_envelope_removed_event.setter + def allow_connect_envelope_removed_event(self, allow_connect_envelope_removed_event): + """Sets the allow_connect_envelope_removed_event of this AccountSettingsInformation. + + # noqa: E501 + + :param allow_connect_envelope_removed_event: The allow_connect_envelope_removed_event of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._allow_connect_envelope_removed_event = allow_connect_envelope_removed_event + @property def allow_connect_http_listener_configs(self): """Gets the allow_connect_http_listener_configs of this AccountSettingsInformation. # noqa: E501 @@ -5958,6 +6033,52 @@ def allow_open_trust_signer_certificate_metadata(self, allow_open_trust_signer_c self._allow_open_trust_signer_certificate_metadata = allow_open_trust_signer_certificate_metadata + @property + def allow_organization_branding(self): + """Gets the allow_organization_branding of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The allow_organization_branding of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._allow_organization_branding + + @allow_organization_branding.setter + def allow_organization_branding(self, allow_organization_branding): + """Sets the allow_organization_branding of this AccountSettingsInformation. + + # noqa: E501 + + :param allow_organization_branding: The allow_organization_branding of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._allow_organization_branding = allow_organization_branding + + @property + def allow_organization_branding_metadata(self): + """Gets the allow_organization_branding_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The allow_organization_branding_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._allow_organization_branding_metadata + + @allow_organization_branding_metadata.setter + def allow_organization_branding_metadata(self, allow_organization_branding_metadata): + """Sets the allow_organization_branding_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param allow_organization_branding_metadata: The allow_organization_branding_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._allow_organization_branding_metadata = allow_organization_branding_metadata + @property def allow_organization_docusign_monitor(self): """Gets the allow_organization_docusign_monitor of this AccountSettingsInformation. # noqa: E501 @@ -6418,6 +6539,52 @@ def allow_payment_processing_metadata(self, allow_payment_processing_metadata): self._allow_payment_processing_metadata = allow_payment_processing_metadata + @property + def allow_pending_destination_url_edition(self): + """Gets the allow_pending_destination_url_edition of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The allow_pending_destination_url_edition of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._allow_pending_destination_url_edition + + @allow_pending_destination_url_edition.setter + def allow_pending_destination_url_edition(self, allow_pending_destination_url_edition): + """Sets the allow_pending_destination_url_edition of this AccountSettingsInformation. + + # noqa: E501 + + :param allow_pending_destination_url_edition: The allow_pending_destination_url_edition of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._allow_pending_destination_url_edition = allow_pending_destination_url_edition + + @property + def allow_pending_destination_url_edition_metadata(self): + """Gets the allow_pending_destination_url_edition_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The allow_pending_destination_url_edition_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._allow_pending_destination_url_edition_metadata + + @allow_pending_destination_url_edition_metadata.setter + def allow_pending_destination_url_edition_metadata(self, allow_pending_destination_url_edition_metadata): + """Sets the allow_pending_destination_url_edition_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param allow_pending_destination_url_edition_metadata: The allow_pending_destination_url_edition_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._allow_pending_destination_url_edition_metadata = allow_pending_destination_url_edition_metadata + @property def allow_performance_analytics(self): """Gets the allow_performance_analytics of this AccountSettingsInformation. # noqa: E501 @@ -9339,6 +9506,52 @@ def disable_auto_template_matching_metadata(self, disable_auto_template_matching self._disable_auto_template_matching_metadata = disable_auto_template_matching_metadata + @property + def disable_bulk_send_recipient_limit(self): + """Gets the disable_bulk_send_recipient_limit of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The disable_bulk_send_recipient_limit of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._disable_bulk_send_recipient_limit + + @disable_bulk_send_recipient_limit.setter + def disable_bulk_send_recipient_limit(self, disable_bulk_send_recipient_limit): + """Sets the disable_bulk_send_recipient_limit of this AccountSettingsInformation. + + # noqa: E501 + + :param disable_bulk_send_recipient_limit: The disable_bulk_send_recipient_limit of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._disable_bulk_send_recipient_limit = disable_bulk_send_recipient_limit + + @property + def disable_bulk_send_recipient_limit_meta_data(self): + """Gets the disable_bulk_send_recipient_limit_meta_data of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The disable_bulk_send_recipient_limit_meta_data of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._disable_bulk_send_recipient_limit_meta_data + + @disable_bulk_send_recipient_limit_meta_data.setter + def disable_bulk_send_recipient_limit_meta_data(self, disable_bulk_send_recipient_limit_meta_data): + """Sets the disable_bulk_send_recipient_limit_meta_data of this AccountSettingsInformation. + + # noqa: E501 + + :param disable_bulk_send_recipient_limit_meta_data: The disable_bulk_send_recipient_limit_meta_data of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._disable_bulk_send_recipient_limit_meta_data = disable_bulk_send_recipient_limit_meta_data + @property def disable_mobile_app(self): """Gets the disable_mobile_app of this AccountSettingsInformation. # noqa: E501 @@ -10443,6 +10656,52 @@ def enable_advanced_power_forms_metadata(self, enable_advanced_power_forms_metad self._enable_advanced_power_forms_metadata = enable_advanced_power_forms_metadata + @property + def enable_advanced_search(self): + """Gets the enable_advanced_search of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_advanced_search of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._enable_advanced_search + + @enable_advanced_search.setter + def enable_advanced_search(self, enable_advanced_search): + """Sets the enable_advanced_search of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_advanced_search: The enable_advanced_search of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._enable_advanced_search = enable_advanced_search + + @property + def enable_advanced_search_metadata(self): + """Gets the enable_advanced_search_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_advanced_search_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._enable_advanced_search_metadata + + @enable_advanced_search_metadata.setter + def enable_advanced_search_metadata(self, enable_advanced_search_metadata): + """Sets the enable_advanced_search_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_advanced_search_metadata: The enable_advanced_search_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._enable_advanced_search_metadata = enable_advanced_search_metadata + @property def enable_agreement_actions_for_clm(self): """Gets the enable_agreement_actions_for_clm of this AccountSettingsInformation. # noqa: E501 @@ -11064,6 +11323,52 @@ def enable_contact_suggestions_metadata(self, enable_contact_suggestions_metadat self._enable_contact_suggestions_metadata = enable_contact_suggestions_metadata + @property + def enable_content_search(self): + """Gets the enable_content_search of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_content_search of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._enable_content_search + + @enable_content_search.setter + def enable_content_search(self, enable_content_search): + """Sets the enable_content_search of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_content_search: The enable_content_search of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._enable_content_search = enable_content_search + + @property + def enable_content_search_metadata(self): + """Gets the enable_content_search_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_content_search_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._enable_content_search_metadata + + @enable_content_search_metadata.setter + def enable_content_search_metadata(self, enable_content_search_metadata): + """Sets the enable_content_search_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_content_search_metadata: The enable_content_search_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._enable_content_search_metadata = enable_content_search_metadata + @property def enable_customer_satisfaction_metric_tracking(self): """Gets the enable_customer_satisfaction_metric_tracking of this AccountSettingsInformation. # noqa: E501 @@ -11984,52 +12289,6 @@ def enable_inbox_relevance_sort(self, enable_inbox_relevance_sort): self._enable_inbox_relevance_sort = enable_inbox_relevance_sort - @property - def enable_inbox_relevance_sort_for_recent_accounts(self): - """Gets the enable_inbox_relevance_sort_for_recent_accounts of this AccountSettingsInformation. # noqa: E501 - - # noqa: E501 - - :return: The enable_inbox_relevance_sort_for_recent_accounts of this AccountSettingsInformation. # noqa: E501 - :rtype: str - """ - return self._enable_inbox_relevance_sort_for_recent_accounts - - @enable_inbox_relevance_sort_for_recent_accounts.setter - def enable_inbox_relevance_sort_for_recent_accounts(self, enable_inbox_relevance_sort_for_recent_accounts): - """Sets the enable_inbox_relevance_sort_for_recent_accounts of this AccountSettingsInformation. - - # noqa: E501 - - :param enable_inbox_relevance_sort_for_recent_accounts: The enable_inbox_relevance_sort_for_recent_accounts of this AccountSettingsInformation. # noqa: E501 - :type: str - """ - - self._enable_inbox_relevance_sort_for_recent_accounts = enable_inbox_relevance_sort_for_recent_accounts - - @property - def enable_inbox_relevance_sort_for_recent_accounts_metadata(self): - """Gets the enable_inbox_relevance_sort_for_recent_accounts_metadata of this AccountSettingsInformation. # noqa: E501 - - # noqa: E501 - - :return: The enable_inbox_relevance_sort_for_recent_accounts_metadata of this AccountSettingsInformation. # noqa: E501 - :rtype: SettingsMetadata - """ - return self._enable_inbox_relevance_sort_for_recent_accounts_metadata - - @enable_inbox_relevance_sort_for_recent_accounts_metadata.setter - def enable_inbox_relevance_sort_for_recent_accounts_metadata(self, enable_inbox_relevance_sort_for_recent_accounts_metadata): - """Sets the enable_inbox_relevance_sort_for_recent_accounts_metadata of this AccountSettingsInformation. - - # noqa: E501 - - :param enable_inbox_relevance_sort_for_recent_accounts_metadata: The enable_inbox_relevance_sort_for_recent_accounts_metadata of this AccountSettingsInformation. # noqa: E501 - :type: SettingsMetadata - """ - - self._enable_inbox_relevance_sort_for_recent_accounts_metadata = enable_inbox_relevance_sort_for_recent_accounts_metadata - @property def enable_inbox_relevance_sort_metadata(self): """Gets the enable_inbox_relevance_sort_metadata of this AccountSettingsInformation. # noqa: E501 @@ -12191,6 +12450,52 @@ def enable_large_file_support_metadata(self, enable_large_file_support_metadata) self._enable_large_file_support_metadata = enable_large_file_support_metadata + @property + def enable_multi_user_repository_features(self): + """Gets the enable_multi_user_repository_features of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_multi_user_repository_features of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._enable_multi_user_repository_features + + @enable_multi_user_repository_features.setter + def enable_multi_user_repository_features(self, enable_multi_user_repository_features): + """Sets the enable_multi_user_repository_features of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_multi_user_repository_features: The enable_multi_user_repository_features of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._enable_multi_user_repository_features = enable_multi_user_repository_features + + @property + def enable_multi_user_repository_features_metadata(self): + """Gets the enable_multi_user_repository_features_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_multi_user_repository_features_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._enable_multi_user_repository_features_metadata + + @enable_multi_user_repository_features_metadata.setter + def enable_multi_user_repository_features_metadata(self, enable_multi_user_repository_features_metadata): + """Sets the enable_multi_user_repository_features_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_multi_user_repository_features_metadata: The enable_multi_user_repository_features_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._enable_multi_user_repository_features_metadata = enable_multi_user_repository_features_metadata + @property def enable_participant_recipient_setting_metadata(self): """Gets the enable_participant_recipient_setting_metadata of this AccountSettingsInformation. # noqa: E501 @@ -12398,6 +12703,52 @@ def enable_power_form_metadata(self, enable_power_form_metadata): self._enable_power_form_metadata = enable_power_form_metadata + @property + def enable_premium_data_verification_extensions(self): + """Gets the enable_premium_data_verification_extensions of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_premium_data_verification_extensions of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._enable_premium_data_verification_extensions + + @enable_premium_data_verification_extensions.setter + def enable_premium_data_verification_extensions(self, enable_premium_data_verification_extensions): + """Sets the enable_premium_data_verification_extensions of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_premium_data_verification_extensions: The enable_premium_data_verification_extensions of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._enable_premium_data_verification_extensions = enable_premium_data_verification_extensions + + @property + def enable_premium_data_verification_extensions_metadata(self): + """Gets the enable_premium_data_verification_extensions_metadata of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The enable_premium_data_verification_extensions_metadata of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._enable_premium_data_verification_extensions_metadata + + @enable_premium_data_verification_extensions_metadata.setter + def enable_premium_data_verification_extensions_metadata(self, enable_premium_data_verification_extensions_metadata): + """Sets the enable_premium_data_verification_extensions_metadata of this AccountSettingsInformation. + + # noqa: E501 + + :param enable_premium_data_verification_extensions_metadata: The enable_premium_data_verification_extensions_metadata of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._enable_premium_data_verification_extensions_metadata = enable_premium_data_verification_extensions_metadata + @property def enable_recipient_domain_validation(self): """Gets the enable_recipient_domain_validation of this AccountSettingsInformation. # noqa: E501 @@ -12675,96 +13026,96 @@ def enable_responsive_signing_metadata(self, enable_responsive_signing_metadata) self._enable_responsive_signing_metadata = enable_responsive_signing_metadata @property - def enable_scheduled_release(self): - """Gets the enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 + def enable_save_as_envelope_custom_field_in_web_forms(self): + """Gets the enable_save_as_envelope_custom_field_in_web_forms of this AccountSettingsInformation. # noqa: E501 # noqa: E501 - :return: The enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 + :return: The enable_save_as_envelope_custom_field_in_web_forms of this AccountSettingsInformation. # noqa: E501 :rtype: str """ - return self._enable_scheduled_release + return self._enable_save_as_envelope_custom_field_in_web_forms - @enable_scheduled_release.setter - def enable_scheduled_release(self, enable_scheduled_release): - """Sets the enable_scheduled_release of this AccountSettingsInformation. + @enable_save_as_envelope_custom_field_in_web_forms.setter + def enable_save_as_envelope_custom_field_in_web_forms(self, enable_save_as_envelope_custom_field_in_web_forms): + """Sets the enable_save_as_envelope_custom_field_in_web_forms of this AccountSettingsInformation. # noqa: E501 - :param enable_scheduled_release: The enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 + :param enable_save_as_envelope_custom_field_in_web_forms: The enable_save_as_envelope_custom_field_in_web_forms of this AccountSettingsInformation. # noqa: E501 :type: str """ - self._enable_scheduled_release = enable_scheduled_release + self._enable_save_as_envelope_custom_field_in_web_forms = enable_save_as_envelope_custom_field_in_web_forms @property - def enable_scheduled_release_metadata(self): - """Gets the enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 + def enable_save_as_envelope_custom_field_in_web_forms_metadata(self): + """Gets the enable_save_as_envelope_custom_field_in_web_forms_metadata of this AccountSettingsInformation. # noqa: E501 - Metadata that indicates whether the `enableScheduledRelease` property is editable. # noqa: E501 + # noqa: E501 - :return: The enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 + :return: The enable_save_as_envelope_custom_field_in_web_forms_metadata of this AccountSettingsInformation. # noqa: E501 :rtype: SettingsMetadata """ - return self._enable_scheduled_release_metadata + return self._enable_save_as_envelope_custom_field_in_web_forms_metadata - @enable_scheduled_release_metadata.setter - def enable_scheduled_release_metadata(self, enable_scheduled_release_metadata): - """Sets the enable_scheduled_release_metadata of this AccountSettingsInformation. + @enable_save_as_envelope_custom_field_in_web_forms_metadata.setter + def enable_save_as_envelope_custom_field_in_web_forms_metadata(self, enable_save_as_envelope_custom_field_in_web_forms_metadata): + """Sets the enable_save_as_envelope_custom_field_in_web_forms_metadata of this AccountSettingsInformation. - Metadata that indicates whether the `enableScheduledRelease` property is editable. # noqa: E501 + # noqa: E501 - :param enable_scheduled_release_metadata: The enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 + :param enable_save_as_envelope_custom_field_in_web_forms_metadata: The enable_save_as_envelope_custom_field_in_web_forms_metadata of this AccountSettingsInformation. # noqa: E501 :type: SettingsMetadata """ - self._enable_scheduled_release_metadata = enable_scheduled_release_metadata + self._enable_save_as_envelope_custom_field_in_web_forms_metadata = enable_save_as_envelope_custom_field_in_web_forms_metadata @property - def enable_search(self): - """Gets the enable_search of this AccountSettingsInformation. # noqa: E501 + def enable_scheduled_release(self): + """Gets the enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 # noqa: E501 - :return: The enable_search of this AccountSettingsInformation. # noqa: E501 + :return: The enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 :rtype: str """ - return self._enable_search + return self._enable_scheduled_release - @enable_search.setter - def enable_search(self, enable_search): - """Sets the enable_search of this AccountSettingsInformation. + @enable_scheduled_release.setter + def enable_scheduled_release(self, enable_scheduled_release): + """Sets the enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 - :param enable_search: The enable_search of this AccountSettingsInformation. # noqa: E501 + :param enable_scheduled_release: The enable_scheduled_release of this AccountSettingsInformation. # noqa: E501 :type: str """ - self._enable_search = enable_search + self._enable_scheduled_release = enable_scheduled_release @property - def enable_search_metadata(self): - """Gets the enable_search_metadata of this AccountSettingsInformation. # noqa: E501 + def enable_scheduled_release_metadata(self): + """Gets the enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 - # noqa: E501 + Metadata that indicates whether the `enableScheduledRelease` property is editable. # noqa: E501 - :return: The enable_search_metadata of this AccountSettingsInformation. # noqa: E501 + :return: The enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 :rtype: SettingsMetadata """ - return self._enable_search_metadata + return self._enable_scheduled_release_metadata - @enable_search_metadata.setter - def enable_search_metadata(self, enable_search_metadata): - """Sets the enable_search_metadata of this AccountSettingsInformation. + @enable_scheduled_release_metadata.setter + def enable_scheduled_release_metadata(self, enable_scheduled_release_metadata): + """Sets the enable_scheduled_release_metadata of this AccountSettingsInformation. - # noqa: E501 + Metadata that indicates whether the `enableScheduledRelease` property is editable. # noqa: E501 - :param enable_search_metadata: The enable_search_metadata of this AccountSettingsInformation. # noqa: E501 + :param enable_scheduled_release_metadata: The enable_scheduled_release_metadata of this AccountSettingsInformation. # noqa: E501 :type: SettingsMetadata """ - self._enable_search_metadata = enable_search_metadata + self._enable_scheduled_release_metadata = enable_scheduled_release_metadata @property def enable_search_service_azure_uri(self): @@ -12858,52 +13209,6 @@ def enable_search_site_specific_api_metadata(self, enable_search_site_specific_a self._enable_search_site_specific_api_metadata = enable_search_site_specific_api_metadata - @property - def enable_search_ui(self): - """Gets the enable_search_ui of this AccountSettingsInformation. # noqa: E501 - - # noqa: E501 - - :return: The enable_search_ui of this AccountSettingsInformation. # noqa: E501 - :rtype: str - """ - return self._enable_search_ui - - @enable_search_ui.setter - def enable_search_ui(self, enable_search_ui): - """Sets the enable_search_ui of this AccountSettingsInformation. - - # noqa: E501 - - :param enable_search_ui: The enable_search_ui of this AccountSettingsInformation. # noqa: E501 - :type: str - """ - - self._enable_search_ui = enable_search_ui - - @property - def enable_search_ui_metadata(self): - """Gets the enable_search_ui_metadata of this AccountSettingsInformation. # noqa: E501 - - # noqa: E501 - - :return: The enable_search_ui_metadata of this AccountSettingsInformation. # noqa: E501 - :rtype: SettingsMetadata - """ - return self._enable_search_ui_metadata - - @enable_search_ui_metadata.setter - def enable_search_ui_metadata(self, enable_search_ui_metadata): - """Sets the enable_search_ui_metadata of this AccountSettingsInformation. - - # noqa: E501 - - :param enable_search_ui_metadata: The enable_search_ui_metadata of this AccountSettingsInformation. # noqa: E501 - :type: SettingsMetadata - """ - - self._enable_search_ui_metadata = enable_search_ui_metadata - @property def enable_sending_tags_font_settings(self): """Gets the enable_sending_tags_font_settings of this AccountSettingsInformation. # noqa: E501 @@ -15549,6 +15854,52 @@ def is_connect_document_fields_enabled(self, is_connect_document_fields_enabled) self._is_connect_document_fields_enabled = is_connect_document_fields_enabled + @property + def isv_oem_embed(self): + """Gets the isv_oem_embed of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The isv_oem_embed of this AccountSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._isv_oem_embed + + @isv_oem_embed.setter + def isv_oem_embed(self, isv_oem_embed): + """Sets the isv_oem_embed of this AccountSettingsInformation. + + # noqa: E501 + + :param isv_oem_embed: The isv_oem_embed of this AccountSettingsInformation. # noqa: E501 + :type: str + """ + + self._isv_oem_embed = isv_oem_embed + + @property + def isv_oem_embed_meta_data(self): + """Gets the isv_oem_embed_meta_data of this AccountSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The isv_oem_embed_meta_data of this AccountSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._isv_oem_embed_meta_data + + @isv_oem_embed_meta_data.setter + def isv_oem_embed_meta_data(self, isv_oem_embed_meta_data): + """Sets the isv_oem_embed_meta_data of this AccountSettingsInformation. + + # noqa: E501 + + :param isv_oem_embed_meta_data: The isv_oem_embed_meta_data of this AccountSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._isv_oem_embed_meta_data = isv_oem_embed_meta_data + @property def linked_external_primary_accounts(self): """Gets the linked_external_primary_accounts of this AccountSettingsInformation. # noqa: E501 diff --git a/docusign_esign/models/account_ui_settings.py b/docusign_esign/models/account_ui_settings.py index 07b559c5..dd38270d 100644 --- a/docusign_esign/models/account_ui_settings.py +++ b/docusign_esign/models/account_ui_settings.py @@ -47,6 +47,8 @@ class AccountUISettings(object): 'enable_easy_sign_template_upload_metadata': 'SettingsMetadata', 'enable_envelope_copy_with_data': 'str', 'enable_envelope_copy_with_data_metadata': 'SettingsMetadata', + 'enable_envelope_types': 'str', + 'enable_envelope_types_metadata': 'SettingsMetadata', 'enable_legacy_sendflow_link': 'str', 'enable_legacy_sendflow_link_metadata': 'SettingsMetadata', 'has_external_linked_accounts': 'str', @@ -82,6 +84,8 @@ class AccountUISettings(object): 'enable_easy_sign_template_upload_metadata': 'enableEasySignTemplateUploadMetadata', 'enable_envelope_copy_with_data': 'enableEnvelopeCopyWithData', 'enable_envelope_copy_with_data_metadata': 'enableEnvelopeCopyWithDataMetadata', + 'enable_envelope_types': 'enableEnvelopeTypes', + 'enable_envelope_types_metadata': 'enableEnvelopeTypesMetadata', 'enable_legacy_sendflow_link': 'enableLegacySendflowLink', 'enable_legacy_sendflow_link_metadata': 'enableLegacySendflowLinkMetadata', 'has_external_linked_accounts': 'hasExternalLinkedAccounts', @@ -122,6 +126,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._enable_easy_sign_template_upload_metadata = None self._enable_envelope_copy_with_data = None self._enable_envelope_copy_with_data_metadata = None + self._enable_envelope_types = None + self._enable_envelope_types_metadata = None self._enable_legacy_sendflow_link = None self._enable_legacy_sendflow_link_metadata = None self._has_external_linked_accounts = None @@ -156,6 +162,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('enable_easy_sign_template_upload_metadata'), kwargs.get('enable_easy_sign_template_upload_metadata', None)) setattr(self, "_{}".format('enable_envelope_copy_with_data'), kwargs.get('enable_envelope_copy_with_data', None)) setattr(self, "_{}".format('enable_envelope_copy_with_data_metadata'), kwargs.get('enable_envelope_copy_with_data_metadata', None)) + setattr(self, "_{}".format('enable_envelope_types'), kwargs.get('enable_envelope_types', None)) + setattr(self, "_{}".format('enable_envelope_types_metadata'), kwargs.get('enable_envelope_types_metadata', None)) setattr(self, "_{}".format('enable_legacy_sendflow_link'), kwargs.get('enable_legacy_sendflow_link', None)) setattr(self, "_{}".format('enable_legacy_sendflow_link_metadata'), kwargs.get('enable_legacy_sendflow_link_metadata', None)) setattr(self, "_{}".format('has_external_linked_accounts'), kwargs.get('has_external_linked_accounts', None)) @@ -497,6 +505,52 @@ def enable_envelope_copy_with_data_metadata(self, enable_envelope_copy_with_data self._enable_envelope_copy_with_data_metadata = enable_envelope_copy_with_data_metadata + @property + def enable_envelope_types(self): + """Gets the enable_envelope_types of this AccountUISettings. # noqa: E501 + + # noqa: E501 + + :return: The enable_envelope_types of this AccountUISettings. # noqa: E501 + :rtype: str + """ + return self._enable_envelope_types + + @enable_envelope_types.setter + def enable_envelope_types(self, enable_envelope_types): + """Sets the enable_envelope_types of this AccountUISettings. + + # noqa: E501 + + :param enable_envelope_types: The enable_envelope_types of this AccountUISettings. # noqa: E501 + :type: str + """ + + self._enable_envelope_types = enable_envelope_types + + @property + def enable_envelope_types_metadata(self): + """Gets the enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 + + # noqa: E501 + + :return: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._enable_envelope_types_metadata + + @enable_envelope_types_metadata.setter + def enable_envelope_types_metadata(self, enable_envelope_types_metadata): + """Sets the enable_envelope_types_metadata of this AccountUISettings. + + # noqa: E501 + + :param enable_envelope_types_metadata: The enable_envelope_types_metadata of this AccountUISettings. # noqa: E501 + :type: SettingsMetadata + """ + + self._enable_envelope_types_metadata = enable_envelope_types_metadata + @property def enable_legacy_sendflow_link(self): """Gets the enable_legacy_sendflow_link of this AccountUISettings. # noqa: E501 diff --git a/docusign_esign/models/envelope.py b/docusign_esign/models/envelope.py index a9a8294e..2bbbfa71 100644 --- a/docusign_esign/models/envelope.py +++ b/docusign_esign/models/envelope.py @@ -109,6 +109,7 @@ class Envelope(object): 'templates_uri': 'str', 'transaction_id': 'str', 'use_disclosure': 'str', + 'u_sig_state': 'str', 'voided_date_time': 'str', 'voided_reason': 'str', 'workflow': 'Workflow' @@ -191,6 +192,7 @@ class Envelope(object): 'templates_uri': 'templatesUri', 'transaction_id': 'transactionId', 'use_disclosure': 'useDisclosure', + 'u_sig_state': 'uSigState', 'voided_date_time': 'voidedDateTime', 'voided_reason': 'voidedReason', 'workflow': 'workflow' @@ -278,6 +280,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._templates_uri = None self._transaction_id = None self._use_disclosure = None + self._u_sig_state = None self._voided_date_time = None self._voided_reason = None self._workflow = None @@ -359,6 +362,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('templates_uri'), kwargs.get('templates_uri', None)) setattr(self, "_{}".format('transaction_id'), kwargs.get('transaction_id', None)) setattr(self, "_{}".format('use_disclosure'), kwargs.get('use_disclosure', None)) + setattr(self, "_{}".format('u_sig_state'), kwargs.get('u_sig_state', None)) setattr(self, "_{}".format('voided_date_time'), kwargs.get('voided_date_time', None)) setattr(self, "_{}".format('voided_reason'), kwargs.get('voided_reason', None)) setattr(self, "_{}".format('workflow'), kwargs.get('workflow', None)) @@ -2111,6 +2115,29 @@ def use_disclosure(self, use_disclosure): self._use_disclosure = use_disclosure + @property + def u_sig_state(self): + """Gets the u_sig_state of this Envelope. # noqa: E501 + + # noqa: E501 + + :return: The u_sig_state of this Envelope. # noqa: E501 + :rtype: str + """ + return self._u_sig_state + + @u_sig_state.setter + def u_sig_state(self, u_sig_state): + """Sets the u_sig_state of this Envelope. + + # noqa: E501 + + :param u_sig_state: The u_sig_state of this Envelope. # noqa: E501 + :type: str + """ + + self._u_sig_state = u_sig_state + @property def voided_date_time(self): """Gets the voided_date_time of this Envelope. # noqa: E501 diff --git a/docusign_esign/models/envelope_definition.py b/docusign_esign/models/envelope_definition.py index 072731d3..168b8256 100644 --- a/docusign_esign/models/envelope_definition.py +++ b/docusign_esign/models/envelope_definition.py @@ -120,6 +120,7 @@ class EnvelopeDefinition(object): 'templates_uri': 'str', 'transaction_id': 'str', 'use_disclosure': 'str', + 'u_sig_state': 'str', 'voided_date_time': 'str', 'voided_reason': 'str', 'workflow': 'Workflow' @@ -213,6 +214,7 @@ class EnvelopeDefinition(object): 'templates_uri': 'templatesUri', 'transaction_id': 'transactionId', 'use_disclosure': 'useDisclosure', + 'u_sig_state': 'uSigState', 'voided_date_time': 'voidedDateTime', 'voided_reason': 'voidedReason', 'workflow': 'workflow' @@ -311,6 +313,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._templates_uri = None self._transaction_id = None self._use_disclosure = None + self._u_sig_state = None self._voided_date_time = None self._voided_reason = None self._workflow = None @@ -403,6 +406,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('templates_uri'), kwargs.get('templates_uri', None)) setattr(self, "_{}".format('transaction_id'), kwargs.get('transaction_id', None)) setattr(self, "_{}".format('use_disclosure'), kwargs.get('use_disclosure', None)) + setattr(self, "_{}".format('u_sig_state'), kwargs.get('u_sig_state', None)) setattr(self, "_{}".format('voided_date_time'), kwargs.get('voided_date_time', None)) setattr(self, "_{}".format('voided_reason'), kwargs.get('voided_reason', None)) setattr(self, "_{}".format('workflow'), kwargs.get('workflow', None)) @@ -2408,6 +2412,29 @@ def use_disclosure(self, use_disclosure): self._use_disclosure = use_disclosure + @property + def u_sig_state(self): + """Gets the u_sig_state of this EnvelopeDefinition. # noqa: E501 + + # noqa: E501 + + :return: The u_sig_state of this EnvelopeDefinition. # noqa: E501 + :rtype: str + """ + return self._u_sig_state + + @u_sig_state.setter + def u_sig_state(self, u_sig_state): + """Sets the u_sig_state of this EnvelopeDefinition. + + # noqa: E501 + + :param u_sig_state: The u_sig_state of this EnvelopeDefinition. # noqa: E501 + :type: str + """ + + self._u_sig_state = u_sig_state + @property def voided_date_time(self): """Gets the voided_date_time of this EnvelopeDefinition. # noqa: E501 diff --git a/docusign_esign/models/envelope_template.py b/docusign_esign/models/envelope_template.py index 75a00b6e..c56e4ffd 100644 --- a/docusign_esign/models/envelope_template.py +++ b/docusign_esign/models/envelope_template.py @@ -133,6 +133,7 @@ class EnvelopeTemplate(object): 'transaction_id': 'str', 'uri': 'str', 'use_disclosure': 'str', + 'u_sig_state': 'str', 'voided_date_time': 'str', 'voided_reason': 'str', 'workflow': 'Workflow' @@ -239,6 +240,7 @@ class EnvelopeTemplate(object): 'transaction_id': 'transactionId', 'uri': 'uri', 'use_disclosure': 'useDisclosure', + 'u_sig_state': 'uSigState', 'voided_date_time': 'voidedDateTime', 'voided_reason': 'voidedReason', 'workflow': 'workflow' @@ -350,6 +352,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._transaction_id = None self._uri = None self._use_disclosure = None + self._u_sig_state = None self._voided_date_time = None self._voided_reason = None self._workflow = None @@ -455,6 +458,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('transaction_id'), kwargs.get('transaction_id', None)) setattr(self, "_{}".format('uri'), kwargs.get('uri', None)) setattr(self, "_{}".format('use_disclosure'), kwargs.get('use_disclosure', None)) + setattr(self, "_{}".format('u_sig_state'), kwargs.get('u_sig_state', None)) setattr(self, "_{}".format('voided_date_time'), kwargs.get('voided_date_time', None)) setattr(self, "_{}".format('voided_reason'), kwargs.get('voided_reason', None)) setattr(self, "_{}".format('workflow'), kwargs.get('workflow', None)) @@ -2759,6 +2763,29 @@ def use_disclosure(self, use_disclosure): self._use_disclosure = use_disclosure + @property + def u_sig_state(self): + """Gets the u_sig_state of this EnvelopeTemplate. # noqa: E501 + + # noqa: E501 + + :return: The u_sig_state of this EnvelopeTemplate. # noqa: E501 + :rtype: str + """ + return self._u_sig_state + + @u_sig_state.setter + def u_sig_state(self, u_sig_state): + """Sets the u_sig_state of this EnvelopeTemplate. + + # noqa: E501 + + :param u_sig_state: The u_sig_state of this EnvelopeTemplate. # noqa: E501 + :type: str + """ + + self._u_sig_state = u_sig_state + @property def voided_date_time(self): """Gets the voided_date_time of this EnvelopeTemplate. # noqa: E501 diff --git a/docusign_esign/models/envelope_view_document_settings.py b/docusign_esign/models/envelope_view_document_settings.py new file mode 100644 index 00000000..04b641df --- /dev/null +++ b/docusign_esign/models/envelope_view_document_settings.py @@ -0,0 +1,205 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewDocumentSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'show_edit_documents': 'str', + 'show_edit_document_visibility': 'str', + 'show_edit_pages': 'str', + 'show_save_as_document_custom_field': 'str' + } + + attribute_map = { + 'show_edit_documents': 'showEditDocuments', + 'show_edit_document_visibility': 'showEditDocumentVisibility', + 'show_edit_pages': 'showEditPages', + 'show_save_as_document_custom_field': 'showSaveAsDocumentCustomField' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewDocumentSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._show_edit_documents = None + self._show_edit_document_visibility = None + self._show_edit_pages = None + self._show_save_as_document_custom_field = None + self.discriminator = None + + setattr(self, "_{}".format('show_edit_documents'), kwargs.get('show_edit_documents', None)) + setattr(self, "_{}".format('show_edit_document_visibility'), kwargs.get('show_edit_document_visibility', None)) + setattr(self, "_{}".format('show_edit_pages'), kwargs.get('show_edit_pages', None)) + setattr(self, "_{}".format('show_save_as_document_custom_field'), kwargs.get('show_save_as_document_custom_field', None)) + + @property + def show_edit_documents(self): + """Gets the show_edit_documents of this EnvelopeViewDocumentSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_edit_documents of this EnvelopeViewDocumentSettings. # noqa: E501 + :rtype: str + """ + return self._show_edit_documents + + @show_edit_documents.setter + def show_edit_documents(self, show_edit_documents): + """Sets the show_edit_documents of this EnvelopeViewDocumentSettings. + + # noqa: E501 + + :param show_edit_documents: The show_edit_documents of this EnvelopeViewDocumentSettings. # noqa: E501 + :type: str + """ + + self._show_edit_documents = show_edit_documents + + @property + def show_edit_document_visibility(self): + """Gets the show_edit_document_visibility of this EnvelopeViewDocumentSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_edit_document_visibility of this EnvelopeViewDocumentSettings. # noqa: E501 + :rtype: str + """ + return self._show_edit_document_visibility + + @show_edit_document_visibility.setter + def show_edit_document_visibility(self, show_edit_document_visibility): + """Sets the show_edit_document_visibility of this EnvelopeViewDocumentSettings. + + # noqa: E501 + + :param show_edit_document_visibility: The show_edit_document_visibility of this EnvelopeViewDocumentSettings. # noqa: E501 + :type: str + """ + + self._show_edit_document_visibility = show_edit_document_visibility + + @property + def show_edit_pages(self): + """Gets the show_edit_pages of this EnvelopeViewDocumentSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_edit_pages of this EnvelopeViewDocumentSettings. # noqa: E501 + :rtype: str + """ + return self._show_edit_pages + + @show_edit_pages.setter + def show_edit_pages(self, show_edit_pages): + """Sets the show_edit_pages of this EnvelopeViewDocumentSettings. + + # noqa: E501 + + :param show_edit_pages: The show_edit_pages of this EnvelopeViewDocumentSettings. # noqa: E501 + :type: str + """ + + self._show_edit_pages = show_edit_pages + + @property + def show_save_as_document_custom_field(self): + """Gets the show_save_as_document_custom_field of this EnvelopeViewDocumentSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_save_as_document_custom_field of this EnvelopeViewDocumentSettings. # noqa: E501 + :rtype: str + """ + return self._show_save_as_document_custom_field + + @show_save_as_document_custom_field.setter + def show_save_as_document_custom_field(self, show_save_as_document_custom_field): + """Sets the show_save_as_document_custom_field of this EnvelopeViewDocumentSettings. + + # noqa: E501 + + :param show_save_as_document_custom_field: The show_save_as_document_custom_field of this EnvelopeViewDocumentSettings. # noqa: E501 + :type: str + """ + + self._show_save_as_document_custom_field = show_save_as_document_custom_field + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewDocumentSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewDocumentSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewDocumentSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_envelope_custom_field_settings.py b/docusign_esign/models/envelope_view_envelope_custom_field_settings.py new file mode 100644 index 00000000..4f440014 --- /dev/null +++ b/docusign_esign/models/envelope_view_envelope_custom_field_settings.py @@ -0,0 +1,124 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewEnvelopeCustomFieldSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'show_envelope_custom_fields': 'str' + } + + attribute_map = { + 'show_envelope_custom_fields': 'showEnvelopeCustomFields' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewEnvelopeCustomFieldSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._show_envelope_custom_fields = None + self.discriminator = None + + setattr(self, "_{}".format('show_envelope_custom_fields'), kwargs.get('show_envelope_custom_fields', None)) + + @property + def show_envelope_custom_fields(self): + """Gets the show_envelope_custom_fields of this EnvelopeViewEnvelopeCustomFieldSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_envelope_custom_fields of this EnvelopeViewEnvelopeCustomFieldSettings. # noqa: E501 + :rtype: str + """ + return self._show_envelope_custom_fields + + @show_envelope_custom_fields.setter + def show_envelope_custom_fields(self, show_envelope_custom_fields): + """Sets the show_envelope_custom_fields of this EnvelopeViewEnvelopeCustomFieldSettings. + + # noqa: E501 + + :param show_envelope_custom_fields: The show_envelope_custom_fields of this EnvelopeViewEnvelopeCustomFieldSettings. # noqa: E501 + :type: str + """ + + self._show_envelope_custom_fields = show_envelope_custom_fields + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewEnvelopeCustomFieldSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewEnvelopeCustomFieldSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewEnvelopeCustomFieldSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_recipient_settings.py b/docusign_esign/models/envelope_view_recipient_settings.py new file mode 100644 index 00000000..1c28feeb --- /dev/null +++ b/docusign_esign/models/envelope_view_recipient_settings.py @@ -0,0 +1,205 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewRecipientSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'show_bulk_send': 'str', + 'show_contacts_list': 'str', + 'show_edit_message': 'str', + 'show_edit_recipients': 'str' + } + + attribute_map = { + 'show_bulk_send': 'showBulkSend', + 'show_contacts_list': 'showContactsList', + 'show_edit_message': 'showEditMessage', + 'show_edit_recipients': 'showEditRecipients' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewRecipientSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._show_bulk_send = None + self._show_contacts_list = None + self._show_edit_message = None + self._show_edit_recipients = None + self.discriminator = None + + setattr(self, "_{}".format('show_bulk_send'), kwargs.get('show_bulk_send', None)) + setattr(self, "_{}".format('show_contacts_list'), kwargs.get('show_contacts_list', None)) + setattr(self, "_{}".format('show_edit_message'), kwargs.get('show_edit_message', None)) + setattr(self, "_{}".format('show_edit_recipients'), kwargs.get('show_edit_recipients', None)) + + @property + def show_bulk_send(self): + """Gets the show_bulk_send of this EnvelopeViewRecipientSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_bulk_send of this EnvelopeViewRecipientSettings. # noqa: E501 + :rtype: str + """ + return self._show_bulk_send + + @show_bulk_send.setter + def show_bulk_send(self, show_bulk_send): + """Sets the show_bulk_send of this EnvelopeViewRecipientSettings. + + # noqa: E501 + + :param show_bulk_send: The show_bulk_send of this EnvelopeViewRecipientSettings. # noqa: E501 + :type: str + """ + + self._show_bulk_send = show_bulk_send + + @property + def show_contacts_list(self): + """Gets the show_contacts_list of this EnvelopeViewRecipientSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_contacts_list of this EnvelopeViewRecipientSettings. # noqa: E501 + :rtype: str + """ + return self._show_contacts_list + + @show_contacts_list.setter + def show_contacts_list(self, show_contacts_list): + """Sets the show_contacts_list of this EnvelopeViewRecipientSettings. + + # noqa: E501 + + :param show_contacts_list: The show_contacts_list of this EnvelopeViewRecipientSettings. # noqa: E501 + :type: str + """ + + self._show_contacts_list = show_contacts_list + + @property + def show_edit_message(self): + """Gets the show_edit_message of this EnvelopeViewRecipientSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_edit_message of this EnvelopeViewRecipientSettings. # noqa: E501 + :rtype: str + """ + return self._show_edit_message + + @show_edit_message.setter + def show_edit_message(self, show_edit_message): + """Sets the show_edit_message of this EnvelopeViewRecipientSettings. + + # noqa: E501 + + :param show_edit_message: The show_edit_message of this EnvelopeViewRecipientSettings. # noqa: E501 + :type: str + """ + + self._show_edit_message = show_edit_message + + @property + def show_edit_recipients(self): + """Gets the show_edit_recipients of this EnvelopeViewRecipientSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_edit_recipients of this EnvelopeViewRecipientSettings. # noqa: E501 + :rtype: str + """ + return self._show_edit_recipients + + @show_edit_recipients.setter + def show_edit_recipients(self, show_edit_recipients): + """Sets the show_edit_recipients of this EnvelopeViewRecipientSettings. + + # noqa: E501 + + :param show_edit_recipients: The show_edit_recipients of this EnvelopeViewRecipientSettings. # noqa: E501 + :type: str + """ + + self._show_edit_recipients = show_edit_recipients + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewRecipientSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewRecipientSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewRecipientSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_request.py b/docusign_esign/models/envelope_view_request.py new file mode 100644 index 00000000..99a52b92 --- /dev/null +++ b/docusign_esign/models/envelope_view_request.py @@ -0,0 +1,178 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewRequest(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'return_url': 'str', + 'settings': 'EnvelopeViewSettings', + 'view_access': 'str' + } + + attribute_map = { + 'return_url': 'returnUrl', + 'settings': 'settings', + 'view_access': 'viewAccess' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewRequest - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._return_url = None + self._settings = None + self._view_access = None + self.discriminator = None + + setattr(self, "_{}".format('return_url'), kwargs.get('return_url', None)) + setattr(self, "_{}".format('settings'), kwargs.get('settings', None)) + setattr(self, "_{}".format('view_access'), kwargs.get('view_access', None)) + + @property + def return_url(self): + """Gets the return_url of this EnvelopeViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The return_url of this EnvelopeViewRequest. # noqa: E501 + :rtype: str + """ + return self._return_url + + @return_url.setter + def return_url(self, return_url): + """Sets the return_url of this EnvelopeViewRequest. + + # noqa: E501 + + :param return_url: The return_url of this EnvelopeViewRequest. # noqa: E501 + :type: str + """ + + self._return_url = return_url + + @property + def settings(self): + """Gets the settings of this EnvelopeViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The settings of this EnvelopeViewRequest. # noqa: E501 + :rtype: EnvelopeViewSettings + """ + return self._settings + + @settings.setter + def settings(self, settings): + """Sets the settings of this EnvelopeViewRequest. + + # noqa: E501 + + :param settings: The settings of this EnvelopeViewRequest. # noqa: E501 + :type: EnvelopeViewSettings + """ + + self._settings = settings + + @property + def view_access(self): + """Gets the view_access of this EnvelopeViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The view_access of this EnvelopeViewRequest. # noqa: E501 + :rtype: str + """ + return self._view_access + + @view_access.setter + def view_access(self, view_access): + """Sets the view_access of this EnvelopeViewRequest. + + # noqa: E501 + + :param view_access: The view_access of this EnvelopeViewRequest. # noqa: E501 + :type: str + """ + + self._view_access = view_access + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewRequest, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewRequest): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewRequest): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_settings.py b/docusign_esign/models/envelope_view_settings.py new file mode 100644 index 00000000..dd52b98d --- /dev/null +++ b/docusign_esign/models/envelope_view_settings.py @@ -0,0 +1,448 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'back_button_action': 'str', + 'document_settings': 'EnvelopeViewDocumentSettings', + 'envelope_custom_field_settings': 'EnvelopeViewEnvelopeCustomFieldSettings', + 'lock_token': 'str', + 'recipient_settings': 'EnvelopeViewRecipientSettings', + 'send_button_action': 'str', + 'show_advanced_options': 'str', + 'show_back_button': 'str', + 'show_discard_action': 'str', + 'show_header_actions': 'str', + 'starting_screen': 'str', + 'tagger_settings': 'EnvelopeViewTaggerSettings', + 'template_settings': 'EnvelopeViewTemplateSettings' + } + + attribute_map = { + 'back_button_action': 'backButtonAction', + 'document_settings': 'documentSettings', + 'envelope_custom_field_settings': 'envelopeCustomFieldSettings', + 'lock_token': 'lockToken', + 'recipient_settings': 'recipientSettings', + 'send_button_action': 'sendButtonAction', + 'show_advanced_options': 'showAdvancedOptions', + 'show_back_button': 'showBackButton', + 'show_discard_action': 'showDiscardAction', + 'show_header_actions': 'showHeaderActions', + 'starting_screen': 'startingScreen', + 'tagger_settings': 'taggerSettings', + 'template_settings': 'templateSettings' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._back_button_action = None + self._document_settings = None + self._envelope_custom_field_settings = None + self._lock_token = None + self._recipient_settings = None + self._send_button_action = None + self._show_advanced_options = None + self._show_back_button = None + self._show_discard_action = None + self._show_header_actions = None + self._starting_screen = None + self._tagger_settings = None + self._template_settings = None + self.discriminator = None + + setattr(self, "_{}".format('back_button_action'), kwargs.get('back_button_action', None)) + setattr(self, "_{}".format('document_settings'), kwargs.get('document_settings', None)) + setattr(self, "_{}".format('envelope_custom_field_settings'), kwargs.get('envelope_custom_field_settings', None)) + setattr(self, "_{}".format('lock_token'), kwargs.get('lock_token', None)) + setattr(self, "_{}".format('recipient_settings'), kwargs.get('recipient_settings', None)) + setattr(self, "_{}".format('send_button_action'), kwargs.get('send_button_action', None)) + setattr(self, "_{}".format('show_advanced_options'), kwargs.get('show_advanced_options', None)) + setattr(self, "_{}".format('show_back_button'), kwargs.get('show_back_button', None)) + setattr(self, "_{}".format('show_discard_action'), kwargs.get('show_discard_action', None)) + setattr(self, "_{}".format('show_header_actions'), kwargs.get('show_header_actions', None)) + setattr(self, "_{}".format('starting_screen'), kwargs.get('starting_screen', None)) + setattr(self, "_{}".format('tagger_settings'), kwargs.get('tagger_settings', None)) + setattr(self, "_{}".format('template_settings'), kwargs.get('template_settings', None)) + + @property + def back_button_action(self): + """Gets the back_button_action of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The back_button_action of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._back_button_action + + @back_button_action.setter + def back_button_action(self, back_button_action): + """Sets the back_button_action of this EnvelopeViewSettings. + + # noqa: E501 + + :param back_button_action: The back_button_action of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._back_button_action = back_button_action + + @property + def document_settings(self): + """Gets the document_settings of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The document_settings of this EnvelopeViewSettings. # noqa: E501 + :rtype: EnvelopeViewDocumentSettings + """ + return self._document_settings + + @document_settings.setter + def document_settings(self, document_settings): + """Sets the document_settings of this EnvelopeViewSettings. + + # noqa: E501 + + :param document_settings: The document_settings of this EnvelopeViewSettings. # noqa: E501 + :type: EnvelopeViewDocumentSettings + """ + + self._document_settings = document_settings + + @property + def envelope_custom_field_settings(self): + """Gets the envelope_custom_field_settings of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The envelope_custom_field_settings of this EnvelopeViewSettings. # noqa: E501 + :rtype: EnvelopeViewEnvelopeCustomFieldSettings + """ + return self._envelope_custom_field_settings + + @envelope_custom_field_settings.setter + def envelope_custom_field_settings(self, envelope_custom_field_settings): + """Sets the envelope_custom_field_settings of this EnvelopeViewSettings. + + # noqa: E501 + + :param envelope_custom_field_settings: The envelope_custom_field_settings of this EnvelopeViewSettings. # noqa: E501 + :type: EnvelopeViewEnvelopeCustomFieldSettings + """ + + self._envelope_custom_field_settings = envelope_custom_field_settings + + @property + def lock_token(self): + """Gets the lock_token of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The lock_token of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._lock_token + + @lock_token.setter + def lock_token(self, lock_token): + """Sets the lock_token of this EnvelopeViewSettings. + + # noqa: E501 + + :param lock_token: The lock_token of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._lock_token = lock_token + + @property + def recipient_settings(self): + """Gets the recipient_settings of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The recipient_settings of this EnvelopeViewSettings. # noqa: E501 + :rtype: EnvelopeViewRecipientSettings + """ + return self._recipient_settings + + @recipient_settings.setter + def recipient_settings(self, recipient_settings): + """Sets the recipient_settings of this EnvelopeViewSettings. + + # noqa: E501 + + :param recipient_settings: The recipient_settings of this EnvelopeViewSettings. # noqa: E501 + :type: EnvelopeViewRecipientSettings + """ + + self._recipient_settings = recipient_settings + + @property + def send_button_action(self): + """Gets the send_button_action of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The send_button_action of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._send_button_action + + @send_button_action.setter + def send_button_action(self, send_button_action): + """Sets the send_button_action of this EnvelopeViewSettings. + + # noqa: E501 + + :param send_button_action: The send_button_action of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._send_button_action = send_button_action + + @property + def show_advanced_options(self): + """Gets the show_advanced_options of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_advanced_options of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._show_advanced_options + + @show_advanced_options.setter + def show_advanced_options(self, show_advanced_options): + """Sets the show_advanced_options of this EnvelopeViewSettings. + + # noqa: E501 + + :param show_advanced_options: The show_advanced_options of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._show_advanced_options = show_advanced_options + + @property + def show_back_button(self): + """Gets the show_back_button of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_back_button of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._show_back_button + + @show_back_button.setter + def show_back_button(self, show_back_button): + """Sets the show_back_button of this EnvelopeViewSettings. + + # noqa: E501 + + :param show_back_button: The show_back_button of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._show_back_button = show_back_button + + @property + def show_discard_action(self): + """Gets the show_discard_action of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_discard_action of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._show_discard_action + + @show_discard_action.setter + def show_discard_action(self, show_discard_action): + """Sets the show_discard_action of this EnvelopeViewSettings. + + # noqa: E501 + + :param show_discard_action: The show_discard_action of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._show_discard_action = show_discard_action + + @property + def show_header_actions(self): + """Gets the show_header_actions of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_header_actions of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._show_header_actions + + @show_header_actions.setter + def show_header_actions(self, show_header_actions): + """Sets the show_header_actions of this EnvelopeViewSettings. + + # noqa: E501 + + :param show_header_actions: The show_header_actions of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._show_header_actions = show_header_actions + + @property + def starting_screen(self): + """Gets the starting_screen of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The starting_screen of this EnvelopeViewSettings. # noqa: E501 + :rtype: str + """ + return self._starting_screen + + @starting_screen.setter + def starting_screen(self, starting_screen): + """Sets the starting_screen of this EnvelopeViewSettings. + + # noqa: E501 + + :param starting_screen: The starting_screen of this EnvelopeViewSettings. # noqa: E501 + :type: str + """ + + self._starting_screen = starting_screen + + @property + def tagger_settings(self): + """Gets the tagger_settings of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The tagger_settings of this EnvelopeViewSettings. # noqa: E501 + :rtype: EnvelopeViewTaggerSettings + """ + return self._tagger_settings + + @tagger_settings.setter + def tagger_settings(self, tagger_settings): + """Sets the tagger_settings of this EnvelopeViewSettings. + + # noqa: E501 + + :param tagger_settings: The tagger_settings of this EnvelopeViewSettings. # noqa: E501 + :type: EnvelopeViewTaggerSettings + """ + + self._tagger_settings = tagger_settings + + @property + def template_settings(self): + """Gets the template_settings of this EnvelopeViewSettings. # noqa: E501 + + # noqa: E501 + + :return: The template_settings of this EnvelopeViewSettings. # noqa: E501 + :rtype: EnvelopeViewTemplateSettings + """ + return self._template_settings + + @template_settings.setter + def template_settings(self, template_settings): + """Sets the template_settings of this EnvelopeViewSettings. + + # noqa: E501 + + :param template_settings: The template_settings of this EnvelopeViewSettings. # noqa: E501 + :type: EnvelopeViewTemplateSettings + """ + + self._template_settings = template_settings + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_tagger_settings.py b/docusign_esign/models/envelope_view_tagger_settings.py new file mode 100644 index 00000000..d5b5a6ae --- /dev/null +++ b/docusign_esign/models/envelope_view_tagger_settings.py @@ -0,0 +1,178 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewTaggerSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'palette_default': 'str', + 'palette_sections': 'str', + 'palette_settings': 'PaletteSettings' + } + + attribute_map = { + 'palette_default': 'paletteDefault', + 'palette_sections': 'paletteSections', + 'palette_settings': 'paletteSettings' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewTaggerSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._palette_default = None + self._palette_sections = None + self._palette_settings = None + self.discriminator = None + + setattr(self, "_{}".format('palette_default'), kwargs.get('palette_default', None)) + setattr(self, "_{}".format('palette_sections'), kwargs.get('palette_sections', None)) + setattr(self, "_{}".format('palette_settings'), kwargs.get('palette_settings', None)) + + @property + def palette_default(self): + """Gets the palette_default of this EnvelopeViewTaggerSettings. # noqa: E501 + + # noqa: E501 + + :return: The palette_default of this EnvelopeViewTaggerSettings. # noqa: E501 + :rtype: str + """ + return self._palette_default + + @palette_default.setter + def palette_default(self, palette_default): + """Sets the palette_default of this EnvelopeViewTaggerSettings. + + # noqa: E501 + + :param palette_default: The palette_default of this EnvelopeViewTaggerSettings. # noqa: E501 + :type: str + """ + + self._palette_default = palette_default + + @property + def palette_sections(self): + """Gets the palette_sections of this EnvelopeViewTaggerSettings. # noqa: E501 + + # noqa: E501 + + :return: The palette_sections of this EnvelopeViewTaggerSettings. # noqa: E501 + :rtype: str + """ + return self._palette_sections + + @palette_sections.setter + def palette_sections(self, palette_sections): + """Sets the palette_sections of this EnvelopeViewTaggerSettings. + + # noqa: E501 + + :param palette_sections: The palette_sections of this EnvelopeViewTaggerSettings. # noqa: E501 + :type: str + """ + + self._palette_sections = palette_sections + + @property + def palette_settings(self): + """Gets the palette_settings of this EnvelopeViewTaggerSettings. # noqa: E501 + + # noqa: E501 + + :return: The palette_settings of this EnvelopeViewTaggerSettings. # noqa: E501 + :rtype: PaletteSettings + """ + return self._palette_settings + + @palette_settings.setter + def palette_settings(self, palette_settings): + """Sets the palette_settings of this EnvelopeViewTaggerSettings. + + # noqa: E501 + + :param palette_settings: The palette_settings of this EnvelopeViewTaggerSettings. # noqa: E501 + :type: PaletteSettings + """ + + self._palette_settings = palette_settings + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewTaggerSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewTaggerSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewTaggerSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/envelope_view_template_settings.py b/docusign_esign/models/envelope_view_template_settings.py new file mode 100644 index 00000000..1ea2f45e --- /dev/null +++ b/docusign_esign/models/envelope_view_template_settings.py @@ -0,0 +1,124 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class EnvelopeViewTemplateSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'show_matching_templates_prompt': 'str' + } + + attribute_map = { + 'show_matching_templates_prompt': 'showMatchingTemplatesPrompt' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """EnvelopeViewTemplateSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._show_matching_templates_prompt = None + self.discriminator = None + + setattr(self, "_{}".format('show_matching_templates_prompt'), kwargs.get('show_matching_templates_prompt', None)) + + @property + def show_matching_templates_prompt(self): + """Gets the show_matching_templates_prompt of this EnvelopeViewTemplateSettings. # noqa: E501 + + # noqa: E501 + + :return: The show_matching_templates_prompt of this EnvelopeViewTemplateSettings. # noqa: E501 + :rtype: str + """ + return self._show_matching_templates_prompt + + @show_matching_templates_prompt.setter + def show_matching_templates_prompt(self, show_matching_templates_prompt): + """Sets the show_matching_templates_prompt of this EnvelopeViewTemplateSettings. + + # noqa: E501 + + :param show_matching_templates_prompt: The show_matching_templates_prompt of this EnvelopeViewTemplateSettings. # noqa: E501 + :type: str + """ + + self._show_matching_templates_prompt = show_matching_templates_prompt + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(EnvelopeViewTemplateSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, EnvelopeViewTemplateSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, EnvelopeViewTemplateSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/group.py b/docusign_esign/models/group.py index 378b370f..0370abf2 100644 --- a/docusign_esign/models/group.py +++ b/docusign_esign/models/group.py @@ -39,6 +39,7 @@ class Group(object): 'group_id': 'str', 'group_name': 'str', 'group_type': 'str', + 'last_modified_on': 'str', 'permission_profile_id': 'str', 'users': 'list[UserInfo]', 'users_count': 'str' @@ -51,6 +52,7 @@ class Group(object): 'group_id': 'groupId', 'group_name': 'groupName', 'group_type': 'groupType', + 'last_modified_on': 'lastModifiedOn', 'permission_profile_id': 'permissionProfileId', 'users': 'users', 'users_count': 'usersCount' @@ -68,6 +70,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._group_id = None self._group_name = None self._group_type = None + self._last_modified_on = None self._permission_profile_id = None self._users = None self._users_count = None @@ -79,6 +82,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('group_id'), kwargs.get('group_id', None)) setattr(self, "_{}".format('group_name'), kwargs.get('group_name', None)) setattr(self, "_{}".format('group_type'), kwargs.get('group_type', None)) + setattr(self, "_{}".format('last_modified_on'), kwargs.get('last_modified_on', None)) setattr(self, "_{}".format('permission_profile_id'), kwargs.get('permission_profile_id', None)) setattr(self, "_{}".format('users'), kwargs.get('users', None)) setattr(self, "_{}".format('users_count'), kwargs.get('users_count', None)) @@ -221,6 +225,29 @@ def group_type(self, group_type): self._group_type = group_type + @property + def last_modified_on(self): + """Gets the last_modified_on of this Group. # noqa: E501 + + # noqa: E501 + + :return: The last_modified_on of this Group. # noqa: E501 + :rtype: str + """ + return self._last_modified_on + + @last_modified_on.setter + def last_modified_on(self, last_modified_on): + """Sets the last_modified_on of this Group. + + # noqa: E501 + + :param last_modified_on: The last_modified_on of this Group. # noqa: E501 + :type: str + """ + + self._last_modified_on = last_modified_on + @property def permission_profile_id(self): """Gets the permission_profile_id of this Group. # noqa: E501 diff --git a/docusign_esign/models/palette_item_settings.py b/docusign_esign/models/palette_item_settings.py new file mode 100644 index 00000000..33baab62 --- /dev/null +++ b/docusign_esign/models/palette_item_settings.py @@ -0,0 +1,124 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class PaletteItemSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'show': 'str' + } + + attribute_map = { + 'show': 'show' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """PaletteItemSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._show = None + self.discriminator = None + + setattr(self, "_{}".format('show'), kwargs.get('show', None)) + + @property + def show(self): + """Gets the show of this PaletteItemSettings. # noqa: E501 + + # noqa: E501 + + :return: The show of this PaletteItemSettings. # noqa: E501 + :rtype: str + """ + return self._show + + @show.setter + def show(self, show): + """Sets the show of this PaletteItemSettings. + + # noqa: E501 + + :param show: The show of this PaletteItemSettings. # noqa: E501 + :type: str + """ + + self._show = show + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(PaletteItemSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, PaletteItemSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, PaletteItemSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/palette_settings.py b/docusign_esign/models/palette_settings.py new file mode 100644 index 00000000..78cdbbfb --- /dev/null +++ b/docusign_esign/models/palette_settings.py @@ -0,0 +1,286 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class PaletteSettings(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'annotations': 'PaletteItemSettings', + 'custom': 'PaletteItemSettings', + 'merge': 'PaletteItemSettings', + 'notary': 'PaletteItemSettings', + 'seals': 'PaletteItemSettings', + 'smart_contracts': 'PaletteItemSettings', + 'smart_sections': 'PaletteItemSettings' + } + + attribute_map = { + 'annotations': 'annotations', + 'custom': 'custom', + 'merge': 'merge', + 'notary': 'notary', + 'seals': 'seals', + 'smart_contracts': 'smartContracts', + 'smart_sections': 'smartSections' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """PaletteSettings - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._annotations = None + self._custom = None + self._merge = None + self._notary = None + self._seals = None + self._smart_contracts = None + self._smart_sections = None + self.discriminator = None + + setattr(self, "_{}".format('annotations'), kwargs.get('annotations', None)) + setattr(self, "_{}".format('custom'), kwargs.get('custom', None)) + setattr(self, "_{}".format('merge'), kwargs.get('merge', None)) + setattr(self, "_{}".format('notary'), kwargs.get('notary', None)) + setattr(self, "_{}".format('seals'), kwargs.get('seals', None)) + setattr(self, "_{}".format('smart_contracts'), kwargs.get('smart_contracts', None)) + setattr(self, "_{}".format('smart_sections'), kwargs.get('smart_sections', None)) + + @property + def annotations(self): + """Gets the annotations of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The annotations of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._annotations + + @annotations.setter + def annotations(self, annotations): + """Sets the annotations of this PaletteSettings. + + # noqa: E501 + + :param annotations: The annotations of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._annotations = annotations + + @property + def custom(self): + """Gets the custom of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The custom of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._custom + + @custom.setter + def custom(self, custom): + """Sets the custom of this PaletteSettings. + + # noqa: E501 + + :param custom: The custom of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._custom = custom + + @property + def merge(self): + """Gets the merge of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The merge of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._merge + + @merge.setter + def merge(self, merge): + """Sets the merge of this PaletteSettings. + + # noqa: E501 + + :param merge: The merge of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._merge = merge + + @property + def notary(self): + """Gets the notary of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The notary of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._notary + + @notary.setter + def notary(self, notary): + """Sets the notary of this PaletteSettings. + + # noqa: E501 + + :param notary: The notary of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._notary = notary + + @property + def seals(self): + """Gets the seals of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The seals of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._seals + + @seals.setter + def seals(self, seals): + """Sets the seals of this PaletteSettings. + + # noqa: E501 + + :param seals: The seals of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._seals = seals + + @property + def smart_contracts(self): + """Gets the smart_contracts of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The smart_contracts of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._smart_contracts + + @smart_contracts.setter + def smart_contracts(self, smart_contracts): + """Sets the smart_contracts of this PaletteSettings. + + # noqa: E501 + + :param smart_contracts: The smart_contracts of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._smart_contracts = smart_contracts + + @property + def smart_sections(self): + """Gets the smart_sections of this PaletteSettings. # noqa: E501 + + # noqa: E501 + + :return: The smart_sections of this PaletteSettings. # noqa: E501 + :rtype: PaletteItemSettings + """ + return self._smart_sections + + @smart_sections.setter + def smart_sections(self, smart_sections): + """Sets the smart_sections of this PaletteSettings. + + # noqa: E501 + + :param smart_sections: The smart_sections of this PaletteSettings. # noqa: E501 + :type: PaletteItemSettings + """ + + self._smart_sections = smart_sections + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(PaletteSettings, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, PaletteSettings): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, PaletteSettings): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/recipient_view_request.py b/docusign_esign/models/recipient_view_request.py index 62527f7c..024abbfd 100644 --- a/docusign_esign/models/recipient_view_request.py +++ b/docusign_esign/models/recipient_view_request.py @@ -38,6 +38,7 @@ class RecipientViewRequest(object): 'authentication_method': 'str', 'client_ur_ls': 'RecipientTokenClientURLs', 'client_user_id': 'str', + 'display_format': 'str', 'email': 'str', 'frame_ancestors': 'list[str]', 'message_origins': 'list[str]', @@ -58,6 +59,7 @@ class RecipientViewRequest(object): 'authentication_method': 'authenticationMethod', 'client_ur_ls': 'clientURLs', 'client_user_id': 'clientUserId', + 'display_format': 'displayFormat', 'email': 'email', 'frame_ancestors': 'frameAncestors', 'message_origins': 'messageOrigins', @@ -83,6 +85,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._authentication_method = None self._client_ur_ls = None self._client_user_id = None + self._display_format = None self._email = None self._frame_ancestors = None self._message_origins = None @@ -102,6 +105,7 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('authentication_method'), kwargs.get('authentication_method', None)) setattr(self, "_{}".format('client_ur_ls'), kwargs.get('client_ur_ls', None)) setattr(self, "_{}".format('client_user_id'), kwargs.get('client_user_id', None)) + setattr(self, "_{}".format('display_format'), kwargs.get('display_format', None)) setattr(self, "_{}".format('email'), kwargs.get('email', None)) setattr(self, "_{}".format('frame_ancestors'), kwargs.get('frame_ancestors', None)) setattr(self, "_{}".format('message_origins'), kwargs.get('message_origins', None)) @@ -230,6 +234,29 @@ def client_user_id(self, client_user_id): self._client_user_id = client_user_id + @property + def display_format(self): + """Gets the display_format of this RecipientViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The display_format of this RecipientViewRequest. # noqa: E501 + :rtype: str + """ + return self._display_format + + @display_format.setter + def display_format(self, display_format): + """Sets the display_format of this RecipientViewRequest. + + # noqa: E501 + + :param display_format: The display_format of this RecipientViewRequest. # noqa: E501 + :type: str + """ + + self._display_format = display_format + @property def email(self): """Gets the email of this RecipientViewRequest. # noqa: E501 diff --git a/docusign_esign/models/template_view_request.py b/docusign_esign/models/template_view_request.py new file mode 100644 index 00000000..b8b08231 --- /dev/null +++ b/docusign_esign/models/template_view_request.py @@ -0,0 +1,151 @@ +# coding: utf-8 + +""" + DocuSign REST API + + The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. # noqa: E501 + + OpenAPI spec version: v2.1 + Contact: devcenter@docusign.com + Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + + +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration + + +class TemplateViewRequest(object): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes: + swagger_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + swagger_types = { + 'return_url': 'str', + 'view_access': 'str' + } + + attribute_map = { + 'return_url': 'returnUrl', + 'view_access': 'viewAccess' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """TemplateViewRequest - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._return_url = None + self._view_access = None + self.discriminator = None + + setattr(self, "_{}".format('return_url'), kwargs.get('return_url', None)) + setattr(self, "_{}".format('view_access'), kwargs.get('view_access', None)) + + @property + def return_url(self): + """Gets the return_url of this TemplateViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The return_url of this TemplateViewRequest. # noqa: E501 + :rtype: str + """ + return self._return_url + + @return_url.setter + def return_url(self, return_url): + """Sets the return_url of this TemplateViewRequest. + + # noqa: E501 + + :param return_url: The return_url of this TemplateViewRequest. # noqa: E501 + :type: str + """ + + self._return_url = return_url + + @property + def view_access(self): + """Gets the view_access of this TemplateViewRequest. # noqa: E501 + + # noqa: E501 + + :return: The view_access of this TemplateViewRequest. # noqa: E501 + :rtype: str + """ + return self._view_access + + @view_access.setter + def view_access(self, view_access): + """Sets the view_access of this TemplateViewRequest. + + # noqa: E501 + + :param view_access: The view_access of this TemplateViewRequest. # noqa: E501 + :type: str + """ + + self._view_access = view_access + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.swagger_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + if issubclass(TemplateViewRequest, dict): + for key, value in self.items(): + result[key] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, TemplateViewRequest): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, TemplateViewRequest): + return True + + return self.to_dict() != other.to_dict() diff --git a/docusign_esign/models/user_settings_information.py b/docusign_esign/models/user_settings_information.py index 708fa398..9d4af29d 100644 --- a/docusign_esign/models/user_settings_information.py +++ b/docusign_esign/models/user_settings_information.py @@ -33,6 +33,8 @@ class UserSettingsInformation(object): and the value is json key in definition. """ swagger_types = { + 'account_agreements_access_type': 'str', + 'account_agreements_access_type_metadata': 'SettingsMetadata', 'account_management_granular': 'UserAccountManagementGranularInformation', 'admin_only': 'str', 'admin_only_metadata': 'SettingsMetadata', @@ -62,6 +64,8 @@ class UserSettingsInformation(object): 'api_can_export_ac_metadata': 'SettingsMetadata', 'bulk_send': 'str', 'bulk_send_metadata': 'SettingsMetadata', + 'can_bulk_upload_agreements': 'str', + 'can_bulk_upload_agreements_metadata': 'SettingsMetadata', 'can_charge_account': 'str', 'can_charge_account_metadata': 'SettingsMetadata', 'can_create_transaction': 'str', @@ -76,6 +80,8 @@ class UserSettingsInformation(object): 'can_lock_envelopes_metadata': 'SettingsMetadata', 'can_manage_account': 'str', 'can_manage_account_metadata': 'SettingsMetadata', + 'can_manage_agreement_parties': 'str', + 'can_manage_agreement_parties_metadata': 'SettingsMetadata', 'can_manage_distributor': 'str', 'can_manage_distributor_metadata': 'SettingsMetadata', 'can_manage_templates': 'str', @@ -173,6 +179,8 @@ class UserSettingsInformation(object): } attribute_map = { + 'account_agreements_access_type': 'accountAgreementsAccessType', + 'account_agreements_access_type_metadata': 'accountAgreementsAccessTypeMetadata', 'account_management_granular': 'accountManagementGranular', 'admin_only': 'adminOnly', 'admin_only_metadata': 'adminOnlyMetadata', @@ -202,6 +210,8 @@ class UserSettingsInformation(object): 'api_can_export_ac_metadata': 'apiCanExportACMetadata', 'bulk_send': 'bulkSend', 'bulk_send_metadata': 'bulkSendMetadata', + 'can_bulk_upload_agreements': 'canBulkUploadAgreements', + 'can_bulk_upload_agreements_metadata': 'canBulkUploadAgreementsMetadata', 'can_charge_account': 'canChargeAccount', 'can_charge_account_metadata': 'canChargeAccountMetadata', 'can_create_transaction': 'canCreateTransaction', @@ -216,6 +226,8 @@ class UserSettingsInformation(object): 'can_lock_envelopes_metadata': 'canLockEnvelopesMetadata', 'can_manage_account': 'canManageAccount', 'can_manage_account_metadata': 'canManageAccountMetadata', + 'can_manage_agreement_parties': 'canManageAgreementParties', + 'can_manage_agreement_parties_metadata': 'canManageAgreementPartiesMetadata', 'can_manage_distributor': 'canManageDistributor', 'can_manage_distributor_metadata': 'canManageDistributorMetadata', 'can_manage_templates': 'canManageTemplates', @@ -318,6 +330,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 _configuration = Configuration() self._configuration = _configuration + self._account_agreements_access_type = None + self._account_agreements_access_type_metadata = None self._account_management_granular = None self._admin_only = None self._admin_only_metadata = None @@ -347,6 +361,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._api_can_export_ac_metadata = None self._bulk_send = None self._bulk_send_metadata = None + self._can_bulk_upload_agreements = None + self._can_bulk_upload_agreements_metadata = None self._can_charge_account = None self._can_charge_account_metadata = None self._can_create_transaction = None @@ -361,6 +377,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._can_lock_envelopes_metadata = None self._can_manage_account = None self._can_manage_account_metadata = None + self._can_manage_agreement_parties = None + self._can_manage_agreement_parties_metadata = None self._can_manage_distributor = None self._can_manage_distributor_metadata = None self._can_manage_templates = None @@ -457,6 +475,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 self._web_forms_metadata = None self.discriminator = None + setattr(self, "_{}".format('account_agreements_access_type'), kwargs.get('account_agreements_access_type', None)) + setattr(self, "_{}".format('account_agreements_access_type_metadata'), kwargs.get('account_agreements_access_type_metadata', None)) setattr(self, "_{}".format('account_management_granular'), kwargs.get('account_management_granular', None)) setattr(self, "_{}".format('admin_only'), kwargs.get('admin_only', None)) setattr(self, "_{}".format('admin_only_metadata'), kwargs.get('admin_only_metadata', None)) @@ -486,6 +506,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('api_can_export_ac_metadata'), kwargs.get('api_can_export_ac_metadata', None)) setattr(self, "_{}".format('bulk_send'), kwargs.get('bulk_send', None)) setattr(self, "_{}".format('bulk_send_metadata'), kwargs.get('bulk_send_metadata', None)) + setattr(self, "_{}".format('can_bulk_upload_agreements'), kwargs.get('can_bulk_upload_agreements', None)) + setattr(self, "_{}".format('can_bulk_upload_agreements_metadata'), kwargs.get('can_bulk_upload_agreements_metadata', None)) setattr(self, "_{}".format('can_charge_account'), kwargs.get('can_charge_account', None)) setattr(self, "_{}".format('can_charge_account_metadata'), kwargs.get('can_charge_account_metadata', None)) setattr(self, "_{}".format('can_create_transaction'), kwargs.get('can_create_transaction', None)) @@ -500,6 +522,8 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('can_lock_envelopes_metadata'), kwargs.get('can_lock_envelopes_metadata', None)) setattr(self, "_{}".format('can_manage_account'), kwargs.get('can_manage_account', None)) setattr(self, "_{}".format('can_manage_account_metadata'), kwargs.get('can_manage_account_metadata', None)) + setattr(self, "_{}".format('can_manage_agreement_parties'), kwargs.get('can_manage_agreement_parties', None)) + setattr(self, "_{}".format('can_manage_agreement_parties_metadata'), kwargs.get('can_manage_agreement_parties_metadata', None)) setattr(self, "_{}".format('can_manage_distributor'), kwargs.get('can_manage_distributor', None)) setattr(self, "_{}".format('can_manage_distributor_metadata'), kwargs.get('can_manage_distributor_metadata', None)) setattr(self, "_{}".format('can_manage_templates'), kwargs.get('can_manage_templates', None)) @@ -595,6 +619,52 @@ def __init__(self, _configuration=None, **kwargs): # noqa: E501 setattr(self, "_{}".format('web_forms'), kwargs.get('web_forms', None)) setattr(self, "_{}".format('web_forms_metadata'), kwargs.get('web_forms_metadata', None)) + @property + def account_agreements_access_type(self): + """Gets the account_agreements_access_type of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The account_agreements_access_type of this UserSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._account_agreements_access_type + + @account_agreements_access_type.setter + def account_agreements_access_type(self, account_agreements_access_type): + """Sets the account_agreements_access_type of this UserSettingsInformation. + + # noqa: E501 + + :param account_agreements_access_type: The account_agreements_access_type of this UserSettingsInformation. # noqa: E501 + :type: str + """ + + self._account_agreements_access_type = account_agreements_access_type + + @property + def account_agreements_access_type_metadata(self): + """Gets the account_agreements_access_type_metadata of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The account_agreements_access_type_metadata of this UserSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._account_agreements_access_type_metadata + + @account_agreements_access_type_metadata.setter + def account_agreements_access_type_metadata(self, account_agreements_access_type_metadata): + """Sets the account_agreements_access_type_metadata of this UserSettingsInformation. + + # noqa: E501 + + :param account_agreements_access_type_metadata: The account_agreements_access_type_metadata of this UserSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._account_agreements_access_type_metadata = account_agreements_access_type_metadata + @property def account_management_granular(self): """Gets the account_management_granular of this UserSettingsInformation. # noqa: E501 @@ -1262,6 +1332,52 @@ def bulk_send_metadata(self, bulk_send_metadata): self._bulk_send_metadata = bulk_send_metadata + @property + def can_bulk_upload_agreements(self): + """Gets the can_bulk_upload_agreements of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The can_bulk_upload_agreements of this UserSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._can_bulk_upload_agreements + + @can_bulk_upload_agreements.setter + def can_bulk_upload_agreements(self, can_bulk_upload_agreements): + """Sets the can_bulk_upload_agreements of this UserSettingsInformation. + + # noqa: E501 + + :param can_bulk_upload_agreements: The can_bulk_upload_agreements of this UserSettingsInformation. # noqa: E501 + :type: str + """ + + self._can_bulk_upload_agreements = can_bulk_upload_agreements + + @property + def can_bulk_upload_agreements_metadata(self): + """Gets the can_bulk_upload_agreements_metadata of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The can_bulk_upload_agreements_metadata of this UserSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._can_bulk_upload_agreements_metadata + + @can_bulk_upload_agreements_metadata.setter + def can_bulk_upload_agreements_metadata(self, can_bulk_upload_agreements_metadata): + """Sets the can_bulk_upload_agreements_metadata of this UserSettingsInformation. + + # noqa: E501 + + :param can_bulk_upload_agreements_metadata: The can_bulk_upload_agreements_metadata of this UserSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._can_bulk_upload_agreements_metadata = can_bulk_upload_agreements_metadata + @property def can_charge_account(self): """Gets the can_charge_account of this UserSettingsInformation. # noqa: E501 @@ -1584,6 +1700,52 @@ def can_manage_account_metadata(self, can_manage_account_metadata): self._can_manage_account_metadata = can_manage_account_metadata + @property + def can_manage_agreement_parties(self): + """Gets the can_manage_agreement_parties of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The can_manage_agreement_parties of this UserSettingsInformation. # noqa: E501 + :rtype: str + """ + return self._can_manage_agreement_parties + + @can_manage_agreement_parties.setter + def can_manage_agreement_parties(self, can_manage_agreement_parties): + """Sets the can_manage_agreement_parties of this UserSettingsInformation. + + # noqa: E501 + + :param can_manage_agreement_parties: The can_manage_agreement_parties of this UserSettingsInformation. # noqa: E501 + :type: str + """ + + self._can_manage_agreement_parties = can_manage_agreement_parties + + @property + def can_manage_agreement_parties_metadata(self): + """Gets the can_manage_agreement_parties_metadata of this UserSettingsInformation. # noqa: E501 + + # noqa: E501 + + :return: The can_manage_agreement_parties_metadata of this UserSettingsInformation. # noqa: E501 + :rtype: SettingsMetadata + """ + return self._can_manage_agreement_parties_metadata + + @can_manage_agreement_parties_metadata.setter + def can_manage_agreement_parties_metadata(self, can_manage_agreement_parties_metadata): + """Sets the can_manage_agreement_parties_metadata of this UserSettingsInformation. + + # noqa: E501 + + :param can_manage_agreement_parties_metadata: The can_manage_agreement_parties_metadata of this UserSettingsInformation. # noqa: E501 + :type: SettingsMetadata + """ + + self._can_manage_agreement_parties_metadata = can_manage_agreement_parties_metadata + @property def can_manage_distributor(self): """Gets the can_manage_distributor of this UserSettingsInformation. # noqa: E501 diff --git a/setup.py b/setup.py index 27c69fe3..7c136030 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ from setuptools import setup, find_packages, Command, os # noqa: H301 NAME = "docusign-esign" -VERSION = "3.26.0" +VERSION = "4.0.0rc1" # To install the library, run the following # # python setup.py install