From 573d489343eb3f120a6a7d385b1f2dc70a877f0c Mon Sep 17 00:00:00 2001 From: Mudit Garg <35302867+garg-mudit@users.noreply.github.com> Date: Fri, 15 Dec 2023 17:00:33 +0530 Subject: [PATCH] Version 3.25.1 release (#180) * Version 3.25.1-v2.1-23.3.01.02 release * Update CHANGELOG.md Signed-off-by: Mudit Garg <35302867+garg-mudit@users.noreply.github.com> --------- Signed-off-by: Mudit Garg <35302867+garg-mudit@users.noreply.github.com> Co-authored-by: root --- .swagger-codegen/VERSION | 2 +- CHANGELOG.md | 7 + docusign_esign/__init__.py | 6 +- docusign_esign/client/api_response.py | 4 +- docusign_esign/models/__init__.py | 3 +- docusign_esign/models/date.py | 2661 ++++++++++++++----------- setup.py | 96 +- test/unit_tests.py | 55 +- 8 files changed, 1628 insertions(+), 1206 deletions(-) diff --git a/.swagger-codegen/VERSION b/.swagger-codegen/VERSION index 580ce109..19244e85 100644 --- a/.swagger-codegen/VERSION +++ b/.swagger-codegen/VERSION @@ -1 +1 @@ -2.4.21-SNAPSHOT \ No newline at end of file +2.4.21 \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eb1f111..ad976f71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes. +## [v3.25.1] - eSignature API v2.1-23.3.01.02 - 2023-12-14 +### Changed +- Added support for version v2.1-23.3.01.02 of the DocuSign ESignature API. +- Updated the SDK release version. +- Updated Date model. +- Updated response.py to fix issue with Envelopes::listStatus endpoint requiring a body. + ## [v3.25.0] - eSignature API v2.1-23.3.01.02 - 2023-10-25 ### Changed - Added support for version v2.1-23.3.01.02 of the DocuSign ESignature API. diff --git a/docusign_esign/__init__.py b/docusign_esign/__init__.py index de8ce6e2..56946a14 100644 --- a/docusign_esign/__init__.py +++ b/docusign_esign/__init__.py @@ -216,6 +216,7 @@ from docusign_esign.models.custom_fields import CustomFields from docusign_esign.models.custom_fields_envelope import CustomFieldsEnvelope from docusign_esign.models.custom_settings_information import CustomSettingsInformation +from docusign_esign.models.date import Date from docusign_esign.models.date_signed import DateSigned from docusign_esign.models.date_stamp_properties import DateStampProperties from docusign_esign.models.decline import Decline @@ -344,7 +345,6 @@ from docusign_esign.models.merge_field import MergeField from docusign_esign.models.mobile_notifier_configuration import MobileNotifierConfiguration from docusign_esign.models.mobile_notifier_configuration_information import MobileNotifierConfigurationInformation -from docusign_esign.models.model_date import ModelDate from docusign_esign.models.money import Money from docusign_esign.models.name_value import NameValue from docusign_esign.models.new_account_definition import NewAccountDefinition @@ -540,6 +540,6 @@ from docusign_esign.models.workspace_user import WorkspaceUser from docusign_esign.models.workspace_user_authorization import WorkspaceUserAuthorization from docusign_esign.models.zip import Zip -from docusign_esign.models.date import Date -configuration = Configuration() + +configuration = Configuration() \ No newline at end of file diff --git a/docusign_esign/client/api_response.py b/docusign_esign/client/api_response.py index 0fc81fd8..d24017e6 100644 --- a/docusign_esign/client/api_response.py +++ b/docusign_esign/client/api_response.py @@ -133,8 +133,8 @@ def request(self, method, url, query_params=None, headers=None, if query_params: url += '?' + urlencode(query_params) if re.search('json', headers['Content-Type'], re.IGNORECASE): - request_body = None - if body: + request_body = '{}' + if body is not None: request_body = json.dumps(body) r = self.pool_manager.request(method, url, body=request_body, diff --git a/docusign_esign/models/__init__.py b/docusign_esign/models/__init__.py index b3b1b831..5ef0ca2d 100644 --- a/docusign_esign/models/__init__.py +++ b/docusign_esign/models/__init__.py @@ -180,6 +180,7 @@ from docusign_esign.models.custom_fields import CustomFields from docusign_esign.models.custom_fields_envelope import CustomFieldsEnvelope from docusign_esign.models.custom_settings_information import CustomSettingsInformation +from docusign_esign.models.date import Date from docusign_esign.models.date_signed import DateSigned from docusign_esign.models.date_stamp_properties import DateStampProperties from docusign_esign.models.decline import Decline @@ -308,7 +309,6 @@ from docusign_esign.models.merge_field import MergeField from docusign_esign.models.mobile_notifier_configuration import MobileNotifierConfiguration from docusign_esign.models.mobile_notifier_configuration_information import MobileNotifierConfigurationInformation -from docusign_esign.models.model_date import ModelDate from docusign_esign.models.money import Money from docusign_esign.models.name_value import NameValue from docusign_esign.models.new_account_definition import NewAccountDefinition @@ -504,4 +504,3 @@ from docusign_esign.models.workspace_user import WorkspaceUser from docusign_esign.models.workspace_user_authorization import WorkspaceUserAuthorization from docusign_esign.models.zip import Zip -from docusign_esign.models.date import Date diff --git a/docusign_esign/models/date.py b/docusign_esign/models/date.py index dd0d62f8..d9fb1de8 100644 --- a/docusign_esign/models/date.py +++ b/docusign_esign/models/date.py @@ -3,7 +3,7 @@ """ DocuSign REST API - The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign. + 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 @@ -11,383 +11,524 @@ """ -from pprint import pformat -from six import iteritems -import re +import pprint +import re # noqa: F401 + +import six + +from docusign_esign.client.configuration import Configuration class Date(object): - """ - NOTE: This class is auto generated by the swagger code generator program. + """NOTE: This class is auto generated by the swagger code generator program. + Do not edit the class manually. """ - def __init__(self, anchor_allow_white_space_in_characters=None, anchor_allow_white_space_in_characters_metadata=None, anchor_case_sensitive=None, anchor_case_sensitive_metadata=None, anchor_horizontal_alignment=None, anchor_horizontal_alignment_metadata=None, anchor_ignore_if_not_present=None, anchor_ignore_if_not_present_metadata=None, anchor_match_whole_word=None, anchor_match_whole_word_metadata=None, anchor_string=None, anchor_string_metadata=None, anchor_tab_processor_version=None, anchor_tab_processor_version_metadata=None, anchor_units=None, anchor_units_metadata=None, anchor_x_offset=None, anchor_x_offset_metadata=None, anchor_y_offset=None, anchor_y_offset_metadata=None, bold=None, bold_metadata=None, conceal_value_on_document=None, conceal_value_on_document_metadata=None, conditional_parent_label=None, conditional_parent_label_metadata=None, conditional_parent_value=None, conditional_parent_value_metadata=None, custom_tab_id=None, custom_tab_id_metadata=None, disable_auto_size=None, disable_auto_size_metadata=None, document_id=None, document_id_metadata=None, error_details=None, font=None, font_color=None, font_color_metadata=None, font_metadata=None, font_size=None, font_size_metadata=None, form_order=None, form_order_metadata=None, form_page_label=None, form_page_label_metadata=None, form_page_number=None, form_page_number_metadata=None, height=None, height_metadata=None, italic=None, italic_metadata=None, locale_policy=None, locked=None, locked_metadata=None, max_length=None, max_length_metadata=None, merge_field=None, merge_field_xml=None, name=None, name_metadata=None, original_value=None, original_value_metadata=None, page_number=None, page_number_metadata=None, recipient_id=None, recipient_id_guid=None, recipient_id_guid_metadata=None, recipient_id_metadata=None, require_all=None, require_all_metadata=None, required=None, required_metadata=None, require_initial_on_shared_change=None, require_initial_on_shared_change_metadata=None, sender_required=None, sender_required_metadata=None, shared=None, shared_metadata=None, smart_contract_information=None, status=None, status_metadata=None, tab_group_labels=None, tab_group_labels_metadata=None, tab_id=None, tab_id_metadata=None, tab_label=None, tab_label_metadata=None, tab_order=None, tab_order_metadata=None, tab_type=None, tab_type_metadata=None, template_locked=None, template_locked_metadata=None, template_required=None, template_required_metadata=None, tooltip=None, tool_tip_metadata=None, underline=None, underline_metadata=None, validation_message=None, validation_message_metadata=None, validation_pattern=None, validation_pattern_metadata=None, value=None, value_metadata=None, width=None, width_metadata=None, x_position=None, x_position_metadata=None, y_position=None, y_position_metadata=None): - """ - Date - a model defined in Swagger - - :param dict swaggerTypes: The key is attribute name - and the value is attribute type. - :param dict attributeMap: The key is attribute name - and the value is json key in definition. - """ - self.swagger_types = { - 'anchor_allow_white_space_in_characters': 'str', - 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', - 'anchor_case_sensitive': 'str', - 'anchor_case_sensitive_metadata': 'PropertyMetadata', - 'anchor_horizontal_alignment': 'str', - 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', - 'anchor_ignore_if_not_present': 'str', - 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', - 'anchor_match_whole_word': 'str', - 'anchor_match_whole_word_metadata': 'PropertyMetadata', - 'anchor_string': 'str', - 'anchor_string_metadata': 'PropertyMetadata', - 'anchor_tab_processor_version': 'str', - 'anchor_tab_processor_version_metadata': 'PropertyMetadata', - 'anchor_units': 'str', - 'anchor_units_metadata': 'PropertyMetadata', - 'anchor_x_offset': 'str', - 'anchor_x_offset_metadata': 'PropertyMetadata', - 'anchor_y_offset': 'str', - 'anchor_y_offset_metadata': 'PropertyMetadata', - 'bold': 'str', - 'bold_metadata': 'PropertyMetadata', - 'conceal_value_on_document': 'str', - 'conceal_value_on_document_metadata': 'PropertyMetadata', - 'conditional_parent_label': 'str', - 'conditional_parent_label_metadata': 'PropertyMetadata', - 'conditional_parent_value': 'str', - 'conditional_parent_value_metadata': 'PropertyMetadata', - 'custom_tab_id': 'str', - 'custom_tab_id_metadata': 'PropertyMetadata', - 'disable_auto_size': 'str', - 'disable_auto_size_metadata': 'PropertyMetadata', - 'document_id': 'str', - 'document_id_metadata': 'PropertyMetadata', - 'error_details': 'ErrorDetails', - 'font': 'str', - 'font_color': 'str', - 'font_color_metadata': 'PropertyMetadata', - 'font_metadata': 'PropertyMetadata', - 'font_size': 'str', - 'font_size_metadata': 'PropertyMetadata', - 'form_order': 'str', - 'form_order_metadata': 'PropertyMetadata', - 'form_page_label': 'str', - 'form_page_label_metadata': 'PropertyMetadata', - 'form_page_number': 'str', - 'form_page_number_metadata': 'PropertyMetadata', - 'height': 'str', - 'height_metadata': 'PropertyMetadata', - 'italic': 'str', - 'italic_metadata': 'PropertyMetadata', - 'locale_policy': 'LocalePolicyTab', - 'locked': 'str', - 'locked_metadata': 'PropertyMetadata', - 'max_length': 'str', - 'max_length_metadata': 'PropertyMetadata', - 'merge_field': 'MergeField', - 'merge_field_xml': 'str', - 'name': 'str', - 'name_metadata': 'PropertyMetadata', - 'original_value': 'str', - 'original_value_metadata': 'PropertyMetadata', - 'page_number': 'str', - 'page_number_metadata': 'PropertyMetadata', - 'recipient_id': 'str', - 'recipient_id_guid': 'str', - 'recipient_id_guid_metadata': 'PropertyMetadata', - 'recipient_id_metadata': 'PropertyMetadata', - 'require_all': 'str', - 'require_all_metadata': 'PropertyMetadata', - 'required': 'str', - 'required_metadata': 'PropertyMetadata', - 'require_initial_on_shared_change': 'str', - 'require_initial_on_shared_change_metadata': 'PropertyMetadata', - 'sender_required': 'str', - 'sender_required_metadata': 'PropertyMetadata', - 'shared': 'str', - 'shared_metadata': 'PropertyMetadata', - 'smart_contract_information': 'SmartContractInformation', - 'status': 'str', - 'status_metadata': 'PropertyMetadata', - 'tab_group_labels': 'list[str]', - 'tab_group_labels_metadata': 'PropertyMetadata', - 'tab_id': 'str', - 'tab_id_metadata': 'PropertyMetadata', - 'tab_label': 'str', - 'tab_label_metadata': 'PropertyMetadata', - 'tab_order': 'str', - 'tab_order_metadata': 'PropertyMetadata', - 'tab_type': 'str', - 'tab_type_metadata': 'PropertyMetadata', - 'template_locked': 'str', - 'template_locked_metadata': 'PropertyMetadata', - 'template_required': 'str', - 'template_required_metadata': 'PropertyMetadata', - 'tooltip': 'str', - 'tool_tip_metadata': 'PropertyMetadata', - 'underline': 'str', - 'underline_metadata': 'PropertyMetadata', - 'validation_message': 'str', - 'validation_message_metadata': 'PropertyMetadata', - 'validation_pattern': 'str', - 'validation_pattern_metadata': 'PropertyMetadata', - 'value': 'str', - 'value_metadata': 'PropertyMetadata', - 'width': 'str', - 'width_metadata': 'PropertyMetadata', - 'x_position': 'str', - 'x_position_metadata': 'PropertyMetadata', - 'y_position': 'str', - 'y_position_metadata': 'PropertyMetadata' - } - - self.attribute_map = { - 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', - 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', - 'anchor_case_sensitive': 'anchorCaseSensitive', - 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', - 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', - 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', - 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', - 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', - 'anchor_match_whole_word': 'anchorMatchWholeWord', - 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', - 'anchor_string': 'anchorString', - 'anchor_string_metadata': 'anchorStringMetadata', - 'anchor_tab_processor_version': 'anchorTabProcessorVersion', - 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', - 'anchor_units': 'anchorUnits', - 'anchor_units_metadata': 'anchorUnitsMetadata', - 'anchor_x_offset': 'anchorXOffset', - 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', - 'anchor_y_offset': 'anchorYOffset', - 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', - 'bold': 'bold', - 'bold_metadata': 'boldMetadata', - 'conceal_value_on_document': 'concealValueOnDocument', - 'conceal_value_on_document_metadata': 'concealValueOnDocumentMetadata', - 'conditional_parent_label': 'conditionalParentLabel', - 'conditional_parent_label_metadata': 'conditionalParentLabelMetadata', - 'conditional_parent_value': 'conditionalParentValue', - 'conditional_parent_value_metadata': 'conditionalParentValueMetadata', - 'custom_tab_id': 'customTabId', - 'custom_tab_id_metadata': 'customTabIdMetadata', - 'disable_auto_size': 'disableAutoSize', - 'disable_auto_size_metadata': 'disableAutoSizeMetadata', - 'document_id': 'documentId', - 'document_id_metadata': 'documentIdMetadata', - 'error_details': 'errorDetails', - 'font': 'font', - 'font_color': 'fontColor', - 'font_color_metadata': 'fontColorMetadata', - 'font_metadata': 'fontMetadata', - 'font_size': 'fontSize', - 'font_size_metadata': 'fontSizeMetadata', - 'form_order': 'formOrder', - 'form_order_metadata': 'formOrderMetadata', - 'form_page_label': 'formPageLabel', - 'form_page_label_metadata': 'formPageLabelMetadata', - 'form_page_number': 'formPageNumber', - 'form_page_number_metadata': 'formPageNumberMetadata', - 'height': 'height', - 'height_metadata': 'heightMetadata', - 'italic': 'italic', - 'italic_metadata': 'italicMetadata', - 'locale_policy': 'localePolicy', - 'locked': 'locked', - 'locked_metadata': 'lockedMetadata', - 'max_length': 'maxLength', - 'max_length_metadata': 'maxLengthMetadata', - 'merge_field': 'mergeField', - 'merge_field_xml': 'mergeFieldXml', - 'name': 'name', - 'name_metadata': 'nameMetadata', - 'original_value': 'originalValue', - 'original_value_metadata': 'originalValueMetadata', - 'page_number': 'pageNumber', - 'page_number_metadata': 'pageNumberMetadata', - 'recipient_id': 'recipientId', - 'recipient_id_guid': 'recipientIdGuid', - 'recipient_id_guid_metadata': 'recipientIdGuidMetadata', - 'recipient_id_metadata': 'recipientIdMetadata', - 'require_all': 'requireAll', - 'require_all_metadata': 'requireAllMetadata', - 'required': 'required', - 'required_metadata': 'requiredMetadata', - 'require_initial_on_shared_change': 'requireInitialOnSharedChange', - 'require_initial_on_shared_change_metadata': 'requireInitialOnSharedChangeMetadata', - 'sender_required': 'senderRequired', - 'sender_required_metadata': 'senderRequiredMetadata', - 'shared': 'shared', - 'shared_metadata': 'sharedMetadata', - 'smart_contract_information': 'smartContractInformation', - 'status': 'status', - 'status_metadata': 'statusMetadata', - 'tab_group_labels': 'tabGroupLabels', - 'tab_group_labels_metadata': 'tabGroupLabelsMetadata', - 'tab_id': 'tabId', - 'tab_id_metadata': 'tabIdMetadata', - 'tab_label': 'tabLabel', - 'tab_label_metadata': 'tabLabelMetadata', - 'tab_order': 'tabOrder', - 'tab_order_metadata': 'tabOrderMetadata', - 'tab_type': 'tabType', - 'tab_type_metadata': 'tabTypeMetadata', - 'template_locked': 'templateLocked', - 'template_locked_metadata': 'templateLockedMetadata', - 'template_required': 'templateRequired', - 'template_required_metadata': 'templateRequiredMetadata', - 'tooltip': 'tooltip', - 'tool_tip_metadata': 'toolTipMetadata', - 'underline': 'underline', - 'underline_metadata': 'underlineMetadata', - 'validation_message': 'validationMessage', - 'validation_message_metadata': 'validationMessageMetadata', - 'validation_pattern': 'validationPattern', - 'validation_pattern_metadata': 'validationPatternMetadata', - 'value': 'value', - 'value_metadata': 'valueMetadata', - 'width': 'width', - 'width_metadata': 'widthMetadata', - 'x_position': 'xPosition', - 'x_position_metadata': 'xPositionMetadata', - 'y_position': 'yPosition', - 'y_position_metadata': 'yPositionMetadata' - } - self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters - self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata - self._anchor_case_sensitive = anchor_case_sensitive - self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata - self._anchor_horizontal_alignment = anchor_horizontal_alignment - self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata - self._anchor_ignore_if_not_present = anchor_ignore_if_not_present - self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata - self._anchor_match_whole_word = anchor_match_whole_word - self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata - self._anchor_string = anchor_string - self._anchor_string_metadata = anchor_string_metadata - self._anchor_tab_processor_version = anchor_tab_processor_version - self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata - self._anchor_units = anchor_units - self._anchor_units_metadata = anchor_units_metadata - self._anchor_x_offset = anchor_x_offset - self._anchor_x_offset_metadata = anchor_x_offset_metadata - self._anchor_y_offset = anchor_y_offset - self._anchor_y_offset_metadata = anchor_y_offset_metadata - self._bold = bold - self._bold_metadata = bold_metadata - self._conceal_value_on_document = conceal_value_on_document - self._conceal_value_on_document_metadata = conceal_value_on_document_metadata - self._conditional_parent_label = conditional_parent_label - self._conditional_parent_label_metadata = conditional_parent_label_metadata - self._conditional_parent_value = conditional_parent_value - self._conditional_parent_value_metadata = conditional_parent_value_metadata - self._custom_tab_id = custom_tab_id - self._custom_tab_id_metadata = custom_tab_id_metadata - self._disable_auto_size = disable_auto_size - self._disable_auto_size_metadata = disable_auto_size_metadata - self._document_id = document_id - self._document_id_metadata = document_id_metadata - self._error_details = error_details - self._font = font - self._font_color = font_color - self._font_color_metadata = font_color_metadata - self._font_metadata = font_metadata - self._font_size = font_size - self._font_size_metadata = font_size_metadata - self._form_order = form_order - self._form_order_metadata = form_order_metadata - self._form_page_label = form_page_label - self._form_page_label_metadata = form_page_label_metadata - self._form_page_number = form_page_number - self._form_page_number_metadata = form_page_number_metadata - self._height = height - self._height_metadata = height_metadata - self._italic = italic - self._italic_metadata = italic_metadata - self._locale_policy = locale_policy - self._locked = locked - self._locked_metadata = locked_metadata - self._max_length = max_length - self._max_length_metadata = max_length_metadata - self._merge_field = merge_field - self._merge_field_xml = merge_field_xml - self._name = name - self._name_metadata = name_metadata - self._original_value = original_value - self._original_value_metadata = original_value_metadata - self._page_number = page_number - self._page_number_metadata = page_number_metadata - self._recipient_id = recipient_id - self._recipient_id_guid = recipient_id_guid - self._recipient_id_guid_metadata = recipient_id_guid_metadata - self._recipient_id_metadata = recipient_id_metadata - self._require_all = require_all - self._require_all_metadata = require_all_metadata - self._required = required - self._required_metadata = required_metadata - self._require_initial_on_shared_change = require_initial_on_shared_change - self._require_initial_on_shared_change_metadata = require_initial_on_shared_change_metadata - self._sender_required = sender_required - self._sender_required_metadata = sender_required_metadata - self._shared = shared - self._shared_metadata = shared_metadata - self._smart_contract_information = smart_contract_information - self._status = status - self._status_metadata = status_metadata - self._tab_group_labels = tab_group_labels - self._tab_group_labels_metadata = tab_group_labels_metadata - self._tab_id = tab_id - self._tab_id_metadata = tab_id_metadata - self._tab_label = tab_label - self._tab_label_metadata = tab_label_metadata - self._tab_order = tab_order - self._tab_order_metadata = tab_order_metadata - self._tab_type = tab_type - self._tab_type_metadata = tab_type_metadata - self._template_locked = template_locked - self._template_locked_metadata = template_locked_metadata - self._template_required = template_required - self._template_required_metadata = template_required_metadata - self._tooltip = tooltip - self._tool_tip_metadata = tool_tip_metadata - self._underline = underline - self._underline_metadata = underline_metadata - self._validation_message = validation_message - self._validation_message_metadata = validation_message_metadata - self._validation_pattern = validation_pattern - self._validation_pattern_metadata = validation_pattern_metadata - self._value = value - self._value_metadata = value_metadata - self._width = width - self._width_metadata = width_metadata - self._x_position = x_position - self._x_position_metadata = x_position_metadata - self._y_position = y_position - self._y_position_metadata = y_position_metadata + """ + 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 = { + 'anchor_allow_white_space_in_characters': 'str', + 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', + 'anchor_case_sensitive': 'str', + 'anchor_case_sensitive_metadata': 'PropertyMetadata', + 'anchor_horizontal_alignment': 'str', + 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', + 'anchor_ignore_if_not_present': 'str', + 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', + 'anchor_match_whole_word': 'str', + 'anchor_match_whole_word_metadata': 'PropertyMetadata', + 'anchor_string': 'str', + 'anchor_string_metadata': 'PropertyMetadata', + 'anchor_tab_processor_version': 'str', + 'anchor_tab_processor_version_metadata': 'PropertyMetadata', + 'anchor_units': 'str', + 'anchor_units_metadata': 'PropertyMetadata', + 'anchor_x_offset': 'str', + 'anchor_x_offset_metadata': 'PropertyMetadata', + 'anchor_y_offset': 'str', + 'anchor_y_offset_metadata': 'PropertyMetadata', + 'bold': 'str', + 'bold_metadata': 'PropertyMetadata', + 'caption': 'str', + 'caption_metadata': 'PropertyMetadata', + 'conceal_value_on_document': 'str', + 'conceal_value_on_document_metadata': 'PropertyMetadata', + 'conditional_parent_label': 'str', + 'conditional_parent_label_metadata': 'PropertyMetadata', + 'conditional_parent_value': 'str', + 'conditional_parent_value_metadata': 'PropertyMetadata', + 'custom_tab_id': 'str', + 'custom_tab_id_metadata': 'PropertyMetadata', + 'disable_auto_size': 'str', + 'disable_auto_size_metadata': 'PropertyMetadata', + 'document_id': 'str', + 'document_id_metadata': 'PropertyMetadata', + 'error_details': 'ErrorDetails', + 'font': 'str', + 'font_color': 'str', + 'font_color_metadata': 'PropertyMetadata', + 'font_metadata': 'PropertyMetadata', + 'font_size': 'str', + 'font_size_metadata': 'PropertyMetadata', + 'form_order': 'str', + 'form_order_metadata': 'PropertyMetadata', + 'form_page_label': 'str', + 'form_page_label_metadata': 'PropertyMetadata', + 'form_page_number': 'str', + 'form_page_number_metadata': 'PropertyMetadata', + 'height': 'str', + 'height_metadata': 'PropertyMetadata', + 'italic': 'str', + 'italic_metadata': 'PropertyMetadata', + 'locale_policy': 'LocalePolicyTab', + 'locked': 'str', + 'locked_metadata': 'PropertyMetadata', + 'max_length': 'str', + 'max_length_metadata': 'PropertyMetadata', + 'merge_field': 'MergeField', + 'merge_field_xml': 'str', + 'name': 'str', + 'name_metadata': 'PropertyMetadata', + 'original_value': 'str', + 'original_value_metadata': 'PropertyMetadata', + 'page_number': 'str', + 'page_number_metadata': 'PropertyMetadata', + 'recipient_id': 'str', + 'recipient_id_guid': 'str', + 'recipient_id_guid_metadata': 'PropertyMetadata', + 'recipient_id_metadata': 'PropertyMetadata', + 'require_all': 'str', + 'require_all_metadata': 'PropertyMetadata', + 'required': 'str', + 'required_metadata': 'PropertyMetadata', + 'require_initial_on_shared_change': 'str', + 'require_initial_on_shared_change_metadata': 'PropertyMetadata', + 'sender_required': 'str', + 'sender_required_metadata': 'PropertyMetadata', + 'shared': 'str', + 'shared_metadata': 'PropertyMetadata', + 'share_to_recipients': 'str', + 'share_to_recipients_metadata': 'PropertyMetadata', + 'smart_contract_information': 'SmartContractInformation', + 'source': 'str', + 'status': 'str', + 'status_metadata': 'PropertyMetadata', + 'tab_group_labels': 'list[str]', + 'tab_group_labels_metadata': 'PropertyMetadata', + 'tab_id': 'str', + 'tab_id_metadata': 'PropertyMetadata', + 'tab_label': 'str', + 'tab_label_metadata': 'PropertyMetadata', + 'tab_order': 'str', + 'tab_order_metadata': 'PropertyMetadata', + 'tab_type': 'str', + 'tab_type_metadata': 'PropertyMetadata', + 'template_locked': 'str', + 'template_locked_metadata': 'PropertyMetadata', + 'template_required': 'str', + 'template_required_metadata': 'PropertyMetadata', + 'tooltip': 'str', + 'tool_tip_metadata': 'PropertyMetadata', + 'underline': 'str', + 'underline_metadata': 'PropertyMetadata', + 'validation_message': 'str', + 'validation_message_metadata': 'PropertyMetadata', + 'validation_pattern': 'str', + 'validation_pattern_metadata': 'PropertyMetadata', + 'value': 'str', + 'value_metadata': 'PropertyMetadata', + 'width': 'str', + 'width_metadata': 'PropertyMetadata', + 'x_position': 'str', + 'x_position_metadata': 'PropertyMetadata', + 'y_position': 'str', + 'y_position_metadata': 'PropertyMetadata' + } + + attribute_map = { + 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', + 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', + 'anchor_case_sensitive': 'anchorCaseSensitive', + 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', + 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', + 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', + 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', + 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', + 'anchor_match_whole_word': 'anchorMatchWholeWord', + 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', + 'anchor_string': 'anchorString', + 'anchor_string_metadata': 'anchorStringMetadata', + 'anchor_tab_processor_version': 'anchorTabProcessorVersion', + 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', + 'anchor_units': 'anchorUnits', + 'anchor_units_metadata': 'anchorUnitsMetadata', + 'anchor_x_offset': 'anchorXOffset', + 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', + 'anchor_y_offset': 'anchorYOffset', + 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', + 'bold': 'bold', + 'bold_metadata': 'boldMetadata', + 'caption': 'caption', + 'caption_metadata': 'captionMetadata', + 'conceal_value_on_document': 'concealValueOnDocument', + 'conceal_value_on_document_metadata': 'concealValueOnDocumentMetadata', + 'conditional_parent_label': 'conditionalParentLabel', + 'conditional_parent_label_metadata': 'conditionalParentLabelMetadata', + 'conditional_parent_value': 'conditionalParentValue', + 'conditional_parent_value_metadata': 'conditionalParentValueMetadata', + 'custom_tab_id': 'customTabId', + 'custom_tab_id_metadata': 'customTabIdMetadata', + 'disable_auto_size': 'disableAutoSize', + 'disable_auto_size_metadata': 'disableAutoSizeMetadata', + 'document_id': 'documentId', + 'document_id_metadata': 'documentIdMetadata', + 'error_details': 'errorDetails', + 'font': 'font', + 'font_color': 'fontColor', + 'font_color_metadata': 'fontColorMetadata', + 'font_metadata': 'fontMetadata', + 'font_size': 'fontSize', + 'font_size_metadata': 'fontSizeMetadata', + 'form_order': 'formOrder', + 'form_order_metadata': 'formOrderMetadata', + 'form_page_label': 'formPageLabel', + 'form_page_label_metadata': 'formPageLabelMetadata', + 'form_page_number': 'formPageNumber', + 'form_page_number_metadata': 'formPageNumberMetadata', + 'height': 'height', + 'height_metadata': 'heightMetadata', + 'italic': 'italic', + 'italic_metadata': 'italicMetadata', + 'locale_policy': 'localePolicy', + 'locked': 'locked', + 'locked_metadata': 'lockedMetadata', + 'max_length': 'maxLength', + 'max_length_metadata': 'maxLengthMetadata', + 'merge_field': 'mergeField', + 'merge_field_xml': 'mergeFieldXml', + 'name': 'name', + 'name_metadata': 'nameMetadata', + 'original_value': 'originalValue', + 'original_value_metadata': 'originalValueMetadata', + 'page_number': 'pageNumber', + 'page_number_metadata': 'pageNumberMetadata', + 'recipient_id': 'recipientId', + 'recipient_id_guid': 'recipientIdGuid', + 'recipient_id_guid_metadata': 'recipientIdGuidMetadata', + 'recipient_id_metadata': 'recipientIdMetadata', + 'require_all': 'requireAll', + 'require_all_metadata': 'requireAllMetadata', + 'required': 'required', + 'required_metadata': 'requiredMetadata', + 'require_initial_on_shared_change': 'requireInitialOnSharedChange', + 'require_initial_on_shared_change_metadata': 'requireInitialOnSharedChangeMetadata', + 'sender_required': 'senderRequired', + 'sender_required_metadata': 'senderRequiredMetadata', + 'shared': 'shared', + 'shared_metadata': 'sharedMetadata', + 'share_to_recipients': 'shareToRecipients', + 'share_to_recipients_metadata': 'shareToRecipientsMetadata', + 'smart_contract_information': 'smartContractInformation', + 'source': 'source', + 'status': 'status', + 'status_metadata': 'statusMetadata', + 'tab_group_labels': 'tabGroupLabels', + 'tab_group_labels_metadata': 'tabGroupLabelsMetadata', + 'tab_id': 'tabId', + 'tab_id_metadata': 'tabIdMetadata', + 'tab_label': 'tabLabel', + 'tab_label_metadata': 'tabLabelMetadata', + 'tab_order': 'tabOrder', + 'tab_order_metadata': 'tabOrderMetadata', + 'tab_type': 'tabType', + 'tab_type_metadata': 'tabTypeMetadata', + 'template_locked': 'templateLocked', + 'template_locked_metadata': 'templateLockedMetadata', + 'template_required': 'templateRequired', + 'template_required_metadata': 'templateRequiredMetadata', + 'tooltip': 'tooltip', + 'tool_tip_metadata': 'toolTipMetadata', + 'underline': 'underline', + 'underline_metadata': 'underlineMetadata', + 'validation_message': 'validationMessage', + 'validation_message_metadata': 'validationMessageMetadata', + 'validation_pattern': 'validationPattern', + 'validation_pattern_metadata': 'validationPatternMetadata', + 'value': 'value', + 'value_metadata': 'valueMetadata', + 'width': 'width', + 'width_metadata': 'widthMetadata', + 'x_position': 'xPosition', + 'x_position_metadata': 'xPositionMetadata', + 'y_position': 'yPosition', + 'y_position_metadata': 'yPositionMetadata' + } + + def __init__(self, _configuration=None, **kwargs): # noqa: E501 + """Date - a model defined in Swagger""" # noqa: E501 + if _configuration is None: + _configuration = Configuration() + self._configuration = _configuration + + self._anchor_allow_white_space_in_characters = None + self._anchor_allow_white_space_in_characters_metadata = None + self._anchor_case_sensitive = None + self._anchor_case_sensitive_metadata = None + self._anchor_horizontal_alignment = None + self._anchor_horizontal_alignment_metadata = None + self._anchor_ignore_if_not_present = None + self._anchor_ignore_if_not_present_metadata = None + self._anchor_match_whole_word = None + self._anchor_match_whole_word_metadata = None + self._anchor_string = None + self._anchor_string_metadata = None + self._anchor_tab_processor_version = None + self._anchor_tab_processor_version_metadata = None + self._anchor_units = None + self._anchor_units_metadata = None + self._anchor_x_offset = None + self._anchor_x_offset_metadata = None + self._anchor_y_offset = None + self._anchor_y_offset_metadata = None + self._bold = None + self._bold_metadata = None + self._caption = None + self._caption_metadata = None + self._conceal_value_on_document = None + self._conceal_value_on_document_metadata = None + self._conditional_parent_label = None + self._conditional_parent_label_metadata = None + self._conditional_parent_value = None + self._conditional_parent_value_metadata = None + self._custom_tab_id = None + self._custom_tab_id_metadata = None + self._disable_auto_size = None + self._disable_auto_size_metadata = None + self._document_id = None + self._document_id_metadata = None + self._error_details = None + self._font = None + self._font_color = None + self._font_color_metadata = None + self._font_metadata = None + self._font_size = None + self._font_size_metadata = None + self._form_order = None + self._form_order_metadata = None + self._form_page_label = None + self._form_page_label_metadata = None + self._form_page_number = None + self._form_page_number_metadata = None + self._height = None + self._height_metadata = None + self._italic = None + self._italic_metadata = None + self._locale_policy = None + self._locked = None + self._locked_metadata = None + self._max_length = None + self._max_length_metadata = None + self._merge_field = None + self._merge_field_xml = None + self._name = None + self._name_metadata = None + self._original_value = None + self._original_value_metadata = None + self._page_number = None + self._page_number_metadata = None + self._recipient_id = None + self._recipient_id_guid = None + self._recipient_id_guid_metadata = None + self._recipient_id_metadata = None + self._require_all = None + self._require_all_metadata = None + self._required = None + self._required_metadata = None + self._require_initial_on_shared_change = None + self._require_initial_on_shared_change_metadata = None + self._sender_required = None + self._sender_required_metadata = None + self._shared = None + self._shared_metadata = None + self._share_to_recipients = None + self._share_to_recipients_metadata = None + self._smart_contract_information = None + self._source = None + self._status = None + self._status_metadata = None + self._tab_group_labels = None + self._tab_group_labels_metadata = None + self._tab_id = None + self._tab_id_metadata = None + self._tab_label = None + self._tab_label_metadata = None + self._tab_order = None + self._tab_order_metadata = None + self._tab_type = None + self._tab_type_metadata = None + self._template_locked = None + self._template_locked_metadata = None + self._template_required = None + self._template_required_metadata = None + self._tooltip = None + self._tool_tip_metadata = None + self._underline = None + self._underline_metadata = None + self._validation_message = None + self._validation_message_metadata = None + self._validation_pattern = None + self._validation_pattern_metadata = None + self._value = None + self._value_metadata = None + self._width = None + self._width_metadata = None + self._x_position = None + self._x_position_metadata = None + self._y_position = None + self._y_position_metadata = None + self.discriminator = None + + setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) + setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) + setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) + setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) + setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) + setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) + setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) + setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) + setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) + setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) + setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) + setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) + setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) + setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) + setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) + setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) + setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) + setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) + setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) + setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) + setattr(self, "_{}".format('bold'), kwargs.get('bold', None)) + setattr(self, "_{}".format('bold_metadata'), kwargs.get('bold_metadata', None)) + setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) + setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) + setattr(self, "_{}".format('conceal_value_on_document'), kwargs.get('conceal_value_on_document', None)) + setattr(self, "_{}".format('conceal_value_on_document_metadata'), kwargs.get('conceal_value_on_document_metadata', None)) + setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None)) + setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None)) + setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None)) + setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None)) + setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None)) + setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None)) + setattr(self, "_{}".format('disable_auto_size'), kwargs.get('disable_auto_size', None)) + setattr(self, "_{}".format('disable_auto_size_metadata'), kwargs.get('disable_auto_size_metadata', None)) + setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None)) + setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None)) + setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) + setattr(self, "_{}".format('font'), kwargs.get('font', None)) + setattr(self, "_{}".format('font_color'), kwargs.get('font_color', None)) + setattr(self, "_{}".format('font_color_metadata'), kwargs.get('font_color_metadata', None)) + setattr(self, "_{}".format('font_metadata'), kwargs.get('font_metadata', None)) + setattr(self, "_{}".format('font_size'), kwargs.get('font_size', None)) + setattr(self, "_{}".format('font_size_metadata'), kwargs.get('font_size_metadata', None)) + setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None)) + setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None)) + setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None)) + setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None)) + setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None)) + setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None)) + setattr(self, "_{}".format('height'), kwargs.get('height', None)) + setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None)) + setattr(self, "_{}".format('italic'), kwargs.get('italic', None)) + setattr(self, "_{}".format('italic_metadata'), kwargs.get('italic_metadata', None)) + setattr(self, "_{}".format('locale_policy'), kwargs.get('locale_policy', None)) + setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) + setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) + setattr(self, "_{}".format('max_length'), kwargs.get('max_length', None)) + setattr(self, "_{}".format('max_length_metadata'), kwargs.get('max_length_metadata', None)) + setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None)) + setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) + setattr(self, "_{}".format('name'), kwargs.get('name', None)) + setattr(self, "_{}".format('name_metadata'), kwargs.get('name_metadata', None)) + setattr(self, "_{}".format('original_value'), kwargs.get('original_value', None)) + setattr(self, "_{}".format('original_value_metadata'), kwargs.get('original_value_metadata', None)) + setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) + setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) + setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None)) + setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None)) + setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None)) + setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None)) + setattr(self, "_{}".format('require_all'), kwargs.get('require_all', None)) + setattr(self, "_{}".format('require_all_metadata'), kwargs.get('require_all_metadata', None)) + setattr(self, "_{}".format('required'), kwargs.get('required', None)) + setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) + setattr(self, "_{}".format('require_initial_on_shared_change'), kwargs.get('require_initial_on_shared_change', None)) + setattr(self, "_{}".format('require_initial_on_shared_change_metadata'), kwargs.get('require_initial_on_shared_change_metadata', None)) + setattr(self, "_{}".format('sender_required'), kwargs.get('sender_required', None)) + setattr(self, "_{}".format('sender_required_metadata'), kwargs.get('sender_required_metadata', None)) + setattr(self, "_{}".format('shared'), kwargs.get('shared', None)) + setattr(self, "_{}".format('shared_metadata'), kwargs.get('shared_metadata', None)) + setattr(self, "_{}".format('share_to_recipients'), kwargs.get('share_to_recipients', None)) + setattr(self, "_{}".format('share_to_recipients_metadata'), kwargs.get('share_to_recipients_metadata', None)) + setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None)) + setattr(self, "_{}".format('source'), kwargs.get('source', None)) + setattr(self, "_{}".format('status'), kwargs.get('status', None)) + setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) + setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None)) + setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None)) + setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) + setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) + setattr(self, "_{}".format('tab_label'), kwargs.get('tab_label', None)) + setattr(self, "_{}".format('tab_label_metadata'), kwargs.get('tab_label_metadata', None)) + setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) + setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) + setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None)) + setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None)) + setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None)) + setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None)) + setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None)) + setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None)) + setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None)) + setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None)) + setattr(self, "_{}".format('underline'), kwargs.get('underline', None)) + setattr(self, "_{}".format('underline_metadata'), kwargs.get('underline_metadata', None)) + setattr(self, "_{}".format('validation_message'), kwargs.get('validation_message', None)) + setattr(self, "_{}".format('validation_message_metadata'), kwargs.get('validation_message_metadata', None)) + setattr(self, "_{}".format('validation_pattern'), kwargs.get('validation_pattern', None)) + setattr(self, "_{}".format('validation_pattern_metadata'), kwargs.get('validation_pattern_metadata', None)) + setattr(self, "_{}".format('value'), kwargs.get('value', None)) + setattr(self, "_{}".format('value_metadata'), kwargs.get('value_metadata', None)) + setattr(self, "_{}".format('width'), kwargs.get('width', None)) + setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None)) + setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) + setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) + setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) + setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None)) @property def anchor_allow_white_space_in_characters(self): - """ - Gets the anchor_allow_white_space_in_characters of this Date. - + """Gets the anchor_allow_white_space_in_characters of this Date. # noqa: E501 + + # noqa: E501 - :return: The anchor_allow_white_space_in_characters of this Date. + :return: The anchor_allow_white_space_in_characters of this Date. # noqa: E501 :rtype: str """ return self._anchor_allow_white_space_in_characters @anchor_allow_white_space_in_characters.setter def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters): - """ - Sets the anchor_allow_white_space_in_characters of this Date. - + """Sets the anchor_allow_white_space_in_characters of this Date. + + # noqa: E501 - :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Date. + :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Date. # noqa: E501 :type: str """ @@ -395,20 +536,22 @@ def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_cha @property def anchor_allow_white_space_in_characters_metadata(self): - """ - Gets the anchor_allow_white_space_in_characters_metadata of this Date. + """Gets the anchor_allow_white_space_in_characters_metadata of this Date. # noqa: E501 - :return: The anchor_allow_white_space_in_characters_metadata of this Date. + Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 + + :return: The anchor_allow_white_space_in_characters_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_allow_white_space_in_characters_metadata @anchor_allow_white_space_in_characters_metadata.setter def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata): - """ - Sets the anchor_allow_white_space_in_characters_metadata of this Date. + """Sets the anchor_allow_white_space_in_characters_metadata of this Date. + + Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 - :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Date. + :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -416,22 +559,22 @@ def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_spa @property def anchor_case_sensitive(self): - """ - Gets the anchor_case_sensitive of this Date. - When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. + """Gets the anchor_case_sensitive of this Date. # noqa: E501 + + When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 - :return: The anchor_case_sensitive of this Date. + :return: The anchor_case_sensitive of this Date. # noqa: E501 :rtype: str """ return self._anchor_case_sensitive @anchor_case_sensitive.setter def anchor_case_sensitive(self, anchor_case_sensitive): - """ - Sets the anchor_case_sensitive of this Date. - When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. + """Sets the anchor_case_sensitive of this Date. - :param anchor_case_sensitive: The anchor_case_sensitive of this Date. + When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 + + :param anchor_case_sensitive: The anchor_case_sensitive of this Date. # noqa: E501 :type: str """ @@ -439,20 +582,22 @@ def anchor_case_sensitive(self, anchor_case_sensitive): @property def anchor_case_sensitive_metadata(self): - """ - Gets the anchor_case_sensitive_metadata of this Date. + """Gets the anchor_case_sensitive_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 - :return: The anchor_case_sensitive_metadata of this Date. + :return: The anchor_case_sensitive_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_case_sensitive_metadata @anchor_case_sensitive_metadata.setter def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): - """ - Sets the anchor_case_sensitive_metadata of this Date. + """Sets the anchor_case_sensitive_metadata of this Date. + + Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 - :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Date. + :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -460,22 +605,22 @@ def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): @property def anchor_horizontal_alignment(self): - """ - Gets the anchor_horizontal_alignment of this Date. - Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. + """Gets the anchor_horizontal_alignment of this Date. # noqa: E501 - :return: The anchor_horizontal_alignment of this Date. + Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 + + :return: The anchor_horizontal_alignment of this Date. # noqa: E501 :rtype: str """ return self._anchor_horizontal_alignment @anchor_horizontal_alignment.setter def anchor_horizontal_alignment(self, anchor_horizontal_alignment): - """ - Sets the anchor_horizontal_alignment of this Date. - Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. + """Sets the anchor_horizontal_alignment of this Date. + + Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 - :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Date. + :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Date. # noqa: E501 :type: str """ @@ -483,20 +628,22 @@ def anchor_horizontal_alignment(self, anchor_horizontal_alignment): @property def anchor_horizontal_alignment_metadata(self): - """ - Gets the anchor_horizontal_alignment_metadata of this Date. + """Gets the anchor_horizontal_alignment_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 - :return: The anchor_horizontal_alignment_metadata of this Date. + :return: The anchor_horizontal_alignment_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_horizontal_alignment_metadata @anchor_horizontal_alignment_metadata.setter def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata): - """ - Sets the anchor_horizontal_alignment_metadata of this Date. + """Sets the anchor_horizontal_alignment_metadata of this Date. - :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Date. + Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 + + :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -504,22 +651,22 @@ def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metad @property def anchor_ignore_if_not_present(self): - """ - Gets the anchor_ignore_if_not_present of this Date. - When set to **true**, this tab is ignored if anchorString is not found in the document. + """Gets the anchor_ignore_if_not_present of this Date. # noqa: E501 - :return: The anchor_ignore_if_not_present of this Date. + When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 + + :return: The anchor_ignore_if_not_present of this Date. # noqa: E501 :rtype: str """ return self._anchor_ignore_if_not_present @anchor_ignore_if_not_present.setter def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): - """ - Sets the anchor_ignore_if_not_present of this Date. - When set to **true**, this tab is ignored if anchorString is not found in the document. + """Sets the anchor_ignore_if_not_present of this Date. + + When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 - :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Date. + :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Date. # noqa: E501 :type: str """ @@ -527,20 +674,22 @@ def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): @property def anchor_ignore_if_not_present_metadata(self): - """ - Gets the anchor_ignore_if_not_present_metadata of this Date. + """Gets the anchor_ignore_if_not_present_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 - :return: The anchor_ignore_if_not_present_metadata of this Date. + :return: The anchor_ignore_if_not_present_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_ignore_if_not_present_metadata @anchor_ignore_if_not_present_metadata.setter def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata): - """ - Sets the anchor_ignore_if_not_present_metadata of this Date. + """Sets the anchor_ignore_if_not_present_metadata of this Date. - :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Date. + Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 + + :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -548,22 +697,22 @@ def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_met @property def anchor_match_whole_word(self): - """ - Gets the anchor_match_whole_word of this Date. - When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**. + """Gets the anchor_match_whole_word of this Date. # noqa: E501 + + When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**. # noqa: E501 - :return: The anchor_match_whole_word of this Date. + :return: The anchor_match_whole_word of this Date. # noqa: E501 :rtype: str """ return self._anchor_match_whole_word @anchor_match_whole_word.setter def anchor_match_whole_word(self, anchor_match_whole_word): - """ - Sets the anchor_match_whole_word of this Date. - When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**. + """Sets the anchor_match_whole_word of this Date. + + When set to **true**, the anchor string in this tab matches whole words only (strings embedded in other strings are ignored.) The default value is **true**. # noqa: E501 - :param anchor_match_whole_word: The anchor_match_whole_word of this Date. + :param anchor_match_whole_word: The anchor_match_whole_word of this Date. # noqa: E501 :type: str """ @@ -571,20 +720,22 @@ def anchor_match_whole_word(self, anchor_match_whole_word): @property def anchor_match_whole_word_metadata(self): - """ - Gets the anchor_match_whole_word_metadata of this Date. + """Gets the anchor_match_whole_word_metadata of this Date. # noqa: E501 - :return: The anchor_match_whole_word_metadata of this Date. + Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 + + :return: The anchor_match_whole_word_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_match_whole_word_metadata @anchor_match_whole_word_metadata.setter def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): - """ - Sets the anchor_match_whole_word_metadata of this Date. + """Sets the anchor_match_whole_word_metadata of this Date. + + Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 - :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Date. + :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -592,22 +743,22 @@ def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): @property def anchor_string(self): - """ - Gets the anchor_string of this Date. - Anchor text information for a radio button. + """Gets the anchor_string of this Date. # noqa: E501 + + Anchor text information for a radio button. # noqa: E501 - :return: The anchor_string of this Date. + :return: The anchor_string of this Date. # noqa: E501 :rtype: str """ return self._anchor_string @anchor_string.setter def anchor_string(self, anchor_string): - """ - Sets the anchor_string of this Date. - Anchor text information for a radio button. + """Sets the anchor_string of this Date. - :param anchor_string: The anchor_string of this Date. + Anchor text information for a radio button. # noqa: E501 + + :param anchor_string: The anchor_string of this Date. # noqa: E501 :type: str """ @@ -615,20 +766,22 @@ def anchor_string(self, anchor_string): @property def anchor_string_metadata(self): - """ - Gets the anchor_string_metadata of this Date. + """Gets the anchor_string_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 - :return: The anchor_string_metadata of this Date. + :return: The anchor_string_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_string_metadata @anchor_string_metadata.setter def anchor_string_metadata(self, anchor_string_metadata): - """ - Sets the anchor_string_metadata of this Date. + """Sets the anchor_string_metadata of this Date. + + Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 - :param anchor_string_metadata: The anchor_string_metadata of this Date. + :param anchor_string_metadata: The anchor_string_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -636,22 +789,22 @@ def anchor_string_metadata(self, anchor_string_metadata): @property def anchor_tab_processor_version(self): - """ - Gets the anchor_tab_processor_version of this Date. - + """Gets the anchor_tab_processor_version of this Date. # noqa: E501 - :return: The anchor_tab_processor_version of this Date. + # noqa: E501 + + :return: The anchor_tab_processor_version of this Date. # noqa: E501 :rtype: str """ return self._anchor_tab_processor_version @anchor_tab_processor_version.setter def anchor_tab_processor_version(self, anchor_tab_processor_version): - """ - Sets the anchor_tab_processor_version of this Date. - + """Sets the anchor_tab_processor_version of this Date. + + # noqa: E501 - :param anchor_tab_processor_version: The anchor_tab_processor_version of this Date. + :param anchor_tab_processor_version: The anchor_tab_processor_version of this Date. # noqa: E501 :type: str """ @@ -659,20 +812,22 @@ def anchor_tab_processor_version(self, anchor_tab_processor_version): @property def anchor_tab_processor_version_metadata(self): - """ - Gets the anchor_tab_processor_version_metadata of this Date. + """Gets the anchor_tab_processor_version_metadata of this Date. # noqa: E501 + + Reserved for DocuSign. # noqa: E501 - :return: The anchor_tab_processor_version_metadata of this Date. + :return: The anchor_tab_processor_version_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_tab_processor_version_metadata @anchor_tab_processor_version_metadata.setter def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata): - """ - Sets the anchor_tab_processor_version_metadata of this Date. + """Sets the anchor_tab_processor_version_metadata of this Date. - :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Date. + Reserved for DocuSign. # noqa: E501 + + :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -680,22 +835,22 @@ def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_met @property def anchor_units(self): - """ - Gets the anchor_units of this Date. - Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. + """Gets the anchor_units of this Date. # noqa: E501 + + Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 - :return: The anchor_units of this Date. + :return: The anchor_units of this Date. # noqa: E501 :rtype: str """ return self._anchor_units @anchor_units.setter def anchor_units(self, anchor_units): - """ - Sets the anchor_units of this Date. - Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. + """Sets the anchor_units of this Date. + + Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 - :param anchor_units: The anchor_units of this Date. + :param anchor_units: The anchor_units of this Date. # noqa: E501 :type: str """ @@ -703,20 +858,22 @@ def anchor_units(self, anchor_units): @property def anchor_units_metadata(self): - """ - Gets the anchor_units_metadata of this Date. + """Gets the anchor_units_metadata of this Date. # noqa: E501 - :return: The anchor_units_metadata of this Date. + Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 + + :return: The anchor_units_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_units_metadata @anchor_units_metadata.setter def anchor_units_metadata(self, anchor_units_metadata): - """ - Sets the anchor_units_metadata of this Date. + """Sets the anchor_units_metadata of this Date. + + Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 - :param anchor_units_metadata: The anchor_units_metadata of this Date. + :param anchor_units_metadata: The anchor_units_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -724,22 +881,22 @@ def anchor_units_metadata(self, anchor_units_metadata): @property def anchor_x_offset(self): - """ - Gets the anchor_x_offset of this Date. - Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. + """Gets the anchor_x_offset of this Date. # noqa: E501 + + Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 - :return: The anchor_x_offset of this Date. + :return: The anchor_x_offset of this Date. # noqa: E501 :rtype: str """ return self._anchor_x_offset @anchor_x_offset.setter def anchor_x_offset(self, anchor_x_offset): - """ - Sets the anchor_x_offset of this Date. - Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. + """Sets the anchor_x_offset of this Date. - :param anchor_x_offset: The anchor_x_offset of this Date. + Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 + + :param anchor_x_offset: The anchor_x_offset of this Date. # noqa: E501 :type: str """ @@ -747,20 +904,22 @@ def anchor_x_offset(self, anchor_x_offset): @property def anchor_x_offset_metadata(self): - """ - Gets the anchor_x_offset_metadata of this Date. + """Gets the anchor_x_offset_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 - :return: The anchor_x_offset_metadata of this Date. + :return: The anchor_x_offset_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_x_offset_metadata @anchor_x_offset_metadata.setter def anchor_x_offset_metadata(self, anchor_x_offset_metadata): - """ - Sets the anchor_x_offset_metadata of this Date. + """Sets the anchor_x_offset_metadata of this Date. + + Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 - :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Date. + :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -768,22 +927,22 @@ def anchor_x_offset_metadata(self, anchor_x_offset_metadata): @property def anchor_y_offset(self): - """ - Gets the anchor_y_offset of this Date. - Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. + """Gets the anchor_y_offset of this Date. # noqa: E501 + + Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 - :return: The anchor_y_offset of this Date. + :return: The anchor_y_offset of this Date. # noqa: E501 :rtype: str """ return self._anchor_y_offset @anchor_y_offset.setter def anchor_y_offset(self, anchor_y_offset): - """ - Sets the anchor_y_offset of this Date. - Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. + """Sets the anchor_y_offset of this Date. - :param anchor_y_offset: The anchor_y_offset of this Date. + Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 + + :param anchor_y_offset: The anchor_y_offset of this Date. # noqa: E501 :type: str """ @@ -791,20 +950,22 @@ def anchor_y_offset(self, anchor_y_offset): @property def anchor_y_offset_metadata(self): - """ - Gets the anchor_y_offset_metadata of this Date. + """Gets the anchor_y_offset_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 - :return: The anchor_y_offset_metadata of this Date. + :return: The anchor_y_offset_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._anchor_y_offset_metadata @anchor_y_offset_metadata.setter def anchor_y_offset_metadata(self, anchor_y_offset_metadata): - """ - Sets the anchor_y_offset_metadata of this Date. + """Sets the anchor_y_offset_metadata of this Date. + + Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 - :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Date. + :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -812,22 +973,22 @@ def anchor_y_offset_metadata(self, anchor_y_offset_metadata): @property def bold(self): - """ - Gets the bold of this Date. - When set to **true**, the information in the tab is bold. + """Gets the bold of this Date. # noqa: E501 - :return: The bold of this Date. + When set to **true**, the information in the tab is bold. # noqa: E501 + + :return: The bold of this Date. # noqa: E501 :rtype: str """ return self._bold @bold.setter def bold(self, bold): - """ - Sets the bold of this Date. - When set to **true**, the information in the tab is bold. + """Sets the bold of this Date. + + When set to **true**, the information in the tab is bold. # noqa: E501 - :param bold: The bold of this Date. + :param bold: The bold of this Date. # noqa: E501 :type: str """ @@ -835,43 +996,91 @@ def bold(self, bold): @property def bold_metadata(self): - """ - Gets the bold_metadata of this Date. + """Gets the bold_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `bold` property is editable. # noqa: E501 - :return: The bold_metadata of this Date. + :return: The bold_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._bold_metadata @bold_metadata.setter def bold_metadata(self, bold_metadata): - """ - Sets the bold_metadata of this Date. + """Sets the bold_metadata of this Date. - :param bold_metadata: The bold_metadata of this Date. + Metadata that indicates whether the `bold` property is editable. # noqa: E501 + + :param bold_metadata: The bold_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ self._bold_metadata = bold_metadata @property - def conceal_value_on_document(self): + def caption(self): + """Gets the caption of this Date. # noqa: E501 + + # noqa: E501 + + :return: The caption of this Date. # noqa: E501 + :rtype: str """ - Gets the conceal_value_on_document of this Date. - When set to **true**, the field appears normally while the recipient is adding or modifying the information in the field, but the data is not visible (the characters are hidden by asterisks) to any other signer or the sender. When an envelope is completed the information is available to the sender through the Form Data link in the DocuSign Console. This setting applies only to text boxes and does not affect list boxes, radio buttons, or check boxes. + return self._caption + + @caption.setter + def caption(self, caption): + """Sets the caption of this Date. - :return: The conceal_value_on_document of this Date. + # noqa: E501 + + :param caption: The caption of this Date. # noqa: E501 + :type: str + """ + + self._caption = caption + + @property + def caption_metadata(self): + """Gets the caption_metadata of this Date. # noqa: E501 + + # noqa: E501 + + :return: The caption_metadata of this Date. # noqa: E501 + :rtype: PropertyMetadata + """ + return self._caption_metadata + + @caption_metadata.setter + def caption_metadata(self, caption_metadata): + """Sets the caption_metadata of this Date. + + # noqa: E501 + + :param caption_metadata: The caption_metadata of this Date. # noqa: E501 + :type: PropertyMetadata + """ + + self._caption_metadata = caption_metadata + + @property + def conceal_value_on_document(self): + """Gets the conceal_value_on_document of this Date. # noqa: E501 + + When set to **true**, the field appears normally while the recipient is adding or modifying the information in the field, but the data is not visible (the characters are hidden by asterisks) to any other signer or the sender. When an envelope is completed the information is available to the sender through the Form Data link in the DocuSign Console. This setting applies only to text boxes and does not affect list boxes, radio buttons, or check boxes. # noqa: E501 + + :return: The conceal_value_on_document of this Date. # noqa: E501 :rtype: str """ return self._conceal_value_on_document @conceal_value_on_document.setter def conceal_value_on_document(self, conceal_value_on_document): - """ - Sets the conceal_value_on_document of this Date. - When set to **true**, the field appears normally while the recipient is adding or modifying the information in the field, but the data is not visible (the characters are hidden by asterisks) to any other signer or the sender. When an envelope is completed the information is available to the sender through the Form Data link in the DocuSign Console. This setting applies only to text boxes and does not affect list boxes, radio buttons, or check boxes. + """Sets the conceal_value_on_document of this Date. + + When set to **true**, the field appears normally while the recipient is adding or modifying the information in the field, but the data is not visible (the characters are hidden by asterisks) to any other signer or the sender. When an envelope is completed the information is available to the sender through the Form Data link in the DocuSign Console. This setting applies only to text boxes and does not affect list boxes, radio buttons, or check boxes. # noqa: E501 - :param conceal_value_on_document: The conceal_value_on_document of this Date. + :param conceal_value_on_document: The conceal_value_on_document of this Date. # noqa: E501 :type: str """ @@ -879,20 +1088,22 @@ def conceal_value_on_document(self, conceal_value_on_document): @property def conceal_value_on_document_metadata(self): - """ - Gets the conceal_value_on_document_metadata of this Date. + """Gets the conceal_value_on_document_metadata of this Date. # noqa: E501 - :return: The conceal_value_on_document_metadata of this Date. + Metadata that indicates whether the `concealValueOnDocument` property is editable. # noqa: E501 + + :return: The conceal_value_on_document_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._conceal_value_on_document_metadata @conceal_value_on_document_metadata.setter def conceal_value_on_document_metadata(self, conceal_value_on_document_metadata): - """ - Sets the conceal_value_on_document_metadata of this Date. + """Sets the conceal_value_on_document_metadata of this Date. - :param conceal_value_on_document_metadata: The conceal_value_on_document_metadata of this Date. + Metadata that indicates whether the `concealValueOnDocument` property is editable. # noqa: E501 + + :param conceal_value_on_document_metadata: The conceal_value_on_document_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -900,22 +1111,22 @@ def conceal_value_on_document_metadata(self, conceal_value_on_document_metadata) @property def conditional_parent_label(self): - """ - Gets the conditional_parent_label of this Date. - For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. + """Gets the conditional_parent_label of this Date. # noqa: E501 + + For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 - :return: The conditional_parent_label of this Date. + :return: The conditional_parent_label of this Date. # noqa: E501 :rtype: str """ return self._conditional_parent_label @conditional_parent_label.setter def conditional_parent_label(self, conditional_parent_label): - """ - Sets the conditional_parent_label of this Date. - For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. + """Sets the conditional_parent_label of this Date. + + For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 - :param conditional_parent_label: The conditional_parent_label of this Date. + :param conditional_parent_label: The conditional_parent_label of this Date. # noqa: E501 :type: str """ @@ -923,20 +1134,22 @@ def conditional_parent_label(self, conditional_parent_label): @property def conditional_parent_label_metadata(self): - """ - Gets the conditional_parent_label_metadata of this Date. + """Gets the conditional_parent_label_metadata of this Date. # noqa: E501 - :return: The conditional_parent_label_metadata of this Date. + Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 + + :return: The conditional_parent_label_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._conditional_parent_label_metadata @conditional_parent_label_metadata.setter def conditional_parent_label_metadata(self, conditional_parent_label_metadata): - """ - Sets the conditional_parent_label_metadata of this Date. + """Sets the conditional_parent_label_metadata of this Date. + + Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 - :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Date. + :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -944,22 +1157,22 @@ def conditional_parent_label_metadata(self, conditional_parent_label_metadata): @property def conditional_parent_value(self): - """ - Gets the conditional_parent_value of this Date. - For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. + """Gets the conditional_parent_value of this Date. # noqa: E501 + + For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. # noqa: E501 - :return: The conditional_parent_value of this Date. + :return: The conditional_parent_value of this Date. # noqa: E501 :rtype: str """ return self._conditional_parent_value @conditional_parent_value.setter def conditional_parent_value(self, conditional_parent_value): - """ - Sets the conditional_parent_value of this Date. - For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. + """Sets the conditional_parent_value of this Date. - :param conditional_parent_value: The conditional_parent_value of this Date. + For conditional fields, this is the value of the parent tab that controls the tab's visibility. If the parent tab is a Checkbox, Radio button, Optional Signature, or Optional Initial use \"on\" as the value to show that the parent tab is active. # noqa: E501 + + :param conditional_parent_value: The conditional_parent_value of this Date. # noqa: E501 :type: str """ @@ -967,20 +1180,22 @@ def conditional_parent_value(self, conditional_parent_value): @property def conditional_parent_value_metadata(self): - """ - Gets the conditional_parent_value_metadata of this Date. + """Gets the conditional_parent_value_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 - :return: The conditional_parent_value_metadata of this Date. + :return: The conditional_parent_value_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._conditional_parent_value_metadata @conditional_parent_value_metadata.setter def conditional_parent_value_metadata(self, conditional_parent_value_metadata): - """ - Sets the conditional_parent_value_metadata of this Date. + """Sets the conditional_parent_value_metadata of this Date. + + Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 - :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Date. + :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -988,22 +1203,22 @@ def conditional_parent_value_metadata(self, conditional_parent_value_metadata): @property def custom_tab_id(self): - """ - Gets the custom_tab_id of this Date. - The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties. + """Gets the custom_tab_id of this Date. # noqa: E501 - :return: The custom_tab_id of this Date. + The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties. # noqa: E501 + + :return: The custom_tab_id of this Date. # noqa: E501 :rtype: str """ return self._custom_tab_id @custom_tab_id.setter def custom_tab_id(self, custom_tab_id): - """ - Sets the custom_tab_id of this Date. - The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties. + """Sets the custom_tab_id of this Date. + + The DocuSign generated custom tab ID for the custom tab to be applied. This can only be used when adding new tabs for a recipient. When used, the new tab inherits all the custom tab properties. # noqa: E501 - :param custom_tab_id: The custom_tab_id of this Date. + :param custom_tab_id: The custom_tab_id of this Date. # noqa: E501 :type: str """ @@ -1011,20 +1226,22 @@ def custom_tab_id(self, custom_tab_id): @property def custom_tab_id_metadata(self): - """ - Gets the custom_tab_id_metadata of this Date. + """Gets the custom_tab_id_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 - :return: The custom_tab_id_metadata of this Date. + :return: The custom_tab_id_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._custom_tab_id_metadata @custom_tab_id_metadata.setter def custom_tab_id_metadata(self, custom_tab_id_metadata): - """ - Sets the custom_tab_id_metadata of this Date. + """Sets the custom_tab_id_metadata of this Date. - :param custom_tab_id_metadata: The custom_tab_id_metadata of this Date. + Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 + + :param custom_tab_id_metadata: The custom_tab_id_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1032,22 +1249,22 @@ def custom_tab_id_metadata(self, custom_tab_id_metadata): @property def disable_auto_size(self): - """ - Gets the disable_auto_size of this Date. - When set to **true**, disables the auto sizing of single line text boxes in the signing screen when the signer enters data. If disabled users will only be able enter as much data as the text box can hold. By default this is false. This property only affects single line text boxes. + """Gets the disable_auto_size of this Date. # noqa: E501 + + When set to **true**, disables the auto sizing of single line text boxes in the signing screen when the signer enters data. If disabled users will only be able enter as much data as the text box can hold. By default this is false. This property only affects single line text boxes. # noqa: E501 - :return: The disable_auto_size of this Date. + :return: The disable_auto_size of this Date. # noqa: E501 :rtype: str """ return self._disable_auto_size @disable_auto_size.setter def disable_auto_size(self, disable_auto_size): - """ - Sets the disable_auto_size of this Date. - When set to **true**, disables the auto sizing of single line text boxes in the signing screen when the signer enters data. If disabled users will only be able enter as much data as the text box can hold. By default this is false. This property only affects single line text boxes. + """Sets the disable_auto_size of this Date. + + When set to **true**, disables the auto sizing of single line text boxes in the signing screen when the signer enters data. If disabled users will only be able enter as much data as the text box can hold. By default this is false. This property only affects single line text boxes. # noqa: E501 - :param disable_auto_size: The disable_auto_size of this Date. + :param disable_auto_size: The disable_auto_size of this Date. # noqa: E501 :type: str """ @@ -1055,20 +1272,22 @@ def disable_auto_size(self, disable_auto_size): @property def disable_auto_size_metadata(self): - """ - Gets the disable_auto_size_metadata of this Date. + """Gets the disable_auto_size_metadata of this Date. # noqa: E501 - :return: The disable_auto_size_metadata of this Date. + Metadata that indicates whether the `disableAutoSize` property is editable. # noqa: E501 + + :return: The disable_auto_size_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._disable_auto_size_metadata @disable_auto_size_metadata.setter def disable_auto_size_metadata(self, disable_auto_size_metadata): - """ - Sets the disable_auto_size_metadata of this Date. + """Sets the disable_auto_size_metadata of this Date. + + Metadata that indicates whether the `disableAutoSize` property is editable. # noqa: E501 - :param disable_auto_size_metadata: The disable_auto_size_metadata of this Date. + :param disable_auto_size_metadata: The disable_auto_size_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1076,22 +1295,22 @@ def disable_auto_size_metadata(self, disable_auto_size_metadata): @property def document_id(self): - """ - Gets the document_id of this Date. - Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. + """Gets the document_id of this Date. # noqa: E501 + + Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 - :return: The document_id of this Date. + :return: The document_id of this Date. # noqa: E501 :rtype: str """ return self._document_id @document_id.setter def document_id(self, document_id): - """ - Sets the document_id of this Date. - Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. + """Sets the document_id of this Date. - :param document_id: The document_id of this Date. + Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 + + :param document_id: The document_id of this Date. # noqa: E501 :type: str """ @@ -1099,20 +1318,22 @@ def document_id(self, document_id): @property def document_id_metadata(self): - """ - Gets the document_id_metadata of this Date. + """Gets the document_id_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `documentId` property is editable. # noqa: E501 - :return: The document_id_metadata of this Date. + :return: The document_id_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._document_id_metadata @document_id_metadata.setter def document_id_metadata(self, document_id_metadata): - """ - Sets the document_id_metadata of this Date. + """Sets the document_id_metadata of this Date. + + Metadata that indicates whether the `documentId` property is editable. # noqa: E501 - :param document_id_metadata: The document_id_metadata of this Date. + :param document_id_metadata: The document_id_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1120,20 +1341,22 @@ def document_id_metadata(self, document_id_metadata): @property def error_details(self): - """ - Gets the error_details of this Date. + """Gets the error_details of this Date. # noqa: E501 - :return: The error_details of this Date. + Array or errors. # noqa: E501 + + :return: The error_details of this Date. # noqa: E501 :rtype: ErrorDetails """ return self._error_details @error_details.setter def error_details(self, error_details): - """ - Sets the error_details of this Date. + """Sets the error_details of this Date. + + Array or errors. # noqa: E501 - :param error_details: The error_details of this Date. + :param error_details: The error_details of this Date. # noqa: E501 :type: ErrorDetails """ @@ -1141,22 +1364,22 @@ def error_details(self, error_details): @property def font(self): - """ - Gets the font of this Date. - The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. + """Gets the font of this Date. # noqa: E501 + + The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 - :return: The font of this Date. + :return: The font of this Date. # noqa: E501 :rtype: str """ return self._font @font.setter def font(self, font): - """ - Sets the font of this Date. - The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. + """Sets the font of this Date. + + The font to be used for the tab value. Supported Fonts: Arial, Arial, ArialNarrow, Calibri, CourierNew, Garamond, Georgia, Helvetica, LucidaConsole, Tahoma, TimesNewRoman, Trebuchet, Verdana, MSGothic, MSMincho, Default. # noqa: E501 - :param font: The font of this Date. + :param font: The font of this Date. # noqa: E501 :type: str """ @@ -1164,22 +1387,22 @@ def font(self, font): @property def font_color(self): - """ - Gets the font_color of this Date. - The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. + """Gets the font_color of this Date. # noqa: E501 - :return: The font_color of this Date. + The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 + + :return: The font_color of this Date. # noqa: E501 :rtype: str """ return self._font_color @font_color.setter def font_color(self, font_color): - """ - Sets the font_color of this Date. - The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. + """Sets the font_color of this Date. + + The font color used for the information in the tab. Possible values are: Black, BrightBlue, BrightRed, DarkGreen, DarkRed, Gold, Green, NavyBlue, Purple, or White. # noqa: E501 - :param font_color: The font_color of this Date. + :param font_color: The font_color of this Date. # noqa: E501 :type: str """ @@ -1187,20 +1410,22 @@ def font_color(self, font_color): @property def font_color_metadata(self): - """ - Gets the font_color_metadata of this Date. + """Gets the font_color_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 - :return: The font_color_metadata of this Date. + :return: The font_color_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._font_color_metadata @font_color_metadata.setter def font_color_metadata(self, font_color_metadata): - """ - Sets the font_color_metadata of this Date. + """Sets the font_color_metadata of this Date. - :param font_color_metadata: The font_color_metadata of this Date. + Metadata that indicates whether the `fontColor` property is editable. # noqa: E501 + + :param font_color_metadata: The font_color_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1208,20 +1433,22 @@ def font_color_metadata(self, font_color_metadata): @property def font_metadata(self): - """ - Gets the font_metadata of this Date. + """Gets the font_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `font` property is editable. # noqa: E501 - :return: The font_metadata of this Date. + :return: The font_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._font_metadata @font_metadata.setter def font_metadata(self, font_metadata): - """ - Sets the font_metadata of this Date. + """Sets the font_metadata of this Date. + + Metadata that indicates whether the `font` property is editable. # noqa: E501 - :param font_metadata: The font_metadata of this Date. + :param font_metadata: The font_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1229,22 +1456,22 @@ def font_metadata(self, font_metadata): @property def font_size(self): - """ - Gets the font_size of this Date. - The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. + """Gets the font_size of this Date. # noqa: E501 - :return: The font_size of this Date. + The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 + + :return: The font_size of this Date. # noqa: E501 :rtype: str """ return self._font_size @font_size.setter def font_size(self, font_size): - """ - Sets the font_size of this Date. - The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. + """Sets the font_size of this Date. + + The font size used for the information in the tab. Possible values are: Size7, Size8, Size9, Size10, Size11, Size12, Size14, Size16, Size18, Size20, Size22, Size24, Size26, Size28, Size36, Size48, or Size72. # noqa: E501 - :param font_size: The font_size of this Date. + :param font_size: The font_size of this Date. # noqa: E501 :type: str """ @@ -1252,20 +1479,22 @@ def font_size(self, font_size): @property def font_size_metadata(self): - """ - Gets the font_size_metadata of this Date. + """Gets the font_size_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 - :return: The font_size_metadata of this Date. + :return: The font_size_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._font_size_metadata @font_size_metadata.setter def font_size_metadata(self, font_size_metadata): - """ - Sets the font_size_metadata of this Date. + """Sets the font_size_metadata of this Date. - :param font_size_metadata: The font_size_metadata of this Date. + Metadata that indicates whether the `fontSize` property is editable. # noqa: E501 + + :param font_size_metadata: The font_size_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1273,22 +1502,22 @@ def font_size_metadata(self, font_size_metadata): @property def form_order(self): - """ - Gets the form_order of this Date. - + """Gets the form_order of this Date. # noqa: E501 + + # noqa: E501 - :return: The form_order of this Date. + :return: The form_order of this Date. # noqa: E501 :rtype: str """ return self._form_order @form_order.setter def form_order(self, form_order): - """ - Sets the form_order of this Date. - + """Sets the form_order of this Date. + + # noqa: E501 - :param form_order: The form_order of this Date. + :param form_order: The form_order of this Date. # noqa: E501 :type: str """ @@ -1296,20 +1525,22 @@ def form_order(self, form_order): @property def form_order_metadata(self): - """ - Gets the form_order_metadata of this Date. + """Gets the form_order_metadata of this Date. # noqa: E501 - :return: The form_order_metadata of this Date. + Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 + + :return: The form_order_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._form_order_metadata @form_order_metadata.setter def form_order_metadata(self, form_order_metadata): - """ - Sets the form_order_metadata of this Date. + """Sets the form_order_metadata of this Date. + + Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 - :param form_order_metadata: The form_order_metadata of this Date. + :param form_order_metadata: The form_order_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1317,22 +1548,22 @@ def form_order_metadata(self, form_order_metadata): @property def form_page_label(self): - """ - Gets the form_page_label of this Date. - + """Gets the form_page_label of this Date. # noqa: E501 + + # noqa: E501 - :return: The form_page_label of this Date. + :return: The form_page_label of this Date. # noqa: E501 :rtype: str """ return self._form_page_label @form_page_label.setter def form_page_label(self, form_page_label): - """ - Sets the form_page_label of this Date. - + """Sets the form_page_label of this Date. - :param form_page_label: The form_page_label of this Date. + # noqa: E501 + + :param form_page_label: The form_page_label of this Date. # noqa: E501 :type: str """ @@ -1340,20 +1571,22 @@ def form_page_label(self, form_page_label): @property def form_page_label_metadata(self): - """ - Gets the form_page_label_metadata of this Date. + """Gets the form_page_label_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 - :return: The form_page_label_metadata of this Date. + :return: The form_page_label_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._form_page_label_metadata @form_page_label_metadata.setter def form_page_label_metadata(self, form_page_label_metadata): - """ - Sets the form_page_label_metadata of this Date. + """Sets the form_page_label_metadata of this Date. + + Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 - :param form_page_label_metadata: The form_page_label_metadata of this Date. + :param form_page_label_metadata: The form_page_label_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1361,22 +1594,22 @@ def form_page_label_metadata(self, form_page_label_metadata): @property def form_page_number(self): - """ - Gets the form_page_number of this Date. - + """Gets the form_page_number of this Date. # noqa: E501 - :return: The form_page_number of this Date. + # noqa: E501 + + :return: The form_page_number of this Date. # noqa: E501 :rtype: str """ return self._form_page_number @form_page_number.setter def form_page_number(self, form_page_number): - """ - Sets the form_page_number of this Date. - + """Sets the form_page_number of this Date. + + # noqa: E501 - :param form_page_number: The form_page_number of this Date. + :param form_page_number: The form_page_number of this Date. # noqa: E501 :type: str """ @@ -1384,20 +1617,22 @@ def form_page_number(self, form_page_number): @property def form_page_number_metadata(self): - """ - Gets the form_page_number_metadata of this Date. + """Gets the form_page_number_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 - :return: The form_page_number_metadata of this Date. + :return: The form_page_number_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._form_page_number_metadata @form_page_number_metadata.setter def form_page_number_metadata(self, form_page_number_metadata): - """ - Sets the form_page_number_metadata of this Date. + """Sets the form_page_number_metadata of this Date. - :param form_page_number_metadata: The form_page_number_metadata of this Date. + Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 + + :param form_page_number_metadata: The form_page_number_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1405,22 +1640,22 @@ def form_page_number_metadata(self, form_page_number_metadata): @property def height(self): - """ - Gets the height of this Date. - Height of the tab in pixels. + """Gets the height of this Date. # noqa: E501 - :return: The height of this Date. + Height of the tab in pixels. # noqa: E501 + + :return: The height of this Date. # noqa: E501 :rtype: str """ return self._height @height.setter def height(self, height): - """ - Sets the height of this Date. - Height of the tab in pixels. + """Sets the height of this Date. + + Height of the tab in pixels. # noqa: E501 - :param height: The height of this Date. + :param height: The height of this Date. # noqa: E501 :type: str """ @@ -1428,20 +1663,22 @@ def height(self, height): @property def height_metadata(self): - """ - Gets the height_metadata of this Date. + """Gets the height_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `height` property is editable. # noqa: E501 - :return: The height_metadata of this Date. + :return: The height_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._height_metadata @height_metadata.setter def height_metadata(self, height_metadata): - """ - Sets the height_metadata of this Date. + """Sets the height_metadata of this Date. - :param height_metadata: The height_metadata of this Date. + Metadata that indicates whether the `height` property is editable. # noqa: E501 + + :param height_metadata: The height_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1449,22 +1686,22 @@ def height_metadata(self, height_metadata): @property def italic(self): - """ - Gets the italic of this Date. - When set to **true**, the information in the tab is italic. + """Gets the italic of this Date. # noqa: E501 + + When set to **true**, the information in the tab is italic. # noqa: E501 - :return: The italic of this Date. + :return: The italic of this Date. # noqa: E501 :rtype: str """ return self._italic @italic.setter def italic(self, italic): - """ - Sets the italic of this Date. - When set to **true**, the information in the tab is italic. + """Sets the italic of this Date. + + When set to **true**, the information in the tab is italic. # noqa: E501 - :param italic: The italic of this Date. + :param italic: The italic of this Date. # noqa: E501 :type: str """ @@ -1472,20 +1709,22 @@ def italic(self, italic): @property def italic_metadata(self): - """ - Gets the italic_metadata of this Date. + """Gets the italic_metadata of this Date. # noqa: E501 - :return: The italic_metadata of this Date. + Metadata that indicates whether the `italic` property is editable. # noqa: E501 + + :return: The italic_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._italic_metadata @italic_metadata.setter def italic_metadata(self, italic_metadata): - """ - Sets the italic_metadata of this Date. + """Sets the italic_metadata of this Date. + + Metadata that indicates whether the `italic` property is editable. # noqa: E501 - :param italic_metadata: The italic_metadata of this Date. + :param italic_metadata: The italic_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1493,20 +1732,22 @@ def italic_metadata(self, italic_metadata): @property def locale_policy(self): - """ - Gets the locale_policy of this Date. + """Gets the locale_policy of this Date. # noqa: E501 + + Reserved for DocuSign. # noqa: E501 - :return: The locale_policy of this Date. + :return: The locale_policy of this Date. # noqa: E501 :rtype: LocalePolicyTab """ return self._locale_policy @locale_policy.setter def locale_policy(self, locale_policy): - """ - Sets the locale_policy of this Date. + """Sets the locale_policy of this Date. - :param locale_policy: The locale_policy of this Date. + Reserved for DocuSign. # noqa: E501 + + :param locale_policy: The locale_policy of this Date. # noqa: E501 :type: LocalePolicyTab """ @@ -1514,22 +1755,22 @@ def locale_policy(self, locale_policy): @property def locked(self): - """ - Gets the locked of this Date. - When set to **true**, the signer cannot change the data of the custom tab. + """Gets the locked of this Date. # noqa: E501 + + When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 - :return: The locked of this Date. + :return: The locked of this Date. # noqa: E501 :rtype: str """ return self._locked @locked.setter def locked(self, locked): - """ - Sets the locked of this Date. - When set to **true**, the signer cannot change the data of the custom tab. + """Sets the locked of this Date. + + When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 - :param locked: The locked of this Date. + :param locked: The locked of this Date. # noqa: E501 :type: str """ @@ -1537,20 +1778,22 @@ def locked(self, locked): @property def locked_metadata(self): - """ - Gets the locked_metadata of this Date. + """Gets the locked_metadata of this Date. # noqa: E501 - :return: The locked_metadata of this Date. + Metadata that indicates whether the `locked` property is editable. # noqa: E501 + + :return: The locked_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._locked_metadata @locked_metadata.setter def locked_metadata(self, locked_metadata): - """ - Sets the locked_metadata of this Date. + """Sets the locked_metadata of this Date. + + Metadata that indicates whether the `locked` property is editable. # noqa: E501 - :param locked_metadata: The locked_metadata of this Date. + :param locked_metadata: The locked_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1558,22 +1801,22 @@ def locked_metadata(self, locked_metadata): @property def max_length(self): - """ - Gets the max_length of this Date. - An optional value that describes the maximum length of the property when the property is a string. + """Gets the max_length of this Date. # noqa: E501 + + An optional value that describes the maximum length of the property when the property is a string. # noqa: E501 - :return: The max_length of this Date. + :return: The max_length of this Date. # noqa: E501 :rtype: str """ return self._max_length @max_length.setter def max_length(self, max_length): - """ - Sets the max_length of this Date. - An optional value that describes the maximum length of the property when the property is a string. + """Sets the max_length of this Date. - :param max_length: The max_length of this Date. + An optional value that describes the maximum length of the property when the property is a string. # noqa: E501 + + :param max_length: The max_length of this Date. # noqa: E501 :type: str """ @@ -1581,20 +1824,22 @@ def max_length(self, max_length): @property def max_length_metadata(self): - """ - Gets the max_length_metadata of this Date. + """Gets the max_length_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `maxLength` property is editable. # noqa: E501 - :return: The max_length_metadata of this Date. + :return: The max_length_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._max_length_metadata @max_length_metadata.setter def max_length_metadata(self, max_length_metadata): - """ - Sets the max_length_metadata of this Date. + """Sets the max_length_metadata of this Date. + + Metadata that indicates whether the `maxLength` property is editable. # noqa: E501 - :param max_length_metadata: The max_length_metadata of this Date. + :param max_length_metadata: The max_length_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1602,20 +1847,22 @@ def max_length_metadata(self, max_length_metadata): @property def merge_field(self): - """ - Gets the merge_field of this Date. + """Gets the merge_field of this Date. # noqa: E501 - :return: The merge_field of this Date. + Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 + + :return: The merge_field of this Date. # noqa: E501 :rtype: MergeField """ return self._merge_field @merge_field.setter def merge_field(self, merge_field): - """ - Sets the merge_field of this Date. + """Sets the merge_field of this Date. + + Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 - :param merge_field: The merge_field of this Date. + :param merge_field: The merge_field of this Date. # noqa: E501 :type: MergeField """ @@ -1623,22 +1870,22 @@ def merge_field(self, merge_field): @property def merge_field_xml(self): - """ - Gets the merge_field_xml of this Date. - + """Gets the merge_field_xml of this Date. # noqa: E501 + + # noqa: E501 - :return: The merge_field_xml of this Date. + :return: The merge_field_xml of this Date. # noqa: E501 :rtype: str """ return self._merge_field_xml @merge_field_xml.setter def merge_field_xml(self, merge_field_xml): - """ - Sets the merge_field_xml of this Date. - + """Sets the merge_field_xml of this Date. - :param merge_field_xml: The merge_field_xml of this Date. + # noqa: E501 + + :param merge_field_xml: The merge_field_xml of this Date. # noqa: E501 :type: str """ @@ -1646,22 +1893,22 @@ def merge_field_xml(self, merge_field_xml): @property def name(self): - """ - Gets the name of this Date. - + """Gets the name of this Date. # noqa: E501 + + # noqa: E501 - :return: The name of this Date. + :return: The name of this Date. # noqa: E501 :rtype: str """ return self._name @name.setter def name(self, name): - """ - Sets the name of this Date. - + """Sets the name of this Date. + + # noqa: E501 - :param name: The name of this Date. + :param name: The name of this Date. # noqa: E501 :type: str """ @@ -1669,20 +1916,22 @@ def name(self, name): @property def name_metadata(self): - """ - Gets the name_metadata of this Date. + """Gets the name_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `name` property is editable. This property is read-only. # noqa: E501 - :return: The name_metadata of this Date. + :return: The name_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._name_metadata @name_metadata.setter def name_metadata(self, name_metadata): - """ - Sets the name_metadata of this Date. + """Sets the name_metadata of this Date. + + Metadata that indicates whether the `name` property is editable. This property is read-only. # noqa: E501 - :param name_metadata: The name_metadata of this Date. + :param name_metadata: The name_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1690,22 +1939,22 @@ def name_metadata(self, name_metadata): @property def original_value(self): - """ - Gets the original_value of this Date. - The initial value of the tab when it was sent to the recipient. + """Gets the original_value of this Date. # noqa: E501 + + The initial value of the tab when it was sent to the recipient. # noqa: E501 - :return: The original_value of this Date. + :return: The original_value of this Date. # noqa: E501 :rtype: str """ return self._original_value @original_value.setter def original_value(self, original_value): - """ - Sets the original_value of this Date. - The initial value of the tab when it was sent to the recipient. + """Sets the original_value of this Date. + + The initial value of the tab when it was sent to the recipient. # noqa: E501 - :param original_value: The original_value of this Date. + :param original_value: The original_value of this Date. # noqa: E501 :type: str """ @@ -1713,20 +1962,22 @@ def original_value(self, original_value): @property def original_value_metadata(self): - """ - Gets the original_value_metadata of this Date. + """Gets the original_value_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `originalValue` property is editable. # noqa: E501 - :return: The original_value_metadata of this Date. + :return: The original_value_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._original_value_metadata @original_value_metadata.setter def original_value_metadata(self, original_value_metadata): - """ - Sets the original_value_metadata of this Date. + """Sets the original_value_metadata of this Date. + + Metadata that indicates whether the `originalValue` property is editable. # noqa: E501 - :param original_value_metadata: The original_value_metadata of this Date. + :param original_value_metadata: The original_value_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1734,22 +1985,22 @@ def original_value_metadata(self, original_value_metadata): @property def page_number(self): - """ - Gets the page_number of this Date. - Specifies the page number on which the tab is located. + """Gets the page_number of this Date. # noqa: E501 + + Specifies the page number on which the tab is located. # noqa: E501 - :return: The page_number of this Date. + :return: The page_number of this Date. # noqa: E501 :rtype: str """ return self._page_number @page_number.setter def page_number(self, page_number): - """ - Sets the page_number of this Date. - Specifies the page number on which the tab is located. + """Sets the page_number of this Date. + + Specifies the page number on which the tab is located. # noqa: E501 - :param page_number: The page_number of this Date. + :param page_number: The page_number of this Date. # noqa: E501 :type: str """ @@ -1757,20 +2008,22 @@ def page_number(self, page_number): @property def page_number_metadata(self): - """ - Gets the page_number_metadata of this Date. + """Gets the page_number_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 - :return: The page_number_metadata of this Date. + :return: The page_number_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._page_number_metadata @page_number_metadata.setter def page_number_metadata(self, page_number_metadata): - """ - Sets the page_number_metadata of this Date. + """Sets the page_number_metadata of this Date. + + Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 - :param page_number_metadata: The page_number_metadata of this Date. + :param page_number_metadata: The page_number_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1778,22 +2031,22 @@ def page_number_metadata(self, page_number_metadata): @property def recipient_id(self): - """ - Gets the recipient_id of this Date. - Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. + """Gets the recipient_id of this Date. # noqa: E501 + + Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 - :return: The recipient_id of this Date. + :return: The recipient_id of this Date. # noqa: E501 :rtype: str """ return self._recipient_id @recipient_id.setter def recipient_id(self, recipient_id): - """ - Sets the recipient_id of this Date. - Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. + """Sets the recipient_id of this Date. + + Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 - :param recipient_id: The recipient_id of this Date. + :param recipient_id: The recipient_id of this Date. # noqa: E501 :type: str """ @@ -1801,22 +2054,22 @@ def recipient_id(self, recipient_id): @property def recipient_id_guid(self): - """ - Gets the recipient_id_guid of this Date. - + """Gets the recipient_id_guid of this Date. # noqa: E501 + + # noqa: E501 - :return: The recipient_id_guid of this Date. + :return: The recipient_id_guid of this Date. # noqa: E501 :rtype: str """ return self._recipient_id_guid @recipient_id_guid.setter def recipient_id_guid(self, recipient_id_guid): - """ - Sets the recipient_id_guid of this Date. - + """Sets the recipient_id_guid of this Date. + + # noqa: E501 - :param recipient_id_guid: The recipient_id_guid of this Date. + :param recipient_id_guid: The recipient_id_guid of this Date. # noqa: E501 :type: str """ @@ -1824,20 +2077,22 @@ def recipient_id_guid(self, recipient_id_guid): @property def recipient_id_guid_metadata(self): - """ - Gets the recipient_id_guid_metadata of this Date. + """Gets the recipient_id_guid_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 - :return: The recipient_id_guid_metadata of this Date. + :return: The recipient_id_guid_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._recipient_id_guid_metadata @recipient_id_guid_metadata.setter def recipient_id_guid_metadata(self, recipient_id_guid_metadata): - """ - Sets the recipient_id_guid_metadata of this Date. + """Sets the recipient_id_guid_metadata of this Date. + + Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 - :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Date. + :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1845,20 +2100,22 @@ def recipient_id_guid_metadata(self, recipient_id_guid_metadata): @property def recipient_id_metadata(self): - """ - Gets the recipient_id_metadata of this Date. + """Gets the recipient_id_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 - :return: The recipient_id_metadata of this Date. + :return: The recipient_id_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._recipient_id_metadata @recipient_id_metadata.setter def recipient_id_metadata(self, recipient_id_metadata): - """ - Sets the recipient_id_metadata of this Date. + """Sets the recipient_id_metadata of this Date. + + Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 - :param recipient_id_metadata: The recipient_id_metadata of this Date. + :param recipient_id_metadata: The recipient_id_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1866,22 +2123,22 @@ def recipient_id_metadata(self, recipient_id_metadata): @property def require_all(self): - """ - Gets the require_all of this Date. - When set to **true** and shared is true, information must be entered in this field to complete the envelope. + """Gets the require_all of this Date. # noqa: E501 + + When set to **true** and shared is true, information must be entered in this field to complete the envelope. # noqa: E501 - :return: The require_all of this Date. + :return: The require_all of this Date. # noqa: E501 :rtype: str """ return self._require_all @require_all.setter def require_all(self, require_all): - """ - Sets the require_all of this Date. - When set to **true** and shared is true, information must be entered in this field to complete the envelope. + """Sets the require_all of this Date. + + When set to **true** and shared is true, information must be entered in this field to complete the envelope. # noqa: E501 - :param require_all: The require_all of this Date. + :param require_all: The require_all of this Date. # noqa: E501 :type: str """ @@ -1889,20 +2146,22 @@ def require_all(self, require_all): @property def require_all_metadata(self): - """ - Gets the require_all_metadata of this Date. + """Gets the require_all_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `requireAll` property is editable. # noqa: E501 - :return: The require_all_metadata of this Date. + :return: The require_all_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._require_all_metadata @require_all_metadata.setter def require_all_metadata(self, require_all_metadata): - """ - Sets the require_all_metadata of this Date. + """Sets the require_all_metadata of this Date. + + Metadata that indicates whether the `requireAll` property is editable. # noqa: E501 - :param require_all_metadata: The require_all_metadata of this Date. + :param require_all_metadata: The require_all_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1910,22 +2169,22 @@ def require_all_metadata(self, require_all_metadata): @property def required(self): - """ - Gets the required of this Date. - When set to **true**, the signer is required to fill out this tab + """Gets the required of this Date. # noqa: E501 + + When set to **true**, the signer is required to fill out this tab # noqa: E501 - :return: The required of this Date. + :return: The required of this Date. # noqa: E501 :rtype: str """ return self._required @required.setter def required(self, required): - """ - Sets the required of this Date. - When set to **true**, the signer is required to fill out this tab + """Sets the required of this Date. + + When set to **true**, the signer is required to fill out this tab # noqa: E501 - :param required: The required of this Date. + :param required: The required of this Date. # noqa: E501 :type: str """ @@ -1933,20 +2192,22 @@ def required(self, required): @property def required_metadata(self): - """ - Gets the required_metadata of this Date. + """Gets the required_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `required` property is editable. # noqa: E501 - :return: The required_metadata of this Date. + :return: The required_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._required_metadata @required_metadata.setter def required_metadata(self, required_metadata): - """ - Sets the required_metadata of this Date. + """Sets the required_metadata of this Date. + + Metadata that indicates whether the `required` property is editable. # noqa: E501 - :param required_metadata: The required_metadata of this Date. + :param required_metadata: The required_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1954,22 +2215,22 @@ def required_metadata(self, required_metadata): @property def require_initial_on_shared_change(self): - """ - Gets the require_initial_on_shared_change of this Date. - Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field. + """Gets the require_initial_on_shared_change of this Date. # noqa: E501 + + Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field. # noqa: E501 - :return: The require_initial_on_shared_change of this Date. + :return: The require_initial_on_shared_change of this Date. # noqa: E501 :rtype: str """ return self._require_initial_on_shared_change @require_initial_on_shared_change.setter def require_initial_on_shared_change(self, require_initial_on_shared_change): - """ - Sets the require_initial_on_shared_change of this Date. - Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field. + """Sets the require_initial_on_shared_change of this Date. + + Optional element for field markup. When set to **true**, the signer is required to initial when they modify a shared field. # noqa: E501 - :param require_initial_on_shared_change: The require_initial_on_shared_change of this Date. + :param require_initial_on_shared_change: The require_initial_on_shared_change of this Date. # noqa: E501 :type: str """ @@ -1977,20 +2238,22 @@ def require_initial_on_shared_change(self, require_initial_on_shared_change): @property def require_initial_on_shared_change_metadata(self): - """ - Gets the require_initial_on_shared_change_metadata of this Date. + """Gets the require_initial_on_shared_change_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `requireInitialOnSharedChange` property is editable. # noqa: E501 - :return: The require_initial_on_shared_change_metadata of this Date. + :return: The require_initial_on_shared_change_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._require_initial_on_shared_change_metadata @require_initial_on_shared_change_metadata.setter def require_initial_on_shared_change_metadata(self, require_initial_on_shared_change_metadata): - """ - Sets the require_initial_on_shared_change_metadata of this Date. + """Sets the require_initial_on_shared_change_metadata of this Date. + + Metadata that indicates whether the `requireInitialOnSharedChange` property is editable. # noqa: E501 - :param require_initial_on_shared_change_metadata: The require_initial_on_shared_change_metadata of this Date. + :param require_initial_on_shared_change_metadata: The require_initial_on_shared_change_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -1998,22 +2261,22 @@ def require_initial_on_shared_change_metadata(self, require_initial_on_shared_ch @property def sender_required(self): - """ - Gets the sender_required of this Date. - When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope. + """Gets the sender_required of this Date. # noqa: E501 + + When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope. # noqa: E501 - :return: The sender_required of this Date. + :return: The sender_required of this Date. # noqa: E501 :rtype: str """ return self._sender_required @sender_required.setter def sender_required(self, sender_required): - """ - Sets the sender_required of this Date. - When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope. + """Sets the sender_required of this Date. + + When set to **true**, the sender must populate the tab before an envelope can be sent using the template. This value tab can only be changed by modifying (PUT) the template. Tabs with a `senderRequired` value of true cannot be deleted from an envelope. # noqa: E501 - :param sender_required: The sender_required of this Date. + :param sender_required: The sender_required of this Date. # noqa: E501 :type: str """ @@ -2021,20 +2284,22 @@ def sender_required(self, sender_required): @property def sender_required_metadata(self): - """ - Gets the sender_required_metadata of this Date. + """Gets the sender_required_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `senderRequired` property is editable. # noqa: E501 - :return: The sender_required_metadata of this Date. + :return: The sender_required_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._sender_required_metadata @sender_required_metadata.setter def sender_required_metadata(self, sender_required_metadata): - """ - Sets the sender_required_metadata of this Date. + """Sets the sender_required_metadata of this Date. + + Metadata that indicates whether the `senderRequired` property is editable. # noqa: E501 - :param sender_required_metadata: The sender_required_metadata of this Date. + :param sender_required_metadata: The sender_required_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2042,22 +2307,22 @@ def sender_required_metadata(self, sender_required_metadata): @property def shared(self): - """ - Gets the shared of this Date. - When set to **true**, this custom tab is shared. + """Gets the shared of this Date. # noqa: E501 + + When set to **true**, this custom tab is shared. # noqa: E501 - :return: The shared of this Date. + :return: The shared of this Date. # noqa: E501 :rtype: str """ return self._shared @shared.setter def shared(self, shared): - """ - Sets the shared of this Date. - When set to **true**, this custom tab is shared. + """Sets the shared of this Date. + + When set to **true**, this custom tab is shared. # noqa: E501 - :param shared: The shared of this Date. + :param shared: The shared of this Date. # noqa: E501 :type: str """ @@ -2065,64 +2330,137 @@ def shared(self, shared): @property def shared_metadata(self): - """ - Gets the shared_metadata of this Date. + """Gets the shared_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `shared` property is editable. # noqa: E501 - :return: The shared_metadata of this Date. + :return: The shared_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._shared_metadata @shared_metadata.setter def shared_metadata(self, shared_metadata): - """ - Sets the shared_metadata of this Date. + """Sets the shared_metadata of this Date. + + Metadata that indicates whether the `shared` property is editable. # noqa: E501 - :param shared_metadata: The shared_metadata of this Date. + :param shared_metadata: The shared_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ self._shared_metadata = shared_metadata @property - def smart_contract_information(self): + def share_to_recipients(self): + """Gets the share_to_recipients of this Date. # noqa: E501 + + # noqa: E501 + + :return: The share_to_recipients of this Date. # noqa: E501 + :rtype: str + """ + return self._share_to_recipients + + @share_to_recipients.setter + def share_to_recipients(self, share_to_recipients): + """Sets the share_to_recipients of this Date. + + # noqa: E501 + + :param share_to_recipients: The share_to_recipients of this Date. # noqa: E501 + :type: str + """ + + self._share_to_recipients = share_to_recipients + + @property + def share_to_recipients_metadata(self): + """Gets the share_to_recipients_metadata of this Date. # noqa: E501 + + Reserved for DocuSign. # noqa: E501 + + :return: The share_to_recipients_metadata of this Date. # noqa: E501 + :rtype: PropertyMetadata + """ + return self._share_to_recipients_metadata + + @share_to_recipients_metadata.setter + def share_to_recipients_metadata(self, share_to_recipients_metadata): + """Sets the share_to_recipients_metadata of this Date. + + Reserved for DocuSign. # noqa: E501 + + :param share_to_recipients_metadata: The share_to_recipients_metadata of this Date. # noqa: E501 + :type: PropertyMetadata """ - Gets the smart_contract_information of this Date. - :return: The smart_contract_information of this Date. + self._share_to_recipients_metadata = share_to_recipients_metadata + + @property + def smart_contract_information(self): + """Gets the smart_contract_information of this Date. # noqa: E501 + + Reserved for DocuSign. # noqa: E501 + + :return: The smart_contract_information of this Date. # noqa: E501 :rtype: SmartContractInformation """ return self._smart_contract_information @smart_contract_information.setter def smart_contract_information(self, smart_contract_information): - """ - Sets the smart_contract_information of this Date. + """Sets the smart_contract_information of this Date. + + Reserved for DocuSign. # noqa: E501 - :param smart_contract_information: The smart_contract_information of this Date. + :param smart_contract_information: The smart_contract_information of this Date. # noqa: E501 :type: SmartContractInformation """ self._smart_contract_information = smart_contract_information @property - def status(self): + def source(self): + """Gets the source of this Date. # noqa: E501 + + # noqa: E501 + + :return: The source of this Date. # noqa: E501 + :rtype: str + """ + return self._source + + @source.setter + def source(self, source): + """Sets the source of this Date. + + # noqa: E501 + + :param source: The source of this Date. # noqa: E501 + :type: str """ - Gets the status of this Date. - Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. - :return: The status of this Date. + self._source = source + + @property + def status(self): + """Gets the status of this Date. # noqa: E501 + + Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. # noqa: E501 + + :return: The status of this Date. # noqa: E501 :rtype: str """ return self._status @status.setter def status(self, status): - """ - Sets the status of this Date. - Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. + """Sets the status of this Date. + + Indicates the envelope status. Valid values are: * sent - The envelope is sent to the recipients. * created - The envelope is saved as a draft and can be modified and sent later. # noqa: E501 - :param status: The status of this Date. + :param status: The status of this Date. # noqa: E501 :type: str """ @@ -2130,20 +2468,22 @@ def status(self, status): @property def status_metadata(self): - """ - Gets the status_metadata of this Date. + """Gets the status_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `status` property is editable. # noqa: E501 - :return: The status_metadata of this Date. + :return: The status_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._status_metadata @status_metadata.setter def status_metadata(self, status_metadata): - """ - Sets the status_metadata of this Date. + """Sets the status_metadata of this Date. + + Metadata that indicates whether the `status` property is editable. # noqa: E501 - :param status_metadata: The status_metadata of this Date. + :param status_metadata: The status_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2151,22 +2491,22 @@ def status_metadata(self, status_metadata): @property def tab_group_labels(self): - """ - Gets the tab_group_labels of this Date. - + """Gets the tab_group_labels of this Date. # noqa: E501 + + # noqa: E501 - :return: The tab_group_labels of this Date. + :return: The tab_group_labels of this Date. # noqa: E501 :rtype: list[str] """ return self._tab_group_labels @tab_group_labels.setter def tab_group_labels(self, tab_group_labels): - """ - Sets the tab_group_labels of this Date. - + """Sets the tab_group_labels of this Date. + + # noqa: E501 - :param tab_group_labels: The tab_group_labels of this Date. + :param tab_group_labels: The tab_group_labels of this Date. # noqa: E501 :type: list[str] """ @@ -2174,20 +2514,22 @@ def tab_group_labels(self, tab_group_labels): @property def tab_group_labels_metadata(self): - """ - Gets the tab_group_labels_metadata of this Date. + """Gets the tab_group_labels_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 - :return: The tab_group_labels_metadata of this Date. + :return: The tab_group_labels_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tab_group_labels_metadata @tab_group_labels_metadata.setter def tab_group_labels_metadata(self, tab_group_labels_metadata): - """ - Sets the tab_group_labels_metadata of this Date. + """Sets the tab_group_labels_metadata of this Date. + + Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 - :param tab_group_labels_metadata: The tab_group_labels_metadata of this Date. + :param tab_group_labels_metadata: The tab_group_labels_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2195,22 +2537,22 @@ def tab_group_labels_metadata(self, tab_group_labels_metadata): @property def tab_id(self): - """ - Gets the tab_id of this Date. - The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. + """Gets the tab_id of this Date. # noqa: E501 + + The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 - :return: The tab_id of this Date. + :return: The tab_id of this Date. # noqa: E501 :rtype: str """ return self._tab_id @tab_id.setter def tab_id(self, tab_id): - """ - Sets the tab_id of this Date. - The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. + """Sets the tab_id of this Date. + + The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 - :param tab_id: The tab_id of this Date. + :param tab_id: The tab_id of this Date. # noqa: E501 :type: str """ @@ -2218,20 +2560,22 @@ def tab_id(self, tab_id): @property def tab_id_metadata(self): - """ - Gets the tab_id_metadata of this Date. + """Gets the tab_id_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `tabId` property is editable. # noqa: E501 - :return: The tab_id_metadata of this Date. + :return: The tab_id_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tab_id_metadata @tab_id_metadata.setter def tab_id_metadata(self, tab_id_metadata): - """ - Sets the tab_id_metadata of this Date. + """Sets the tab_id_metadata of this Date. + + Metadata that indicates whether the `tabId` property is editable. # noqa: E501 - :param tab_id_metadata: The tab_id_metadata of this Date. + :param tab_id_metadata: The tab_id_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2239,22 +2583,22 @@ def tab_id_metadata(self, tab_id_metadata): @property def tab_label(self): - """ - Gets the tab_label of this Date. - The label string associated with the tab. + """Gets the tab_label of this Date. # noqa: E501 + + The label string associated with the tab. # noqa: E501 - :return: The tab_label of this Date. + :return: The tab_label of this Date. # noqa: E501 :rtype: str """ return self._tab_label @tab_label.setter def tab_label(self, tab_label): - """ - Sets the tab_label of this Date. - The label string associated with the tab. + """Sets the tab_label of this Date. + + The label string associated with the tab. # noqa: E501 - :param tab_label: The tab_label of this Date. + :param tab_label: The tab_label of this Date. # noqa: E501 :type: str """ @@ -2262,20 +2606,22 @@ def tab_label(self, tab_label): @property def tab_label_metadata(self): - """ - Gets the tab_label_metadata of this Date. + """Gets the tab_label_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `tabLabel` property is editable. # noqa: E501 - :return: The tab_label_metadata of this Date. + :return: The tab_label_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tab_label_metadata @tab_label_metadata.setter def tab_label_metadata(self, tab_label_metadata): - """ - Sets the tab_label_metadata of this Date. + """Sets the tab_label_metadata of this Date. + + Metadata that indicates whether the `tabLabel` property is editable. # noqa: E501 - :param tab_label_metadata: The tab_label_metadata of this Date. + :param tab_label_metadata: The tab_label_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2283,22 +2629,22 @@ def tab_label_metadata(self, tab_label_metadata): @property def tab_order(self): - """ - Gets the tab_order of this Date. - + """Gets the tab_order of this Date. # noqa: E501 + + # noqa: E501 - :return: The tab_order of this Date. + :return: The tab_order of this Date. # noqa: E501 :rtype: str """ return self._tab_order @tab_order.setter def tab_order(self, tab_order): - """ - Sets the tab_order of this Date. - + """Sets the tab_order of this Date. + + # noqa: E501 - :param tab_order: The tab_order of this Date. + :param tab_order: The tab_order of this Date. # noqa: E501 :type: str """ @@ -2306,20 +2652,22 @@ def tab_order(self, tab_order): @property def tab_order_metadata(self): - """ - Gets the tab_order_metadata of this Date. + """Gets the tab_order_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 - :return: The tab_order_metadata of this Date. + :return: The tab_order_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tab_order_metadata @tab_order_metadata.setter def tab_order_metadata(self, tab_order_metadata): - """ - Sets the tab_order_metadata of this Date. + """Sets the tab_order_metadata of this Date. + + Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 - :param tab_order_metadata: The tab_order_metadata of this Date. + :param tab_order_metadata: The tab_order_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2327,22 +2675,22 @@ def tab_order_metadata(self, tab_order_metadata): @property def tab_type(self): - """ - Gets the tab_type of this Date. - + """Gets the tab_type of this Date. # noqa: E501 + + # noqa: E501 - :return: The tab_type of this Date. + :return: The tab_type of this Date. # noqa: E501 :rtype: str """ return self._tab_type @tab_type.setter def tab_type(self, tab_type): - """ - Sets the tab_type of this Date. - + """Sets the tab_type of this Date. + + # noqa: E501 - :param tab_type: The tab_type of this Date. + :param tab_type: The tab_type of this Date. # noqa: E501 :type: str """ @@ -2350,20 +2698,22 @@ def tab_type(self, tab_type): @property def tab_type_metadata(self): - """ - Gets the tab_type_metadata of this Date. + """Gets the tab_type_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `tabType` property is editable. # noqa: E501 - :return: The tab_type_metadata of this Date. + :return: The tab_type_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tab_type_metadata @tab_type_metadata.setter def tab_type_metadata(self, tab_type_metadata): - """ - Sets the tab_type_metadata of this Date. + """Sets the tab_type_metadata of this Date. + + Metadata that indicates whether the `tabType` property is editable. # noqa: E501 - :param tab_type_metadata: The tab_type_metadata of this Date. + :param tab_type_metadata: The tab_type_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2371,22 +2721,22 @@ def tab_type_metadata(self, tab_type_metadata): @property def template_locked(self): - """ - Gets the template_locked of this Date. - When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. + """Gets the template_locked of this Date. # noqa: E501 + + When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 - :return: The template_locked of this Date. + :return: The template_locked of this Date. # noqa: E501 :rtype: str """ return self._template_locked @template_locked.setter def template_locked(self, template_locked): - """ - Sets the template_locked of this Date. - When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. + """Sets the template_locked of this Date. + + When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 - :param template_locked: The template_locked of this Date. + :param template_locked: The template_locked of this Date. # noqa: E501 :type: str """ @@ -2394,20 +2744,22 @@ def template_locked(self, template_locked): @property def template_locked_metadata(self): - """ - Gets the template_locked_metadata of this Date. + """Gets the template_locked_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 - :return: The template_locked_metadata of this Date. + :return: The template_locked_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._template_locked_metadata @template_locked_metadata.setter def template_locked_metadata(self, template_locked_metadata): - """ - Sets the template_locked_metadata of this Date. + """Sets the template_locked_metadata of this Date. + + Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 - :param template_locked_metadata: The template_locked_metadata of this Date. + :param template_locked_metadata: The template_locked_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2415,22 +2767,22 @@ def template_locked_metadata(self, template_locked_metadata): @property def template_required(self): - """ - Gets the template_required of this Date. - When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. + """Gets the template_required of this Date. # noqa: E501 + + When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 - :return: The template_required of this Date. + :return: The template_required of this Date. # noqa: E501 :rtype: str """ return self._template_required @template_required.setter def template_required(self, template_required): - """ - Sets the template_required of this Date. - When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. + """Sets the template_required of this Date. + + When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 - :param template_required: The template_required of this Date. + :param template_required: The template_required of this Date. # noqa: E501 :type: str """ @@ -2438,20 +2790,22 @@ def template_required(self, template_required): @property def template_required_metadata(self): - """ - Gets the template_required_metadata of this Date. + """Gets the template_required_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 - :return: The template_required_metadata of this Date. + :return: The template_required_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._template_required_metadata @template_required_metadata.setter def template_required_metadata(self, template_required_metadata): - """ - Sets the template_required_metadata of this Date. + """Sets the template_required_metadata of this Date. + + Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 - :param template_required_metadata: The template_required_metadata of this Date. + :param template_required_metadata: The template_required_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2459,22 +2813,22 @@ def template_required_metadata(self, template_required_metadata): @property def tooltip(self): - """ - Gets the tooltip of this Date. - + """Gets the tooltip of this Date. # noqa: E501 + + # noqa: E501 - :return: The tooltip of this Date. + :return: The tooltip of this Date. # noqa: E501 :rtype: str """ return self._tooltip @tooltip.setter def tooltip(self, tooltip): - """ - Sets the tooltip of this Date. - + """Sets the tooltip of this Date. + + # noqa: E501 - :param tooltip: The tooltip of this Date. + :param tooltip: The tooltip of this Date. # noqa: E501 :type: str """ @@ -2482,20 +2836,22 @@ def tooltip(self, tooltip): @property def tool_tip_metadata(self): - """ - Gets the tool_tip_metadata of this Date. + """Gets the tool_tip_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 - :return: The tool_tip_metadata of this Date. + :return: The tool_tip_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._tool_tip_metadata @tool_tip_metadata.setter def tool_tip_metadata(self, tool_tip_metadata): - """ - Sets the tool_tip_metadata of this Date. + """Sets the tool_tip_metadata of this Date. + + Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 - :param tool_tip_metadata: The tool_tip_metadata of this Date. + :param tool_tip_metadata: The tool_tip_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2503,22 +2859,22 @@ def tool_tip_metadata(self, tool_tip_metadata): @property def underline(self): - """ - Gets the underline of this Date. - When set to **true**, the information in the tab is underlined. + """Gets the underline of this Date. # noqa: E501 + + When set to **true**, the information in the tab is underlined. # noqa: E501 - :return: The underline of this Date. + :return: The underline of this Date. # noqa: E501 :rtype: str """ return self._underline @underline.setter def underline(self, underline): - """ - Sets the underline of this Date. - When set to **true**, the information in the tab is underlined. + """Sets the underline of this Date. + + When set to **true**, the information in the tab is underlined. # noqa: E501 - :param underline: The underline of this Date. + :param underline: The underline of this Date. # noqa: E501 :type: str """ @@ -2526,20 +2882,22 @@ def underline(self, underline): @property def underline_metadata(self): - """ - Gets the underline_metadata of this Date. + """Gets the underline_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `underline` property is editable. # noqa: E501 - :return: The underline_metadata of this Date. + :return: The underline_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._underline_metadata @underline_metadata.setter def underline_metadata(self, underline_metadata): - """ - Sets the underline_metadata of this Date. + """Sets the underline_metadata of this Date. + + Metadata that indicates whether the `underline` property is editable. # noqa: E501 - :param underline_metadata: The underline_metadata of this Date. + :param underline_metadata: The underline_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2547,22 +2905,22 @@ def underline_metadata(self, underline_metadata): @property def validation_message(self): - """ - Gets the validation_message of this Date. - The message displayed if the custom tab fails input validation (either custom of embedded). + """Gets the validation_message of this Date. # noqa: E501 + + The message displayed if the custom tab fails input validation (either custom of embedded). # noqa: E501 - :return: The validation_message of this Date. + :return: The validation_message of this Date. # noqa: E501 :rtype: str """ return self._validation_message @validation_message.setter def validation_message(self, validation_message): - """ - Sets the validation_message of this Date. - The message displayed if the custom tab fails input validation (either custom of embedded). + """Sets the validation_message of this Date. + + The message displayed if the custom tab fails input validation (either custom of embedded). # noqa: E501 - :param validation_message: The validation_message of this Date. + :param validation_message: The validation_message of this Date. # noqa: E501 :type: str """ @@ -2570,20 +2928,22 @@ def validation_message(self, validation_message): @property def validation_message_metadata(self): - """ - Gets the validation_message_metadata of this Date. + """Gets the validation_message_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `validationMessage` property is editable. # noqa: E501 - :return: The validation_message_metadata of this Date. + :return: The validation_message_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._validation_message_metadata @validation_message_metadata.setter def validation_message_metadata(self, validation_message_metadata): - """ - Sets the validation_message_metadata of this Date. + """Sets the validation_message_metadata of this Date. + + Metadata that indicates whether the `validationMessage` property is editable. # noqa: E501 - :param validation_message_metadata: The validation_message_metadata of this Date. + :param validation_message_metadata: The validation_message_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2591,22 +2951,22 @@ def validation_message_metadata(self, validation_message_metadata): @property def validation_pattern(self): - """ - Gets the validation_pattern of this Date. - A regular expression used to validate input for the tab. + """Gets the validation_pattern of this Date. # noqa: E501 + + A regular expression used to validate input for the tab. # noqa: E501 - :return: The validation_pattern of this Date. + :return: The validation_pattern of this Date. # noqa: E501 :rtype: str """ return self._validation_pattern @validation_pattern.setter def validation_pattern(self, validation_pattern): - """ - Sets the validation_pattern of this Date. - A regular expression used to validate input for the tab. + """Sets the validation_pattern of this Date. + + A regular expression used to validate input for the tab. # noqa: E501 - :param validation_pattern: The validation_pattern of this Date. + :param validation_pattern: The validation_pattern of this Date. # noqa: E501 :type: str """ @@ -2614,20 +2974,22 @@ def validation_pattern(self, validation_pattern): @property def validation_pattern_metadata(self): - """ - Gets the validation_pattern_metadata of this Date. + """Gets the validation_pattern_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `validationPattern` property is editable. # noqa: E501 - :return: The validation_pattern_metadata of this Date. + :return: The validation_pattern_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._validation_pattern_metadata @validation_pattern_metadata.setter def validation_pattern_metadata(self, validation_pattern_metadata): - """ - Sets the validation_pattern_metadata of this Date. + """Sets the validation_pattern_metadata of this Date. + + Metadata that indicates whether the `validationPattern` property is editable. # noqa: E501 - :param validation_pattern_metadata: The validation_pattern_metadata of this Date. + :param validation_pattern_metadata: The validation_pattern_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2635,22 +2997,22 @@ def validation_pattern_metadata(self, validation_pattern_metadata): @property def value(self): - """ - Gets the value of this Date. - Specifies the value of the tab. + """Gets the value of this Date. # noqa: E501 + + Specifies the value of the tab. # noqa: E501 - :return: The value of this Date. + :return: The value of this Date. # noqa: E501 :rtype: str """ return self._value @value.setter def value(self, value): - """ - Sets the value of this Date. - Specifies the value of the tab. + """Sets the value of this Date. + + Specifies the value of the tab. # noqa: E501 - :param value: The value of this Date. + :param value: The value of this Date. # noqa: E501 :type: str """ @@ -2658,20 +3020,22 @@ def value(self, value): @property def value_metadata(self): - """ - Gets the value_metadata of this Date. + """Gets the value_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `value` property is editable. # noqa: E501 - :return: The value_metadata of this Date. + :return: The value_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._value_metadata @value_metadata.setter def value_metadata(self, value_metadata): - """ - Sets the value_metadata of this Date. + """Sets the value_metadata of this Date. + + Metadata that indicates whether the `value` property is editable. # noqa: E501 - :param value_metadata: The value_metadata of this Date. + :param value_metadata: The value_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2679,22 +3043,22 @@ def value_metadata(self, value_metadata): @property def width(self): - """ - Gets the width of this Date. - Width of the tab in pixels. + """Gets the width of this Date. # noqa: E501 + + Width of the tab in pixels. # noqa: E501 - :return: The width of this Date. + :return: The width of this Date. # noqa: E501 :rtype: str """ return self._width @width.setter def width(self, width): - """ - Sets the width of this Date. - Width of the tab in pixels. + """Sets the width of this Date. + + Width of the tab in pixels. # noqa: E501 - :param width: The width of this Date. + :param width: The width of this Date. # noqa: E501 :type: str """ @@ -2702,20 +3066,22 @@ def width(self, width): @property def width_metadata(self): - """ - Gets the width_metadata of this Date. + """Gets the width_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `width` property is editable. # noqa: E501 - :return: The width_metadata of this Date. + :return: The width_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._width_metadata @width_metadata.setter def width_metadata(self, width_metadata): - """ - Sets the width_metadata of this Date. + """Sets the width_metadata of this Date. + + Metadata that indicates whether the `width` property is editable. # noqa: E501 - :param width_metadata: The width_metadata of this Date. + :param width_metadata: The width_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2723,22 +3089,22 @@ def width_metadata(self, width_metadata): @property def x_position(self): - """ - Gets the x_position of this Date. - This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. + """Gets the x_position of this Date. # noqa: E501 + + This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 - :return: The x_position of this Date. + :return: The x_position of this Date. # noqa: E501 :rtype: str """ return self._x_position @x_position.setter def x_position(self, x_position): - """ - Sets the x_position of this Date. - This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. + """Sets the x_position of this Date. + + This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 - :param x_position: The x_position of this Date. + :param x_position: The x_position of this Date. # noqa: E501 :type: str """ @@ -2746,20 +3112,22 @@ def x_position(self, x_position): @property def x_position_metadata(self): - """ - Gets the x_position_metadata of this Date. + """Gets the x_position_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 - :return: The x_position_metadata of this Date. + :return: The x_position_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._x_position_metadata @x_position_metadata.setter def x_position_metadata(self, x_position_metadata): - """ - Sets the x_position_metadata of this Date. + """Sets the x_position_metadata of this Date. + + Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 - :param x_position_metadata: The x_position_metadata of this Date. + :param x_position_metadata: The x_position_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ @@ -2767,22 +3135,22 @@ def x_position_metadata(self, x_position_metadata): @property def y_position(self): - """ - Gets the y_position of this Date. - This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. + """Gets the y_position of this Date. # noqa: E501 + + This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 - :return: The y_position of this Date. + :return: The y_position of this Date. # noqa: E501 :rtype: str """ return self._y_position @y_position.setter def y_position(self, y_position): - """ - Sets the y_position of this Date. - This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. + """Sets the y_position of this Date. + + This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 - :param y_position: The y_position of this Date. + :param y_position: The y_position of this Date. # noqa: E501 :type: str """ @@ -2790,32 +3158,32 @@ def y_position(self, y_position): @property def y_position_metadata(self): - """ - Gets the y_position_metadata of this Date. + """Gets the y_position_metadata of this Date. # noqa: E501 + + Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 - :return: The y_position_metadata of this Date. + :return: The y_position_metadata of this Date. # noqa: E501 :rtype: PropertyMetadata """ return self._y_position_metadata @y_position_metadata.setter def y_position_metadata(self, y_position_metadata): - """ - Sets the y_position_metadata of this Date. + """Sets the y_position_metadata of this Date. + + Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 - :param y_position_metadata: The y_position_metadata of this Date. + :param y_position_metadata: The y_position_metadata of this Date. # noqa: E501 :type: PropertyMetadata """ self._y_position_metadata = y_position_metadata def to_dict(self): - """ - Returns the model properties as a dict - """ + """Returns the model properties as a dict""" result = {} - for attr, _ in iteritems(self.swagger_types): + for attr, _ in six.iteritems(self.swagger_types): value = getattr(self, attr) if isinstance(value, list): result[attr] = list(map( @@ -2832,29 +3200,30 @@ def to_dict(self): )) else: result[attr] = value + if issubclass(Date, dict): + for key, value in self.items(): + result[key] = value return result def to_str(self): - """ - Returns the string representation of the model - """ - return pformat(self.to_dict()) + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) def __repr__(self): - """ - For `print` and `pprint` - """ + """For `print` and `pprint`""" return self.to_str() def __eq__(self, other): - """ - Returns true if both objects are equal - """ - return self.__dict__ == other.__dict__ + """Returns true if both objects are equal""" + if not isinstance(other, Date): + return False + + return self.to_dict() == other.to_dict() def __ne__(self, other): - """ - Returns true if both objects are not equal - """ - return not self == other + """Returns true if both objects are not equal""" + if not isinstance(other, Date): + return True + + return self.to_dict() != other.to_dict() diff --git a/setup.py b/setup.py index 69447257..16f99cbb 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ -# coding: utf-8 - +# coding: utf-8 + """ DocuSign REST API @@ -9,49 +9,49 @@ Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git """ - - -from setuptools import setup, find_packages, Command, os # noqa: H301 - -NAME = "docusign-esign" -VERSION = "3.25.0" -# To install the library, run the following -# -# python setup.py install -# -# prerequisite: setuptools -# http://pypi.python.org/pypi/setuptools - -REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"] - -class CleanCommand(Command): - """Custom clean command to tidy up the project root.""" - user_options = [] - def initialize_options(self): - pass - def finalize_options(self): - pass - def run(self): - os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') - -this_directory = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: - long_description = f.read() - - -setup( - name=NAME, - version=VERSION, - description="DocuSign REST API", - author_email="devcenter@docusign.com", - url="", - keywords=["Swagger", "DocuSign REST API"], - install_requires=REQUIRES, - packages=find_packages(), - include_package_data=True, - cmdclass={ - 'clean': CleanCommand, - }, - long_description=long_description, - long_description_content_type='text/markdown' -) + + +from setuptools import setup, find_packages, Command, os # noqa: H301 + +NAME = "docusign-esign" +VERSION = "3.25.1" +# To install the library, run the following +# +# python setup.py install +# +# prerequisite: setuptools +# http://pypi.python.org/pypi/setuptools + +REQUIRES = ["urllib3 >= 1.15", "six >= 1.8.0", "certifi >= 14.05.14", "python-dateutil >= 2.5.3", "setuptools >= 21.0.0", "PyJWT>=1.7.1", "cryptography>=2.5", "nose>=1.3.7"] + +class CleanCommand(Command): + """Custom clean command to tidy up the project root.""" + user_options = [] + def initialize_options(self): + pass + def finalize_options(self): + pass + def run(self): + os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info') + +this_directory = os.path.abspath(os.path.dirname(__file__)) +with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + + +setup( + name=NAME, + version=VERSION, + description="DocuSign REST API", + author_email="devcenter@docusign.com", + url="", + keywords=["Swagger", "DocuSign REST API"], + install_requires=REQUIRES, + packages=find_packages(), + include_package_data=True, + cmdclass={ + 'clean': CleanCommand, + }, + long_description=long_description, + long_description_content_type='text/markdown' +) diff --git a/test/unit_tests.py b/test/unit_tests.py index 41633e6a..b76925d2 100644 --- a/test/unit_tests.py +++ b/test/unit_tests.py @@ -6,11 +6,12 @@ import os import subprocess import unittest -from pprint import pprint + from time import sleep +from datetime import datetime import docusign_esign as docusign -from docusign_esign import AuthenticationApi, EnvelopesApi, TemplatesApi, DiagnosticsApi, FoldersApi, ApiException +from docusign_esign import AuthenticationApi, EnvelopesApi, TemplatesApi, DiagnosticsApi, FoldersApi, ApiException, TemplateSummary Username = os.environ.get("USER_NAME") IntegratorKey = os.environ.get("INTEGRATOR_KEY_JWT") @@ -340,7 +341,7 @@ def testEmbeddedSigning(self): print("\nException when calling DocuSign API: %s" % e) assert e is None # make the test case fail in case of an API exception - def testCreateTemplate(self): + def testCreateTemplate(self) -> TemplateSummary: with open(SignTest1File, 'rb') as sign_file: file_contents = sign_file.read() @@ -377,7 +378,23 @@ def testCreateTemplate(self): scale_value=sign_scale_value) sign_here_tabs = [sign_here] - tabs = docusign.Tabs(sign_here_tabs=sign_here_tabs) + + # Create a date tab somewhere on the document for the signer to know about current date + date_document_id = '1' + date_page_number = '1' + date_x_position = '50' + date_y_position = '50' + + current_date_tab = docusign.Date(document_id=date_document_id, + page_number=date_page_number, + recipient_id=recipient_id, + x_position=date_x_position, + y_position=date_y_position, + value=datetime.utcnow().date()) + date_tabs = [current_date_tab] + + tabs = docusign.Tabs(sign_here_tabs=sign_here_tabs, date_tabs=date_tabs) + signer = docusign.Signer(email=email, name=name, recipient_id=recipient_id, @@ -403,6 +420,7 @@ def testCreateTemplate(self): assert template_summary is not None assert template_summary.template_id is not None + return template_summary except ApiException as e: print("\nException when calling DocuSign API: %s" % e) assert e is None # make the test case fail in case of an API exception @@ -853,6 +871,35 @@ def testMoveEnvelopes(self): print("\nException when calling DocuSign API: %s" % e) assert e is None # make the test case fail in case of an API exception + def testTemplateDocumentTabsRetrieval(self): + + # Create Envelope template + template_summary = self.testCreateTemplate() + template_id = template_summary.template_id + + templates_api = TemplatesApi() + + # List all documents from the created template to find the documentId + template_documents_list_result = templates_api.list_documents(self.user_info.accounts[0].account_id, template_id) + + # Check if there are no documents within the template + has_template_documents = template_documents_list_result is None or template_documents_list_result.template_documents is None or len(template_documents_list_result.template_documents) == 0 + assert has_template_documents, 'No document found within created template' + + document_id = template_documents_list_result.template_documents[0].document_id + + try: + # Get list of various document tabs + document_tabs = templates_api.get_document_tabs(self.user_info.accounts[0].account_id, document_id, template_id) + + assert document_tabs is not None + + except ApiException as e: + print("\nException when calling DocuSign API: %s" % e) + assert e is None # make the test case fail in case of an API exception + except Exception as e: + print("\nException when calling DocuSign API: %s" % e) + assert e is None # make the test case fail in case of an API exception if __name__ == '__main__': unittest.main()