docusign_esign.models.notarize
Docusign eSignature REST API
The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501
OpenAPI spec version: v2.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git
1# coding: utf-8 2 3""" 4 Docusign eSignature REST API 5 6 The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign. # noqa: E501 7 8 OpenAPI spec version: v2.1 9 Contact: devcenter@docusign.com 10 Generated by: https://github.com/swagger-api/swagger-codegen.git 11""" 12 13 14import pprint 15import re # noqa: F401 16 17import six 18 19from docusign_esign.client.configuration import Configuration 20 21 22class Notarize(object): 23 """NOTE: This class is auto generated by the swagger code generator program. 24 25 Do not edit the class manually. 26 """ 27 28 """ 29 Attributes: 30 swagger_types (dict): The key is attribute name 31 and the value is attribute type. 32 attribute_map (dict): The key is attribute name 33 and the value is json key in definition. 34 """ 35 swagger_types = { 36 'anchor_allow_white_space_in_characters': 'str', 37 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', 38 'anchor_case_sensitive': 'str', 39 'anchor_case_sensitive_metadata': 'PropertyMetadata', 40 'anchor_horizontal_alignment': 'str', 41 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', 42 'anchor_ignore_if_not_present': 'str', 43 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', 44 'anchor_match_whole_word': 'str', 45 'anchor_match_whole_word_metadata': 'PropertyMetadata', 46 'anchor_string': 'str', 47 'anchor_string_metadata': 'PropertyMetadata', 48 'anchor_tab_processor_version': 'str', 49 'anchor_tab_processor_version_metadata': 'PropertyMetadata', 50 'anchor_units': 'str', 51 'anchor_units_metadata': 'PropertyMetadata', 52 'anchor_x_offset': 'str', 53 'anchor_x_offset_metadata': 'PropertyMetadata', 54 'anchor_y_offset': 'str', 55 'anchor_y_offset_metadata': 'PropertyMetadata', 56 'caption': 'str', 57 'caption_metadata': 'PropertyMetadata', 58 'conditional_parent_label': 'str', 59 'conditional_parent_label_metadata': 'PropertyMetadata', 60 'conditional_parent_value': 'str', 61 'conditional_parent_value_metadata': 'PropertyMetadata', 62 'custom_tab_id': 'str', 63 'custom_tab_id_metadata': 'PropertyMetadata', 64 'document_id': 'str', 65 'document_id_metadata': 'PropertyMetadata', 66 'error_details': 'ErrorDetails', 67 'form_order': 'str', 68 'form_order_metadata': 'PropertyMetadata', 69 'form_page_label': 'str', 70 'form_page_label_metadata': 'PropertyMetadata', 71 'form_page_number': 'str', 72 'form_page_number_metadata': 'PropertyMetadata', 73 'height': 'str', 74 'height_metadata': 'PropertyMetadata', 75 'locked': 'str', 76 'locked_metadata': 'PropertyMetadata', 77 'merge_field': 'MergeField', 78 'merge_field_xml': 'str', 79 'page_number': 'str', 80 'page_number_metadata': 'PropertyMetadata', 81 'recipient_id': 'str', 82 'recipient_id_guid': 'str', 83 'recipient_id_guid_metadata': 'PropertyMetadata', 84 'recipient_id_metadata': 'PropertyMetadata', 85 'required': 'str', 86 'required_metadata': 'PropertyMetadata', 87 'smart_contract_information': 'SmartContractInformation', 88 'source': 'str', 89 'status': 'str', 90 'status_metadata': 'PropertyMetadata', 91 'tab_group_labels': 'list[str]', 92 'tab_group_labels_metadata': 'PropertyMetadata', 93 'tab_id': 'str', 94 'tab_id_metadata': 'PropertyMetadata', 95 'tab_order': 'str', 96 'tab_order_metadata': 'PropertyMetadata', 97 'tab_type': 'str', 98 'tab_type_metadata': 'PropertyMetadata', 99 'template_locked': 'str', 100 'template_locked_metadata': 'PropertyMetadata', 101 'template_required': 'str', 102 'template_required_metadata': 'PropertyMetadata', 103 'tooltip': 'str', 104 'tool_tip_metadata': 'PropertyMetadata', 105 'width': 'str', 106 'width_metadata': 'PropertyMetadata', 107 'x_position': 'str', 108 'x_position_metadata': 'PropertyMetadata', 109 'y_position': 'str', 110 'y_position_metadata': 'PropertyMetadata' 111 } 112 113 attribute_map = { 114 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', 115 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', 116 'anchor_case_sensitive': 'anchorCaseSensitive', 117 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', 118 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', 119 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', 120 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', 121 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', 122 'anchor_match_whole_word': 'anchorMatchWholeWord', 123 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', 124 'anchor_string': 'anchorString', 125 'anchor_string_metadata': 'anchorStringMetadata', 126 'anchor_tab_processor_version': 'anchorTabProcessorVersion', 127 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', 128 'anchor_units': 'anchorUnits', 129 'anchor_units_metadata': 'anchorUnitsMetadata', 130 'anchor_x_offset': 'anchorXOffset', 131 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', 132 'anchor_y_offset': 'anchorYOffset', 133 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', 134 'caption': 'caption', 135 'caption_metadata': 'captionMetadata', 136 'conditional_parent_label': 'conditionalParentLabel', 137 'conditional_parent_label_metadata': 'conditionalParentLabelMetadata', 138 'conditional_parent_value': 'conditionalParentValue', 139 'conditional_parent_value_metadata': 'conditionalParentValueMetadata', 140 'custom_tab_id': 'customTabId', 141 'custom_tab_id_metadata': 'customTabIdMetadata', 142 'document_id': 'documentId', 143 'document_id_metadata': 'documentIdMetadata', 144 'error_details': 'errorDetails', 145 'form_order': 'formOrder', 146 'form_order_metadata': 'formOrderMetadata', 147 'form_page_label': 'formPageLabel', 148 'form_page_label_metadata': 'formPageLabelMetadata', 149 'form_page_number': 'formPageNumber', 150 'form_page_number_metadata': 'formPageNumberMetadata', 151 'height': 'height', 152 'height_metadata': 'heightMetadata', 153 'locked': 'locked', 154 'locked_metadata': 'lockedMetadata', 155 'merge_field': 'mergeField', 156 'merge_field_xml': 'mergeFieldXml', 157 'page_number': 'pageNumber', 158 'page_number_metadata': 'pageNumberMetadata', 159 'recipient_id': 'recipientId', 160 'recipient_id_guid': 'recipientIdGuid', 161 'recipient_id_guid_metadata': 'recipientIdGuidMetadata', 162 'recipient_id_metadata': 'recipientIdMetadata', 163 'required': 'required', 164 'required_metadata': 'requiredMetadata', 165 'smart_contract_information': 'smartContractInformation', 166 'source': 'source', 167 'status': 'status', 168 'status_metadata': 'statusMetadata', 169 'tab_group_labels': 'tabGroupLabels', 170 'tab_group_labels_metadata': 'tabGroupLabelsMetadata', 171 'tab_id': 'tabId', 172 'tab_id_metadata': 'tabIdMetadata', 173 'tab_order': 'tabOrder', 174 'tab_order_metadata': 'tabOrderMetadata', 175 'tab_type': 'tabType', 176 'tab_type_metadata': 'tabTypeMetadata', 177 'template_locked': 'templateLocked', 178 'template_locked_metadata': 'templateLockedMetadata', 179 'template_required': 'templateRequired', 180 'template_required_metadata': 'templateRequiredMetadata', 181 'tooltip': 'tooltip', 182 'tool_tip_metadata': 'toolTipMetadata', 183 'width': 'width', 184 'width_metadata': 'widthMetadata', 185 'x_position': 'xPosition', 186 'x_position_metadata': 'xPositionMetadata', 187 'y_position': 'yPosition', 188 'y_position_metadata': 'yPositionMetadata' 189 } 190 191 def __init__(self, _configuration=None, **kwargs): # noqa: E501 192 """Notarize - a model defined in Swagger""" # noqa: E501 193 if _configuration is None: 194 _configuration = Configuration() 195 self._configuration = _configuration 196 197 self._anchor_allow_white_space_in_characters = None 198 self._anchor_allow_white_space_in_characters_metadata = None 199 self._anchor_case_sensitive = None 200 self._anchor_case_sensitive_metadata = None 201 self._anchor_horizontal_alignment = None 202 self._anchor_horizontal_alignment_metadata = None 203 self._anchor_ignore_if_not_present = None 204 self._anchor_ignore_if_not_present_metadata = None 205 self._anchor_match_whole_word = None 206 self._anchor_match_whole_word_metadata = None 207 self._anchor_string = None 208 self._anchor_string_metadata = None 209 self._anchor_tab_processor_version = None 210 self._anchor_tab_processor_version_metadata = None 211 self._anchor_units = None 212 self._anchor_units_metadata = None 213 self._anchor_x_offset = None 214 self._anchor_x_offset_metadata = None 215 self._anchor_y_offset = None 216 self._anchor_y_offset_metadata = None 217 self._caption = None 218 self._caption_metadata = None 219 self._conditional_parent_label = None 220 self._conditional_parent_label_metadata = None 221 self._conditional_parent_value = None 222 self._conditional_parent_value_metadata = None 223 self._custom_tab_id = None 224 self._custom_tab_id_metadata = None 225 self._document_id = None 226 self._document_id_metadata = None 227 self._error_details = None 228 self._form_order = None 229 self._form_order_metadata = None 230 self._form_page_label = None 231 self._form_page_label_metadata = None 232 self._form_page_number = None 233 self._form_page_number_metadata = None 234 self._height = None 235 self._height_metadata = None 236 self._locked = None 237 self._locked_metadata = None 238 self._merge_field = None 239 self._merge_field_xml = None 240 self._page_number = None 241 self._page_number_metadata = None 242 self._recipient_id = None 243 self._recipient_id_guid = None 244 self._recipient_id_guid_metadata = None 245 self._recipient_id_metadata = None 246 self._required = None 247 self._required_metadata = None 248 self._smart_contract_information = None 249 self._source = None 250 self._status = None 251 self._status_metadata = None 252 self._tab_group_labels = None 253 self._tab_group_labels_metadata = None 254 self._tab_id = None 255 self._tab_id_metadata = None 256 self._tab_order = None 257 self._tab_order_metadata = None 258 self._tab_type = None 259 self._tab_type_metadata = None 260 self._template_locked = None 261 self._template_locked_metadata = None 262 self._template_required = None 263 self._template_required_metadata = None 264 self._tooltip = None 265 self._tool_tip_metadata = None 266 self._width = None 267 self._width_metadata = None 268 self._x_position = None 269 self._x_position_metadata = None 270 self._y_position = None 271 self._y_position_metadata = None 272 self.discriminator = None 273 274 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 275 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 276 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 277 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 278 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 279 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 280 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 281 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 282 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 283 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 284 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 285 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 286 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 287 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 288 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 289 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 290 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 291 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 292 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 293 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 294 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 295 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 296 setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None)) 297 setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None)) 298 setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None)) 299 setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None)) 300 setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None)) 301 setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None)) 302 setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None)) 303 setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None)) 304 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 305 setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None)) 306 setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None)) 307 setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None)) 308 setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None)) 309 setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None)) 310 setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None)) 311 setattr(self, "_{}".format('height'), kwargs.get('height', None)) 312 setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None)) 313 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 314 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 315 setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None)) 316 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 317 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 318 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 319 setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None)) 320 setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None)) 321 setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None)) 322 setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None)) 323 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 324 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 325 setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None)) 326 setattr(self, "_{}".format('source'), kwargs.get('source', None)) 327 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 328 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 329 setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None)) 330 setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None)) 331 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 332 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 333 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 334 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 335 setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None)) 336 setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None)) 337 setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None)) 338 setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None)) 339 setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None)) 340 setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None)) 341 setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None)) 342 setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None)) 343 setattr(self, "_{}".format('width'), kwargs.get('width', None)) 344 setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None)) 345 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 346 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 347 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 348 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None)) 349 350 @property 351 def anchor_allow_white_space_in_characters(self): 352 """Gets the anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 353 354 # noqa: E501 355 356 :return: The anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 357 :rtype: str 358 """ 359 return self._anchor_allow_white_space_in_characters 360 361 @anchor_allow_white_space_in_characters.setter 362 def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters): 363 """Sets the anchor_allow_white_space_in_characters of this Notarize. 364 365 # noqa: E501 366 367 :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 368 :type: str 369 """ 370 371 self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters 372 373 @property 374 def anchor_allow_white_space_in_characters_metadata(self): 375 """Gets the anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 376 377 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 378 379 :return: The anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 380 :rtype: PropertyMetadata 381 """ 382 return self._anchor_allow_white_space_in_characters_metadata 383 384 @anchor_allow_white_space_in_characters_metadata.setter 385 def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata): 386 """Sets the anchor_allow_white_space_in_characters_metadata of this Notarize. 387 388 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 389 390 :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 391 :type: PropertyMetadata 392 """ 393 394 self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata 395 396 @property 397 def anchor_case_sensitive(self): 398 """Gets the anchor_case_sensitive of this Notarize. # noqa: E501 399 400 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 401 402 :return: The anchor_case_sensitive of this Notarize. # noqa: E501 403 :rtype: str 404 """ 405 return self._anchor_case_sensitive 406 407 @anchor_case_sensitive.setter 408 def anchor_case_sensitive(self, anchor_case_sensitive): 409 """Sets the anchor_case_sensitive of this Notarize. 410 411 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 412 413 :param anchor_case_sensitive: The anchor_case_sensitive of this Notarize. # noqa: E501 414 :type: str 415 """ 416 417 self._anchor_case_sensitive = anchor_case_sensitive 418 419 @property 420 def anchor_case_sensitive_metadata(self): 421 """Gets the anchor_case_sensitive_metadata of this Notarize. # noqa: E501 422 423 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 424 425 :return: The anchor_case_sensitive_metadata of this Notarize. # noqa: E501 426 :rtype: PropertyMetadata 427 """ 428 return self._anchor_case_sensitive_metadata 429 430 @anchor_case_sensitive_metadata.setter 431 def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): 432 """Sets the anchor_case_sensitive_metadata of this Notarize. 433 434 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 435 436 :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Notarize. # noqa: E501 437 :type: PropertyMetadata 438 """ 439 440 self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata 441 442 @property 443 def anchor_horizontal_alignment(self): 444 """Gets the anchor_horizontal_alignment of this Notarize. # noqa: E501 445 446 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 447 448 :return: The anchor_horizontal_alignment of this Notarize. # noqa: E501 449 :rtype: str 450 """ 451 return self._anchor_horizontal_alignment 452 453 @anchor_horizontal_alignment.setter 454 def anchor_horizontal_alignment(self, anchor_horizontal_alignment): 455 """Sets the anchor_horizontal_alignment of this Notarize. 456 457 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 458 459 :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Notarize. # noqa: E501 460 :type: str 461 """ 462 463 self._anchor_horizontal_alignment = anchor_horizontal_alignment 464 465 @property 466 def anchor_horizontal_alignment_metadata(self): 467 """Gets the anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 468 469 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 470 471 :return: The anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 472 :rtype: PropertyMetadata 473 """ 474 return self._anchor_horizontal_alignment_metadata 475 476 @anchor_horizontal_alignment_metadata.setter 477 def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata): 478 """Sets the anchor_horizontal_alignment_metadata of this Notarize. 479 480 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 481 482 :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 483 :type: PropertyMetadata 484 """ 485 486 self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata 487 488 @property 489 def anchor_ignore_if_not_present(self): 490 """Gets the anchor_ignore_if_not_present of this Notarize. # noqa: E501 491 492 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 493 494 :return: The anchor_ignore_if_not_present of this Notarize. # noqa: E501 495 :rtype: str 496 """ 497 return self._anchor_ignore_if_not_present 498 499 @anchor_ignore_if_not_present.setter 500 def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): 501 """Sets the anchor_ignore_if_not_present of this Notarize. 502 503 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 504 505 :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Notarize. # noqa: E501 506 :type: str 507 """ 508 509 self._anchor_ignore_if_not_present = anchor_ignore_if_not_present 510 511 @property 512 def anchor_ignore_if_not_present_metadata(self): 513 """Gets the anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 514 515 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 516 517 :return: The anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 518 :rtype: PropertyMetadata 519 """ 520 return self._anchor_ignore_if_not_present_metadata 521 522 @anchor_ignore_if_not_present_metadata.setter 523 def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata): 524 """Sets the anchor_ignore_if_not_present_metadata of this Notarize. 525 526 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 527 528 :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 529 :type: PropertyMetadata 530 """ 531 532 self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata 533 534 @property 535 def anchor_match_whole_word(self): 536 """Gets the anchor_match_whole_word of this Notarize. # noqa: E501 537 538 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 539 540 :return: The anchor_match_whole_word of this Notarize. # noqa: E501 541 :rtype: str 542 """ 543 return self._anchor_match_whole_word 544 545 @anchor_match_whole_word.setter 546 def anchor_match_whole_word(self, anchor_match_whole_word): 547 """Sets the anchor_match_whole_word of this Notarize. 548 549 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 550 551 :param anchor_match_whole_word: The anchor_match_whole_word of this Notarize. # noqa: E501 552 :type: str 553 """ 554 555 self._anchor_match_whole_word = anchor_match_whole_word 556 557 @property 558 def anchor_match_whole_word_metadata(self): 559 """Gets the anchor_match_whole_word_metadata of this Notarize. # noqa: E501 560 561 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 562 563 :return: The anchor_match_whole_word_metadata of this Notarize. # noqa: E501 564 :rtype: PropertyMetadata 565 """ 566 return self._anchor_match_whole_word_metadata 567 568 @anchor_match_whole_word_metadata.setter 569 def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): 570 """Sets the anchor_match_whole_word_metadata of this Notarize. 571 572 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 573 574 :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Notarize. # noqa: E501 575 :type: PropertyMetadata 576 """ 577 578 self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata 579 580 @property 581 def anchor_string(self): 582 """Gets the anchor_string of this Notarize. # noqa: E501 583 584 Anchor text information for a radio button. # noqa: E501 585 586 :return: The anchor_string of this Notarize. # noqa: E501 587 :rtype: str 588 """ 589 return self._anchor_string 590 591 @anchor_string.setter 592 def anchor_string(self, anchor_string): 593 """Sets the anchor_string of this Notarize. 594 595 Anchor text information for a radio button. # noqa: E501 596 597 :param anchor_string: The anchor_string of this Notarize. # noqa: E501 598 :type: str 599 """ 600 601 self._anchor_string = anchor_string 602 603 @property 604 def anchor_string_metadata(self): 605 """Gets the anchor_string_metadata of this Notarize. # noqa: E501 606 607 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 608 609 :return: The anchor_string_metadata of this Notarize. # noqa: E501 610 :rtype: PropertyMetadata 611 """ 612 return self._anchor_string_metadata 613 614 @anchor_string_metadata.setter 615 def anchor_string_metadata(self, anchor_string_metadata): 616 """Sets the anchor_string_metadata of this Notarize. 617 618 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 619 620 :param anchor_string_metadata: The anchor_string_metadata of this Notarize. # noqa: E501 621 :type: PropertyMetadata 622 """ 623 624 self._anchor_string_metadata = anchor_string_metadata 625 626 @property 627 def anchor_tab_processor_version(self): 628 """Gets the anchor_tab_processor_version of this Notarize. # noqa: E501 629 630 # noqa: E501 631 632 :return: The anchor_tab_processor_version of this Notarize. # noqa: E501 633 :rtype: str 634 """ 635 return self._anchor_tab_processor_version 636 637 @anchor_tab_processor_version.setter 638 def anchor_tab_processor_version(self, anchor_tab_processor_version): 639 """Sets the anchor_tab_processor_version of this Notarize. 640 641 # noqa: E501 642 643 :param anchor_tab_processor_version: The anchor_tab_processor_version of this Notarize. # noqa: E501 644 :type: str 645 """ 646 647 self._anchor_tab_processor_version = anchor_tab_processor_version 648 649 @property 650 def anchor_tab_processor_version_metadata(self): 651 """Gets the anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 652 653 Reserved for DocuSign. # noqa: E501 654 655 :return: The anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 656 :rtype: PropertyMetadata 657 """ 658 return self._anchor_tab_processor_version_metadata 659 660 @anchor_tab_processor_version_metadata.setter 661 def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata): 662 """Sets the anchor_tab_processor_version_metadata of this Notarize. 663 664 Reserved for DocuSign. # noqa: E501 665 666 :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 667 :type: PropertyMetadata 668 """ 669 670 self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata 671 672 @property 673 def anchor_units(self): 674 """Gets the anchor_units of this Notarize. # noqa: E501 675 676 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 677 678 :return: The anchor_units of this Notarize. # noqa: E501 679 :rtype: str 680 """ 681 return self._anchor_units 682 683 @anchor_units.setter 684 def anchor_units(self, anchor_units): 685 """Sets the anchor_units of this Notarize. 686 687 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 688 689 :param anchor_units: The anchor_units of this Notarize. # noqa: E501 690 :type: str 691 """ 692 693 self._anchor_units = anchor_units 694 695 @property 696 def anchor_units_metadata(self): 697 """Gets the anchor_units_metadata of this Notarize. # noqa: E501 698 699 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 700 701 :return: The anchor_units_metadata of this Notarize. # noqa: E501 702 :rtype: PropertyMetadata 703 """ 704 return self._anchor_units_metadata 705 706 @anchor_units_metadata.setter 707 def anchor_units_metadata(self, anchor_units_metadata): 708 """Sets the anchor_units_metadata of this Notarize. 709 710 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 711 712 :param anchor_units_metadata: The anchor_units_metadata of this Notarize. # noqa: E501 713 :type: PropertyMetadata 714 """ 715 716 self._anchor_units_metadata = anchor_units_metadata 717 718 @property 719 def anchor_x_offset(self): 720 """Gets the anchor_x_offset of this Notarize. # noqa: E501 721 722 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 723 724 :return: The anchor_x_offset of this Notarize. # noqa: E501 725 :rtype: str 726 """ 727 return self._anchor_x_offset 728 729 @anchor_x_offset.setter 730 def anchor_x_offset(self, anchor_x_offset): 731 """Sets the anchor_x_offset of this Notarize. 732 733 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 734 735 :param anchor_x_offset: The anchor_x_offset of this Notarize. # noqa: E501 736 :type: str 737 """ 738 739 self._anchor_x_offset = anchor_x_offset 740 741 @property 742 def anchor_x_offset_metadata(self): 743 """Gets the anchor_x_offset_metadata of this Notarize. # noqa: E501 744 745 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 746 747 :return: The anchor_x_offset_metadata of this Notarize. # noqa: E501 748 :rtype: PropertyMetadata 749 """ 750 return self._anchor_x_offset_metadata 751 752 @anchor_x_offset_metadata.setter 753 def anchor_x_offset_metadata(self, anchor_x_offset_metadata): 754 """Sets the anchor_x_offset_metadata of this Notarize. 755 756 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 757 758 :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Notarize. # noqa: E501 759 :type: PropertyMetadata 760 """ 761 762 self._anchor_x_offset_metadata = anchor_x_offset_metadata 763 764 @property 765 def anchor_y_offset(self): 766 """Gets the anchor_y_offset of this Notarize. # noqa: E501 767 768 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 769 770 :return: The anchor_y_offset of this Notarize. # noqa: E501 771 :rtype: str 772 """ 773 return self._anchor_y_offset 774 775 @anchor_y_offset.setter 776 def anchor_y_offset(self, anchor_y_offset): 777 """Sets the anchor_y_offset of this Notarize. 778 779 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 780 781 :param anchor_y_offset: The anchor_y_offset of this Notarize. # noqa: E501 782 :type: str 783 """ 784 785 self._anchor_y_offset = anchor_y_offset 786 787 @property 788 def anchor_y_offset_metadata(self): 789 """Gets the anchor_y_offset_metadata of this Notarize. # noqa: E501 790 791 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 792 793 :return: The anchor_y_offset_metadata of this Notarize. # noqa: E501 794 :rtype: PropertyMetadata 795 """ 796 return self._anchor_y_offset_metadata 797 798 @anchor_y_offset_metadata.setter 799 def anchor_y_offset_metadata(self, anchor_y_offset_metadata): 800 """Sets the anchor_y_offset_metadata of this Notarize. 801 802 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 803 804 :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Notarize. # noqa: E501 805 :type: PropertyMetadata 806 """ 807 808 self._anchor_y_offset_metadata = anchor_y_offset_metadata 809 810 @property 811 def caption(self): 812 """Gets the caption of this Notarize. # noqa: E501 813 814 # noqa: E501 815 816 :return: The caption of this Notarize. # noqa: E501 817 :rtype: str 818 """ 819 return self._caption 820 821 @caption.setter 822 def caption(self, caption): 823 """Sets the caption of this Notarize. 824 825 # noqa: E501 826 827 :param caption: The caption of this Notarize. # noqa: E501 828 :type: str 829 """ 830 831 self._caption = caption 832 833 @property 834 def caption_metadata(self): 835 """Gets the caption_metadata of this Notarize. # noqa: E501 836 837 # noqa: E501 838 839 :return: The caption_metadata of this Notarize. # noqa: E501 840 :rtype: PropertyMetadata 841 """ 842 return self._caption_metadata 843 844 @caption_metadata.setter 845 def caption_metadata(self, caption_metadata): 846 """Sets the caption_metadata of this Notarize. 847 848 # noqa: E501 849 850 :param caption_metadata: The caption_metadata of this Notarize. # noqa: E501 851 :type: PropertyMetadata 852 """ 853 854 self._caption_metadata = caption_metadata 855 856 @property 857 def conditional_parent_label(self): 858 """Gets the conditional_parent_label of this Notarize. # noqa: E501 859 860 For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 861 862 :return: The conditional_parent_label of this Notarize. # noqa: E501 863 :rtype: str 864 """ 865 return self._conditional_parent_label 866 867 @conditional_parent_label.setter 868 def conditional_parent_label(self, conditional_parent_label): 869 """Sets the conditional_parent_label of this Notarize. 870 871 For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 872 873 :param conditional_parent_label: The conditional_parent_label of this Notarize. # noqa: E501 874 :type: str 875 """ 876 877 self._conditional_parent_label = conditional_parent_label 878 879 @property 880 def conditional_parent_label_metadata(self): 881 """Gets the conditional_parent_label_metadata of this Notarize. # noqa: E501 882 883 Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 884 885 :return: The conditional_parent_label_metadata of this Notarize. # noqa: E501 886 :rtype: PropertyMetadata 887 """ 888 return self._conditional_parent_label_metadata 889 890 @conditional_parent_label_metadata.setter 891 def conditional_parent_label_metadata(self, conditional_parent_label_metadata): 892 """Sets the conditional_parent_label_metadata of this Notarize. 893 894 Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 895 896 :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Notarize. # noqa: E501 897 :type: PropertyMetadata 898 """ 899 900 self._conditional_parent_label_metadata = conditional_parent_label_metadata 901 902 @property 903 def conditional_parent_value(self): 904 """Gets the conditional_parent_value of this Notarize. # noqa: E501 905 906 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 907 908 :return: The conditional_parent_value of this Notarize. # noqa: E501 909 :rtype: str 910 """ 911 return self._conditional_parent_value 912 913 @conditional_parent_value.setter 914 def conditional_parent_value(self, conditional_parent_value): 915 """Sets the conditional_parent_value of this Notarize. 916 917 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 918 919 :param conditional_parent_value: The conditional_parent_value of this Notarize. # noqa: E501 920 :type: str 921 """ 922 923 self._conditional_parent_value = conditional_parent_value 924 925 @property 926 def conditional_parent_value_metadata(self): 927 """Gets the conditional_parent_value_metadata of this Notarize. # noqa: E501 928 929 Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 930 931 :return: The conditional_parent_value_metadata of this Notarize. # noqa: E501 932 :rtype: PropertyMetadata 933 """ 934 return self._conditional_parent_value_metadata 935 936 @conditional_parent_value_metadata.setter 937 def conditional_parent_value_metadata(self, conditional_parent_value_metadata): 938 """Sets the conditional_parent_value_metadata of this Notarize. 939 940 Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 941 942 :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Notarize. # noqa: E501 943 :type: PropertyMetadata 944 """ 945 946 self._conditional_parent_value_metadata = conditional_parent_value_metadata 947 948 @property 949 def custom_tab_id(self): 950 """Gets the custom_tab_id of this Notarize. # noqa: E501 951 952 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 953 954 :return: The custom_tab_id of this Notarize. # noqa: E501 955 :rtype: str 956 """ 957 return self._custom_tab_id 958 959 @custom_tab_id.setter 960 def custom_tab_id(self, custom_tab_id): 961 """Sets the custom_tab_id of this Notarize. 962 963 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 964 965 :param custom_tab_id: The custom_tab_id of this Notarize. # noqa: E501 966 :type: str 967 """ 968 969 self._custom_tab_id = custom_tab_id 970 971 @property 972 def custom_tab_id_metadata(self): 973 """Gets the custom_tab_id_metadata of this Notarize. # noqa: E501 974 975 Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 976 977 :return: The custom_tab_id_metadata of this Notarize. # noqa: E501 978 :rtype: PropertyMetadata 979 """ 980 return self._custom_tab_id_metadata 981 982 @custom_tab_id_metadata.setter 983 def custom_tab_id_metadata(self, custom_tab_id_metadata): 984 """Sets the custom_tab_id_metadata of this Notarize. 985 986 Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 987 988 :param custom_tab_id_metadata: The custom_tab_id_metadata of this Notarize. # noqa: E501 989 :type: PropertyMetadata 990 """ 991 992 self._custom_tab_id_metadata = custom_tab_id_metadata 993 994 @property 995 def document_id(self): 996 """Gets the document_id of this Notarize. # noqa: E501 997 998 Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 999 1000 :return: The document_id of this Notarize. # noqa: E501 1001 :rtype: str 1002 """ 1003 return self._document_id 1004 1005 @document_id.setter 1006 def document_id(self, document_id): 1007 """Sets the document_id of this Notarize. 1008 1009 Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 1010 1011 :param document_id: The document_id of this Notarize. # noqa: E501 1012 :type: str 1013 """ 1014 1015 self._document_id = document_id 1016 1017 @property 1018 def document_id_metadata(self): 1019 """Gets the document_id_metadata of this Notarize. # noqa: E501 1020 1021 Metadata that indicates whether the `documentId` property is editable. # noqa: E501 1022 1023 :return: The document_id_metadata of this Notarize. # noqa: E501 1024 :rtype: PropertyMetadata 1025 """ 1026 return self._document_id_metadata 1027 1028 @document_id_metadata.setter 1029 def document_id_metadata(self, document_id_metadata): 1030 """Sets the document_id_metadata of this Notarize. 1031 1032 Metadata that indicates whether the `documentId` property is editable. # noqa: E501 1033 1034 :param document_id_metadata: The document_id_metadata of this Notarize. # noqa: E501 1035 :type: PropertyMetadata 1036 """ 1037 1038 self._document_id_metadata = document_id_metadata 1039 1040 @property 1041 def error_details(self): 1042 """Gets the error_details of this Notarize. # noqa: E501 1043 1044 Array or errors. # noqa: E501 1045 1046 :return: The error_details of this Notarize. # noqa: E501 1047 :rtype: ErrorDetails 1048 """ 1049 return self._error_details 1050 1051 @error_details.setter 1052 def error_details(self, error_details): 1053 """Sets the error_details of this Notarize. 1054 1055 Array or errors. # noqa: E501 1056 1057 :param error_details: The error_details of this Notarize. # noqa: E501 1058 :type: ErrorDetails 1059 """ 1060 1061 self._error_details = error_details 1062 1063 @property 1064 def form_order(self): 1065 """Gets the form_order of this Notarize. # noqa: E501 1066 1067 # noqa: E501 1068 1069 :return: The form_order of this Notarize. # noqa: E501 1070 :rtype: str 1071 """ 1072 return self._form_order 1073 1074 @form_order.setter 1075 def form_order(self, form_order): 1076 """Sets the form_order of this Notarize. 1077 1078 # noqa: E501 1079 1080 :param form_order: The form_order of this Notarize. # noqa: E501 1081 :type: str 1082 """ 1083 1084 self._form_order = form_order 1085 1086 @property 1087 def form_order_metadata(self): 1088 """Gets the form_order_metadata of this Notarize. # noqa: E501 1089 1090 Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 1091 1092 :return: The form_order_metadata of this Notarize. # noqa: E501 1093 :rtype: PropertyMetadata 1094 """ 1095 return self._form_order_metadata 1096 1097 @form_order_metadata.setter 1098 def form_order_metadata(self, form_order_metadata): 1099 """Sets the form_order_metadata of this Notarize. 1100 1101 Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 1102 1103 :param form_order_metadata: The form_order_metadata of this Notarize. # noqa: E501 1104 :type: PropertyMetadata 1105 """ 1106 1107 self._form_order_metadata = form_order_metadata 1108 1109 @property 1110 def form_page_label(self): 1111 """Gets the form_page_label of this Notarize. # noqa: E501 1112 1113 # noqa: E501 1114 1115 :return: The form_page_label of this Notarize. # noqa: E501 1116 :rtype: str 1117 """ 1118 return self._form_page_label 1119 1120 @form_page_label.setter 1121 def form_page_label(self, form_page_label): 1122 """Sets the form_page_label of this Notarize. 1123 1124 # noqa: E501 1125 1126 :param form_page_label: The form_page_label of this Notarize. # noqa: E501 1127 :type: str 1128 """ 1129 1130 self._form_page_label = form_page_label 1131 1132 @property 1133 def form_page_label_metadata(self): 1134 """Gets the form_page_label_metadata of this Notarize. # noqa: E501 1135 1136 Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 1137 1138 :return: The form_page_label_metadata of this Notarize. # noqa: E501 1139 :rtype: PropertyMetadata 1140 """ 1141 return self._form_page_label_metadata 1142 1143 @form_page_label_metadata.setter 1144 def form_page_label_metadata(self, form_page_label_metadata): 1145 """Sets the form_page_label_metadata of this Notarize. 1146 1147 Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 1148 1149 :param form_page_label_metadata: The form_page_label_metadata of this Notarize. # noqa: E501 1150 :type: PropertyMetadata 1151 """ 1152 1153 self._form_page_label_metadata = form_page_label_metadata 1154 1155 @property 1156 def form_page_number(self): 1157 """Gets the form_page_number of this Notarize. # noqa: E501 1158 1159 # noqa: E501 1160 1161 :return: The form_page_number of this Notarize. # noqa: E501 1162 :rtype: str 1163 """ 1164 return self._form_page_number 1165 1166 @form_page_number.setter 1167 def form_page_number(self, form_page_number): 1168 """Sets the form_page_number of this Notarize. 1169 1170 # noqa: E501 1171 1172 :param form_page_number: The form_page_number of this Notarize. # noqa: E501 1173 :type: str 1174 """ 1175 1176 self._form_page_number = form_page_number 1177 1178 @property 1179 def form_page_number_metadata(self): 1180 """Gets the form_page_number_metadata of this Notarize. # noqa: E501 1181 1182 Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 1183 1184 :return: The form_page_number_metadata of this Notarize. # noqa: E501 1185 :rtype: PropertyMetadata 1186 """ 1187 return self._form_page_number_metadata 1188 1189 @form_page_number_metadata.setter 1190 def form_page_number_metadata(self, form_page_number_metadata): 1191 """Sets the form_page_number_metadata of this Notarize. 1192 1193 Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 1194 1195 :param form_page_number_metadata: The form_page_number_metadata of this Notarize. # noqa: E501 1196 :type: PropertyMetadata 1197 """ 1198 1199 self._form_page_number_metadata = form_page_number_metadata 1200 1201 @property 1202 def height(self): 1203 """Gets the height of this Notarize. # noqa: E501 1204 1205 Height of the tab in pixels. # noqa: E501 1206 1207 :return: The height of this Notarize. # noqa: E501 1208 :rtype: str 1209 """ 1210 return self._height 1211 1212 @height.setter 1213 def height(self, height): 1214 """Sets the height of this Notarize. 1215 1216 Height of the tab in pixels. # noqa: E501 1217 1218 :param height: The height of this Notarize. # noqa: E501 1219 :type: str 1220 """ 1221 1222 self._height = height 1223 1224 @property 1225 def height_metadata(self): 1226 """Gets the height_metadata of this Notarize. # noqa: E501 1227 1228 Metadata that indicates whether the `height` property is editable. # noqa: E501 1229 1230 :return: The height_metadata of this Notarize. # noqa: E501 1231 :rtype: PropertyMetadata 1232 """ 1233 return self._height_metadata 1234 1235 @height_metadata.setter 1236 def height_metadata(self, height_metadata): 1237 """Sets the height_metadata of this Notarize. 1238 1239 Metadata that indicates whether the `height` property is editable. # noqa: E501 1240 1241 :param height_metadata: The height_metadata of this Notarize. # noqa: E501 1242 :type: PropertyMetadata 1243 """ 1244 1245 self._height_metadata = height_metadata 1246 1247 @property 1248 def locked(self): 1249 """Gets the locked of this Notarize. # noqa: E501 1250 1251 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1252 1253 :return: The locked of this Notarize. # noqa: E501 1254 :rtype: str 1255 """ 1256 return self._locked 1257 1258 @locked.setter 1259 def locked(self, locked): 1260 """Sets the locked of this Notarize. 1261 1262 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1263 1264 :param locked: The locked of this Notarize. # noqa: E501 1265 :type: str 1266 """ 1267 1268 self._locked = locked 1269 1270 @property 1271 def locked_metadata(self): 1272 """Gets the locked_metadata of this Notarize. # noqa: E501 1273 1274 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1275 1276 :return: The locked_metadata of this Notarize. # noqa: E501 1277 :rtype: PropertyMetadata 1278 """ 1279 return self._locked_metadata 1280 1281 @locked_metadata.setter 1282 def locked_metadata(self, locked_metadata): 1283 """Sets the locked_metadata of this Notarize. 1284 1285 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1286 1287 :param locked_metadata: The locked_metadata of this Notarize. # noqa: E501 1288 :type: PropertyMetadata 1289 """ 1290 1291 self._locked_metadata = locked_metadata 1292 1293 @property 1294 def merge_field(self): 1295 """Gets the merge_field of this Notarize. # noqa: E501 1296 1297 Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 1298 1299 :return: The merge_field of this Notarize. # noqa: E501 1300 :rtype: MergeField 1301 """ 1302 return self._merge_field 1303 1304 @merge_field.setter 1305 def merge_field(self, merge_field): 1306 """Sets the merge_field of this Notarize. 1307 1308 Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 1309 1310 :param merge_field: The merge_field of this Notarize. # noqa: E501 1311 :type: MergeField 1312 """ 1313 1314 self._merge_field = merge_field 1315 1316 @property 1317 def merge_field_xml(self): 1318 """Gets the merge_field_xml of this Notarize. # noqa: E501 1319 1320 # noqa: E501 1321 1322 :return: The merge_field_xml of this Notarize. # noqa: E501 1323 :rtype: str 1324 """ 1325 return self._merge_field_xml 1326 1327 @merge_field_xml.setter 1328 def merge_field_xml(self, merge_field_xml): 1329 """Sets the merge_field_xml of this Notarize. 1330 1331 # noqa: E501 1332 1333 :param merge_field_xml: The merge_field_xml of this Notarize. # noqa: E501 1334 :type: str 1335 """ 1336 1337 self._merge_field_xml = merge_field_xml 1338 1339 @property 1340 def page_number(self): 1341 """Gets the page_number of this Notarize. # noqa: E501 1342 1343 Specifies the page number on which the tab is located. # noqa: E501 1344 1345 :return: The page_number of this Notarize. # noqa: E501 1346 :rtype: str 1347 """ 1348 return self._page_number 1349 1350 @page_number.setter 1351 def page_number(self, page_number): 1352 """Sets the page_number of this Notarize. 1353 1354 Specifies the page number on which the tab is located. # noqa: E501 1355 1356 :param page_number: The page_number of this Notarize. # noqa: E501 1357 :type: str 1358 """ 1359 1360 self._page_number = page_number 1361 1362 @property 1363 def page_number_metadata(self): 1364 """Gets the page_number_metadata of this Notarize. # noqa: E501 1365 1366 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1367 1368 :return: The page_number_metadata of this Notarize. # noqa: E501 1369 :rtype: PropertyMetadata 1370 """ 1371 return self._page_number_metadata 1372 1373 @page_number_metadata.setter 1374 def page_number_metadata(self, page_number_metadata): 1375 """Sets the page_number_metadata of this Notarize. 1376 1377 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1378 1379 :param page_number_metadata: The page_number_metadata of this Notarize. # noqa: E501 1380 :type: PropertyMetadata 1381 """ 1382 1383 self._page_number_metadata = page_number_metadata 1384 1385 @property 1386 def recipient_id(self): 1387 """Gets the recipient_id of this Notarize. # noqa: E501 1388 1389 Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 1390 1391 :return: The recipient_id of this Notarize. # noqa: E501 1392 :rtype: str 1393 """ 1394 return self._recipient_id 1395 1396 @recipient_id.setter 1397 def recipient_id(self, recipient_id): 1398 """Sets the recipient_id of this Notarize. 1399 1400 Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 1401 1402 :param recipient_id: The recipient_id of this Notarize. # noqa: E501 1403 :type: str 1404 """ 1405 1406 self._recipient_id = recipient_id 1407 1408 @property 1409 def recipient_id_guid(self): 1410 """Gets the recipient_id_guid of this Notarize. # noqa: E501 1411 1412 # noqa: E501 1413 1414 :return: The recipient_id_guid of this Notarize. # noqa: E501 1415 :rtype: str 1416 """ 1417 return self._recipient_id_guid 1418 1419 @recipient_id_guid.setter 1420 def recipient_id_guid(self, recipient_id_guid): 1421 """Sets the recipient_id_guid of this Notarize. 1422 1423 # noqa: E501 1424 1425 :param recipient_id_guid: The recipient_id_guid of this Notarize. # noqa: E501 1426 :type: str 1427 """ 1428 1429 self._recipient_id_guid = recipient_id_guid 1430 1431 @property 1432 def recipient_id_guid_metadata(self): 1433 """Gets the recipient_id_guid_metadata of this Notarize. # noqa: E501 1434 1435 Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 1436 1437 :return: The recipient_id_guid_metadata of this Notarize. # noqa: E501 1438 :rtype: PropertyMetadata 1439 """ 1440 return self._recipient_id_guid_metadata 1441 1442 @recipient_id_guid_metadata.setter 1443 def recipient_id_guid_metadata(self, recipient_id_guid_metadata): 1444 """Sets the recipient_id_guid_metadata of this Notarize. 1445 1446 Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 1447 1448 :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Notarize. # noqa: E501 1449 :type: PropertyMetadata 1450 """ 1451 1452 self._recipient_id_guid_metadata = recipient_id_guid_metadata 1453 1454 @property 1455 def recipient_id_metadata(self): 1456 """Gets the recipient_id_metadata of this Notarize. # noqa: E501 1457 1458 Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 1459 1460 :return: The recipient_id_metadata of this Notarize. # noqa: E501 1461 :rtype: PropertyMetadata 1462 """ 1463 return self._recipient_id_metadata 1464 1465 @recipient_id_metadata.setter 1466 def recipient_id_metadata(self, recipient_id_metadata): 1467 """Sets the recipient_id_metadata of this Notarize. 1468 1469 Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 1470 1471 :param recipient_id_metadata: The recipient_id_metadata of this Notarize. # noqa: E501 1472 :type: PropertyMetadata 1473 """ 1474 1475 self._recipient_id_metadata = recipient_id_metadata 1476 1477 @property 1478 def required(self): 1479 """Gets the required of this Notarize. # noqa: E501 1480 1481 When set to **true**, the signer is required to fill out this tab # noqa: E501 1482 1483 :return: The required of this Notarize. # noqa: E501 1484 :rtype: str 1485 """ 1486 return self._required 1487 1488 @required.setter 1489 def required(self, required): 1490 """Sets the required of this Notarize. 1491 1492 When set to **true**, the signer is required to fill out this tab # noqa: E501 1493 1494 :param required: The required of this Notarize. # noqa: E501 1495 :type: str 1496 """ 1497 1498 self._required = required 1499 1500 @property 1501 def required_metadata(self): 1502 """Gets the required_metadata of this Notarize. # noqa: E501 1503 1504 Metadata that indicates whether the `required` property is editable. # noqa: E501 1505 1506 :return: The required_metadata of this Notarize. # noqa: E501 1507 :rtype: PropertyMetadata 1508 """ 1509 return self._required_metadata 1510 1511 @required_metadata.setter 1512 def required_metadata(self, required_metadata): 1513 """Sets the required_metadata of this Notarize. 1514 1515 Metadata that indicates whether the `required` property is editable. # noqa: E501 1516 1517 :param required_metadata: The required_metadata of this Notarize. # noqa: E501 1518 :type: PropertyMetadata 1519 """ 1520 1521 self._required_metadata = required_metadata 1522 1523 @property 1524 def smart_contract_information(self): 1525 """Gets the smart_contract_information of this Notarize. # noqa: E501 1526 1527 Reserved for DocuSign. # noqa: E501 1528 1529 :return: The smart_contract_information of this Notarize. # noqa: E501 1530 :rtype: SmartContractInformation 1531 """ 1532 return self._smart_contract_information 1533 1534 @smart_contract_information.setter 1535 def smart_contract_information(self, smart_contract_information): 1536 """Sets the smart_contract_information of this Notarize. 1537 1538 Reserved for DocuSign. # noqa: E501 1539 1540 :param smart_contract_information: The smart_contract_information of this Notarize. # noqa: E501 1541 :type: SmartContractInformation 1542 """ 1543 1544 self._smart_contract_information = smart_contract_information 1545 1546 @property 1547 def source(self): 1548 """Gets the source of this Notarize. # noqa: E501 1549 1550 # noqa: E501 1551 1552 :return: The source of this Notarize. # noqa: E501 1553 :rtype: str 1554 """ 1555 return self._source 1556 1557 @source.setter 1558 def source(self, source): 1559 """Sets the source of this Notarize. 1560 1561 # noqa: E501 1562 1563 :param source: The source of this Notarize. # noqa: E501 1564 :type: str 1565 """ 1566 1567 self._source = source 1568 1569 @property 1570 def status(self): 1571 """Gets the status of this Notarize. # noqa: E501 1572 1573 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 1574 1575 :return: The status of this Notarize. # noqa: E501 1576 :rtype: str 1577 """ 1578 return self._status 1579 1580 @status.setter 1581 def status(self, status): 1582 """Sets the status of this Notarize. 1583 1584 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 1585 1586 :param status: The status of this Notarize. # noqa: E501 1587 :type: str 1588 """ 1589 1590 self._status = status 1591 1592 @property 1593 def status_metadata(self): 1594 """Gets the status_metadata of this Notarize. # noqa: E501 1595 1596 Metadata that indicates whether the `status` property is editable. # noqa: E501 1597 1598 :return: The status_metadata of this Notarize. # noqa: E501 1599 :rtype: PropertyMetadata 1600 """ 1601 return self._status_metadata 1602 1603 @status_metadata.setter 1604 def status_metadata(self, status_metadata): 1605 """Sets the status_metadata of this Notarize. 1606 1607 Metadata that indicates whether the `status` property is editable. # noqa: E501 1608 1609 :param status_metadata: The status_metadata of this Notarize. # noqa: E501 1610 :type: PropertyMetadata 1611 """ 1612 1613 self._status_metadata = status_metadata 1614 1615 @property 1616 def tab_group_labels(self): 1617 """Gets the tab_group_labels of this Notarize. # noqa: E501 1618 1619 # noqa: E501 1620 1621 :return: The tab_group_labels of this Notarize. # noqa: E501 1622 :rtype: list[str] 1623 """ 1624 return self._tab_group_labels 1625 1626 @tab_group_labels.setter 1627 def tab_group_labels(self, tab_group_labels): 1628 """Sets the tab_group_labels of this Notarize. 1629 1630 # noqa: E501 1631 1632 :param tab_group_labels: The tab_group_labels of this Notarize. # noqa: E501 1633 :type: list[str] 1634 """ 1635 1636 self._tab_group_labels = tab_group_labels 1637 1638 @property 1639 def tab_group_labels_metadata(self): 1640 """Gets the tab_group_labels_metadata of this Notarize. # noqa: E501 1641 1642 Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 1643 1644 :return: The tab_group_labels_metadata of this Notarize. # noqa: E501 1645 :rtype: PropertyMetadata 1646 """ 1647 return self._tab_group_labels_metadata 1648 1649 @tab_group_labels_metadata.setter 1650 def tab_group_labels_metadata(self, tab_group_labels_metadata): 1651 """Sets the tab_group_labels_metadata of this Notarize. 1652 1653 Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 1654 1655 :param tab_group_labels_metadata: The tab_group_labels_metadata of this Notarize. # noqa: E501 1656 :type: PropertyMetadata 1657 """ 1658 1659 self._tab_group_labels_metadata = tab_group_labels_metadata 1660 1661 @property 1662 def tab_id(self): 1663 """Gets the tab_id of this Notarize. # noqa: E501 1664 1665 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1666 1667 :return: The tab_id of this Notarize. # noqa: E501 1668 :rtype: str 1669 """ 1670 return self._tab_id 1671 1672 @tab_id.setter 1673 def tab_id(self, tab_id): 1674 """Sets the tab_id of this Notarize. 1675 1676 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1677 1678 :param tab_id: The tab_id of this Notarize. # noqa: E501 1679 :type: str 1680 """ 1681 1682 self._tab_id = tab_id 1683 1684 @property 1685 def tab_id_metadata(self): 1686 """Gets the tab_id_metadata of this Notarize. # noqa: E501 1687 1688 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1689 1690 :return: The tab_id_metadata of this Notarize. # noqa: E501 1691 :rtype: PropertyMetadata 1692 """ 1693 return self._tab_id_metadata 1694 1695 @tab_id_metadata.setter 1696 def tab_id_metadata(self, tab_id_metadata): 1697 """Sets the tab_id_metadata of this Notarize. 1698 1699 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1700 1701 :param tab_id_metadata: The tab_id_metadata of this Notarize. # noqa: E501 1702 :type: PropertyMetadata 1703 """ 1704 1705 self._tab_id_metadata = tab_id_metadata 1706 1707 @property 1708 def tab_order(self): 1709 """Gets the tab_order of this Notarize. # noqa: E501 1710 1711 # noqa: E501 1712 1713 :return: The tab_order of this Notarize. # noqa: E501 1714 :rtype: str 1715 """ 1716 return self._tab_order 1717 1718 @tab_order.setter 1719 def tab_order(self, tab_order): 1720 """Sets the tab_order of this Notarize. 1721 1722 # noqa: E501 1723 1724 :param tab_order: The tab_order of this Notarize. # noqa: E501 1725 :type: str 1726 """ 1727 1728 self._tab_order = tab_order 1729 1730 @property 1731 def tab_order_metadata(self): 1732 """Gets the tab_order_metadata of this Notarize. # noqa: E501 1733 1734 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1735 1736 :return: The tab_order_metadata of this Notarize. # noqa: E501 1737 :rtype: PropertyMetadata 1738 """ 1739 return self._tab_order_metadata 1740 1741 @tab_order_metadata.setter 1742 def tab_order_metadata(self, tab_order_metadata): 1743 """Sets the tab_order_metadata of this Notarize. 1744 1745 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1746 1747 :param tab_order_metadata: The tab_order_metadata of this Notarize. # noqa: E501 1748 :type: PropertyMetadata 1749 """ 1750 1751 self._tab_order_metadata = tab_order_metadata 1752 1753 @property 1754 def tab_type(self): 1755 """Gets the tab_type of this Notarize. # noqa: E501 1756 1757 # noqa: E501 1758 1759 :return: The tab_type of this Notarize. # noqa: E501 1760 :rtype: str 1761 """ 1762 return self._tab_type 1763 1764 @tab_type.setter 1765 def tab_type(self, tab_type): 1766 """Sets the tab_type of this Notarize. 1767 1768 # noqa: E501 1769 1770 :param tab_type: The tab_type of this Notarize. # noqa: E501 1771 :type: str 1772 """ 1773 1774 self._tab_type = tab_type 1775 1776 @property 1777 def tab_type_metadata(self): 1778 """Gets the tab_type_metadata of this Notarize. # noqa: E501 1779 1780 Metadata that indicates whether the `tabType` property is editable. # noqa: E501 1781 1782 :return: The tab_type_metadata of this Notarize. # noqa: E501 1783 :rtype: PropertyMetadata 1784 """ 1785 return self._tab_type_metadata 1786 1787 @tab_type_metadata.setter 1788 def tab_type_metadata(self, tab_type_metadata): 1789 """Sets the tab_type_metadata of this Notarize. 1790 1791 Metadata that indicates whether the `tabType` property is editable. # noqa: E501 1792 1793 :param tab_type_metadata: The tab_type_metadata of this Notarize. # noqa: E501 1794 :type: PropertyMetadata 1795 """ 1796 1797 self._tab_type_metadata = tab_type_metadata 1798 1799 @property 1800 def template_locked(self): 1801 """Gets the template_locked of this Notarize. # noqa: E501 1802 1803 When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 1804 1805 :return: The template_locked of this Notarize. # noqa: E501 1806 :rtype: str 1807 """ 1808 return self._template_locked 1809 1810 @template_locked.setter 1811 def template_locked(self, template_locked): 1812 """Sets the template_locked of this Notarize. 1813 1814 When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 1815 1816 :param template_locked: The template_locked of this Notarize. # noqa: E501 1817 :type: str 1818 """ 1819 1820 self._template_locked = template_locked 1821 1822 @property 1823 def template_locked_metadata(self): 1824 """Gets the template_locked_metadata of this Notarize. # noqa: E501 1825 1826 Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 1827 1828 :return: The template_locked_metadata of this Notarize. # noqa: E501 1829 :rtype: PropertyMetadata 1830 """ 1831 return self._template_locked_metadata 1832 1833 @template_locked_metadata.setter 1834 def template_locked_metadata(self, template_locked_metadata): 1835 """Sets the template_locked_metadata of this Notarize. 1836 1837 Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 1838 1839 :param template_locked_metadata: The template_locked_metadata of this Notarize. # noqa: E501 1840 :type: PropertyMetadata 1841 """ 1842 1843 self._template_locked_metadata = template_locked_metadata 1844 1845 @property 1846 def template_required(self): 1847 """Gets the template_required of this Notarize. # noqa: E501 1848 1849 When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 1850 1851 :return: The template_required of this Notarize. # noqa: E501 1852 :rtype: str 1853 """ 1854 return self._template_required 1855 1856 @template_required.setter 1857 def template_required(self, template_required): 1858 """Sets the template_required of this Notarize. 1859 1860 When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 1861 1862 :param template_required: The template_required of this Notarize. # noqa: E501 1863 :type: str 1864 """ 1865 1866 self._template_required = template_required 1867 1868 @property 1869 def template_required_metadata(self): 1870 """Gets the template_required_metadata of this Notarize. # noqa: E501 1871 1872 Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 1873 1874 :return: The template_required_metadata of this Notarize. # noqa: E501 1875 :rtype: PropertyMetadata 1876 """ 1877 return self._template_required_metadata 1878 1879 @template_required_metadata.setter 1880 def template_required_metadata(self, template_required_metadata): 1881 """Sets the template_required_metadata of this Notarize. 1882 1883 Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 1884 1885 :param template_required_metadata: The template_required_metadata of this Notarize. # noqa: E501 1886 :type: PropertyMetadata 1887 """ 1888 1889 self._template_required_metadata = template_required_metadata 1890 1891 @property 1892 def tooltip(self): 1893 """Gets the tooltip of this Notarize. # noqa: E501 1894 1895 # noqa: E501 1896 1897 :return: The tooltip of this Notarize. # noqa: E501 1898 :rtype: str 1899 """ 1900 return self._tooltip 1901 1902 @tooltip.setter 1903 def tooltip(self, tooltip): 1904 """Sets the tooltip of this Notarize. 1905 1906 # noqa: E501 1907 1908 :param tooltip: The tooltip of this Notarize. # noqa: E501 1909 :type: str 1910 """ 1911 1912 self._tooltip = tooltip 1913 1914 @property 1915 def tool_tip_metadata(self): 1916 """Gets the tool_tip_metadata of this Notarize. # noqa: E501 1917 1918 Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 1919 1920 :return: The tool_tip_metadata of this Notarize. # noqa: E501 1921 :rtype: PropertyMetadata 1922 """ 1923 return self._tool_tip_metadata 1924 1925 @tool_tip_metadata.setter 1926 def tool_tip_metadata(self, tool_tip_metadata): 1927 """Sets the tool_tip_metadata of this Notarize. 1928 1929 Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 1930 1931 :param tool_tip_metadata: The tool_tip_metadata of this Notarize. # noqa: E501 1932 :type: PropertyMetadata 1933 """ 1934 1935 self._tool_tip_metadata = tool_tip_metadata 1936 1937 @property 1938 def width(self): 1939 """Gets the width of this Notarize. # noqa: E501 1940 1941 Width of the tab in pixels. # noqa: E501 1942 1943 :return: The width of this Notarize. # noqa: E501 1944 :rtype: str 1945 """ 1946 return self._width 1947 1948 @width.setter 1949 def width(self, width): 1950 """Sets the width of this Notarize. 1951 1952 Width of the tab in pixels. # noqa: E501 1953 1954 :param width: The width of this Notarize. # noqa: E501 1955 :type: str 1956 """ 1957 1958 self._width = width 1959 1960 @property 1961 def width_metadata(self): 1962 """Gets the width_metadata of this Notarize. # noqa: E501 1963 1964 Metadata that indicates whether the `width` property is editable. # noqa: E501 1965 1966 :return: The width_metadata of this Notarize. # noqa: E501 1967 :rtype: PropertyMetadata 1968 """ 1969 return self._width_metadata 1970 1971 @width_metadata.setter 1972 def width_metadata(self, width_metadata): 1973 """Sets the width_metadata of this Notarize. 1974 1975 Metadata that indicates whether the `width` property is editable. # noqa: E501 1976 1977 :param width_metadata: The width_metadata of this Notarize. # noqa: E501 1978 :type: PropertyMetadata 1979 """ 1980 1981 self._width_metadata = width_metadata 1982 1983 @property 1984 def x_position(self): 1985 """Gets the x_position of this Notarize. # noqa: E501 1986 1987 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1988 1989 :return: The x_position of this Notarize. # noqa: E501 1990 :rtype: str 1991 """ 1992 return self._x_position 1993 1994 @x_position.setter 1995 def x_position(self, x_position): 1996 """Sets the x_position of this Notarize. 1997 1998 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1999 2000 :param x_position: The x_position of this Notarize. # noqa: E501 2001 :type: str 2002 """ 2003 2004 self._x_position = x_position 2005 2006 @property 2007 def x_position_metadata(self): 2008 """Gets the x_position_metadata of this Notarize. # noqa: E501 2009 2010 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 2011 2012 :return: The x_position_metadata of this Notarize. # noqa: E501 2013 :rtype: PropertyMetadata 2014 """ 2015 return self._x_position_metadata 2016 2017 @x_position_metadata.setter 2018 def x_position_metadata(self, x_position_metadata): 2019 """Sets the x_position_metadata of this Notarize. 2020 2021 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 2022 2023 :param x_position_metadata: The x_position_metadata of this Notarize. # noqa: E501 2024 :type: PropertyMetadata 2025 """ 2026 2027 self._x_position_metadata = x_position_metadata 2028 2029 @property 2030 def y_position(self): 2031 """Gets the y_position of this Notarize. # noqa: E501 2032 2033 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 2034 2035 :return: The y_position of this Notarize. # noqa: E501 2036 :rtype: str 2037 """ 2038 return self._y_position 2039 2040 @y_position.setter 2041 def y_position(self, y_position): 2042 """Sets the y_position of this Notarize. 2043 2044 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 2045 2046 :param y_position: The y_position of this Notarize. # noqa: E501 2047 :type: str 2048 """ 2049 2050 self._y_position = y_position 2051 2052 @property 2053 def y_position_metadata(self): 2054 """Gets the y_position_metadata of this Notarize. # noqa: E501 2055 2056 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 2057 2058 :return: The y_position_metadata of this Notarize. # noqa: E501 2059 :rtype: PropertyMetadata 2060 """ 2061 return self._y_position_metadata 2062 2063 @y_position_metadata.setter 2064 def y_position_metadata(self, y_position_metadata): 2065 """Sets the y_position_metadata of this Notarize. 2066 2067 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 2068 2069 :param y_position_metadata: The y_position_metadata of this Notarize. # noqa: E501 2070 :type: PropertyMetadata 2071 """ 2072 2073 self._y_position_metadata = y_position_metadata 2074 2075 def to_dict(self): 2076 """Returns the model properties as a dict""" 2077 result = {} 2078 2079 for attr, _ in six.iteritems(self.swagger_types): 2080 value = getattr(self, attr) 2081 if isinstance(value, list): 2082 result[attr] = list(map( 2083 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 2084 value 2085 )) 2086 elif hasattr(value, "to_dict"): 2087 result[attr] = value.to_dict() 2088 elif isinstance(value, dict): 2089 result[attr] = dict(map( 2090 lambda item: (item[0], item[1].to_dict()) 2091 if hasattr(item[1], "to_dict") else item, 2092 value.items() 2093 )) 2094 else: 2095 result[attr] = value 2096 if issubclass(Notarize, dict): 2097 for key, value in self.items(): 2098 result[key] = value 2099 2100 return result 2101 2102 def to_str(self): 2103 """Returns the string representation of the model""" 2104 return pprint.pformat(self.to_dict()) 2105 2106 def __repr__(self): 2107 """For `print` and `pprint`""" 2108 return self.to_str() 2109 2110 def __eq__(self, other): 2111 """Returns true if both objects are equal""" 2112 if not isinstance(other, Notarize): 2113 return False 2114 2115 return self.to_dict() == other.to_dict() 2116 2117 def __ne__(self, other): 2118 """Returns true if both objects are not equal""" 2119 if not isinstance(other, Notarize): 2120 return True 2121 2122 return self.to_dict() != other.to_dict()
23class Notarize(object): 24 """NOTE: This class is auto generated by the swagger code generator program. 25 26 Do not edit the class manually. 27 """ 28 29 """ 30 Attributes: 31 swagger_types (dict): The key is attribute name 32 and the value is attribute type. 33 attribute_map (dict): The key is attribute name 34 and the value is json key in definition. 35 """ 36 swagger_types = { 37 'anchor_allow_white_space_in_characters': 'str', 38 'anchor_allow_white_space_in_characters_metadata': 'PropertyMetadata', 39 'anchor_case_sensitive': 'str', 40 'anchor_case_sensitive_metadata': 'PropertyMetadata', 41 'anchor_horizontal_alignment': 'str', 42 'anchor_horizontal_alignment_metadata': 'PropertyMetadata', 43 'anchor_ignore_if_not_present': 'str', 44 'anchor_ignore_if_not_present_metadata': 'PropertyMetadata', 45 'anchor_match_whole_word': 'str', 46 'anchor_match_whole_word_metadata': 'PropertyMetadata', 47 'anchor_string': 'str', 48 'anchor_string_metadata': 'PropertyMetadata', 49 'anchor_tab_processor_version': 'str', 50 'anchor_tab_processor_version_metadata': 'PropertyMetadata', 51 'anchor_units': 'str', 52 'anchor_units_metadata': 'PropertyMetadata', 53 'anchor_x_offset': 'str', 54 'anchor_x_offset_metadata': 'PropertyMetadata', 55 'anchor_y_offset': 'str', 56 'anchor_y_offset_metadata': 'PropertyMetadata', 57 'caption': 'str', 58 'caption_metadata': 'PropertyMetadata', 59 'conditional_parent_label': 'str', 60 'conditional_parent_label_metadata': 'PropertyMetadata', 61 'conditional_parent_value': 'str', 62 'conditional_parent_value_metadata': 'PropertyMetadata', 63 'custom_tab_id': 'str', 64 'custom_tab_id_metadata': 'PropertyMetadata', 65 'document_id': 'str', 66 'document_id_metadata': 'PropertyMetadata', 67 'error_details': 'ErrorDetails', 68 'form_order': 'str', 69 'form_order_metadata': 'PropertyMetadata', 70 'form_page_label': 'str', 71 'form_page_label_metadata': 'PropertyMetadata', 72 'form_page_number': 'str', 73 'form_page_number_metadata': 'PropertyMetadata', 74 'height': 'str', 75 'height_metadata': 'PropertyMetadata', 76 'locked': 'str', 77 'locked_metadata': 'PropertyMetadata', 78 'merge_field': 'MergeField', 79 'merge_field_xml': 'str', 80 'page_number': 'str', 81 'page_number_metadata': 'PropertyMetadata', 82 'recipient_id': 'str', 83 'recipient_id_guid': 'str', 84 'recipient_id_guid_metadata': 'PropertyMetadata', 85 'recipient_id_metadata': 'PropertyMetadata', 86 'required': 'str', 87 'required_metadata': 'PropertyMetadata', 88 'smart_contract_information': 'SmartContractInformation', 89 'source': 'str', 90 'status': 'str', 91 'status_metadata': 'PropertyMetadata', 92 'tab_group_labels': 'list[str]', 93 'tab_group_labels_metadata': 'PropertyMetadata', 94 'tab_id': 'str', 95 'tab_id_metadata': 'PropertyMetadata', 96 'tab_order': 'str', 97 'tab_order_metadata': 'PropertyMetadata', 98 'tab_type': 'str', 99 'tab_type_metadata': 'PropertyMetadata', 100 'template_locked': 'str', 101 'template_locked_metadata': 'PropertyMetadata', 102 'template_required': 'str', 103 'template_required_metadata': 'PropertyMetadata', 104 'tooltip': 'str', 105 'tool_tip_metadata': 'PropertyMetadata', 106 'width': 'str', 107 'width_metadata': 'PropertyMetadata', 108 'x_position': 'str', 109 'x_position_metadata': 'PropertyMetadata', 110 'y_position': 'str', 111 'y_position_metadata': 'PropertyMetadata' 112 } 113 114 attribute_map = { 115 'anchor_allow_white_space_in_characters': 'anchorAllowWhiteSpaceInCharacters', 116 'anchor_allow_white_space_in_characters_metadata': 'anchorAllowWhiteSpaceInCharactersMetadata', 117 'anchor_case_sensitive': 'anchorCaseSensitive', 118 'anchor_case_sensitive_metadata': 'anchorCaseSensitiveMetadata', 119 'anchor_horizontal_alignment': 'anchorHorizontalAlignment', 120 'anchor_horizontal_alignment_metadata': 'anchorHorizontalAlignmentMetadata', 121 'anchor_ignore_if_not_present': 'anchorIgnoreIfNotPresent', 122 'anchor_ignore_if_not_present_metadata': 'anchorIgnoreIfNotPresentMetadata', 123 'anchor_match_whole_word': 'anchorMatchWholeWord', 124 'anchor_match_whole_word_metadata': 'anchorMatchWholeWordMetadata', 125 'anchor_string': 'anchorString', 126 'anchor_string_metadata': 'anchorStringMetadata', 127 'anchor_tab_processor_version': 'anchorTabProcessorVersion', 128 'anchor_tab_processor_version_metadata': 'anchorTabProcessorVersionMetadata', 129 'anchor_units': 'anchorUnits', 130 'anchor_units_metadata': 'anchorUnitsMetadata', 131 'anchor_x_offset': 'anchorXOffset', 132 'anchor_x_offset_metadata': 'anchorXOffsetMetadata', 133 'anchor_y_offset': 'anchorYOffset', 134 'anchor_y_offset_metadata': 'anchorYOffsetMetadata', 135 'caption': 'caption', 136 'caption_metadata': 'captionMetadata', 137 'conditional_parent_label': 'conditionalParentLabel', 138 'conditional_parent_label_metadata': 'conditionalParentLabelMetadata', 139 'conditional_parent_value': 'conditionalParentValue', 140 'conditional_parent_value_metadata': 'conditionalParentValueMetadata', 141 'custom_tab_id': 'customTabId', 142 'custom_tab_id_metadata': 'customTabIdMetadata', 143 'document_id': 'documentId', 144 'document_id_metadata': 'documentIdMetadata', 145 'error_details': 'errorDetails', 146 'form_order': 'formOrder', 147 'form_order_metadata': 'formOrderMetadata', 148 'form_page_label': 'formPageLabel', 149 'form_page_label_metadata': 'formPageLabelMetadata', 150 'form_page_number': 'formPageNumber', 151 'form_page_number_metadata': 'formPageNumberMetadata', 152 'height': 'height', 153 'height_metadata': 'heightMetadata', 154 'locked': 'locked', 155 'locked_metadata': 'lockedMetadata', 156 'merge_field': 'mergeField', 157 'merge_field_xml': 'mergeFieldXml', 158 'page_number': 'pageNumber', 159 'page_number_metadata': 'pageNumberMetadata', 160 'recipient_id': 'recipientId', 161 'recipient_id_guid': 'recipientIdGuid', 162 'recipient_id_guid_metadata': 'recipientIdGuidMetadata', 163 'recipient_id_metadata': 'recipientIdMetadata', 164 'required': 'required', 165 'required_metadata': 'requiredMetadata', 166 'smart_contract_information': 'smartContractInformation', 167 'source': 'source', 168 'status': 'status', 169 'status_metadata': 'statusMetadata', 170 'tab_group_labels': 'tabGroupLabels', 171 'tab_group_labels_metadata': 'tabGroupLabelsMetadata', 172 'tab_id': 'tabId', 173 'tab_id_metadata': 'tabIdMetadata', 174 'tab_order': 'tabOrder', 175 'tab_order_metadata': 'tabOrderMetadata', 176 'tab_type': 'tabType', 177 'tab_type_metadata': 'tabTypeMetadata', 178 'template_locked': 'templateLocked', 179 'template_locked_metadata': 'templateLockedMetadata', 180 'template_required': 'templateRequired', 181 'template_required_metadata': 'templateRequiredMetadata', 182 'tooltip': 'tooltip', 183 'tool_tip_metadata': 'toolTipMetadata', 184 'width': 'width', 185 'width_metadata': 'widthMetadata', 186 'x_position': 'xPosition', 187 'x_position_metadata': 'xPositionMetadata', 188 'y_position': 'yPosition', 189 'y_position_metadata': 'yPositionMetadata' 190 } 191 192 def __init__(self, _configuration=None, **kwargs): # noqa: E501 193 """Notarize - a model defined in Swagger""" # noqa: E501 194 if _configuration is None: 195 _configuration = Configuration() 196 self._configuration = _configuration 197 198 self._anchor_allow_white_space_in_characters = None 199 self._anchor_allow_white_space_in_characters_metadata = None 200 self._anchor_case_sensitive = None 201 self._anchor_case_sensitive_metadata = None 202 self._anchor_horizontal_alignment = None 203 self._anchor_horizontal_alignment_metadata = None 204 self._anchor_ignore_if_not_present = None 205 self._anchor_ignore_if_not_present_metadata = None 206 self._anchor_match_whole_word = None 207 self._anchor_match_whole_word_metadata = None 208 self._anchor_string = None 209 self._anchor_string_metadata = None 210 self._anchor_tab_processor_version = None 211 self._anchor_tab_processor_version_metadata = None 212 self._anchor_units = None 213 self._anchor_units_metadata = None 214 self._anchor_x_offset = None 215 self._anchor_x_offset_metadata = None 216 self._anchor_y_offset = None 217 self._anchor_y_offset_metadata = None 218 self._caption = None 219 self._caption_metadata = None 220 self._conditional_parent_label = None 221 self._conditional_parent_label_metadata = None 222 self._conditional_parent_value = None 223 self._conditional_parent_value_metadata = None 224 self._custom_tab_id = None 225 self._custom_tab_id_metadata = None 226 self._document_id = None 227 self._document_id_metadata = None 228 self._error_details = None 229 self._form_order = None 230 self._form_order_metadata = None 231 self._form_page_label = None 232 self._form_page_label_metadata = None 233 self._form_page_number = None 234 self._form_page_number_metadata = None 235 self._height = None 236 self._height_metadata = None 237 self._locked = None 238 self._locked_metadata = None 239 self._merge_field = None 240 self._merge_field_xml = None 241 self._page_number = None 242 self._page_number_metadata = None 243 self._recipient_id = None 244 self._recipient_id_guid = None 245 self._recipient_id_guid_metadata = None 246 self._recipient_id_metadata = None 247 self._required = None 248 self._required_metadata = None 249 self._smart_contract_information = None 250 self._source = None 251 self._status = None 252 self._status_metadata = None 253 self._tab_group_labels = None 254 self._tab_group_labels_metadata = None 255 self._tab_id = None 256 self._tab_id_metadata = None 257 self._tab_order = None 258 self._tab_order_metadata = None 259 self._tab_type = None 260 self._tab_type_metadata = None 261 self._template_locked = None 262 self._template_locked_metadata = None 263 self._template_required = None 264 self._template_required_metadata = None 265 self._tooltip = None 266 self._tool_tip_metadata = None 267 self._width = None 268 self._width_metadata = None 269 self._x_position = None 270 self._x_position_metadata = None 271 self._y_position = None 272 self._y_position_metadata = None 273 self.discriminator = None 274 275 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 276 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 277 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 278 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 279 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 280 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 281 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 282 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 283 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 284 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 285 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 286 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 287 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 288 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 289 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 290 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 291 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 292 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 293 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 294 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 295 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 296 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 297 setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None)) 298 setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None)) 299 setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None)) 300 setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None)) 301 setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None)) 302 setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None)) 303 setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None)) 304 setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None)) 305 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 306 setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None)) 307 setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None)) 308 setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None)) 309 setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None)) 310 setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None)) 311 setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None)) 312 setattr(self, "_{}".format('height'), kwargs.get('height', None)) 313 setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None)) 314 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 315 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 316 setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None)) 317 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 318 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 319 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 320 setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None)) 321 setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None)) 322 setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None)) 323 setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None)) 324 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 325 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 326 setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None)) 327 setattr(self, "_{}".format('source'), kwargs.get('source', None)) 328 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 329 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 330 setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None)) 331 setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None)) 332 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 333 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 334 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 335 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 336 setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None)) 337 setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None)) 338 setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None)) 339 setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None)) 340 setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None)) 341 setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None)) 342 setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None)) 343 setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None)) 344 setattr(self, "_{}".format('width'), kwargs.get('width', None)) 345 setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None)) 346 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 347 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 348 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 349 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None)) 350 351 @property 352 def anchor_allow_white_space_in_characters(self): 353 """Gets the anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 354 355 # noqa: E501 356 357 :return: The anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 358 :rtype: str 359 """ 360 return self._anchor_allow_white_space_in_characters 361 362 @anchor_allow_white_space_in_characters.setter 363 def anchor_allow_white_space_in_characters(self, anchor_allow_white_space_in_characters): 364 """Sets the anchor_allow_white_space_in_characters of this Notarize. 365 366 # noqa: E501 367 368 :param anchor_allow_white_space_in_characters: The anchor_allow_white_space_in_characters of this Notarize. # noqa: E501 369 :type: str 370 """ 371 372 self._anchor_allow_white_space_in_characters = anchor_allow_white_space_in_characters 373 374 @property 375 def anchor_allow_white_space_in_characters_metadata(self): 376 """Gets the anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 377 378 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 379 380 :return: The anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 381 :rtype: PropertyMetadata 382 """ 383 return self._anchor_allow_white_space_in_characters_metadata 384 385 @anchor_allow_white_space_in_characters_metadata.setter 386 def anchor_allow_white_space_in_characters_metadata(self, anchor_allow_white_space_in_characters_metadata): 387 """Sets the anchor_allow_white_space_in_characters_metadata of this Notarize. 388 389 Metadata that indicates whether the `anchorAllowWhiteSpaceInCharacters` property is editable. # noqa: E501 390 391 :param anchor_allow_white_space_in_characters_metadata: The anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501 392 :type: PropertyMetadata 393 """ 394 395 self._anchor_allow_white_space_in_characters_metadata = anchor_allow_white_space_in_characters_metadata 396 397 @property 398 def anchor_case_sensitive(self): 399 """Gets the anchor_case_sensitive of this Notarize. # noqa: E501 400 401 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 402 403 :return: The anchor_case_sensitive of this Notarize. # noqa: E501 404 :rtype: str 405 """ 406 return self._anchor_case_sensitive 407 408 @anchor_case_sensitive.setter 409 def anchor_case_sensitive(self, anchor_case_sensitive): 410 """Sets the anchor_case_sensitive of this Notarize. 411 412 When set to **true**, the anchor string does not consider case when matching strings in the document. The default value is **true**. # noqa: E501 413 414 :param anchor_case_sensitive: The anchor_case_sensitive of this Notarize. # noqa: E501 415 :type: str 416 """ 417 418 self._anchor_case_sensitive = anchor_case_sensitive 419 420 @property 421 def anchor_case_sensitive_metadata(self): 422 """Gets the anchor_case_sensitive_metadata of this Notarize. # noqa: E501 423 424 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 425 426 :return: The anchor_case_sensitive_metadata of this Notarize. # noqa: E501 427 :rtype: PropertyMetadata 428 """ 429 return self._anchor_case_sensitive_metadata 430 431 @anchor_case_sensitive_metadata.setter 432 def anchor_case_sensitive_metadata(self, anchor_case_sensitive_metadata): 433 """Sets the anchor_case_sensitive_metadata of this Notarize. 434 435 Metadata that indicates whether the `anchorCaseSensitive` property is editable. # noqa: E501 436 437 :param anchor_case_sensitive_metadata: The anchor_case_sensitive_metadata of this Notarize. # noqa: E501 438 :type: PropertyMetadata 439 """ 440 441 self._anchor_case_sensitive_metadata = anchor_case_sensitive_metadata 442 443 @property 444 def anchor_horizontal_alignment(self): 445 """Gets the anchor_horizontal_alignment of this Notarize. # noqa: E501 446 447 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 448 449 :return: The anchor_horizontal_alignment of this Notarize. # noqa: E501 450 :rtype: str 451 """ 452 return self._anchor_horizontal_alignment 453 454 @anchor_horizontal_alignment.setter 455 def anchor_horizontal_alignment(self, anchor_horizontal_alignment): 456 """Sets the anchor_horizontal_alignment of this Notarize. 457 458 Specifies the alignment of anchor tabs with anchor strings. Possible values are **left** or **right**. The default value is **left**. # noqa: E501 459 460 :param anchor_horizontal_alignment: The anchor_horizontal_alignment of this Notarize. # noqa: E501 461 :type: str 462 """ 463 464 self._anchor_horizontal_alignment = anchor_horizontal_alignment 465 466 @property 467 def anchor_horizontal_alignment_metadata(self): 468 """Gets the anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 469 470 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 471 472 :return: The anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 473 :rtype: PropertyMetadata 474 """ 475 return self._anchor_horizontal_alignment_metadata 476 477 @anchor_horizontal_alignment_metadata.setter 478 def anchor_horizontal_alignment_metadata(self, anchor_horizontal_alignment_metadata): 479 """Sets the anchor_horizontal_alignment_metadata of this Notarize. 480 481 Metadata that indicates whether the `anchorHorizontalAlignment` property is editable. # noqa: E501 482 483 :param anchor_horizontal_alignment_metadata: The anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501 484 :type: PropertyMetadata 485 """ 486 487 self._anchor_horizontal_alignment_metadata = anchor_horizontal_alignment_metadata 488 489 @property 490 def anchor_ignore_if_not_present(self): 491 """Gets the anchor_ignore_if_not_present of this Notarize. # noqa: E501 492 493 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 494 495 :return: The anchor_ignore_if_not_present of this Notarize. # noqa: E501 496 :rtype: str 497 """ 498 return self._anchor_ignore_if_not_present 499 500 @anchor_ignore_if_not_present.setter 501 def anchor_ignore_if_not_present(self, anchor_ignore_if_not_present): 502 """Sets the anchor_ignore_if_not_present of this Notarize. 503 504 When set to **true**, this tab is ignored if anchorString is not found in the document. # noqa: E501 505 506 :param anchor_ignore_if_not_present: The anchor_ignore_if_not_present of this Notarize. # noqa: E501 507 :type: str 508 """ 509 510 self._anchor_ignore_if_not_present = anchor_ignore_if_not_present 511 512 @property 513 def anchor_ignore_if_not_present_metadata(self): 514 """Gets the anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 515 516 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 517 518 :return: The anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 519 :rtype: PropertyMetadata 520 """ 521 return self._anchor_ignore_if_not_present_metadata 522 523 @anchor_ignore_if_not_present_metadata.setter 524 def anchor_ignore_if_not_present_metadata(self, anchor_ignore_if_not_present_metadata): 525 """Sets the anchor_ignore_if_not_present_metadata of this Notarize. 526 527 Metadata that indicates whether the `anchorIgnoreIfNotPresent` property is editable. # noqa: E501 528 529 :param anchor_ignore_if_not_present_metadata: The anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501 530 :type: PropertyMetadata 531 """ 532 533 self._anchor_ignore_if_not_present_metadata = anchor_ignore_if_not_present_metadata 534 535 @property 536 def anchor_match_whole_word(self): 537 """Gets the anchor_match_whole_word of this Notarize. # noqa: E501 538 539 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 540 541 :return: The anchor_match_whole_word of this Notarize. # noqa: E501 542 :rtype: str 543 """ 544 return self._anchor_match_whole_word 545 546 @anchor_match_whole_word.setter 547 def anchor_match_whole_word(self, anchor_match_whole_word): 548 """Sets the anchor_match_whole_word of this Notarize. 549 550 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 551 552 :param anchor_match_whole_word: The anchor_match_whole_word of this Notarize. # noqa: E501 553 :type: str 554 """ 555 556 self._anchor_match_whole_word = anchor_match_whole_word 557 558 @property 559 def anchor_match_whole_word_metadata(self): 560 """Gets the anchor_match_whole_word_metadata of this Notarize. # noqa: E501 561 562 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 563 564 :return: The anchor_match_whole_word_metadata of this Notarize. # noqa: E501 565 :rtype: PropertyMetadata 566 """ 567 return self._anchor_match_whole_word_metadata 568 569 @anchor_match_whole_word_metadata.setter 570 def anchor_match_whole_word_metadata(self, anchor_match_whole_word_metadata): 571 """Sets the anchor_match_whole_word_metadata of this Notarize. 572 573 Metadata that indicates whether the `anchorMatchWholeWord` property is editable. # noqa: E501 574 575 :param anchor_match_whole_word_metadata: The anchor_match_whole_word_metadata of this Notarize. # noqa: E501 576 :type: PropertyMetadata 577 """ 578 579 self._anchor_match_whole_word_metadata = anchor_match_whole_word_metadata 580 581 @property 582 def anchor_string(self): 583 """Gets the anchor_string of this Notarize. # noqa: E501 584 585 Anchor text information for a radio button. # noqa: E501 586 587 :return: The anchor_string of this Notarize. # noqa: E501 588 :rtype: str 589 """ 590 return self._anchor_string 591 592 @anchor_string.setter 593 def anchor_string(self, anchor_string): 594 """Sets the anchor_string of this Notarize. 595 596 Anchor text information for a radio button. # noqa: E501 597 598 :param anchor_string: The anchor_string of this Notarize. # noqa: E501 599 :type: str 600 """ 601 602 self._anchor_string = anchor_string 603 604 @property 605 def anchor_string_metadata(self): 606 """Gets the anchor_string_metadata of this Notarize. # noqa: E501 607 608 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 609 610 :return: The anchor_string_metadata of this Notarize. # noqa: E501 611 :rtype: PropertyMetadata 612 """ 613 return self._anchor_string_metadata 614 615 @anchor_string_metadata.setter 616 def anchor_string_metadata(self, anchor_string_metadata): 617 """Sets the anchor_string_metadata of this Notarize. 618 619 Metadata that indicates whether the `anchorString` property is editable. # noqa: E501 620 621 :param anchor_string_metadata: The anchor_string_metadata of this Notarize. # noqa: E501 622 :type: PropertyMetadata 623 """ 624 625 self._anchor_string_metadata = anchor_string_metadata 626 627 @property 628 def anchor_tab_processor_version(self): 629 """Gets the anchor_tab_processor_version of this Notarize. # noqa: E501 630 631 # noqa: E501 632 633 :return: The anchor_tab_processor_version of this Notarize. # noqa: E501 634 :rtype: str 635 """ 636 return self._anchor_tab_processor_version 637 638 @anchor_tab_processor_version.setter 639 def anchor_tab_processor_version(self, anchor_tab_processor_version): 640 """Sets the anchor_tab_processor_version of this Notarize. 641 642 # noqa: E501 643 644 :param anchor_tab_processor_version: The anchor_tab_processor_version of this Notarize. # noqa: E501 645 :type: str 646 """ 647 648 self._anchor_tab_processor_version = anchor_tab_processor_version 649 650 @property 651 def anchor_tab_processor_version_metadata(self): 652 """Gets the anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 653 654 Reserved for DocuSign. # noqa: E501 655 656 :return: The anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 657 :rtype: PropertyMetadata 658 """ 659 return self._anchor_tab_processor_version_metadata 660 661 @anchor_tab_processor_version_metadata.setter 662 def anchor_tab_processor_version_metadata(self, anchor_tab_processor_version_metadata): 663 """Sets the anchor_tab_processor_version_metadata of this Notarize. 664 665 Reserved for DocuSign. # noqa: E501 666 667 :param anchor_tab_processor_version_metadata: The anchor_tab_processor_version_metadata of this Notarize. # noqa: E501 668 :type: PropertyMetadata 669 """ 670 671 self._anchor_tab_processor_version_metadata = anchor_tab_processor_version_metadata 672 673 @property 674 def anchor_units(self): 675 """Gets the anchor_units of this Notarize. # noqa: E501 676 677 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 678 679 :return: The anchor_units of this Notarize. # noqa: E501 680 :rtype: str 681 """ 682 return self._anchor_units 683 684 @anchor_units.setter 685 def anchor_units(self, anchor_units): 686 """Sets the anchor_units of this Notarize. 687 688 Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501 689 690 :param anchor_units: The anchor_units of this Notarize. # noqa: E501 691 :type: str 692 """ 693 694 self._anchor_units = anchor_units 695 696 @property 697 def anchor_units_metadata(self): 698 """Gets the anchor_units_metadata of this Notarize. # noqa: E501 699 700 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 701 702 :return: The anchor_units_metadata of this Notarize. # noqa: E501 703 :rtype: PropertyMetadata 704 """ 705 return self._anchor_units_metadata 706 707 @anchor_units_metadata.setter 708 def anchor_units_metadata(self, anchor_units_metadata): 709 """Sets the anchor_units_metadata of this Notarize. 710 711 Metadata that indicates whether the `anchorUnits` property is editable. # noqa: E501 712 713 :param anchor_units_metadata: The anchor_units_metadata of this Notarize. # noqa: E501 714 :type: PropertyMetadata 715 """ 716 717 self._anchor_units_metadata = anchor_units_metadata 718 719 @property 720 def anchor_x_offset(self): 721 """Gets the anchor_x_offset of this Notarize. # noqa: E501 722 723 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 724 725 :return: The anchor_x_offset of this Notarize. # noqa: E501 726 :rtype: str 727 """ 728 return self._anchor_x_offset 729 730 @anchor_x_offset.setter 731 def anchor_x_offset(self, anchor_x_offset): 732 """Sets the anchor_x_offset of this Notarize. 733 734 Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 735 736 :param anchor_x_offset: The anchor_x_offset of this Notarize. # noqa: E501 737 :type: str 738 """ 739 740 self._anchor_x_offset = anchor_x_offset 741 742 @property 743 def anchor_x_offset_metadata(self): 744 """Gets the anchor_x_offset_metadata of this Notarize. # noqa: E501 745 746 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 747 748 :return: The anchor_x_offset_metadata of this Notarize. # noqa: E501 749 :rtype: PropertyMetadata 750 """ 751 return self._anchor_x_offset_metadata 752 753 @anchor_x_offset_metadata.setter 754 def anchor_x_offset_metadata(self, anchor_x_offset_metadata): 755 """Sets the anchor_x_offset_metadata of this Notarize. 756 757 Metadata that indicates whether the `anchorXOffset` property is editable. # noqa: E501 758 759 :param anchor_x_offset_metadata: The anchor_x_offset_metadata of this Notarize. # noqa: E501 760 :type: PropertyMetadata 761 """ 762 763 self._anchor_x_offset_metadata = anchor_x_offset_metadata 764 765 @property 766 def anchor_y_offset(self): 767 """Gets the anchor_y_offset of this Notarize. # noqa: E501 768 769 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 770 771 :return: The anchor_y_offset of this Notarize. # noqa: E501 772 :rtype: str 773 """ 774 return self._anchor_y_offset 775 776 @anchor_y_offset.setter 777 def anchor_y_offset(self, anchor_y_offset): 778 """Sets the anchor_y_offset of this Notarize. 779 780 Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501 781 782 :param anchor_y_offset: The anchor_y_offset of this Notarize. # noqa: E501 783 :type: str 784 """ 785 786 self._anchor_y_offset = anchor_y_offset 787 788 @property 789 def anchor_y_offset_metadata(self): 790 """Gets the anchor_y_offset_metadata of this Notarize. # noqa: E501 791 792 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 793 794 :return: The anchor_y_offset_metadata of this Notarize. # noqa: E501 795 :rtype: PropertyMetadata 796 """ 797 return self._anchor_y_offset_metadata 798 799 @anchor_y_offset_metadata.setter 800 def anchor_y_offset_metadata(self, anchor_y_offset_metadata): 801 """Sets the anchor_y_offset_metadata of this Notarize. 802 803 Metadata that indicates whether the `anchorYOffset` property is editable. # noqa: E501 804 805 :param anchor_y_offset_metadata: The anchor_y_offset_metadata of this Notarize. # noqa: E501 806 :type: PropertyMetadata 807 """ 808 809 self._anchor_y_offset_metadata = anchor_y_offset_metadata 810 811 @property 812 def caption(self): 813 """Gets the caption of this Notarize. # noqa: E501 814 815 # noqa: E501 816 817 :return: The caption of this Notarize. # noqa: E501 818 :rtype: str 819 """ 820 return self._caption 821 822 @caption.setter 823 def caption(self, caption): 824 """Sets the caption of this Notarize. 825 826 # noqa: E501 827 828 :param caption: The caption of this Notarize. # noqa: E501 829 :type: str 830 """ 831 832 self._caption = caption 833 834 @property 835 def caption_metadata(self): 836 """Gets the caption_metadata of this Notarize. # noqa: E501 837 838 # noqa: E501 839 840 :return: The caption_metadata of this Notarize. # noqa: E501 841 :rtype: PropertyMetadata 842 """ 843 return self._caption_metadata 844 845 @caption_metadata.setter 846 def caption_metadata(self, caption_metadata): 847 """Sets the caption_metadata of this Notarize. 848 849 # noqa: E501 850 851 :param caption_metadata: The caption_metadata of this Notarize. # noqa: E501 852 :type: PropertyMetadata 853 """ 854 855 self._caption_metadata = caption_metadata 856 857 @property 858 def conditional_parent_label(self): 859 """Gets the conditional_parent_label of this Notarize. # noqa: E501 860 861 For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 862 863 :return: The conditional_parent_label of this Notarize. # noqa: E501 864 :rtype: str 865 """ 866 return self._conditional_parent_label 867 868 @conditional_parent_label.setter 869 def conditional_parent_label(self, conditional_parent_label): 870 """Sets the conditional_parent_label of this Notarize. 871 872 For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501 873 874 :param conditional_parent_label: The conditional_parent_label of this Notarize. # noqa: E501 875 :type: str 876 """ 877 878 self._conditional_parent_label = conditional_parent_label 879 880 @property 881 def conditional_parent_label_metadata(self): 882 """Gets the conditional_parent_label_metadata of this Notarize. # noqa: E501 883 884 Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 885 886 :return: The conditional_parent_label_metadata of this Notarize. # noqa: E501 887 :rtype: PropertyMetadata 888 """ 889 return self._conditional_parent_label_metadata 890 891 @conditional_parent_label_metadata.setter 892 def conditional_parent_label_metadata(self, conditional_parent_label_metadata): 893 """Sets the conditional_parent_label_metadata of this Notarize. 894 895 Metadata that indicates whether the `conditionalParentLabel` property is editable. # noqa: E501 896 897 :param conditional_parent_label_metadata: The conditional_parent_label_metadata of this Notarize. # noqa: E501 898 :type: PropertyMetadata 899 """ 900 901 self._conditional_parent_label_metadata = conditional_parent_label_metadata 902 903 @property 904 def conditional_parent_value(self): 905 """Gets the conditional_parent_value of this Notarize. # noqa: E501 906 907 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 908 909 :return: The conditional_parent_value of this Notarize. # noqa: E501 910 :rtype: str 911 """ 912 return self._conditional_parent_value 913 914 @conditional_parent_value.setter 915 def conditional_parent_value(self, conditional_parent_value): 916 """Sets the conditional_parent_value of this Notarize. 917 918 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 919 920 :param conditional_parent_value: The conditional_parent_value of this Notarize. # noqa: E501 921 :type: str 922 """ 923 924 self._conditional_parent_value = conditional_parent_value 925 926 @property 927 def conditional_parent_value_metadata(self): 928 """Gets the conditional_parent_value_metadata of this Notarize. # noqa: E501 929 930 Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 931 932 :return: The conditional_parent_value_metadata of this Notarize. # noqa: E501 933 :rtype: PropertyMetadata 934 """ 935 return self._conditional_parent_value_metadata 936 937 @conditional_parent_value_metadata.setter 938 def conditional_parent_value_metadata(self, conditional_parent_value_metadata): 939 """Sets the conditional_parent_value_metadata of this Notarize. 940 941 Metadata that indicates whether the `conditionalParentValue` property is editable. # noqa: E501 942 943 :param conditional_parent_value_metadata: The conditional_parent_value_metadata of this Notarize. # noqa: E501 944 :type: PropertyMetadata 945 """ 946 947 self._conditional_parent_value_metadata = conditional_parent_value_metadata 948 949 @property 950 def custom_tab_id(self): 951 """Gets the custom_tab_id of this Notarize. # noqa: E501 952 953 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 954 955 :return: The custom_tab_id of this Notarize. # noqa: E501 956 :rtype: str 957 """ 958 return self._custom_tab_id 959 960 @custom_tab_id.setter 961 def custom_tab_id(self, custom_tab_id): 962 """Sets the custom_tab_id of this Notarize. 963 964 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 965 966 :param custom_tab_id: The custom_tab_id of this Notarize. # noqa: E501 967 :type: str 968 """ 969 970 self._custom_tab_id = custom_tab_id 971 972 @property 973 def custom_tab_id_metadata(self): 974 """Gets the custom_tab_id_metadata of this Notarize. # noqa: E501 975 976 Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 977 978 :return: The custom_tab_id_metadata of this Notarize. # noqa: E501 979 :rtype: PropertyMetadata 980 """ 981 return self._custom_tab_id_metadata 982 983 @custom_tab_id_metadata.setter 984 def custom_tab_id_metadata(self, custom_tab_id_metadata): 985 """Sets the custom_tab_id_metadata of this Notarize. 986 987 Metadata that indicates whether the `customTabId` property is editable. # noqa: E501 988 989 :param custom_tab_id_metadata: The custom_tab_id_metadata of this Notarize. # noqa: E501 990 :type: PropertyMetadata 991 """ 992 993 self._custom_tab_id_metadata = custom_tab_id_metadata 994 995 @property 996 def document_id(self): 997 """Gets the document_id of this Notarize. # noqa: E501 998 999 Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 1000 1001 :return: The document_id of this Notarize. # noqa: E501 1002 :rtype: str 1003 """ 1004 return self._document_id 1005 1006 @document_id.setter 1007 def document_id(self, document_id): 1008 """Sets the document_id of this Notarize. 1009 1010 Specifies the document ID number that the tab is placed on. This must refer to an existing Document's ID attribute. # noqa: E501 1011 1012 :param document_id: The document_id of this Notarize. # noqa: E501 1013 :type: str 1014 """ 1015 1016 self._document_id = document_id 1017 1018 @property 1019 def document_id_metadata(self): 1020 """Gets the document_id_metadata of this Notarize. # noqa: E501 1021 1022 Metadata that indicates whether the `documentId` property is editable. # noqa: E501 1023 1024 :return: The document_id_metadata of this Notarize. # noqa: E501 1025 :rtype: PropertyMetadata 1026 """ 1027 return self._document_id_metadata 1028 1029 @document_id_metadata.setter 1030 def document_id_metadata(self, document_id_metadata): 1031 """Sets the document_id_metadata of this Notarize. 1032 1033 Metadata that indicates whether the `documentId` property is editable. # noqa: E501 1034 1035 :param document_id_metadata: The document_id_metadata of this Notarize. # noqa: E501 1036 :type: PropertyMetadata 1037 """ 1038 1039 self._document_id_metadata = document_id_metadata 1040 1041 @property 1042 def error_details(self): 1043 """Gets the error_details of this Notarize. # noqa: E501 1044 1045 Array or errors. # noqa: E501 1046 1047 :return: The error_details of this Notarize. # noqa: E501 1048 :rtype: ErrorDetails 1049 """ 1050 return self._error_details 1051 1052 @error_details.setter 1053 def error_details(self, error_details): 1054 """Sets the error_details of this Notarize. 1055 1056 Array or errors. # noqa: E501 1057 1058 :param error_details: The error_details of this Notarize. # noqa: E501 1059 :type: ErrorDetails 1060 """ 1061 1062 self._error_details = error_details 1063 1064 @property 1065 def form_order(self): 1066 """Gets the form_order of this Notarize. # noqa: E501 1067 1068 # noqa: E501 1069 1070 :return: The form_order of this Notarize. # noqa: E501 1071 :rtype: str 1072 """ 1073 return self._form_order 1074 1075 @form_order.setter 1076 def form_order(self, form_order): 1077 """Sets the form_order of this Notarize. 1078 1079 # noqa: E501 1080 1081 :param form_order: The form_order of this Notarize. # noqa: E501 1082 :type: str 1083 """ 1084 1085 self._form_order = form_order 1086 1087 @property 1088 def form_order_metadata(self): 1089 """Gets the form_order_metadata of this Notarize. # noqa: E501 1090 1091 Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 1092 1093 :return: The form_order_metadata of this Notarize. # noqa: E501 1094 :rtype: PropertyMetadata 1095 """ 1096 return self._form_order_metadata 1097 1098 @form_order_metadata.setter 1099 def form_order_metadata(self, form_order_metadata): 1100 """Sets the form_order_metadata of this Notarize. 1101 1102 Metadata that indicates whether the `formOrder` property is editable. # noqa: E501 1103 1104 :param form_order_metadata: The form_order_metadata of this Notarize. # noqa: E501 1105 :type: PropertyMetadata 1106 """ 1107 1108 self._form_order_metadata = form_order_metadata 1109 1110 @property 1111 def form_page_label(self): 1112 """Gets the form_page_label of this Notarize. # noqa: E501 1113 1114 # noqa: E501 1115 1116 :return: The form_page_label of this Notarize. # noqa: E501 1117 :rtype: str 1118 """ 1119 return self._form_page_label 1120 1121 @form_page_label.setter 1122 def form_page_label(self, form_page_label): 1123 """Sets the form_page_label of this Notarize. 1124 1125 # noqa: E501 1126 1127 :param form_page_label: The form_page_label of this Notarize. # noqa: E501 1128 :type: str 1129 """ 1130 1131 self._form_page_label = form_page_label 1132 1133 @property 1134 def form_page_label_metadata(self): 1135 """Gets the form_page_label_metadata of this Notarize. # noqa: E501 1136 1137 Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 1138 1139 :return: The form_page_label_metadata of this Notarize. # noqa: E501 1140 :rtype: PropertyMetadata 1141 """ 1142 return self._form_page_label_metadata 1143 1144 @form_page_label_metadata.setter 1145 def form_page_label_metadata(self, form_page_label_metadata): 1146 """Sets the form_page_label_metadata of this Notarize. 1147 1148 Metadata that indicates whether the `formPageLabel` property is editable. # noqa: E501 1149 1150 :param form_page_label_metadata: The form_page_label_metadata of this Notarize. # noqa: E501 1151 :type: PropertyMetadata 1152 """ 1153 1154 self._form_page_label_metadata = form_page_label_metadata 1155 1156 @property 1157 def form_page_number(self): 1158 """Gets the form_page_number of this Notarize. # noqa: E501 1159 1160 # noqa: E501 1161 1162 :return: The form_page_number of this Notarize. # noqa: E501 1163 :rtype: str 1164 """ 1165 return self._form_page_number 1166 1167 @form_page_number.setter 1168 def form_page_number(self, form_page_number): 1169 """Sets the form_page_number of this Notarize. 1170 1171 # noqa: E501 1172 1173 :param form_page_number: The form_page_number of this Notarize. # noqa: E501 1174 :type: str 1175 """ 1176 1177 self._form_page_number = form_page_number 1178 1179 @property 1180 def form_page_number_metadata(self): 1181 """Gets the form_page_number_metadata of this Notarize. # noqa: E501 1182 1183 Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 1184 1185 :return: The form_page_number_metadata of this Notarize. # noqa: E501 1186 :rtype: PropertyMetadata 1187 """ 1188 return self._form_page_number_metadata 1189 1190 @form_page_number_metadata.setter 1191 def form_page_number_metadata(self, form_page_number_metadata): 1192 """Sets the form_page_number_metadata of this Notarize. 1193 1194 Metadata that indicates whether the `fromPageNumber` property is editable. # noqa: E501 1195 1196 :param form_page_number_metadata: The form_page_number_metadata of this Notarize. # noqa: E501 1197 :type: PropertyMetadata 1198 """ 1199 1200 self._form_page_number_metadata = form_page_number_metadata 1201 1202 @property 1203 def height(self): 1204 """Gets the height of this Notarize. # noqa: E501 1205 1206 Height of the tab in pixels. # noqa: E501 1207 1208 :return: The height of this Notarize. # noqa: E501 1209 :rtype: str 1210 """ 1211 return self._height 1212 1213 @height.setter 1214 def height(self, height): 1215 """Sets the height of this Notarize. 1216 1217 Height of the tab in pixels. # noqa: E501 1218 1219 :param height: The height of this Notarize. # noqa: E501 1220 :type: str 1221 """ 1222 1223 self._height = height 1224 1225 @property 1226 def height_metadata(self): 1227 """Gets the height_metadata of this Notarize. # noqa: E501 1228 1229 Metadata that indicates whether the `height` property is editable. # noqa: E501 1230 1231 :return: The height_metadata of this Notarize. # noqa: E501 1232 :rtype: PropertyMetadata 1233 """ 1234 return self._height_metadata 1235 1236 @height_metadata.setter 1237 def height_metadata(self, height_metadata): 1238 """Sets the height_metadata of this Notarize. 1239 1240 Metadata that indicates whether the `height` property is editable. # noqa: E501 1241 1242 :param height_metadata: The height_metadata of this Notarize. # noqa: E501 1243 :type: PropertyMetadata 1244 """ 1245 1246 self._height_metadata = height_metadata 1247 1248 @property 1249 def locked(self): 1250 """Gets the locked of this Notarize. # noqa: E501 1251 1252 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1253 1254 :return: The locked of this Notarize. # noqa: E501 1255 :rtype: str 1256 """ 1257 return self._locked 1258 1259 @locked.setter 1260 def locked(self, locked): 1261 """Sets the locked of this Notarize. 1262 1263 When set to **true**, the signer cannot change the data of the custom tab. # noqa: E501 1264 1265 :param locked: The locked of this Notarize. # noqa: E501 1266 :type: str 1267 """ 1268 1269 self._locked = locked 1270 1271 @property 1272 def locked_metadata(self): 1273 """Gets the locked_metadata of this Notarize. # noqa: E501 1274 1275 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1276 1277 :return: The locked_metadata of this Notarize. # noqa: E501 1278 :rtype: PropertyMetadata 1279 """ 1280 return self._locked_metadata 1281 1282 @locked_metadata.setter 1283 def locked_metadata(self, locked_metadata): 1284 """Sets the locked_metadata of this Notarize. 1285 1286 Metadata that indicates whether the `locked` property is editable. # noqa: E501 1287 1288 :param locked_metadata: The locked_metadata of this Notarize. # noqa: E501 1289 :type: PropertyMetadata 1290 """ 1291 1292 self._locked_metadata = locked_metadata 1293 1294 @property 1295 def merge_field(self): 1296 """Gets the merge_field of this Notarize. # noqa: E501 1297 1298 Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 1299 1300 :return: The merge_field of this Notarize. # noqa: E501 1301 :rtype: MergeField 1302 """ 1303 return self._merge_field 1304 1305 @merge_field.setter 1306 def merge_field(self, merge_field): 1307 """Sets the merge_field of this Notarize. 1308 1309 Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501 1310 1311 :param merge_field: The merge_field of this Notarize. # noqa: E501 1312 :type: MergeField 1313 """ 1314 1315 self._merge_field = merge_field 1316 1317 @property 1318 def merge_field_xml(self): 1319 """Gets the merge_field_xml of this Notarize. # noqa: E501 1320 1321 # noqa: E501 1322 1323 :return: The merge_field_xml of this Notarize. # noqa: E501 1324 :rtype: str 1325 """ 1326 return self._merge_field_xml 1327 1328 @merge_field_xml.setter 1329 def merge_field_xml(self, merge_field_xml): 1330 """Sets the merge_field_xml of this Notarize. 1331 1332 # noqa: E501 1333 1334 :param merge_field_xml: The merge_field_xml of this Notarize. # noqa: E501 1335 :type: str 1336 """ 1337 1338 self._merge_field_xml = merge_field_xml 1339 1340 @property 1341 def page_number(self): 1342 """Gets the page_number of this Notarize. # noqa: E501 1343 1344 Specifies the page number on which the tab is located. # noqa: E501 1345 1346 :return: The page_number of this Notarize. # noqa: E501 1347 :rtype: str 1348 """ 1349 return self._page_number 1350 1351 @page_number.setter 1352 def page_number(self, page_number): 1353 """Sets the page_number of this Notarize. 1354 1355 Specifies the page number on which the tab is located. # noqa: E501 1356 1357 :param page_number: The page_number of this Notarize. # noqa: E501 1358 :type: str 1359 """ 1360 1361 self._page_number = page_number 1362 1363 @property 1364 def page_number_metadata(self): 1365 """Gets the page_number_metadata of this Notarize. # noqa: E501 1366 1367 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1368 1369 :return: The page_number_metadata of this Notarize. # noqa: E501 1370 :rtype: PropertyMetadata 1371 """ 1372 return self._page_number_metadata 1373 1374 @page_number_metadata.setter 1375 def page_number_metadata(self, page_number_metadata): 1376 """Sets the page_number_metadata of this Notarize. 1377 1378 Metadata that indicates whether the `pageNumber` property is editable. # noqa: E501 1379 1380 :param page_number_metadata: The page_number_metadata of this Notarize. # noqa: E501 1381 :type: PropertyMetadata 1382 """ 1383 1384 self._page_number_metadata = page_number_metadata 1385 1386 @property 1387 def recipient_id(self): 1388 """Gets the recipient_id of this Notarize. # noqa: E501 1389 1390 Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 1391 1392 :return: The recipient_id of this Notarize. # noqa: E501 1393 :rtype: str 1394 """ 1395 return self._recipient_id 1396 1397 @recipient_id.setter 1398 def recipient_id(self, recipient_id): 1399 """Sets the recipient_id of this Notarize. 1400 1401 Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501 1402 1403 :param recipient_id: The recipient_id of this Notarize. # noqa: E501 1404 :type: str 1405 """ 1406 1407 self._recipient_id = recipient_id 1408 1409 @property 1410 def recipient_id_guid(self): 1411 """Gets the recipient_id_guid of this Notarize. # noqa: E501 1412 1413 # noqa: E501 1414 1415 :return: The recipient_id_guid of this Notarize. # noqa: E501 1416 :rtype: str 1417 """ 1418 return self._recipient_id_guid 1419 1420 @recipient_id_guid.setter 1421 def recipient_id_guid(self, recipient_id_guid): 1422 """Sets the recipient_id_guid of this Notarize. 1423 1424 # noqa: E501 1425 1426 :param recipient_id_guid: The recipient_id_guid of this Notarize. # noqa: E501 1427 :type: str 1428 """ 1429 1430 self._recipient_id_guid = recipient_id_guid 1431 1432 @property 1433 def recipient_id_guid_metadata(self): 1434 """Gets the recipient_id_guid_metadata of this Notarize. # noqa: E501 1435 1436 Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 1437 1438 :return: The recipient_id_guid_metadata of this Notarize. # noqa: E501 1439 :rtype: PropertyMetadata 1440 """ 1441 return self._recipient_id_guid_metadata 1442 1443 @recipient_id_guid_metadata.setter 1444 def recipient_id_guid_metadata(self, recipient_id_guid_metadata): 1445 """Sets the recipient_id_guid_metadata of this Notarize. 1446 1447 Metadata that indicates whether the `recipientIdGuid` property is editable. # noqa: E501 1448 1449 :param recipient_id_guid_metadata: The recipient_id_guid_metadata of this Notarize. # noqa: E501 1450 :type: PropertyMetadata 1451 """ 1452 1453 self._recipient_id_guid_metadata = recipient_id_guid_metadata 1454 1455 @property 1456 def recipient_id_metadata(self): 1457 """Gets the recipient_id_metadata of this Notarize. # noqa: E501 1458 1459 Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 1460 1461 :return: The recipient_id_metadata of this Notarize. # noqa: E501 1462 :rtype: PropertyMetadata 1463 """ 1464 return self._recipient_id_metadata 1465 1466 @recipient_id_metadata.setter 1467 def recipient_id_metadata(self, recipient_id_metadata): 1468 """Sets the recipient_id_metadata of this Notarize. 1469 1470 Metadata that indicates whether the `recipientId` property is editable. # noqa: E501 1471 1472 :param recipient_id_metadata: The recipient_id_metadata of this Notarize. # noqa: E501 1473 :type: PropertyMetadata 1474 """ 1475 1476 self._recipient_id_metadata = recipient_id_metadata 1477 1478 @property 1479 def required(self): 1480 """Gets the required of this Notarize. # noqa: E501 1481 1482 When set to **true**, the signer is required to fill out this tab # noqa: E501 1483 1484 :return: The required of this Notarize. # noqa: E501 1485 :rtype: str 1486 """ 1487 return self._required 1488 1489 @required.setter 1490 def required(self, required): 1491 """Sets the required of this Notarize. 1492 1493 When set to **true**, the signer is required to fill out this tab # noqa: E501 1494 1495 :param required: The required of this Notarize. # noqa: E501 1496 :type: str 1497 """ 1498 1499 self._required = required 1500 1501 @property 1502 def required_metadata(self): 1503 """Gets the required_metadata of this Notarize. # noqa: E501 1504 1505 Metadata that indicates whether the `required` property is editable. # noqa: E501 1506 1507 :return: The required_metadata of this Notarize. # noqa: E501 1508 :rtype: PropertyMetadata 1509 """ 1510 return self._required_metadata 1511 1512 @required_metadata.setter 1513 def required_metadata(self, required_metadata): 1514 """Sets the required_metadata of this Notarize. 1515 1516 Metadata that indicates whether the `required` property is editable. # noqa: E501 1517 1518 :param required_metadata: The required_metadata of this Notarize. # noqa: E501 1519 :type: PropertyMetadata 1520 """ 1521 1522 self._required_metadata = required_metadata 1523 1524 @property 1525 def smart_contract_information(self): 1526 """Gets the smart_contract_information of this Notarize. # noqa: E501 1527 1528 Reserved for DocuSign. # noqa: E501 1529 1530 :return: The smart_contract_information of this Notarize. # noqa: E501 1531 :rtype: SmartContractInformation 1532 """ 1533 return self._smart_contract_information 1534 1535 @smart_contract_information.setter 1536 def smart_contract_information(self, smart_contract_information): 1537 """Sets the smart_contract_information of this Notarize. 1538 1539 Reserved for DocuSign. # noqa: E501 1540 1541 :param smart_contract_information: The smart_contract_information of this Notarize. # noqa: E501 1542 :type: SmartContractInformation 1543 """ 1544 1545 self._smart_contract_information = smart_contract_information 1546 1547 @property 1548 def source(self): 1549 """Gets the source of this Notarize. # noqa: E501 1550 1551 # noqa: E501 1552 1553 :return: The source of this Notarize. # noqa: E501 1554 :rtype: str 1555 """ 1556 return self._source 1557 1558 @source.setter 1559 def source(self, source): 1560 """Sets the source of this Notarize. 1561 1562 # noqa: E501 1563 1564 :param source: The source of this Notarize. # noqa: E501 1565 :type: str 1566 """ 1567 1568 self._source = source 1569 1570 @property 1571 def status(self): 1572 """Gets the status of this Notarize. # noqa: E501 1573 1574 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 1575 1576 :return: The status of this Notarize. # noqa: E501 1577 :rtype: str 1578 """ 1579 return self._status 1580 1581 @status.setter 1582 def status(self, status): 1583 """Sets the status of this Notarize. 1584 1585 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 1586 1587 :param status: The status of this Notarize. # noqa: E501 1588 :type: str 1589 """ 1590 1591 self._status = status 1592 1593 @property 1594 def status_metadata(self): 1595 """Gets the status_metadata of this Notarize. # noqa: E501 1596 1597 Metadata that indicates whether the `status` property is editable. # noqa: E501 1598 1599 :return: The status_metadata of this Notarize. # noqa: E501 1600 :rtype: PropertyMetadata 1601 """ 1602 return self._status_metadata 1603 1604 @status_metadata.setter 1605 def status_metadata(self, status_metadata): 1606 """Sets the status_metadata of this Notarize. 1607 1608 Metadata that indicates whether the `status` property is editable. # noqa: E501 1609 1610 :param status_metadata: The status_metadata of this Notarize. # noqa: E501 1611 :type: PropertyMetadata 1612 """ 1613 1614 self._status_metadata = status_metadata 1615 1616 @property 1617 def tab_group_labels(self): 1618 """Gets the tab_group_labels of this Notarize. # noqa: E501 1619 1620 # noqa: E501 1621 1622 :return: The tab_group_labels of this Notarize. # noqa: E501 1623 :rtype: list[str] 1624 """ 1625 return self._tab_group_labels 1626 1627 @tab_group_labels.setter 1628 def tab_group_labels(self, tab_group_labels): 1629 """Sets the tab_group_labels of this Notarize. 1630 1631 # noqa: E501 1632 1633 :param tab_group_labels: The tab_group_labels of this Notarize. # noqa: E501 1634 :type: list[str] 1635 """ 1636 1637 self._tab_group_labels = tab_group_labels 1638 1639 @property 1640 def tab_group_labels_metadata(self): 1641 """Gets the tab_group_labels_metadata of this Notarize. # noqa: E501 1642 1643 Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 1644 1645 :return: The tab_group_labels_metadata of this Notarize. # noqa: E501 1646 :rtype: PropertyMetadata 1647 """ 1648 return self._tab_group_labels_metadata 1649 1650 @tab_group_labels_metadata.setter 1651 def tab_group_labels_metadata(self, tab_group_labels_metadata): 1652 """Sets the tab_group_labels_metadata of this Notarize. 1653 1654 Metadata that indicates whether the `tabGroupLabels` property is editable. # noqa: E501 1655 1656 :param tab_group_labels_metadata: The tab_group_labels_metadata of this Notarize. # noqa: E501 1657 :type: PropertyMetadata 1658 """ 1659 1660 self._tab_group_labels_metadata = tab_group_labels_metadata 1661 1662 @property 1663 def tab_id(self): 1664 """Gets the tab_id of this Notarize. # noqa: E501 1665 1666 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1667 1668 :return: The tab_id of this Notarize. # noqa: E501 1669 :rtype: str 1670 """ 1671 return self._tab_id 1672 1673 @tab_id.setter 1674 def tab_id(self, tab_id): 1675 """Sets the tab_id of this Notarize. 1676 1677 The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501 1678 1679 :param tab_id: The tab_id of this Notarize. # noqa: E501 1680 :type: str 1681 """ 1682 1683 self._tab_id = tab_id 1684 1685 @property 1686 def tab_id_metadata(self): 1687 """Gets the tab_id_metadata of this Notarize. # noqa: E501 1688 1689 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1690 1691 :return: The tab_id_metadata of this Notarize. # noqa: E501 1692 :rtype: PropertyMetadata 1693 """ 1694 return self._tab_id_metadata 1695 1696 @tab_id_metadata.setter 1697 def tab_id_metadata(self, tab_id_metadata): 1698 """Sets the tab_id_metadata of this Notarize. 1699 1700 Metadata that indicates whether the `tabId` property is editable. # noqa: E501 1701 1702 :param tab_id_metadata: The tab_id_metadata of this Notarize. # noqa: E501 1703 :type: PropertyMetadata 1704 """ 1705 1706 self._tab_id_metadata = tab_id_metadata 1707 1708 @property 1709 def tab_order(self): 1710 """Gets the tab_order of this Notarize. # noqa: E501 1711 1712 # noqa: E501 1713 1714 :return: The tab_order of this Notarize. # noqa: E501 1715 :rtype: str 1716 """ 1717 return self._tab_order 1718 1719 @tab_order.setter 1720 def tab_order(self, tab_order): 1721 """Sets the tab_order of this Notarize. 1722 1723 # noqa: E501 1724 1725 :param tab_order: The tab_order of this Notarize. # noqa: E501 1726 :type: str 1727 """ 1728 1729 self._tab_order = tab_order 1730 1731 @property 1732 def tab_order_metadata(self): 1733 """Gets the tab_order_metadata of this Notarize. # noqa: E501 1734 1735 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1736 1737 :return: The tab_order_metadata of this Notarize. # noqa: E501 1738 :rtype: PropertyMetadata 1739 """ 1740 return self._tab_order_metadata 1741 1742 @tab_order_metadata.setter 1743 def tab_order_metadata(self, tab_order_metadata): 1744 """Sets the tab_order_metadata of this Notarize. 1745 1746 Metadata that indicates whether the `tabOrder` property is editable. # noqa: E501 1747 1748 :param tab_order_metadata: The tab_order_metadata of this Notarize. # noqa: E501 1749 :type: PropertyMetadata 1750 """ 1751 1752 self._tab_order_metadata = tab_order_metadata 1753 1754 @property 1755 def tab_type(self): 1756 """Gets the tab_type of this Notarize. # noqa: E501 1757 1758 # noqa: E501 1759 1760 :return: The tab_type of this Notarize. # noqa: E501 1761 :rtype: str 1762 """ 1763 return self._tab_type 1764 1765 @tab_type.setter 1766 def tab_type(self, tab_type): 1767 """Sets the tab_type of this Notarize. 1768 1769 # noqa: E501 1770 1771 :param tab_type: The tab_type of this Notarize. # noqa: E501 1772 :type: str 1773 """ 1774 1775 self._tab_type = tab_type 1776 1777 @property 1778 def tab_type_metadata(self): 1779 """Gets the tab_type_metadata of this Notarize. # noqa: E501 1780 1781 Metadata that indicates whether the `tabType` property is editable. # noqa: E501 1782 1783 :return: The tab_type_metadata of this Notarize. # noqa: E501 1784 :rtype: PropertyMetadata 1785 """ 1786 return self._tab_type_metadata 1787 1788 @tab_type_metadata.setter 1789 def tab_type_metadata(self, tab_type_metadata): 1790 """Sets the tab_type_metadata of this Notarize. 1791 1792 Metadata that indicates whether the `tabType` property is editable. # noqa: E501 1793 1794 :param tab_type_metadata: The tab_type_metadata of this Notarize. # noqa: E501 1795 :type: PropertyMetadata 1796 """ 1797 1798 self._tab_type_metadata = tab_type_metadata 1799 1800 @property 1801 def template_locked(self): 1802 """Gets the template_locked of this Notarize. # noqa: E501 1803 1804 When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 1805 1806 :return: The template_locked of this Notarize. # noqa: E501 1807 :rtype: str 1808 """ 1809 return self._template_locked 1810 1811 @template_locked.setter 1812 def template_locked(self, template_locked): 1813 """Sets the template_locked of this Notarize. 1814 1815 When set to **true**, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501 1816 1817 :param template_locked: The template_locked of this Notarize. # noqa: E501 1818 :type: str 1819 """ 1820 1821 self._template_locked = template_locked 1822 1823 @property 1824 def template_locked_metadata(self): 1825 """Gets the template_locked_metadata of this Notarize. # noqa: E501 1826 1827 Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 1828 1829 :return: The template_locked_metadata of this Notarize. # noqa: E501 1830 :rtype: PropertyMetadata 1831 """ 1832 return self._template_locked_metadata 1833 1834 @template_locked_metadata.setter 1835 def template_locked_metadata(self, template_locked_metadata): 1836 """Sets the template_locked_metadata of this Notarize. 1837 1838 Metadata that indicates whether the `templateLocked` property is editable. # noqa: E501 1839 1840 :param template_locked_metadata: The template_locked_metadata of this Notarize. # noqa: E501 1841 :type: PropertyMetadata 1842 """ 1843 1844 self._template_locked_metadata = template_locked_metadata 1845 1846 @property 1847 def template_required(self): 1848 """Gets the template_required of this Notarize. # noqa: E501 1849 1850 When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 1851 1852 :return: The template_required of this Notarize. # noqa: E501 1853 :rtype: str 1854 """ 1855 return self._template_required 1856 1857 @template_required.setter 1858 def template_required(self, template_required): 1859 """Sets the template_required of this Notarize. 1860 1861 When set to **true**, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501 1862 1863 :param template_required: The template_required of this Notarize. # noqa: E501 1864 :type: str 1865 """ 1866 1867 self._template_required = template_required 1868 1869 @property 1870 def template_required_metadata(self): 1871 """Gets the template_required_metadata of this Notarize. # noqa: E501 1872 1873 Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 1874 1875 :return: The template_required_metadata of this Notarize. # noqa: E501 1876 :rtype: PropertyMetadata 1877 """ 1878 return self._template_required_metadata 1879 1880 @template_required_metadata.setter 1881 def template_required_metadata(self, template_required_metadata): 1882 """Sets the template_required_metadata of this Notarize. 1883 1884 Metadata that indicates whether the `templateRequired` property is editable. # noqa: E501 1885 1886 :param template_required_metadata: The template_required_metadata of this Notarize. # noqa: E501 1887 :type: PropertyMetadata 1888 """ 1889 1890 self._template_required_metadata = template_required_metadata 1891 1892 @property 1893 def tooltip(self): 1894 """Gets the tooltip of this Notarize. # noqa: E501 1895 1896 # noqa: E501 1897 1898 :return: The tooltip of this Notarize. # noqa: E501 1899 :rtype: str 1900 """ 1901 return self._tooltip 1902 1903 @tooltip.setter 1904 def tooltip(self, tooltip): 1905 """Sets the tooltip of this Notarize. 1906 1907 # noqa: E501 1908 1909 :param tooltip: The tooltip of this Notarize. # noqa: E501 1910 :type: str 1911 """ 1912 1913 self._tooltip = tooltip 1914 1915 @property 1916 def tool_tip_metadata(self): 1917 """Gets the tool_tip_metadata of this Notarize. # noqa: E501 1918 1919 Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 1920 1921 :return: The tool_tip_metadata of this Notarize. # noqa: E501 1922 :rtype: PropertyMetadata 1923 """ 1924 return self._tool_tip_metadata 1925 1926 @tool_tip_metadata.setter 1927 def tool_tip_metadata(self, tool_tip_metadata): 1928 """Sets the tool_tip_metadata of this Notarize. 1929 1930 Metadata that indicates whether the `toolTip` property is editable. # noqa: E501 1931 1932 :param tool_tip_metadata: The tool_tip_metadata of this Notarize. # noqa: E501 1933 :type: PropertyMetadata 1934 """ 1935 1936 self._tool_tip_metadata = tool_tip_metadata 1937 1938 @property 1939 def width(self): 1940 """Gets the width of this Notarize. # noqa: E501 1941 1942 Width of the tab in pixels. # noqa: E501 1943 1944 :return: The width of this Notarize. # noqa: E501 1945 :rtype: str 1946 """ 1947 return self._width 1948 1949 @width.setter 1950 def width(self, width): 1951 """Sets the width of this Notarize. 1952 1953 Width of the tab in pixels. # noqa: E501 1954 1955 :param width: The width of this Notarize. # noqa: E501 1956 :type: str 1957 """ 1958 1959 self._width = width 1960 1961 @property 1962 def width_metadata(self): 1963 """Gets the width_metadata of this Notarize. # noqa: E501 1964 1965 Metadata that indicates whether the `width` property is editable. # noqa: E501 1966 1967 :return: The width_metadata of this Notarize. # noqa: E501 1968 :rtype: PropertyMetadata 1969 """ 1970 return self._width_metadata 1971 1972 @width_metadata.setter 1973 def width_metadata(self, width_metadata): 1974 """Sets the width_metadata of this Notarize. 1975 1976 Metadata that indicates whether the `width` property is editable. # noqa: E501 1977 1978 :param width_metadata: The width_metadata of this Notarize. # noqa: E501 1979 :type: PropertyMetadata 1980 """ 1981 1982 self._width_metadata = width_metadata 1983 1984 @property 1985 def x_position(self): 1986 """Gets the x_position of this Notarize. # noqa: E501 1987 1988 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 1989 1990 :return: The x_position of this Notarize. # noqa: E501 1991 :rtype: str 1992 """ 1993 return self._x_position 1994 1995 @x_position.setter 1996 def x_position(self, x_position): 1997 """Sets the x_position of this Notarize. 1998 1999 This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 2000 2001 :param x_position: The x_position of this Notarize. # noqa: E501 2002 :type: str 2003 """ 2004 2005 self._x_position = x_position 2006 2007 @property 2008 def x_position_metadata(self): 2009 """Gets the x_position_metadata of this Notarize. # noqa: E501 2010 2011 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 2012 2013 :return: The x_position_metadata of this Notarize. # noqa: E501 2014 :rtype: PropertyMetadata 2015 """ 2016 return self._x_position_metadata 2017 2018 @x_position_metadata.setter 2019 def x_position_metadata(self, x_position_metadata): 2020 """Sets the x_position_metadata of this Notarize. 2021 2022 Metadata that indicates whether the `xPosition` property is editable. # noqa: E501 2023 2024 :param x_position_metadata: The x_position_metadata of this Notarize. # noqa: E501 2025 :type: PropertyMetadata 2026 """ 2027 2028 self._x_position_metadata = x_position_metadata 2029 2030 @property 2031 def y_position(self): 2032 """Gets the y_position of this Notarize. # noqa: E501 2033 2034 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 2035 2036 :return: The y_position of this Notarize. # noqa: E501 2037 :rtype: str 2038 """ 2039 return self._y_position 2040 2041 @y_position.setter 2042 def y_position(self, y_position): 2043 """Sets the y_position of this Notarize. 2044 2045 This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501 2046 2047 :param y_position: The y_position of this Notarize. # noqa: E501 2048 :type: str 2049 """ 2050 2051 self._y_position = y_position 2052 2053 @property 2054 def y_position_metadata(self): 2055 """Gets the y_position_metadata of this Notarize. # noqa: E501 2056 2057 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 2058 2059 :return: The y_position_metadata of this Notarize. # noqa: E501 2060 :rtype: PropertyMetadata 2061 """ 2062 return self._y_position_metadata 2063 2064 @y_position_metadata.setter 2065 def y_position_metadata(self, y_position_metadata): 2066 """Sets the y_position_metadata of this Notarize. 2067 2068 Metadata that indicates whether the `yPosition` property is editable. # noqa: E501 2069 2070 :param y_position_metadata: The y_position_metadata of this Notarize. # noqa: E501 2071 :type: PropertyMetadata 2072 """ 2073 2074 self._y_position_metadata = y_position_metadata 2075 2076 def to_dict(self): 2077 """Returns the model properties as a dict""" 2078 result = {} 2079 2080 for attr, _ in six.iteritems(self.swagger_types): 2081 value = getattr(self, attr) 2082 if isinstance(value, list): 2083 result[attr] = list(map( 2084 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 2085 value 2086 )) 2087 elif hasattr(value, "to_dict"): 2088 result[attr] = value.to_dict() 2089 elif isinstance(value, dict): 2090 result[attr] = dict(map( 2091 lambda item: (item[0], item[1].to_dict()) 2092 if hasattr(item[1], "to_dict") else item, 2093 value.items() 2094 )) 2095 else: 2096 result[attr] = value 2097 if issubclass(Notarize, dict): 2098 for key, value in self.items(): 2099 result[key] = value 2100 2101 return result 2102 2103 def to_str(self): 2104 """Returns the string representation of the model""" 2105 return pprint.pformat(self.to_dict()) 2106 2107 def __repr__(self): 2108 """For `print` and `pprint`""" 2109 return self.to_str() 2110 2111 def __eq__(self, other): 2112 """Returns true if both objects are equal""" 2113 if not isinstance(other, Notarize): 2114 return False 2115 2116 return self.to_dict() == other.to_dict() 2117 2118 def __ne__(self, other): 2119 """Returns true if both objects are not equal""" 2120 if not isinstance(other, Notarize): 2121 return True 2122 2123 return self.to_dict() != other.to_dict()
NOTE: This class is auto generated by the swagger code generator program.
Do not edit the class manually.
192 def __init__(self, _configuration=None, **kwargs): # noqa: E501 193 """Notarize - a model defined in Swagger""" # noqa: E501 194 if _configuration is None: 195 _configuration = Configuration() 196 self._configuration = _configuration 197 198 self._anchor_allow_white_space_in_characters = None 199 self._anchor_allow_white_space_in_characters_metadata = None 200 self._anchor_case_sensitive = None 201 self._anchor_case_sensitive_metadata = None 202 self._anchor_horizontal_alignment = None 203 self._anchor_horizontal_alignment_metadata = None 204 self._anchor_ignore_if_not_present = None 205 self._anchor_ignore_if_not_present_metadata = None 206 self._anchor_match_whole_word = None 207 self._anchor_match_whole_word_metadata = None 208 self._anchor_string = None 209 self._anchor_string_metadata = None 210 self._anchor_tab_processor_version = None 211 self._anchor_tab_processor_version_metadata = None 212 self._anchor_units = None 213 self._anchor_units_metadata = None 214 self._anchor_x_offset = None 215 self._anchor_x_offset_metadata = None 216 self._anchor_y_offset = None 217 self._anchor_y_offset_metadata = None 218 self._caption = None 219 self._caption_metadata = None 220 self._conditional_parent_label = None 221 self._conditional_parent_label_metadata = None 222 self._conditional_parent_value = None 223 self._conditional_parent_value_metadata = None 224 self._custom_tab_id = None 225 self._custom_tab_id_metadata = None 226 self._document_id = None 227 self._document_id_metadata = None 228 self._error_details = None 229 self._form_order = None 230 self._form_order_metadata = None 231 self._form_page_label = None 232 self._form_page_label_metadata = None 233 self._form_page_number = None 234 self._form_page_number_metadata = None 235 self._height = None 236 self._height_metadata = None 237 self._locked = None 238 self._locked_metadata = None 239 self._merge_field = None 240 self._merge_field_xml = None 241 self._page_number = None 242 self._page_number_metadata = None 243 self._recipient_id = None 244 self._recipient_id_guid = None 245 self._recipient_id_guid_metadata = None 246 self._recipient_id_metadata = None 247 self._required = None 248 self._required_metadata = None 249 self._smart_contract_information = None 250 self._source = None 251 self._status = None 252 self._status_metadata = None 253 self._tab_group_labels = None 254 self._tab_group_labels_metadata = None 255 self._tab_id = None 256 self._tab_id_metadata = None 257 self._tab_order = None 258 self._tab_order_metadata = None 259 self._tab_type = None 260 self._tab_type_metadata = None 261 self._template_locked = None 262 self._template_locked_metadata = None 263 self._template_required = None 264 self._template_required_metadata = None 265 self._tooltip = None 266 self._tool_tip_metadata = None 267 self._width = None 268 self._width_metadata = None 269 self._x_position = None 270 self._x_position_metadata = None 271 self._y_position = None 272 self._y_position_metadata = None 273 self.discriminator = None 274 275 setattr(self, "_{}".format('anchor_allow_white_space_in_characters'), kwargs.get('anchor_allow_white_space_in_characters', None)) 276 setattr(self, "_{}".format('anchor_allow_white_space_in_characters_metadata'), kwargs.get('anchor_allow_white_space_in_characters_metadata', None)) 277 setattr(self, "_{}".format('anchor_case_sensitive'), kwargs.get('anchor_case_sensitive', None)) 278 setattr(self, "_{}".format('anchor_case_sensitive_metadata'), kwargs.get('anchor_case_sensitive_metadata', None)) 279 setattr(self, "_{}".format('anchor_horizontal_alignment'), kwargs.get('anchor_horizontal_alignment', None)) 280 setattr(self, "_{}".format('anchor_horizontal_alignment_metadata'), kwargs.get('anchor_horizontal_alignment_metadata', None)) 281 setattr(self, "_{}".format('anchor_ignore_if_not_present'), kwargs.get('anchor_ignore_if_not_present', None)) 282 setattr(self, "_{}".format('anchor_ignore_if_not_present_metadata'), kwargs.get('anchor_ignore_if_not_present_metadata', None)) 283 setattr(self, "_{}".format('anchor_match_whole_word'), kwargs.get('anchor_match_whole_word', None)) 284 setattr(self, "_{}".format('anchor_match_whole_word_metadata'), kwargs.get('anchor_match_whole_word_metadata', None)) 285 setattr(self, "_{}".format('anchor_string'), kwargs.get('anchor_string', None)) 286 setattr(self, "_{}".format('anchor_string_metadata'), kwargs.get('anchor_string_metadata', None)) 287 setattr(self, "_{}".format('anchor_tab_processor_version'), kwargs.get('anchor_tab_processor_version', None)) 288 setattr(self, "_{}".format('anchor_tab_processor_version_metadata'), kwargs.get('anchor_tab_processor_version_metadata', None)) 289 setattr(self, "_{}".format('anchor_units'), kwargs.get('anchor_units', None)) 290 setattr(self, "_{}".format('anchor_units_metadata'), kwargs.get('anchor_units_metadata', None)) 291 setattr(self, "_{}".format('anchor_x_offset'), kwargs.get('anchor_x_offset', None)) 292 setattr(self, "_{}".format('anchor_x_offset_metadata'), kwargs.get('anchor_x_offset_metadata', None)) 293 setattr(self, "_{}".format('anchor_y_offset'), kwargs.get('anchor_y_offset', None)) 294 setattr(self, "_{}".format('anchor_y_offset_metadata'), kwargs.get('anchor_y_offset_metadata', None)) 295 setattr(self, "_{}".format('caption'), kwargs.get('caption', None)) 296 setattr(self, "_{}".format('caption_metadata'), kwargs.get('caption_metadata', None)) 297 setattr(self, "_{}".format('conditional_parent_label'), kwargs.get('conditional_parent_label', None)) 298 setattr(self, "_{}".format('conditional_parent_label_metadata'), kwargs.get('conditional_parent_label_metadata', None)) 299 setattr(self, "_{}".format('conditional_parent_value'), kwargs.get('conditional_parent_value', None)) 300 setattr(self, "_{}".format('conditional_parent_value_metadata'), kwargs.get('conditional_parent_value_metadata', None)) 301 setattr(self, "_{}".format('custom_tab_id'), kwargs.get('custom_tab_id', None)) 302 setattr(self, "_{}".format('custom_tab_id_metadata'), kwargs.get('custom_tab_id_metadata', None)) 303 setattr(self, "_{}".format('document_id'), kwargs.get('document_id', None)) 304 setattr(self, "_{}".format('document_id_metadata'), kwargs.get('document_id_metadata', None)) 305 setattr(self, "_{}".format('error_details'), kwargs.get('error_details', None)) 306 setattr(self, "_{}".format('form_order'), kwargs.get('form_order', None)) 307 setattr(self, "_{}".format('form_order_metadata'), kwargs.get('form_order_metadata', None)) 308 setattr(self, "_{}".format('form_page_label'), kwargs.get('form_page_label', None)) 309 setattr(self, "_{}".format('form_page_label_metadata'), kwargs.get('form_page_label_metadata', None)) 310 setattr(self, "_{}".format('form_page_number'), kwargs.get('form_page_number', None)) 311 setattr(self, "_{}".format('form_page_number_metadata'), kwargs.get('form_page_number_metadata', None)) 312 setattr(self, "_{}".format('height'), kwargs.get('height', None)) 313 setattr(self, "_{}".format('height_metadata'), kwargs.get('height_metadata', None)) 314 setattr(self, "_{}".format('locked'), kwargs.get('locked', None)) 315 setattr(self, "_{}".format('locked_metadata'), kwargs.get('locked_metadata', None)) 316 setattr(self, "_{}".format('merge_field'), kwargs.get('merge_field', None)) 317 setattr(self, "_{}".format('merge_field_xml'), kwargs.get('merge_field_xml', None)) 318 setattr(self, "_{}".format('page_number'), kwargs.get('page_number', None)) 319 setattr(self, "_{}".format('page_number_metadata'), kwargs.get('page_number_metadata', None)) 320 setattr(self, "_{}".format('recipient_id'), kwargs.get('recipient_id', None)) 321 setattr(self, "_{}".format('recipient_id_guid'), kwargs.get('recipient_id_guid', None)) 322 setattr(self, "_{}".format('recipient_id_guid_metadata'), kwargs.get('recipient_id_guid_metadata', None)) 323 setattr(self, "_{}".format('recipient_id_metadata'), kwargs.get('recipient_id_metadata', None)) 324 setattr(self, "_{}".format('required'), kwargs.get('required', None)) 325 setattr(self, "_{}".format('required_metadata'), kwargs.get('required_metadata', None)) 326 setattr(self, "_{}".format('smart_contract_information'), kwargs.get('smart_contract_information', None)) 327 setattr(self, "_{}".format('source'), kwargs.get('source', None)) 328 setattr(self, "_{}".format('status'), kwargs.get('status', None)) 329 setattr(self, "_{}".format('status_metadata'), kwargs.get('status_metadata', None)) 330 setattr(self, "_{}".format('tab_group_labels'), kwargs.get('tab_group_labels', None)) 331 setattr(self, "_{}".format('tab_group_labels_metadata'), kwargs.get('tab_group_labels_metadata', None)) 332 setattr(self, "_{}".format('tab_id'), kwargs.get('tab_id', None)) 333 setattr(self, "_{}".format('tab_id_metadata'), kwargs.get('tab_id_metadata', None)) 334 setattr(self, "_{}".format('tab_order'), kwargs.get('tab_order', None)) 335 setattr(self, "_{}".format('tab_order_metadata'), kwargs.get('tab_order_metadata', None)) 336 setattr(self, "_{}".format('tab_type'), kwargs.get('tab_type', None)) 337 setattr(self, "_{}".format('tab_type_metadata'), kwargs.get('tab_type_metadata', None)) 338 setattr(self, "_{}".format('template_locked'), kwargs.get('template_locked', None)) 339 setattr(self, "_{}".format('template_locked_metadata'), kwargs.get('template_locked_metadata', None)) 340 setattr(self, "_{}".format('template_required'), kwargs.get('template_required', None)) 341 setattr(self, "_{}".format('template_required_metadata'), kwargs.get('template_required_metadata', None)) 342 setattr(self, "_{}".format('tooltip'), kwargs.get('tooltip', None)) 343 setattr(self, "_{}".format('tool_tip_metadata'), kwargs.get('tool_tip_metadata', None)) 344 setattr(self, "_{}".format('width'), kwargs.get('width', None)) 345 setattr(self, "_{}".format('width_metadata'), kwargs.get('width_metadata', None)) 346 setattr(self, "_{}".format('x_position'), kwargs.get('x_position', None)) 347 setattr(self, "_{}".format('x_position_metadata'), kwargs.get('x_position_metadata', None)) 348 setattr(self, "_{}".format('y_position'), kwargs.get('y_position', None)) 349 setattr(self, "_{}".format('y_position_metadata'), kwargs.get('y_position_metadata', None))
Notarize - a model defined in Swagger
Gets the anchor_allow_white_space_in_characters of this Notarize. # noqa: E501
# noqa: E501
Returns
The anchor_allow_white_space_in_characters of this Notarize. # noqa: E501
Gets the anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorAllowWhiteSpaceInCharacters
property is editable. # noqa: E501
Returns
The anchor_allow_white_space_in_characters_metadata of this Notarize. # noqa: E501
Gets the anchor_case_sensitive of this Notarize. # 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
Returns
The anchor_case_sensitive of this Notarize. # noqa: E501
Gets the anchor_case_sensitive_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorCaseSensitive
property is editable. # noqa: E501
Returns
The anchor_case_sensitive_metadata of this Notarize. # noqa: E501
Gets the anchor_horizontal_alignment of this Notarize. # noqa: E501
Specifies the alignment of anchor tabs with anchor strings. Possible values are left or right. The default value is left. # noqa: E501
Returns
The anchor_horizontal_alignment of this Notarize. # noqa: E501
Gets the anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorHorizontalAlignment
property is editable. # noqa: E501
Returns
The anchor_horizontal_alignment_metadata of this Notarize. # noqa: E501
Gets the anchor_ignore_if_not_present of this Notarize. # noqa: E501
When set to true, this tab is ignored if anchorString is not found in the document. # noqa: E501
Returns
The anchor_ignore_if_not_present of this Notarize. # noqa: E501
Gets the anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorIgnoreIfNotPresent
property is editable. # noqa: E501
Returns
The anchor_ignore_if_not_present_metadata of this Notarize. # noqa: E501
Gets the anchor_match_whole_word of this Notarize. # 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
Returns
The anchor_match_whole_word of this Notarize. # noqa: E501
Gets the anchor_match_whole_word_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorMatchWholeWord
property is editable. # noqa: E501
Returns
The anchor_match_whole_word_metadata of this Notarize. # noqa: E501
Gets the anchor_string of this Notarize. # noqa: E501
Anchor text information for a radio button. # noqa: E501
Returns
The anchor_string of this Notarize. # noqa: E501
Gets the anchor_string_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorString
property is editable. # noqa: E501
Returns
The anchor_string_metadata of this Notarize. # noqa: E501
Gets the anchor_tab_processor_version of this Notarize. # noqa: E501
# noqa: E501
Returns
The anchor_tab_processor_version of this Notarize. # noqa: E501
Gets the anchor_tab_processor_version_metadata of this Notarize. # noqa: E501
Reserved for DocuSign. # noqa: E501
Returns
The anchor_tab_processor_version_metadata of this Notarize. # noqa: E501
Gets the anchor_units of this Notarize. # noqa: E501
Specifies units of the X and Y offset. Units could be pixels, millimeters, centimeters, or inches. # noqa: E501
Returns
The anchor_units of this Notarize. # noqa: E501
Gets the anchor_units_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorUnits
property is editable. # noqa: E501
Returns
The anchor_units_metadata of this Notarize. # noqa: E501
Gets the anchor_x_offset of this Notarize. # noqa: E501
Specifies the X axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501
Returns
The anchor_x_offset of this Notarize. # noqa: E501
Gets the anchor_x_offset_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorXOffset
property is editable. # noqa: E501
Returns
The anchor_x_offset_metadata of this Notarize. # noqa: E501
Gets the anchor_y_offset of this Notarize. # noqa: E501
Specifies the Y axis location of the tab, in anchorUnits, relative to the anchorString. # noqa: E501
Returns
The anchor_y_offset of this Notarize. # noqa: E501
Gets the anchor_y_offset_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the anchorYOffset
property is editable. # noqa: E501
Returns
The anchor_y_offset_metadata of this Notarize. # noqa: E501
Gets the conditional_parent_label of this Notarize. # noqa: E501
For conditional fields this is the TabLabel of the parent tab that controls this tab's visibility. # noqa: E501
Returns
The conditional_parent_label of this Notarize. # noqa: E501
Gets the conditional_parent_label_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the conditionalParentLabel
property is editable. # noqa: E501
Returns
The conditional_parent_label_metadata of this Notarize. # noqa: E501
Gets the conditional_parent_value of this Notarize. # 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
Returns
The conditional_parent_value of this Notarize. # noqa: E501
Gets the conditional_parent_value_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the conditionalParentValue
property is editable. # noqa: E501
Returns
The conditional_parent_value_metadata of this Notarize. # noqa: E501
Gets the custom_tab_id of this Notarize. # noqa: E501
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
Returns
The custom_tab_id of this Notarize. # noqa: E501
Gets the custom_tab_id_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the customTabId
property is editable. # noqa: E501
Returns
The custom_tab_id_metadata of this Notarize. # noqa: E501
Gets the document_id of this Notarize. # 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
Returns
The document_id of this Notarize. # noqa: E501
Gets the document_id_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the documentId
property is editable. # noqa: E501
Returns
The document_id_metadata of this Notarize. # noqa: E501
Gets the error_details of this Notarize. # noqa: E501
Array or errors. # noqa: E501
Returns
The error_details of this Notarize. # noqa: E501
Gets the form_order of this Notarize. # noqa: E501
# noqa: E501
Returns
The form_order of this Notarize. # noqa: E501
Gets the form_order_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the formOrder
property is editable. # noqa: E501
Returns
The form_order_metadata of this Notarize. # noqa: E501
Gets the form_page_label of this Notarize. # noqa: E501
# noqa: E501
Returns
The form_page_label of this Notarize. # noqa: E501
Gets the form_page_label_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the formPageLabel
property is editable. # noqa: E501
Returns
The form_page_label_metadata of this Notarize. # noqa: E501
Gets the form_page_number of this Notarize. # noqa: E501
# noqa: E501
Returns
The form_page_number of this Notarize. # noqa: E501
Gets the form_page_number_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the fromPageNumber
property is editable. # noqa: E501
Returns
The form_page_number_metadata of this Notarize. # noqa: E501
Gets the height of this Notarize. # noqa: E501
Height of the tab in pixels. # noqa: E501
Returns
The height of this Notarize. # noqa: E501
Gets the height_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the height
property is editable. # noqa: E501
Returns
The height_metadata of this Notarize. # noqa: E501
Gets the locked of this Notarize. # noqa: E501
When set to true, the signer cannot change the data of the custom tab. # noqa: E501
Returns
The locked of this Notarize. # noqa: E501
Gets the locked_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the locked
property is editable. # noqa: E501
Returns
The locked_metadata of this Notarize. # noqa: E501
Gets the merge_field of this Notarize. # noqa: E501
Contains the information necessary to map the tab to a field in SalesForce. # noqa: E501
Returns
The merge_field of this Notarize. # noqa: E501
Gets the merge_field_xml of this Notarize. # noqa: E501
# noqa: E501
Returns
The merge_field_xml of this Notarize. # noqa: E501
Gets the page_number of this Notarize. # noqa: E501
Specifies the page number on which the tab is located. # noqa: E501
Returns
The page_number of this Notarize. # noqa: E501
Gets the page_number_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the pageNumber
property is editable. # noqa: E501
Returns
The page_number_metadata of this Notarize. # noqa: E501
Gets the recipient_id of this Notarize. # noqa: E501
Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document. # noqa: E501
Returns
The recipient_id of this Notarize. # noqa: E501
Gets the recipient_id_guid of this Notarize. # noqa: E501
# noqa: E501
Returns
The recipient_id_guid of this Notarize. # noqa: E501
Gets the recipient_id_guid_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the recipientIdGuid
property is editable. # noqa: E501
Returns
The recipient_id_guid_metadata of this Notarize. # noqa: E501
Gets the recipient_id_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the recipientId
property is editable. # noqa: E501
Returns
The recipient_id_metadata of this Notarize. # noqa: E501
Gets the required of this Notarize. # noqa: E501
When set to true, the signer is required to fill out this tab # noqa: E501
Returns
The required of this Notarize. # noqa: E501
Gets the required_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the required
property is editable. # noqa: E501
Returns
The required_metadata of this Notarize. # noqa: E501
Gets the smart_contract_information of this Notarize. # noqa: E501
Reserved for DocuSign. # noqa: E501
Returns
The smart_contract_information of this Notarize. # noqa: E501
Gets the source of this Notarize. # noqa: E501
# noqa: E501
Returns
The source of this Notarize. # noqa: E501
Gets the status of this Notarize. # 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
Returns
The status of this Notarize. # noqa: E501
Gets the status_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the status
property is editable. # noqa: E501
Returns
The status_metadata of this Notarize. # noqa: E501
Gets the tab_group_labels of this Notarize. # noqa: E501
# noqa: E501
Returns
The tab_group_labels of this Notarize. # noqa: E501
Gets the tab_group_labels_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the tabGroupLabels
property is editable. # noqa: E501
Returns
The tab_group_labels_metadata of this Notarize. # noqa: E501
Gets the tab_id of this Notarize. # noqa: E501
The unique identifier for the tab. The tabid can be retrieved with the [ML:GET call]. # noqa: E501
Returns
The tab_id of this Notarize. # noqa: E501
Gets the tab_id_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the tabId
property is editable. # noqa: E501
Returns
The tab_id_metadata of this Notarize. # noqa: E501
Gets the tab_order of this Notarize. # noqa: E501
# noqa: E501
Returns
The tab_order of this Notarize. # noqa: E501
Gets the tab_order_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the tabOrder
property is editable. # noqa: E501
Returns
The tab_order_metadata of this Notarize. # noqa: E501
Gets the tab_type of this Notarize. # noqa: E501
# noqa: E501
Returns
The tab_type of this Notarize. # noqa: E501
Gets the tab_type_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the tabType
property is editable. # noqa: E501
Returns
The tab_type_metadata of this Notarize. # noqa: E501
Gets the template_locked of this Notarize. # noqa: E501
When set to true, the sender cannot change any attributes of the recipient. Used only when working with template recipients. # noqa: E501
Returns
The template_locked of this Notarize. # noqa: E501
Gets the template_locked_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the templateLocked
property is editable. # noqa: E501
Returns
The template_locked_metadata of this Notarize. # noqa: E501
Gets the template_required of this Notarize. # noqa: E501
When set to true, the sender may not remove the recipient. Used only when working with template recipients. # noqa: E501
Returns
The template_required of this Notarize. # noqa: E501
Gets the template_required_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the templateRequired
property is editable. # noqa: E501
Returns
The template_required_metadata of this Notarize. # noqa: E501
Gets the tooltip of this Notarize. # noqa: E501
# noqa: E501
Returns
The tooltip of this Notarize. # noqa: E501
Gets the tool_tip_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the toolTip
property is editable. # noqa: E501
Returns
The tool_tip_metadata of this Notarize. # noqa: E501
Gets the width of this Notarize. # noqa: E501
Width of the tab in pixels. # noqa: E501
Returns
The width of this Notarize. # noqa: E501
Gets the width_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the width
property is editable. # noqa: E501
Returns
The width_metadata of this Notarize. # noqa: E501
Gets the x_position of this Notarize. # noqa: E501
This indicates the horizontal offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501
Returns
The x_position of this Notarize. # noqa: E501
Gets the x_position_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the xPosition
property is editable. # noqa: E501
Returns
The x_position_metadata of this Notarize. # noqa: E501
Gets the y_position of this Notarize. # noqa: E501
This indicates the vertical offset of the object on the page. DocuSign uses 72 DPI when determining position. # noqa: E501
Returns
The y_position of this Notarize. # noqa: E501
Gets the y_position_metadata of this Notarize. # noqa: E501
Metadata that indicates whether the yPosition
property is editable. # noqa: E501
Returns
The y_position_metadata of this Notarize. # noqa: E501
2076 def to_dict(self): 2077 """Returns the model properties as a dict""" 2078 result = {} 2079 2080 for attr, _ in six.iteritems(self.swagger_types): 2081 value = getattr(self, attr) 2082 if isinstance(value, list): 2083 result[attr] = list(map( 2084 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 2085 value 2086 )) 2087 elif hasattr(value, "to_dict"): 2088 result[attr] = value.to_dict() 2089 elif isinstance(value, dict): 2090 result[attr] = dict(map( 2091 lambda item: (item[0], item[1].to_dict()) 2092 if hasattr(item[1], "to_dict") else item, 2093 value.items() 2094 )) 2095 else: 2096 result[attr] = value 2097 if issubclass(Notarize, dict): 2098 for key, value in self.items(): 2099 result[key] = value 2100 2101 return result
Returns the model properties as a dict