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