docusign_esign.models.envelope_template_result
DocuSign REST API
The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
OpenAPI spec version: v2 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. 7 8 OpenAPI spec version: v2 9 Contact: devcenter@docusign.com 10 Generated by: https://github.com/swagger-api/swagger-codegen.git 11""" 12 13 14from pprint import pformat 15from six import iteritems 16import re 17 18 19class EnvelopeTemplateResult(object): 20 """ 21 NOTE: This class is auto generated by the swagger code generator program. 22 Do not edit the class manually. 23 """ 24 def __init__(self, allow_markup=None, allow_reassign=None, allow_view_history=None, asynchronous=None, attachments_uri=None, authoritative_copy=None, authoritative_copy_default=None, auto_navigation=None, brand_id=None, brand_lock=None, certificate_uri=None, completed_date_time=None, created=None, created_date_time=None, custom_fields=None, custom_fields_uri=None, declined_date_time=None, deleted_date_time=None, delivered_date_time=None, description=None, documents=None, documents_combined_uri=None, documents_uri=None, email_blurb=None, email_settings=None, email_subject=None, enable_wet_sign=None, enforce_signer_visibility=None, envelope_id=None, envelope_id_stamping=None, envelope_uri=None, folder_id=None, folder_name=None, folder_uri=None, initial_sent_date_time=None, is21_cfr_part11=None, is_signature_provider_envelope=None, last_modified=None, last_modified_date_time=None, lock_information=None, message_lock=None, name=None, notification=None, notification_uri=None, owner=None, page_count=None, parent_folder_uri=None, password=None, purge_state=None, recipients=None, recipients_lock=None, recipients_uri=None, sent_date_time=None, shared=None, signer_can_sign_on_mobile=None, signing_location=None, status=None, status_changed_date_time=None, template_id=None, templates_uri=None, transaction_id=None, uri=None, use_disclosure=None, voided_date_time=None, voided_reason=None): 25 """ 26 EnvelopeTemplateResult - a model defined in Swagger 27 28 :param dict swaggerTypes: The key is attribute name 29 and the value is attribute type. 30 :param dict attributeMap: The key is attribute name 31 and the value is json key in definition. 32 """ 33 self.swagger_types = { 34 'allow_markup': 'str', 35 'allow_reassign': 'str', 36 'allow_view_history': 'str', 37 'asynchronous': 'str', 38 'attachments_uri': 'str', 39 'authoritative_copy': 'str', 40 'authoritative_copy_default': 'str', 41 'auto_navigation': 'str', 42 'brand_id': 'str', 43 'brand_lock': 'str', 44 'certificate_uri': 'str', 45 'completed_date_time': 'str', 46 'created': 'str', 47 'created_date_time': 'str', 48 'custom_fields': 'CustomFields', 49 'custom_fields_uri': 'str', 50 'declined_date_time': 'str', 51 'deleted_date_time': 'str', 52 'delivered_date_time': 'str', 53 'description': 'str', 54 'documents': 'list[Document]', 55 'documents_combined_uri': 'str', 56 'documents_uri': 'str', 57 'email_blurb': 'str', 58 'email_settings': 'EmailSettings', 59 'email_subject': 'str', 60 'enable_wet_sign': 'str', 61 'enforce_signer_visibility': 'str', 62 'envelope_id': 'str', 63 'envelope_id_stamping': 'str', 64 'envelope_uri': 'str', 65 'folder_id': 'str', 66 'folder_name': 'str', 67 'folder_uri': 'str', 68 'initial_sent_date_time': 'str', 69 'is21_cfr_part11': 'str', 70 'is_signature_provider_envelope': 'str', 71 'last_modified': 'str', 72 'last_modified_date_time': 'str', 73 'lock_information': 'LockInformation', 74 'message_lock': 'str', 75 'name': 'str', 76 'notification': 'Notification', 77 'notification_uri': 'str', 78 'owner': 'UserInfo', 79 'page_count': 'int', 80 'parent_folder_uri': 'str', 81 'password': 'str', 82 'purge_state': 'str', 83 'recipients': 'Recipients', 84 'recipients_lock': 'str', 85 'recipients_uri': 'str', 86 'sent_date_time': 'str', 87 'shared': 'str', 88 'signer_can_sign_on_mobile': 'str', 89 'signing_location': 'str', 90 'status': 'str', 91 'status_changed_date_time': 'str', 92 'template_id': 'str', 93 'templates_uri': 'str', 94 'transaction_id': 'str', 95 'uri': 'str', 96 'use_disclosure': 'str', 97 'voided_date_time': 'str', 98 'voided_reason': 'str' 99 } 100 101 self.attribute_map = { 102 'allow_markup': 'allowMarkup', 103 'allow_reassign': 'allowReassign', 104 'allow_view_history': 'allowViewHistory', 105 'asynchronous': 'asynchronous', 106 'attachments_uri': 'attachmentsUri', 107 'authoritative_copy': 'authoritativeCopy', 108 'authoritative_copy_default': 'authoritativeCopyDefault', 109 'auto_navigation': 'autoNavigation', 110 'brand_id': 'brandId', 111 'brand_lock': 'brandLock', 112 'certificate_uri': 'certificateUri', 113 'completed_date_time': 'completedDateTime', 114 'created': 'created', 115 'created_date_time': 'createdDateTime', 116 'custom_fields': 'customFields', 117 'custom_fields_uri': 'customFieldsUri', 118 'declined_date_time': 'declinedDateTime', 119 'deleted_date_time': 'deletedDateTime', 120 'delivered_date_time': 'deliveredDateTime', 121 'description': 'description', 122 'documents': 'documents', 123 'documents_combined_uri': 'documentsCombinedUri', 124 'documents_uri': 'documentsUri', 125 'email_blurb': 'emailBlurb', 126 'email_settings': 'emailSettings', 127 'email_subject': 'emailSubject', 128 'enable_wet_sign': 'enableWetSign', 129 'enforce_signer_visibility': 'enforceSignerVisibility', 130 'envelope_id': 'envelopeId', 131 'envelope_id_stamping': 'envelopeIdStamping', 132 'envelope_uri': 'envelopeUri', 133 'folder_id': 'folderId', 134 'folder_name': 'folderName', 135 'folder_uri': 'folderUri', 136 'initial_sent_date_time': 'initialSentDateTime', 137 'is21_cfr_part11': 'is21CFRPart11', 138 'is_signature_provider_envelope': 'isSignatureProviderEnvelope', 139 'last_modified': 'lastModified', 140 'last_modified_date_time': 'lastModifiedDateTime', 141 'lock_information': 'lockInformation', 142 'message_lock': 'messageLock', 143 'name': 'name', 144 'notification': 'notification', 145 'notification_uri': 'notificationUri', 146 'owner': 'owner', 147 'page_count': 'pageCount', 148 'parent_folder_uri': 'parentFolderUri', 149 'password': 'password', 150 'purge_state': 'purgeState', 151 'recipients': 'recipients', 152 'recipients_lock': 'recipientsLock', 153 'recipients_uri': 'recipientsUri', 154 'sent_date_time': 'sentDateTime', 155 'shared': 'shared', 156 'signer_can_sign_on_mobile': 'signerCanSignOnMobile', 157 'signing_location': 'signingLocation', 158 'status': 'status', 159 'status_changed_date_time': 'statusChangedDateTime', 160 'template_id': 'templateId', 161 'templates_uri': 'templatesUri', 162 'transaction_id': 'transactionId', 163 'uri': 'uri', 164 'use_disclosure': 'useDisclosure', 165 'voided_date_time': 'voidedDateTime', 166 'voided_reason': 'voidedReason' 167 } 168 169 self._allow_markup = allow_markup 170 self._allow_reassign = allow_reassign 171 self._allow_view_history = allow_view_history 172 self._asynchronous = asynchronous 173 self._attachments_uri = attachments_uri 174 self._authoritative_copy = authoritative_copy 175 self._authoritative_copy_default = authoritative_copy_default 176 self._auto_navigation = auto_navigation 177 self._brand_id = brand_id 178 self._brand_lock = brand_lock 179 self._certificate_uri = certificate_uri 180 self._completed_date_time = completed_date_time 181 self._created = created 182 self._created_date_time = created_date_time 183 self._custom_fields = custom_fields 184 self._custom_fields_uri = custom_fields_uri 185 self._declined_date_time = declined_date_time 186 self._deleted_date_time = deleted_date_time 187 self._delivered_date_time = delivered_date_time 188 self._description = description 189 self._documents = documents 190 self._documents_combined_uri = documents_combined_uri 191 self._documents_uri = documents_uri 192 self._email_blurb = email_blurb 193 self._email_settings = email_settings 194 self._email_subject = email_subject 195 self._enable_wet_sign = enable_wet_sign 196 self._enforce_signer_visibility = enforce_signer_visibility 197 self._envelope_id = envelope_id 198 self._envelope_id_stamping = envelope_id_stamping 199 self._envelope_uri = envelope_uri 200 self._folder_id = folder_id 201 self._folder_name = folder_name 202 self._folder_uri = folder_uri 203 self._initial_sent_date_time = initial_sent_date_time 204 self._is21_cfr_part11 = is21_cfr_part11 205 self._is_signature_provider_envelope = is_signature_provider_envelope 206 self._last_modified = last_modified 207 self._last_modified_date_time = last_modified_date_time 208 self._lock_information = lock_information 209 self._message_lock = message_lock 210 self._name = name 211 self._notification = notification 212 self._notification_uri = notification_uri 213 self._owner = owner 214 self._page_count = page_count 215 self._parent_folder_uri = parent_folder_uri 216 self._password = password 217 self._purge_state = purge_state 218 self._recipients = recipients 219 self._recipients_lock = recipients_lock 220 self._recipients_uri = recipients_uri 221 self._sent_date_time = sent_date_time 222 self._shared = shared 223 self._signer_can_sign_on_mobile = signer_can_sign_on_mobile 224 self._signing_location = signing_location 225 self._status = status 226 self._status_changed_date_time = status_changed_date_time 227 self._template_id = template_id 228 self._templates_uri = templates_uri 229 self._transaction_id = transaction_id 230 self._uri = uri 231 self._use_disclosure = use_disclosure 232 self._voided_date_time = voided_date_time 233 self._voided_reason = voided_reason 234 235 @property 236 def allow_markup(self): 237 """ 238 Gets the allow_markup of this EnvelopeTemplateResult. 239 When set to **true**, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this 240 241 :return: The allow_markup of this EnvelopeTemplateResult. 242 :rtype: str 243 """ 244 return self._allow_markup 245 246 @allow_markup.setter 247 def allow_markup(self, allow_markup): 248 """ 249 Sets the allow_markup of this EnvelopeTemplateResult. 250 When set to **true**, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this 251 252 :param allow_markup: The allow_markup of this EnvelopeTemplateResult. 253 :type: str 254 """ 255 256 self._allow_markup = allow_markup 257 258 @property 259 def allow_reassign(self): 260 """ 261 Gets the allow_reassign of this EnvelopeTemplateResult. 262 When set to **true**, the recipient can redirect an envelope to a more appropriate recipient. 263 264 :return: The allow_reassign of this EnvelopeTemplateResult. 265 :rtype: str 266 """ 267 return self._allow_reassign 268 269 @allow_reassign.setter 270 def allow_reassign(self, allow_reassign): 271 """ 272 Sets the allow_reassign of this EnvelopeTemplateResult. 273 When set to **true**, the recipient can redirect an envelope to a more appropriate recipient. 274 275 :param allow_reassign: The allow_reassign of this EnvelopeTemplateResult. 276 :type: str 277 """ 278 279 self._allow_reassign = allow_reassign 280 281 @property 282 def allow_view_history(self): 283 """ 284 Gets the allow_view_history of this EnvelopeTemplateResult. 285 286 287 :return: The allow_view_history of this EnvelopeTemplateResult. 288 :rtype: str 289 """ 290 return self._allow_view_history 291 292 @allow_view_history.setter 293 def allow_view_history(self, allow_view_history): 294 """ 295 Sets the allow_view_history of this EnvelopeTemplateResult. 296 297 298 :param allow_view_history: The allow_view_history of this EnvelopeTemplateResult. 299 :type: str 300 """ 301 302 self._allow_view_history = allow_view_history 303 304 @property 305 def asynchronous(self): 306 """ 307 Gets the asynchronous of this EnvelopeTemplateResult. 308 When set to **true**, the envelope is queued for processing and the value of the `status` property is set to 'Processing'. Additionally, get status calls return 'Processing' until completed. 309 310 :return: The asynchronous of this EnvelopeTemplateResult. 311 :rtype: str 312 """ 313 return self._asynchronous 314 315 @asynchronous.setter 316 def asynchronous(self, asynchronous): 317 """ 318 Sets the asynchronous of this EnvelopeTemplateResult. 319 When set to **true**, the envelope is queued for processing and the value of the `status` property is set to 'Processing'. Additionally, get status calls return 'Processing' until completed. 320 321 :param asynchronous: The asynchronous of this EnvelopeTemplateResult. 322 :type: str 323 """ 324 325 self._asynchronous = asynchronous 326 327 @property 328 def attachments_uri(self): 329 """ 330 Gets the attachments_uri of this EnvelopeTemplateResult. 331 332 333 :return: The attachments_uri of this EnvelopeTemplateResult. 334 :rtype: str 335 """ 336 return self._attachments_uri 337 338 @attachments_uri.setter 339 def attachments_uri(self, attachments_uri): 340 """ 341 Sets the attachments_uri of this EnvelopeTemplateResult. 342 343 344 :param attachments_uri: The attachments_uri of this EnvelopeTemplateResult. 345 :type: str 346 """ 347 348 self._attachments_uri = attachments_uri 349 350 @property 351 def authoritative_copy(self): 352 """ 353 Gets the authoritative_copy of this EnvelopeTemplateResult. 354 Specifies the Authoritative copy feature. If set to true the Authoritative copy feature is enabled. 355 356 :return: The authoritative_copy of this EnvelopeTemplateResult. 357 :rtype: str 358 """ 359 return self._authoritative_copy 360 361 @authoritative_copy.setter 362 def authoritative_copy(self, authoritative_copy): 363 """ 364 Sets the authoritative_copy of this EnvelopeTemplateResult. 365 Specifies the Authoritative copy feature. If set to true the Authoritative copy feature is enabled. 366 367 :param authoritative_copy: The authoritative_copy of this EnvelopeTemplateResult. 368 :type: str 369 """ 370 371 self._authoritative_copy = authoritative_copy 372 373 @property 374 def authoritative_copy_default(self): 375 """ 376 Gets the authoritative_copy_default of this EnvelopeTemplateResult. 377 378 379 :return: The authoritative_copy_default of this EnvelopeTemplateResult. 380 :rtype: str 381 """ 382 return self._authoritative_copy_default 383 384 @authoritative_copy_default.setter 385 def authoritative_copy_default(self, authoritative_copy_default): 386 """ 387 Sets the authoritative_copy_default of this EnvelopeTemplateResult. 388 389 390 :param authoritative_copy_default: The authoritative_copy_default of this EnvelopeTemplateResult. 391 :type: str 392 """ 393 394 self._authoritative_copy_default = authoritative_copy_default 395 396 @property 397 def auto_navigation(self): 398 """ 399 Gets the auto_navigation of this EnvelopeTemplateResult. 400 401 402 :return: The auto_navigation of this EnvelopeTemplateResult. 403 :rtype: str 404 """ 405 return self._auto_navigation 406 407 @auto_navigation.setter 408 def auto_navigation(self, auto_navigation): 409 """ 410 Sets the auto_navigation of this EnvelopeTemplateResult. 411 412 413 :param auto_navigation: The auto_navigation of this EnvelopeTemplateResult. 414 :type: str 415 """ 416 417 self._auto_navigation = auto_navigation 418 419 @property 420 def brand_id(self): 421 """ 422 Gets the brand_id of this EnvelopeTemplateResult. 423 424 425 :return: The brand_id of this EnvelopeTemplateResult. 426 :rtype: str 427 """ 428 return self._brand_id 429 430 @brand_id.setter 431 def brand_id(self, brand_id): 432 """ 433 Sets the brand_id of this EnvelopeTemplateResult. 434 435 436 :param brand_id: The brand_id of this EnvelopeTemplateResult. 437 :type: str 438 """ 439 440 self._brand_id = brand_id 441 442 @property 443 def brand_lock(self): 444 """ 445 Gets the brand_lock of this EnvelopeTemplateResult. 446 447 448 :return: The brand_lock of this EnvelopeTemplateResult. 449 :rtype: str 450 """ 451 return self._brand_lock 452 453 @brand_lock.setter 454 def brand_lock(self, brand_lock): 455 """ 456 Sets the brand_lock of this EnvelopeTemplateResult. 457 458 459 :param brand_lock: The brand_lock of this EnvelopeTemplateResult. 460 :type: str 461 """ 462 463 self._brand_lock = brand_lock 464 465 @property 466 def certificate_uri(self): 467 """ 468 Gets the certificate_uri of this EnvelopeTemplateResult. 469 Retrieves a URI for an endpoint that allows you to easily retrieve certificate information. 470 471 :return: The certificate_uri of this EnvelopeTemplateResult. 472 :rtype: str 473 """ 474 return self._certificate_uri 475 476 @certificate_uri.setter 477 def certificate_uri(self, certificate_uri): 478 """ 479 Sets the certificate_uri of this EnvelopeTemplateResult. 480 Retrieves a URI for an endpoint that allows you to easily retrieve certificate information. 481 482 :param certificate_uri: The certificate_uri of this EnvelopeTemplateResult. 483 :type: str 484 """ 485 486 self._certificate_uri = certificate_uri 487 488 @property 489 def completed_date_time(self): 490 """ 491 Gets the completed_date_time of this EnvelopeTemplateResult. 492 Specifies the date and time this item was completed. 493 494 :return: The completed_date_time of this EnvelopeTemplateResult. 495 :rtype: str 496 """ 497 return self._completed_date_time 498 499 @completed_date_time.setter 500 def completed_date_time(self, completed_date_time): 501 """ 502 Sets the completed_date_time of this EnvelopeTemplateResult. 503 Specifies the date and time this item was completed. 504 505 :param completed_date_time: The completed_date_time of this EnvelopeTemplateResult. 506 :type: str 507 """ 508 509 self._completed_date_time = completed_date_time 510 511 @property 512 def created(self): 513 """ 514 Gets the created of this EnvelopeTemplateResult. 515 516 517 :return: The created of this EnvelopeTemplateResult. 518 :rtype: str 519 """ 520 return self._created 521 522 @created.setter 523 def created(self, created): 524 """ 525 Sets the created of this EnvelopeTemplateResult. 526 527 528 :param created: The created of this EnvelopeTemplateResult. 529 :type: str 530 """ 531 532 self._created = created 533 534 @property 535 def created_date_time(self): 536 """ 537 Gets the created_date_time of this EnvelopeTemplateResult. 538 Indicates the date and time the item was created. 539 540 :return: The created_date_time of this EnvelopeTemplateResult. 541 :rtype: str 542 """ 543 return self._created_date_time 544 545 @created_date_time.setter 546 def created_date_time(self, created_date_time): 547 """ 548 Sets the created_date_time of this EnvelopeTemplateResult. 549 Indicates the date and time the item was created. 550 551 :param created_date_time: The created_date_time of this EnvelopeTemplateResult. 552 :type: str 553 """ 554 555 self._created_date_time = created_date_time 556 557 @property 558 def custom_fields(self): 559 """ 560 Gets the custom_fields of this EnvelopeTemplateResult. 561 562 :return: The custom_fields of this EnvelopeTemplateResult. 563 :rtype: CustomFields 564 """ 565 return self._custom_fields 566 567 @custom_fields.setter 568 def custom_fields(self, custom_fields): 569 """ 570 Sets the custom_fields of this EnvelopeTemplateResult. 571 572 :param custom_fields: The custom_fields of this EnvelopeTemplateResult. 573 :type: CustomFields 574 """ 575 576 self._custom_fields = custom_fields 577 578 @property 579 def custom_fields_uri(self): 580 """ 581 Gets the custom_fields_uri of this EnvelopeTemplateResult. 582 Contains a URI for an endpoint that you can use to retrieve the custom fields. 583 584 :return: The custom_fields_uri of this EnvelopeTemplateResult. 585 :rtype: str 586 """ 587 return self._custom_fields_uri 588 589 @custom_fields_uri.setter 590 def custom_fields_uri(self, custom_fields_uri): 591 """ 592 Sets the custom_fields_uri of this EnvelopeTemplateResult. 593 Contains a URI for an endpoint that you can use to retrieve the custom fields. 594 595 :param custom_fields_uri: The custom_fields_uri of this EnvelopeTemplateResult. 596 :type: str 597 """ 598 599 self._custom_fields_uri = custom_fields_uri 600 601 @property 602 def declined_date_time(self): 603 """ 604 Gets the declined_date_time of this EnvelopeTemplateResult. 605 The date and time the recipient declined the document. 606 607 :return: The declined_date_time of this EnvelopeTemplateResult. 608 :rtype: str 609 """ 610 return self._declined_date_time 611 612 @declined_date_time.setter 613 def declined_date_time(self, declined_date_time): 614 """ 615 Sets the declined_date_time of this EnvelopeTemplateResult. 616 The date and time the recipient declined the document. 617 618 :param declined_date_time: The declined_date_time of this EnvelopeTemplateResult. 619 :type: str 620 """ 621 622 self._declined_date_time = declined_date_time 623 624 @property 625 def deleted_date_time(self): 626 """ 627 Gets the deleted_date_time of this EnvelopeTemplateResult. 628 Specifies the data and time the item was deleted. 629 630 :return: The deleted_date_time of this EnvelopeTemplateResult. 631 :rtype: str 632 """ 633 return self._deleted_date_time 634 635 @deleted_date_time.setter 636 def deleted_date_time(self, deleted_date_time): 637 """ 638 Sets the deleted_date_time of this EnvelopeTemplateResult. 639 Specifies the data and time the item was deleted. 640 641 :param deleted_date_time: The deleted_date_time of this EnvelopeTemplateResult. 642 :type: str 643 """ 644 645 self._deleted_date_time = deleted_date_time 646 647 @property 648 def delivered_date_time(self): 649 """ 650 Gets the delivered_date_time of this EnvelopeTemplateResult. 651 Reserved: For DocuSign use only. 652 653 :return: The delivered_date_time of this EnvelopeTemplateResult. 654 :rtype: str 655 """ 656 return self._delivered_date_time 657 658 @delivered_date_time.setter 659 def delivered_date_time(self, delivered_date_time): 660 """ 661 Sets the delivered_date_time of this EnvelopeTemplateResult. 662 Reserved: For DocuSign use only. 663 664 :param delivered_date_time: The delivered_date_time of this EnvelopeTemplateResult. 665 :type: str 666 """ 667 668 self._delivered_date_time = delivered_date_time 669 670 @property 671 def description(self): 672 """ 673 Gets the description of this EnvelopeTemplateResult. 674 675 676 :return: The description of this EnvelopeTemplateResult. 677 :rtype: str 678 """ 679 return self._description 680 681 @description.setter 682 def description(self, description): 683 """ 684 Sets the description of this EnvelopeTemplateResult. 685 686 687 :param description: The description of this EnvelopeTemplateResult. 688 :type: str 689 """ 690 691 self._description = description 692 693 @property 694 def documents(self): 695 """ 696 Gets the documents of this EnvelopeTemplateResult. 697 Complex element contains the details on the documents in the envelope. 698 699 :return: The documents of this EnvelopeTemplateResult. 700 :rtype: list[Document] 701 """ 702 return self._documents 703 704 @documents.setter 705 def documents(self, documents): 706 """ 707 Sets the documents of this EnvelopeTemplateResult. 708 Complex element contains the details on the documents in the envelope. 709 710 :param documents: The documents of this EnvelopeTemplateResult. 711 :type: list[Document] 712 """ 713 714 self._documents = documents 715 716 @property 717 def documents_combined_uri(self): 718 """ 719 Gets the documents_combined_uri of this EnvelopeTemplateResult. 720 721 722 :return: The documents_combined_uri of this EnvelopeTemplateResult. 723 :rtype: str 724 """ 725 return self._documents_combined_uri 726 727 @documents_combined_uri.setter 728 def documents_combined_uri(self, documents_combined_uri): 729 """ 730 Sets the documents_combined_uri of this EnvelopeTemplateResult. 731 732 733 :param documents_combined_uri: The documents_combined_uri of this EnvelopeTemplateResult. 734 :type: str 735 """ 736 737 self._documents_combined_uri = documents_combined_uri 738 739 @property 740 def documents_uri(self): 741 """ 742 Gets the documents_uri of this EnvelopeTemplateResult. 743 Contains a URI for an endpoint that you can use to retrieve the documents. 744 745 :return: The documents_uri of this EnvelopeTemplateResult. 746 :rtype: str 747 """ 748 return self._documents_uri 749 750 @documents_uri.setter 751 def documents_uri(self, documents_uri): 752 """ 753 Sets the documents_uri of this EnvelopeTemplateResult. 754 Contains a URI for an endpoint that you can use to retrieve the documents. 755 756 :param documents_uri: The documents_uri of this EnvelopeTemplateResult. 757 :type: str 758 """ 759 760 self._documents_uri = documents_uri 761 762 @property 763 def email_blurb(self): 764 """ 765 Gets the email_blurb of this EnvelopeTemplateResult. 766 767 768 :return: The email_blurb of this EnvelopeTemplateResult. 769 :rtype: str 770 """ 771 return self._email_blurb 772 773 @email_blurb.setter 774 def email_blurb(self, email_blurb): 775 """ 776 Sets the email_blurb of this EnvelopeTemplateResult. 777 778 779 :param email_blurb: The email_blurb of this EnvelopeTemplateResult. 780 :type: str 781 """ 782 783 self._email_blurb = email_blurb 784 785 @property 786 def email_settings(self): 787 """ 788 Gets the email_settings of this EnvelopeTemplateResult. 789 790 :return: The email_settings of this EnvelopeTemplateResult. 791 :rtype: EmailSettings 792 """ 793 return self._email_settings 794 795 @email_settings.setter 796 def email_settings(self, email_settings): 797 """ 798 Sets the email_settings of this EnvelopeTemplateResult. 799 800 :param email_settings: The email_settings of this EnvelopeTemplateResult. 801 :type: EmailSettings 802 """ 803 804 self._email_settings = email_settings 805 806 @property 807 def email_subject(self): 808 """ 809 Gets the email_subject of this EnvelopeTemplateResult. 810 Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject. 811 812 :return: The email_subject of this EnvelopeTemplateResult. 813 :rtype: str 814 """ 815 return self._email_subject 816 817 @email_subject.setter 818 def email_subject(self, email_subject): 819 """ 820 Sets the email_subject of this EnvelopeTemplateResult. 821 Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject. 822 823 :param email_subject: The email_subject of this EnvelopeTemplateResult. 824 :type: str 825 """ 826 827 self._email_subject = email_subject 828 829 @property 830 def enable_wet_sign(self): 831 """ 832 Gets the enable_wet_sign of this EnvelopeTemplateResult. 833 When set to **true**, the signer is allowed to print the document and sign it on paper. 834 835 :return: The enable_wet_sign of this EnvelopeTemplateResult. 836 :rtype: str 837 """ 838 return self._enable_wet_sign 839 840 @enable_wet_sign.setter 841 def enable_wet_sign(self, enable_wet_sign): 842 """ 843 Sets the enable_wet_sign of this EnvelopeTemplateResult. 844 When set to **true**, the signer is allowed to print the document and sign it on paper. 845 846 :param enable_wet_sign: The enable_wet_sign of this EnvelopeTemplateResult. 847 :type: str 848 """ 849 850 self._enable_wet_sign = enable_wet_sign 851 852 @property 853 def enforce_signer_visibility(self): 854 """ 855 Gets the enforce_signer_visibility of this EnvelopeTemplateResult. 856 When set to **true**, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. Your account must have Document Visibility enabled to use this. 857 858 :return: The enforce_signer_visibility of this EnvelopeTemplateResult. 859 :rtype: str 860 """ 861 return self._enforce_signer_visibility 862 863 @enforce_signer_visibility.setter 864 def enforce_signer_visibility(self, enforce_signer_visibility): 865 """ 866 Sets the enforce_signer_visibility of this EnvelopeTemplateResult. 867 When set to **true**, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. Your account must have Document Visibility enabled to use this. 868 869 :param enforce_signer_visibility: The enforce_signer_visibility of this EnvelopeTemplateResult. 870 :type: str 871 """ 872 873 self._enforce_signer_visibility = enforce_signer_visibility 874 875 @property 876 def envelope_id(self): 877 """ 878 Gets the envelope_id of this EnvelopeTemplateResult. 879 The envelope ID of the envelope status that failed to post. 880 881 :return: The envelope_id of this EnvelopeTemplateResult. 882 :rtype: str 883 """ 884 return self._envelope_id 885 886 @envelope_id.setter 887 def envelope_id(self, envelope_id): 888 """ 889 Sets the envelope_id of this EnvelopeTemplateResult. 890 The envelope ID of the envelope status that failed to post. 891 892 :param envelope_id: The envelope_id of this EnvelopeTemplateResult. 893 :type: str 894 """ 895 896 self._envelope_id = envelope_id 897 898 @property 899 def envelope_id_stamping(self): 900 """ 901 Gets the envelope_id_stamping of this EnvelopeTemplateResult. 902 When set to **true**, Envelope ID Stamping is enabled. 903 904 :return: The envelope_id_stamping of this EnvelopeTemplateResult. 905 :rtype: str 906 """ 907 return self._envelope_id_stamping 908 909 @envelope_id_stamping.setter 910 def envelope_id_stamping(self, envelope_id_stamping): 911 """ 912 Sets the envelope_id_stamping of this EnvelopeTemplateResult. 913 When set to **true**, Envelope ID Stamping is enabled. 914 915 :param envelope_id_stamping: The envelope_id_stamping of this EnvelopeTemplateResult. 916 :type: str 917 """ 918 919 self._envelope_id_stamping = envelope_id_stamping 920 921 @property 922 def envelope_uri(self): 923 """ 924 Gets the envelope_uri of this EnvelopeTemplateResult. 925 Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes. 926 927 :return: The envelope_uri of this EnvelopeTemplateResult. 928 :rtype: str 929 """ 930 return self._envelope_uri 931 932 @envelope_uri.setter 933 def envelope_uri(self, envelope_uri): 934 """ 935 Sets the envelope_uri of this EnvelopeTemplateResult. 936 Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes. 937 938 :param envelope_uri: The envelope_uri of this EnvelopeTemplateResult. 939 :type: str 940 """ 941 942 self._envelope_uri = envelope_uri 943 944 @property 945 def folder_id(self): 946 """ 947 Gets the folder_id of this EnvelopeTemplateResult. 948 949 950 :return: The folder_id of this EnvelopeTemplateResult. 951 :rtype: str 952 """ 953 return self._folder_id 954 955 @folder_id.setter 956 def folder_id(self, folder_id): 957 """ 958 Sets the folder_id of this EnvelopeTemplateResult. 959 960 961 :param folder_id: The folder_id of this EnvelopeTemplateResult. 962 :type: str 963 """ 964 965 self._folder_id = folder_id 966 967 @property 968 def folder_name(self): 969 """ 970 Gets the folder_name of this EnvelopeTemplateResult. 971 972 973 :return: The folder_name of this EnvelopeTemplateResult. 974 :rtype: str 975 """ 976 return self._folder_name 977 978 @folder_name.setter 979 def folder_name(self, folder_name): 980 """ 981 Sets the folder_name of this EnvelopeTemplateResult. 982 983 984 :param folder_name: The folder_name of this EnvelopeTemplateResult. 985 :type: str 986 """ 987 988 self._folder_name = folder_name 989 990 @property 991 def folder_uri(self): 992 """ 993 Gets the folder_uri of this EnvelopeTemplateResult. 994 995 996 :return: The folder_uri of this EnvelopeTemplateResult. 997 :rtype: str 998 """ 999 return self._folder_uri 1000 1001 @folder_uri.setter 1002 def folder_uri(self, folder_uri): 1003 """ 1004 Sets the folder_uri of this EnvelopeTemplateResult. 1005 1006 1007 :param folder_uri: The folder_uri of this EnvelopeTemplateResult. 1008 :type: str 1009 """ 1010 1011 self._folder_uri = folder_uri 1012 1013 @property 1014 def initial_sent_date_time(self): 1015 """ 1016 Gets the initial_sent_date_time of this EnvelopeTemplateResult. 1017 1018 1019 :return: The initial_sent_date_time of this EnvelopeTemplateResult. 1020 :rtype: str 1021 """ 1022 return self._initial_sent_date_time 1023 1024 @initial_sent_date_time.setter 1025 def initial_sent_date_time(self, initial_sent_date_time): 1026 """ 1027 Sets the initial_sent_date_time of this EnvelopeTemplateResult. 1028 1029 1030 :param initial_sent_date_time: The initial_sent_date_time of this EnvelopeTemplateResult. 1031 :type: str 1032 """ 1033 1034 self._initial_sent_date_time = initial_sent_date_time 1035 1036 @property 1037 def is21_cfr_part11(self): 1038 """ 1039 Gets the is21_cfr_part11 of this EnvelopeTemplateResult. 1040 When set to **true**, indicates that this module is enabled on the account. 1041 1042 :return: The is21_cfr_part11 of this EnvelopeTemplateResult. 1043 :rtype: str 1044 """ 1045 return self._is21_cfr_part11 1046 1047 @is21_cfr_part11.setter 1048 def is21_cfr_part11(self, is21_cfr_part11): 1049 """ 1050 Sets the is21_cfr_part11 of this EnvelopeTemplateResult. 1051 When set to **true**, indicates that this module is enabled on the account. 1052 1053 :param is21_cfr_part11: The is21_cfr_part11 of this EnvelopeTemplateResult. 1054 :type: str 1055 """ 1056 1057 self._is21_cfr_part11 = is21_cfr_part11 1058 1059 @property 1060 def is_signature_provider_envelope(self): 1061 """ 1062 Gets the is_signature_provider_envelope of this EnvelopeTemplateResult. 1063 1064 1065 :return: The is_signature_provider_envelope of this EnvelopeTemplateResult. 1066 :rtype: str 1067 """ 1068 return self._is_signature_provider_envelope 1069 1070 @is_signature_provider_envelope.setter 1071 def is_signature_provider_envelope(self, is_signature_provider_envelope): 1072 """ 1073 Sets the is_signature_provider_envelope of this EnvelopeTemplateResult. 1074 1075 1076 :param is_signature_provider_envelope: The is_signature_provider_envelope of this EnvelopeTemplateResult. 1077 :type: str 1078 """ 1079 1080 self._is_signature_provider_envelope = is_signature_provider_envelope 1081 1082 @property 1083 def last_modified(self): 1084 """ 1085 Gets the last_modified of this EnvelopeTemplateResult. 1086 1087 1088 :return: The last_modified of this EnvelopeTemplateResult. 1089 :rtype: str 1090 """ 1091 return self._last_modified 1092 1093 @last_modified.setter 1094 def last_modified(self, last_modified): 1095 """ 1096 Sets the last_modified of this EnvelopeTemplateResult. 1097 1098 1099 :param last_modified: The last_modified of this EnvelopeTemplateResult. 1100 :type: str 1101 """ 1102 1103 self._last_modified = last_modified 1104 1105 @property 1106 def last_modified_date_time(self): 1107 """ 1108 Gets the last_modified_date_time of this EnvelopeTemplateResult. 1109 The date and time the item was last modified. 1110 1111 :return: The last_modified_date_time of this EnvelopeTemplateResult. 1112 :rtype: str 1113 """ 1114 return self._last_modified_date_time 1115 1116 @last_modified_date_time.setter 1117 def last_modified_date_time(self, last_modified_date_time): 1118 """ 1119 Sets the last_modified_date_time of this EnvelopeTemplateResult. 1120 The date and time the item was last modified. 1121 1122 :param last_modified_date_time: The last_modified_date_time of this EnvelopeTemplateResult. 1123 :type: str 1124 """ 1125 1126 self._last_modified_date_time = last_modified_date_time 1127 1128 @property 1129 def lock_information(self): 1130 """ 1131 Gets the lock_information of this EnvelopeTemplateResult. 1132 1133 :return: The lock_information of this EnvelopeTemplateResult. 1134 :rtype: LockInformation 1135 """ 1136 return self._lock_information 1137 1138 @lock_information.setter 1139 def lock_information(self, lock_information): 1140 """ 1141 Sets the lock_information of this EnvelopeTemplateResult. 1142 1143 :param lock_information: The lock_information of this EnvelopeTemplateResult. 1144 :type: LockInformation 1145 """ 1146 1147 self._lock_information = lock_information 1148 1149 @property 1150 def message_lock(self): 1151 """ 1152 Gets the message_lock of this EnvelopeTemplateResult. 1153 When set to **true**, prevents senders from changing the contents of `emailBlurb` and `emailSubject` properties for the envelope. Additionally, this prevents users from making changes to the contents of `emailBlurb` and `emailSubject` properties when correcting envelopes. However, if the `messageLock` node is set to true**** and the `emailSubject` property is empty, senders and correctors are able to add a subject to the envelope. 1154 1155 :return: The message_lock of this EnvelopeTemplateResult. 1156 :rtype: str 1157 """ 1158 return self._message_lock 1159 1160 @message_lock.setter 1161 def message_lock(self, message_lock): 1162 """ 1163 Sets the message_lock of this EnvelopeTemplateResult. 1164 When set to **true**, prevents senders from changing the contents of `emailBlurb` and `emailSubject` properties for the envelope. Additionally, this prevents users from making changes to the contents of `emailBlurb` and `emailSubject` properties when correcting envelopes. However, if the `messageLock` node is set to true**** and the `emailSubject` property is empty, senders and correctors are able to add a subject to the envelope. 1165 1166 :param message_lock: The message_lock of this EnvelopeTemplateResult. 1167 :type: str 1168 """ 1169 1170 self._message_lock = message_lock 1171 1172 @property 1173 def name(self): 1174 """ 1175 Gets the name of this EnvelopeTemplateResult. 1176 1177 1178 :return: The name of this EnvelopeTemplateResult. 1179 :rtype: str 1180 """ 1181 return self._name 1182 1183 @name.setter 1184 def name(self, name): 1185 """ 1186 Sets the name of this EnvelopeTemplateResult. 1187 1188 1189 :param name: The name of this EnvelopeTemplateResult. 1190 :type: str 1191 """ 1192 1193 self._name = name 1194 1195 @property 1196 def notification(self): 1197 """ 1198 Gets the notification of this EnvelopeTemplateResult. 1199 1200 :return: The notification of this EnvelopeTemplateResult. 1201 :rtype: Notification 1202 """ 1203 return self._notification 1204 1205 @notification.setter 1206 def notification(self, notification): 1207 """ 1208 Sets the notification of this EnvelopeTemplateResult. 1209 1210 :param notification: The notification of this EnvelopeTemplateResult. 1211 :type: Notification 1212 """ 1213 1214 self._notification = notification 1215 1216 @property 1217 def notification_uri(self): 1218 """ 1219 Gets the notification_uri of this EnvelopeTemplateResult. 1220 Contains a URI for an endpoint that you can use to retrieve the notifications. 1221 1222 :return: The notification_uri of this EnvelopeTemplateResult. 1223 :rtype: str 1224 """ 1225 return self._notification_uri 1226 1227 @notification_uri.setter 1228 def notification_uri(self, notification_uri): 1229 """ 1230 Sets the notification_uri of this EnvelopeTemplateResult. 1231 Contains a URI for an endpoint that you can use to retrieve the notifications. 1232 1233 :param notification_uri: The notification_uri of this EnvelopeTemplateResult. 1234 :type: str 1235 """ 1236 1237 self._notification_uri = notification_uri 1238 1239 @property 1240 def owner(self): 1241 """ 1242 Gets the owner of this EnvelopeTemplateResult. 1243 1244 :return: The owner of this EnvelopeTemplateResult. 1245 :rtype: UserInfo 1246 """ 1247 return self._owner 1248 1249 @owner.setter 1250 def owner(self, owner): 1251 """ 1252 Sets the owner of this EnvelopeTemplateResult. 1253 1254 :param owner: The owner of this EnvelopeTemplateResult. 1255 :type: UserInfo 1256 """ 1257 1258 self._owner = owner 1259 1260 @property 1261 def page_count(self): 1262 """ 1263 Gets the page_count of this EnvelopeTemplateResult. 1264 1265 1266 :return: The page_count of this EnvelopeTemplateResult. 1267 :rtype: int 1268 """ 1269 return self._page_count 1270 1271 @page_count.setter 1272 def page_count(self, page_count): 1273 """ 1274 Sets the page_count of this EnvelopeTemplateResult. 1275 1276 1277 :param page_count: The page_count of this EnvelopeTemplateResult. 1278 :type: int 1279 """ 1280 1281 self._page_count = page_count 1282 1283 @property 1284 def parent_folder_uri(self): 1285 """ 1286 Gets the parent_folder_uri of this EnvelopeTemplateResult. 1287 1288 1289 :return: The parent_folder_uri of this EnvelopeTemplateResult. 1290 :rtype: str 1291 """ 1292 return self._parent_folder_uri 1293 1294 @parent_folder_uri.setter 1295 def parent_folder_uri(self, parent_folder_uri): 1296 """ 1297 Sets the parent_folder_uri of this EnvelopeTemplateResult. 1298 1299 1300 :param parent_folder_uri: The parent_folder_uri of this EnvelopeTemplateResult. 1301 :type: str 1302 """ 1303 1304 self._parent_folder_uri = parent_folder_uri 1305 1306 @property 1307 def password(self): 1308 """ 1309 Gets the password of this EnvelopeTemplateResult. 1310 1311 1312 :return: The password of this EnvelopeTemplateResult. 1313 :rtype: str 1314 """ 1315 return self._password 1316 1317 @password.setter 1318 def password(self, password): 1319 """ 1320 Sets the password of this EnvelopeTemplateResult. 1321 1322 1323 :param password: The password of this EnvelopeTemplateResult. 1324 :type: str 1325 """ 1326 1327 self._password = password 1328 1329 @property 1330 def purge_state(self): 1331 """ 1332 Gets the purge_state of this EnvelopeTemplateResult. 1333 1334 1335 :return: The purge_state of this EnvelopeTemplateResult. 1336 :rtype: str 1337 """ 1338 return self._purge_state 1339 1340 @purge_state.setter 1341 def purge_state(self, purge_state): 1342 """ 1343 Sets the purge_state of this EnvelopeTemplateResult. 1344 1345 1346 :param purge_state: The purge_state of this EnvelopeTemplateResult. 1347 :type: str 1348 """ 1349 1350 self._purge_state = purge_state 1351 1352 @property 1353 def recipients(self): 1354 """ 1355 Gets the recipients of this EnvelopeTemplateResult. 1356 1357 :return: The recipients of this EnvelopeTemplateResult. 1358 :rtype: Recipients 1359 """ 1360 return self._recipients 1361 1362 @recipients.setter 1363 def recipients(self, recipients): 1364 """ 1365 Sets the recipients of this EnvelopeTemplateResult. 1366 1367 :param recipients: The recipients of this EnvelopeTemplateResult. 1368 :type: Recipients 1369 """ 1370 1371 self._recipients = recipients 1372 1373 @property 1374 def recipients_lock(self): 1375 """ 1376 Gets the recipients_lock of this EnvelopeTemplateResult. 1377 When set to **true**, prevents senders from changing, correcting, or deleting the recipient information for the envelope. 1378 1379 :return: The recipients_lock of this EnvelopeTemplateResult. 1380 :rtype: str 1381 """ 1382 return self._recipients_lock 1383 1384 @recipients_lock.setter 1385 def recipients_lock(self, recipients_lock): 1386 """ 1387 Sets the recipients_lock of this EnvelopeTemplateResult. 1388 When set to **true**, prevents senders from changing, correcting, or deleting the recipient information for the envelope. 1389 1390 :param recipients_lock: The recipients_lock of this EnvelopeTemplateResult. 1391 :type: str 1392 """ 1393 1394 self._recipients_lock = recipients_lock 1395 1396 @property 1397 def recipients_uri(self): 1398 """ 1399 Gets the recipients_uri of this EnvelopeTemplateResult. 1400 Contains a URI for an endpoint that you can use to retrieve the recipients. 1401 1402 :return: The recipients_uri of this EnvelopeTemplateResult. 1403 :rtype: str 1404 """ 1405 return self._recipients_uri 1406 1407 @recipients_uri.setter 1408 def recipients_uri(self, recipients_uri): 1409 """ 1410 Sets the recipients_uri of this EnvelopeTemplateResult. 1411 Contains a URI for an endpoint that you can use to retrieve the recipients. 1412 1413 :param recipients_uri: The recipients_uri of this EnvelopeTemplateResult. 1414 :type: str 1415 """ 1416 1417 self._recipients_uri = recipients_uri 1418 1419 @property 1420 def sent_date_time(self): 1421 """ 1422 Gets the sent_date_time of this EnvelopeTemplateResult. 1423 The date and time the envelope was sent. 1424 1425 :return: The sent_date_time of this EnvelopeTemplateResult. 1426 :rtype: str 1427 """ 1428 return self._sent_date_time 1429 1430 @sent_date_time.setter 1431 def sent_date_time(self, sent_date_time): 1432 """ 1433 Sets the sent_date_time of this EnvelopeTemplateResult. 1434 The date and time the envelope was sent. 1435 1436 :param sent_date_time: The sent_date_time of this EnvelopeTemplateResult. 1437 :type: str 1438 """ 1439 1440 self._sent_date_time = sent_date_time 1441 1442 @property 1443 def shared(self): 1444 """ 1445 Gets the shared of this EnvelopeTemplateResult. 1446 When set to **true**, this custom tab is shared. 1447 1448 :return: The shared of this EnvelopeTemplateResult. 1449 :rtype: str 1450 """ 1451 return self._shared 1452 1453 @shared.setter 1454 def shared(self, shared): 1455 """ 1456 Sets the shared of this EnvelopeTemplateResult. 1457 When set to **true**, this custom tab is shared. 1458 1459 :param shared: The shared of this EnvelopeTemplateResult. 1460 :type: str 1461 """ 1462 1463 self._shared = shared 1464 1465 @property 1466 def signer_can_sign_on_mobile(self): 1467 """ 1468 Gets the signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1469 1470 1471 :return: The signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1472 :rtype: str 1473 """ 1474 return self._signer_can_sign_on_mobile 1475 1476 @signer_can_sign_on_mobile.setter 1477 def signer_can_sign_on_mobile(self, signer_can_sign_on_mobile): 1478 """ 1479 Sets the signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1480 1481 1482 :param signer_can_sign_on_mobile: The signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1483 :type: str 1484 """ 1485 1486 self._signer_can_sign_on_mobile = signer_can_sign_on_mobile 1487 1488 @property 1489 def signing_location(self): 1490 """ 1491 Gets the signing_location of this EnvelopeTemplateResult. 1492 Specifies the physical location where the signing takes place. It can have two enumeration values; InPerson and Online. The default value is Online. 1493 1494 :return: The signing_location of this EnvelopeTemplateResult. 1495 :rtype: str 1496 """ 1497 return self._signing_location 1498 1499 @signing_location.setter 1500 def signing_location(self, signing_location): 1501 """ 1502 Sets the signing_location of this EnvelopeTemplateResult. 1503 Specifies the physical location where the signing takes place. It can have two enumeration values; InPerson and Online. The default value is Online. 1504 1505 :param signing_location: The signing_location of this EnvelopeTemplateResult. 1506 :type: str 1507 """ 1508 1509 self._signing_location = signing_location 1510 1511 @property 1512 def status(self): 1513 """ 1514 Gets the status of this EnvelopeTemplateResult. 1515 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. 1516 1517 :return: The status of this EnvelopeTemplateResult. 1518 :rtype: str 1519 """ 1520 return self._status 1521 1522 @status.setter 1523 def status(self, status): 1524 """ 1525 Sets the status of this EnvelopeTemplateResult. 1526 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. 1527 1528 :param status: The status of this EnvelopeTemplateResult. 1529 :type: str 1530 """ 1531 1532 self._status = status 1533 1534 @property 1535 def status_changed_date_time(self): 1536 """ 1537 Gets the status_changed_date_time of this EnvelopeTemplateResult. 1538 The data and time the status changed. 1539 1540 :return: The status_changed_date_time of this EnvelopeTemplateResult. 1541 :rtype: str 1542 """ 1543 return self._status_changed_date_time 1544 1545 @status_changed_date_time.setter 1546 def status_changed_date_time(self, status_changed_date_time): 1547 """ 1548 Sets the status_changed_date_time of this EnvelopeTemplateResult. 1549 The data and time the status changed. 1550 1551 :param status_changed_date_time: The status_changed_date_time of this EnvelopeTemplateResult. 1552 :type: str 1553 """ 1554 1555 self._status_changed_date_time = status_changed_date_time 1556 1557 @property 1558 def template_id(self): 1559 """ 1560 Gets the template_id of this EnvelopeTemplateResult. 1561 The unique identifier of the template. If this is not provided, DocuSign will generate a value. 1562 1563 :return: The template_id of this EnvelopeTemplateResult. 1564 :rtype: str 1565 """ 1566 return self._template_id 1567 1568 @template_id.setter 1569 def template_id(self, template_id): 1570 """ 1571 Sets the template_id of this EnvelopeTemplateResult. 1572 The unique identifier of the template. If this is not provided, DocuSign will generate a value. 1573 1574 :param template_id: The template_id of this EnvelopeTemplateResult. 1575 :type: str 1576 """ 1577 1578 self._template_id = template_id 1579 1580 @property 1581 def templates_uri(self): 1582 """ 1583 Gets the templates_uri of this EnvelopeTemplateResult. 1584 Contains a URI for an endpoint which you can use to retrieve the templates. 1585 1586 :return: The templates_uri of this EnvelopeTemplateResult. 1587 :rtype: str 1588 """ 1589 return self._templates_uri 1590 1591 @templates_uri.setter 1592 def templates_uri(self, templates_uri): 1593 """ 1594 Sets the templates_uri of this EnvelopeTemplateResult. 1595 Contains a URI for an endpoint which you can use to retrieve the templates. 1596 1597 :param templates_uri: The templates_uri of this EnvelopeTemplateResult. 1598 :type: str 1599 """ 1600 1601 self._templates_uri = templates_uri 1602 1603 @property 1604 def transaction_id(self): 1605 """ 1606 Gets the transaction_id of this EnvelopeTemplateResult. 1607 Used to identify an envelope. The id is a sender-generated value and is valid in the DocuSign system for 7 days. It is recommended that a transaction ID is used for offline signing to ensure that an envelope is not sent multiple times. The `transactionId` property can be used determine an envelope's status (i.e. was it created or not) in cases where the internet connection was lost before the envelope status was returned. 1608 1609 :return: The transaction_id of this EnvelopeTemplateResult. 1610 :rtype: str 1611 """ 1612 return self._transaction_id 1613 1614 @transaction_id.setter 1615 def transaction_id(self, transaction_id): 1616 """ 1617 Sets the transaction_id of this EnvelopeTemplateResult. 1618 Used to identify an envelope. The id is a sender-generated value and is valid in the DocuSign system for 7 days. It is recommended that a transaction ID is used for offline signing to ensure that an envelope is not sent multiple times. The `transactionId` property can be used determine an envelope's status (i.e. was it created or not) in cases where the internet connection was lost before the envelope status was returned. 1619 1620 :param transaction_id: The transaction_id of this EnvelopeTemplateResult. 1621 :type: str 1622 """ 1623 1624 self._transaction_id = transaction_id 1625 1626 @property 1627 def uri(self): 1628 """ 1629 Gets the uri of this EnvelopeTemplateResult. 1630 1631 1632 :return: The uri of this EnvelopeTemplateResult. 1633 :rtype: str 1634 """ 1635 return self._uri 1636 1637 @uri.setter 1638 def uri(self, uri): 1639 """ 1640 Sets the uri of this EnvelopeTemplateResult. 1641 1642 1643 :param uri: The uri of this EnvelopeTemplateResult. 1644 :type: str 1645 """ 1646 1647 self._uri = uri 1648 1649 @property 1650 def use_disclosure(self): 1651 """ 1652 Gets the use_disclosure of this EnvelopeTemplateResult. 1653 When set to **true**, the disclosure is shown to recipients in accordance with the account's Electronic Record and Signature Disclosure frequency setting. When set to **false**, the Electronic Record and Signature Disclosure is not shown to any envelope recipients. If the `useDisclosure` property is not set, then the account's normal disclosure setting is used and the value of the `useDisclosure` property is not returned in responses when getting envelope information. 1654 1655 :return: The use_disclosure of this EnvelopeTemplateResult. 1656 :rtype: str 1657 """ 1658 return self._use_disclosure 1659 1660 @use_disclosure.setter 1661 def use_disclosure(self, use_disclosure): 1662 """ 1663 Sets the use_disclosure of this EnvelopeTemplateResult. 1664 When set to **true**, the disclosure is shown to recipients in accordance with the account's Electronic Record and Signature Disclosure frequency setting. When set to **false**, the Electronic Record and Signature Disclosure is not shown to any envelope recipients. If the `useDisclosure` property is not set, then the account's normal disclosure setting is used and the value of the `useDisclosure` property is not returned in responses when getting envelope information. 1665 1666 :param use_disclosure: The use_disclosure of this EnvelopeTemplateResult. 1667 :type: str 1668 """ 1669 1670 self._use_disclosure = use_disclosure 1671 1672 @property 1673 def voided_date_time(self): 1674 """ 1675 Gets the voided_date_time of this EnvelopeTemplateResult. 1676 The date and time the envelope or template was voided. 1677 1678 :return: The voided_date_time of this EnvelopeTemplateResult. 1679 :rtype: str 1680 """ 1681 return self._voided_date_time 1682 1683 @voided_date_time.setter 1684 def voided_date_time(self, voided_date_time): 1685 """ 1686 Sets the voided_date_time of this EnvelopeTemplateResult. 1687 The date and time the envelope or template was voided. 1688 1689 :param voided_date_time: The voided_date_time of this EnvelopeTemplateResult. 1690 :type: str 1691 """ 1692 1693 self._voided_date_time = voided_date_time 1694 1695 @property 1696 def voided_reason(self): 1697 """ 1698 Gets the voided_reason of this EnvelopeTemplateResult. 1699 The reason the envelope or template was voided. 1700 1701 :return: The voided_reason of this EnvelopeTemplateResult. 1702 :rtype: str 1703 """ 1704 return self._voided_reason 1705 1706 @voided_reason.setter 1707 def voided_reason(self, voided_reason): 1708 """ 1709 Sets the voided_reason of this EnvelopeTemplateResult. 1710 The reason the envelope or template was voided. 1711 1712 :param voided_reason: The voided_reason of this EnvelopeTemplateResult. 1713 :type: str 1714 """ 1715 1716 self._voided_reason = voided_reason 1717 1718 def to_dict(self): 1719 """ 1720 Returns the model properties as a dict 1721 """ 1722 result = {} 1723 1724 for attr, _ in iteritems(self.swagger_types): 1725 value = getattr(self, attr) 1726 if isinstance(value, list): 1727 result[attr] = list(map( 1728 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1729 value 1730 )) 1731 elif hasattr(value, "to_dict"): 1732 result[attr] = value.to_dict() 1733 elif isinstance(value, dict): 1734 result[attr] = dict(map( 1735 lambda item: (item[0], item[1].to_dict()) 1736 if hasattr(item[1], "to_dict") else item, 1737 value.items() 1738 )) 1739 else: 1740 result[attr] = value 1741 1742 return result 1743 1744 def to_str(self): 1745 """ 1746 Returns the string representation of the model 1747 """ 1748 return pformat(self.to_dict()) 1749 1750 def __repr__(self): 1751 """ 1752 For `print` and `pprint` 1753 """ 1754 return self.to_str() 1755 1756 def __eq__(self, other): 1757 """ 1758 Returns true if both objects are equal 1759 """ 1760 return self.__dict__ == other.__dict__ 1761 1762 def __ne__(self, other): 1763 """ 1764 Returns true if both objects are not equal 1765 """ 1766 return not self == other
20class EnvelopeTemplateResult(object): 21 """ 22 NOTE: This class is auto generated by the swagger code generator program. 23 Do not edit the class manually. 24 """ 25 def __init__(self, allow_markup=None, allow_reassign=None, allow_view_history=None, asynchronous=None, attachments_uri=None, authoritative_copy=None, authoritative_copy_default=None, auto_navigation=None, brand_id=None, brand_lock=None, certificate_uri=None, completed_date_time=None, created=None, created_date_time=None, custom_fields=None, custom_fields_uri=None, declined_date_time=None, deleted_date_time=None, delivered_date_time=None, description=None, documents=None, documents_combined_uri=None, documents_uri=None, email_blurb=None, email_settings=None, email_subject=None, enable_wet_sign=None, enforce_signer_visibility=None, envelope_id=None, envelope_id_stamping=None, envelope_uri=None, folder_id=None, folder_name=None, folder_uri=None, initial_sent_date_time=None, is21_cfr_part11=None, is_signature_provider_envelope=None, last_modified=None, last_modified_date_time=None, lock_information=None, message_lock=None, name=None, notification=None, notification_uri=None, owner=None, page_count=None, parent_folder_uri=None, password=None, purge_state=None, recipients=None, recipients_lock=None, recipients_uri=None, sent_date_time=None, shared=None, signer_can_sign_on_mobile=None, signing_location=None, status=None, status_changed_date_time=None, template_id=None, templates_uri=None, transaction_id=None, uri=None, use_disclosure=None, voided_date_time=None, voided_reason=None): 26 """ 27 EnvelopeTemplateResult - a model defined in Swagger 28 29 :param dict swaggerTypes: The key is attribute name 30 and the value is attribute type. 31 :param dict attributeMap: The key is attribute name 32 and the value is json key in definition. 33 """ 34 self.swagger_types = { 35 'allow_markup': 'str', 36 'allow_reassign': 'str', 37 'allow_view_history': 'str', 38 'asynchronous': 'str', 39 'attachments_uri': 'str', 40 'authoritative_copy': 'str', 41 'authoritative_copy_default': 'str', 42 'auto_navigation': 'str', 43 'brand_id': 'str', 44 'brand_lock': 'str', 45 'certificate_uri': 'str', 46 'completed_date_time': 'str', 47 'created': 'str', 48 'created_date_time': 'str', 49 'custom_fields': 'CustomFields', 50 'custom_fields_uri': 'str', 51 'declined_date_time': 'str', 52 'deleted_date_time': 'str', 53 'delivered_date_time': 'str', 54 'description': 'str', 55 'documents': 'list[Document]', 56 'documents_combined_uri': 'str', 57 'documents_uri': 'str', 58 'email_blurb': 'str', 59 'email_settings': 'EmailSettings', 60 'email_subject': 'str', 61 'enable_wet_sign': 'str', 62 'enforce_signer_visibility': 'str', 63 'envelope_id': 'str', 64 'envelope_id_stamping': 'str', 65 'envelope_uri': 'str', 66 'folder_id': 'str', 67 'folder_name': 'str', 68 'folder_uri': 'str', 69 'initial_sent_date_time': 'str', 70 'is21_cfr_part11': 'str', 71 'is_signature_provider_envelope': 'str', 72 'last_modified': 'str', 73 'last_modified_date_time': 'str', 74 'lock_information': 'LockInformation', 75 'message_lock': 'str', 76 'name': 'str', 77 'notification': 'Notification', 78 'notification_uri': 'str', 79 'owner': 'UserInfo', 80 'page_count': 'int', 81 'parent_folder_uri': 'str', 82 'password': 'str', 83 'purge_state': 'str', 84 'recipients': 'Recipients', 85 'recipients_lock': 'str', 86 'recipients_uri': 'str', 87 'sent_date_time': 'str', 88 'shared': 'str', 89 'signer_can_sign_on_mobile': 'str', 90 'signing_location': 'str', 91 'status': 'str', 92 'status_changed_date_time': 'str', 93 'template_id': 'str', 94 'templates_uri': 'str', 95 'transaction_id': 'str', 96 'uri': 'str', 97 'use_disclosure': 'str', 98 'voided_date_time': 'str', 99 'voided_reason': 'str' 100 } 101 102 self.attribute_map = { 103 'allow_markup': 'allowMarkup', 104 'allow_reassign': 'allowReassign', 105 'allow_view_history': 'allowViewHistory', 106 'asynchronous': 'asynchronous', 107 'attachments_uri': 'attachmentsUri', 108 'authoritative_copy': 'authoritativeCopy', 109 'authoritative_copy_default': 'authoritativeCopyDefault', 110 'auto_navigation': 'autoNavigation', 111 'brand_id': 'brandId', 112 'brand_lock': 'brandLock', 113 'certificate_uri': 'certificateUri', 114 'completed_date_time': 'completedDateTime', 115 'created': 'created', 116 'created_date_time': 'createdDateTime', 117 'custom_fields': 'customFields', 118 'custom_fields_uri': 'customFieldsUri', 119 'declined_date_time': 'declinedDateTime', 120 'deleted_date_time': 'deletedDateTime', 121 'delivered_date_time': 'deliveredDateTime', 122 'description': 'description', 123 'documents': 'documents', 124 'documents_combined_uri': 'documentsCombinedUri', 125 'documents_uri': 'documentsUri', 126 'email_blurb': 'emailBlurb', 127 'email_settings': 'emailSettings', 128 'email_subject': 'emailSubject', 129 'enable_wet_sign': 'enableWetSign', 130 'enforce_signer_visibility': 'enforceSignerVisibility', 131 'envelope_id': 'envelopeId', 132 'envelope_id_stamping': 'envelopeIdStamping', 133 'envelope_uri': 'envelopeUri', 134 'folder_id': 'folderId', 135 'folder_name': 'folderName', 136 'folder_uri': 'folderUri', 137 'initial_sent_date_time': 'initialSentDateTime', 138 'is21_cfr_part11': 'is21CFRPart11', 139 'is_signature_provider_envelope': 'isSignatureProviderEnvelope', 140 'last_modified': 'lastModified', 141 'last_modified_date_time': 'lastModifiedDateTime', 142 'lock_information': 'lockInformation', 143 'message_lock': 'messageLock', 144 'name': 'name', 145 'notification': 'notification', 146 'notification_uri': 'notificationUri', 147 'owner': 'owner', 148 'page_count': 'pageCount', 149 'parent_folder_uri': 'parentFolderUri', 150 'password': 'password', 151 'purge_state': 'purgeState', 152 'recipients': 'recipients', 153 'recipients_lock': 'recipientsLock', 154 'recipients_uri': 'recipientsUri', 155 'sent_date_time': 'sentDateTime', 156 'shared': 'shared', 157 'signer_can_sign_on_mobile': 'signerCanSignOnMobile', 158 'signing_location': 'signingLocation', 159 'status': 'status', 160 'status_changed_date_time': 'statusChangedDateTime', 161 'template_id': 'templateId', 162 'templates_uri': 'templatesUri', 163 'transaction_id': 'transactionId', 164 'uri': 'uri', 165 'use_disclosure': 'useDisclosure', 166 'voided_date_time': 'voidedDateTime', 167 'voided_reason': 'voidedReason' 168 } 169 170 self._allow_markup = allow_markup 171 self._allow_reassign = allow_reassign 172 self._allow_view_history = allow_view_history 173 self._asynchronous = asynchronous 174 self._attachments_uri = attachments_uri 175 self._authoritative_copy = authoritative_copy 176 self._authoritative_copy_default = authoritative_copy_default 177 self._auto_navigation = auto_navigation 178 self._brand_id = brand_id 179 self._brand_lock = brand_lock 180 self._certificate_uri = certificate_uri 181 self._completed_date_time = completed_date_time 182 self._created = created 183 self._created_date_time = created_date_time 184 self._custom_fields = custom_fields 185 self._custom_fields_uri = custom_fields_uri 186 self._declined_date_time = declined_date_time 187 self._deleted_date_time = deleted_date_time 188 self._delivered_date_time = delivered_date_time 189 self._description = description 190 self._documents = documents 191 self._documents_combined_uri = documents_combined_uri 192 self._documents_uri = documents_uri 193 self._email_blurb = email_blurb 194 self._email_settings = email_settings 195 self._email_subject = email_subject 196 self._enable_wet_sign = enable_wet_sign 197 self._enforce_signer_visibility = enforce_signer_visibility 198 self._envelope_id = envelope_id 199 self._envelope_id_stamping = envelope_id_stamping 200 self._envelope_uri = envelope_uri 201 self._folder_id = folder_id 202 self._folder_name = folder_name 203 self._folder_uri = folder_uri 204 self._initial_sent_date_time = initial_sent_date_time 205 self._is21_cfr_part11 = is21_cfr_part11 206 self._is_signature_provider_envelope = is_signature_provider_envelope 207 self._last_modified = last_modified 208 self._last_modified_date_time = last_modified_date_time 209 self._lock_information = lock_information 210 self._message_lock = message_lock 211 self._name = name 212 self._notification = notification 213 self._notification_uri = notification_uri 214 self._owner = owner 215 self._page_count = page_count 216 self._parent_folder_uri = parent_folder_uri 217 self._password = password 218 self._purge_state = purge_state 219 self._recipients = recipients 220 self._recipients_lock = recipients_lock 221 self._recipients_uri = recipients_uri 222 self._sent_date_time = sent_date_time 223 self._shared = shared 224 self._signer_can_sign_on_mobile = signer_can_sign_on_mobile 225 self._signing_location = signing_location 226 self._status = status 227 self._status_changed_date_time = status_changed_date_time 228 self._template_id = template_id 229 self._templates_uri = templates_uri 230 self._transaction_id = transaction_id 231 self._uri = uri 232 self._use_disclosure = use_disclosure 233 self._voided_date_time = voided_date_time 234 self._voided_reason = voided_reason 235 236 @property 237 def allow_markup(self): 238 """ 239 Gets the allow_markup of this EnvelopeTemplateResult. 240 When set to **true**, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this 241 242 :return: The allow_markup of this EnvelopeTemplateResult. 243 :rtype: str 244 """ 245 return self._allow_markup 246 247 @allow_markup.setter 248 def allow_markup(self, allow_markup): 249 """ 250 Sets the allow_markup of this EnvelopeTemplateResult. 251 When set to **true**, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this 252 253 :param allow_markup: The allow_markup of this EnvelopeTemplateResult. 254 :type: str 255 """ 256 257 self._allow_markup = allow_markup 258 259 @property 260 def allow_reassign(self): 261 """ 262 Gets the allow_reassign of this EnvelopeTemplateResult. 263 When set to **true**, the recipient can redirect an envelope to a more appropriate recipient. 264 265 :return: The allow_reassign of this EnvelopeTemplateResult. 266 :rtype: str 267 """ 268 return self._allow_reassign 269 270 @allow_reassign.setter 271 def allow_reassign(self, allow_reassign): 272 """ 273 Sets the allow_reassign of this EnvelopeTemplateResult. 274 When set to **true**, the recipient can redirect an envelope to a more appropriate recipient. 275 276 :param allow_reassign: The allow_reassign of this EnvelopeTemplateResult. 277 :type: str 278 """ 279 280 self._allow_reassign = allow_reassign 281 282 @property 283 def allow_view_history(self): 284 """ 285 Gets the allow_view_history of this EnvelopeTemplateResult. 286 287 288 :return: The allow_view_history of this EnvelopeTemplateResult. 289 :rtype: str 290 """ 291 return self._allow_view_history 292 293 @allow_view_history.setter 294 def allow_view_history(self, allow_view_history): 295 """ 296 Sets the allow_view_history of this EnvelopeTemplateResult. 297 298 299 :param allow_view_history: The allow_view_history of this EnvelopeTemplateResult. 300 :type: str 301 """ 302 303 self._allow_view_history = allow_view_history 304 305 @property 306 def asynchronous(self): 307 """ 308 Gets the asynchronous of this EnvelopeTemplateResult. 309 When set to **true**, the envelope is queued for processing and the value of the `status` property is set to 'Processing'. Additionally, get status calls return 'Processing' until completed. 310 311 :return: The asynchronous of this EnvelopeTemplateResult. 312 :rtype: str 313 """ 314 return self._asynchronous 315 316 @asynchronous.setter 317 def asynchronous(self, asynchronous): 318 """ 319 Sets the asynchronous of this EnvelopeTemplateResult. 320 When set to **true**, the envelope is queued for processing and the value of the `status` property is set to 'Processing'. Additionally, get status calls return 'Processing' until completed. 321 322 :param asynchronous: The asynchronous of this EnvelopeTemplateResult. 323 :type: str 324 """ 325 326 self._asynchronous = asynchronous 327 328 @property 329 def attachments_uri(self): 330 """ 331 Gets the attachments_uri of this EnvelopeTemplateResult. 332 333 334 :return: The attachments_uri of this EnvelopeTemplateResult. 335 :rtype: str 336 """ 337 return self._attachments_uri 338 339 @attachments_uri.setter 340 def attachments_uri(self, attachments_uri): 341 """ 342 Sets the attachments_uri of this EnvelopeTemplateResult. 343 344 345 :param attachments_uri: The attachments_uri of this EnvelopeTemplateResult. 346 :type: str 347 """ 348 349 self._attachments_uri = attachments_uri 350 351 @property 352 def authoritative_copy(self): 353 """ 354 Gets the authoritative_copy of this EnvelopeTemplateResult. 355 Specifies the Authoritative copy feature. If set to true the Authoritative copy feature is enabled. 356 357 :return: The authoritative_copy of this EnvelopeTemplateResult. 358 :rtype: str 359 """ 360 return self._authoritative_copy 361 362 @authoritative_copy.setter 363 def authoritative_copy(self, authoritative_copy): 364 """ 365 Sets the authoritative_copy of this EnvelopeTemplateResult. 366 Specifies the Authoritative copy feature. If set to true the Authoritative copy feature is enabled. 367 368 :param authoritative_copy: The authoritative_copy of this EnvelopeTemplateResult. 369 :type: str 370 """ 371 372 self._authoritative_copy = authoritative_copy 373 374 @property 375 def authoritative_copy_default(self): 376 """ 377 Gets the authoritative_copy_default of this EnvelopeTemplateResult. 378 379 380 :return: The authoritative_copy_default of this EnvelopeTemplateResult. 381 :rtype: str 382 """ 383 return self._authoritative_copy_default 384 385 @authoritative_copy_default.setter 386 def authoritative_copy_default(self, authoritative_copy_default): 387 """ 388 Sets the authoritative_copy_default of this EnvelopeTemplateResult. 389 390 391 :param authoritative_copy_default: The authoritative_copy_default of this EnvelopeTemplateResult. 392 :type: str 393 """ 394 395 self._authoritative_copy_default = authoritative_copy_default 396 397 @property 398 def auto_navigation(self): 399 """ 400 Gets the auto_navigation of this EnvelopeTemplateResult. 401 402 403 :return: The auto_navigation of this EnvelopeTemplateResult. 404 :rtype: str 405 """ 406 return self._auto_navigation 407 408 @auto_navigation.setter 409 def auto_navigation(self, auto_navigation): 410 """ 411 Sets the auto_navigation of this EnvelopeTemplateResult. 412 413 414 :param auto_navigation: The auto_navigation of this EnvelopeTemplateResult. 415 :type: str 416 """ 417 418 self._auto_navigation = auto_navigation 419 420 @property 421 def brand_id(self): 422 """ 423 Gets the brand_id of this EnvelopeTemplateResult. 424 425 426 :return: The brand_id of this EnvelopeTemplateResult. 427 :rtype: str 428 """ 429 return self._brand_id 430 431 @brand_id.setter 432 def brand_id(self, brand_id): 433 """ 434 Sets the brand_id of this EnvelopeTemplateResult. 435 436 437 :param brand_id: The brand_id of this EnvelopeTemplateResult. 438 :type: str 439 """ 440 441 self._brand_id = brand_id 442 443 @property 444 def brand_lock(self): 445 """ 446 Gets the brand_lock of this EnvelopeTemplateResult. 447 448 449 :return: The brand_lock of this EnvelopeTemplateResult. 450 :rtype: str 451 """ 452 return self._brand_lock 453 454 @brand_lock.setter 455 def brand_lock(self, brand_lock): 456 """ 457 Sets the brand_lock of this EnvelopeTemplateResult. 458 459 460 :param brand_lock: The brand_lock of this EnvelopeTemplateResult. 461 :type: str 462 """ 463 464 self._brand_lock = brand_lock 465 466 @property 467 def certificate_uri(self): 468 """ 469 Gets the certificate_uri of this EnvelopeTemplateResult. 470 Retrieves a URI for an endpoint that allows you to easily retrieve certificate information. 471 472 :return: The certificate_uri of this EnvelopeTemplateResult. 473 :rtype: str 474 """ 475 return self._certificate_uri 476 477 @certificate_uri.setter 478 def certificate_uri(self, certificate_uri): 479 """ 480 Sets the certificate_uri of this EnvelopeTemplateResult. 481 Retrieves a URI for an endpoint that allows you to easily retrieve certificate information. 482 483 :param certificate_uri: The certificate_uri of this EnvelopeTemplateResult. 484 :type: str 485 """ 486 487 self._certificate_uri = certificate_uri 488 489 @property 490 def completed_date_time(self): 491 """ 492 Gets the completed_date_time of this EnvelopeTemplateResult. 493 Specifies the date and time this item was completed. 494 495 :return: The completed_date_time of this EnvelopeTemplateResult. 496 :rtype: str 497 """ 498 return self._completed_date_time 499 500 @completed_date_time.setter 501 def completed_date_time(self, completed_date_time): 502 """ 503 Sets the completed_date_time of this EnvelopeTemplateResult. 504 Specifies the date and time this item was completed. 505 506 :param completed_date_time: The completed_date_time of this EnvelopeTemplateResult. 507 :type: str 508 """ 509 510 self._completed_date_time = completed_date_time 511 512 @property 513 def created(self): 514 """ 515 Gets the created of this EnvelopeTemplateResult. 516 517 518 :return: The created of this EnvelopeTemplateResult. 519 :rtype: str 520 """ 521 return self._created 522 523 @created.setter 524 def created(self, created): 525 """ 526 Sets the created of this EnvelopeTemplateResult. 527 528 529 :param created: The created of this EnvelopeTemplateResult. 530 :type: str 531 """ 532 533 self._created = created 534 535 @property 536 def created_date_time(self): 537 """ 538 Gets the created_date_time of this EnvelopeTemplateResult. 539 Indicates the date and time the item was created. 540 541 :return: The created_date_time of this EnvelopeTemplateResult. 542 :rtype: str 543 """ 544 return self._created_date_time 545 546 @created_date_time.setter 547 def created_date_time(self, created_date_time): 548 """ 549 Sets the created_date_time of this EnvelopeTemplateResult. 550 Indicates the date and time the item was created. 551 552 :param created_date_time: The created_date_time of this EnvelopeTemplateResult. 553 :type: str 554 """ 555 556 self._created_date_time = created_date_time 557 558 @property 559 def custom_fields(self): 560 """ 561 Gets the custom_fields of this EnvelopeTemplateResult. 562 563 :return: The custom_fields of this EnvelopeTemplateResult. 564 :rtype: CustomFields 565 """ 566 return self._custom_fields 567 568 @custom_fields.setter 569 def custom_fields(self, custom_fields): 570 """ 571 Sets the custom_fields of this EnvelopeTemplateResult. 572 573 :param custom_fields: The custom_fields of this EnvelopeTemplateResult. 574 :type: CustomFields 575 """ 576 577 self._custom_fields = custom_fields 578 579 @property 580 def custom_fields_uri(self): 581 """ 582 Gets the custom_fields_uri of this EnvelopeTemplateResult. 583 Contains a URI for an endpoint that you can use to retrieve the custom fields. 584 585 :return: The custom_fields_uri of this EnvelopeTemplateResult. 586 :rtype: str 587 """ 588 return self._custom_fields_uri 589 590 @custom_fields_uri.setter 591 def custom_fields_uri(self, custom_fields_uri): 592 """ 593 Sets the custom_fields_uri of this EnvelopeTemplateResult. 594 Contains a URI for an endpoint that you can use to retrieve the custom fields. 595 596 :param custom_fields_uri: The custom_fields_uri of this EnvelopeTemplateResult. 597 :type: str 598 """ 599 600 self._custom_fields_uri = custom_fields_uri 601 602 @property 603 def declined_date_time(self): 604 """ 605 Gets the declined_date_time of this EnvelopeTemplateResult. 606 The date and time the recipient declined the document. 607 608 :return: The declined_date_time of this EnvelopeTemplateResult. 609 :rtype: str 610 """ 611 return self._declined_date_time 612 613 @declined_date_time.setter 614 def declined_date_time(self, declined_date_time): 615 """ 616 Sets the declined_date_time of this EnvelopeTemplateResult. 617 The date and time the recipient declined the document. 618 619 :param declined_date_time: The declined_date_time of this EnvelopeTemplateResult. 620 :type: str 621 """ 622 623 self._declined_date_time = declined_date_time 624 625 @property 626 def deleted_date_time(self): 627 """ 628 Gets the deleted_date_time of this EnvelopeTemplateResult. 629 Specifies the data and time the item was deleted. 630 631 :return: The deleted_date_time of this EnvelopeTemplateResult. 632 :rtype: str 633 """ 634 return self._deleted_date_time 635 636 @deleted_date_time.setter 637 def deleted_date_time(self, deleted_date_time): 638 """ 639 Sets the deleted_date_time of this EnvelopeTemplateResult. 640 Specifies the data and time the item was deleted. 641 642 :param deleted_date_time: The deleted_date_time of this EnvelopeTemplateResult. 643 :type: str 644 """ 645 646 self._deleted_date_time = deleted_date_time 647 648 @property 649 def delivered_date_time(self): 650 """ 651 Gets the delivered_date_time of this EnvelopeTemplateResult. 652 Reserved: For DocuSign use only. 653 654 :return: The delivered_date_time of this EnvelopeTemplateResult. 655 :rtype: str 656 """ 657 return self._delivered_date_time 658 659 @delivered_date_time.setter 660 def delivered_date_time(self, delivered_date_time): 661 """ 662 Sets the delivered_date_time of this EnvelopeTemplateResult. 663 Reserved: For DocuSign use only. 664 665 :param delivered_date_time: The delivered_date_time of this EnvelopeTemplateResult. 666 :type: str 667 """ 668 669 self._delivered_date_time = delivered_date_time 670 671 @property 672 def description(self): 673 """ 674 Gets the description of this EnvelopeTemplateResult. 675 676 677 :return: The description of this EnvelopeTemplateResult. 678 :rtype: str 679 """ 680 return self._description 681 682 @description.setter 683 def description(self, description): 684 """ 685 Sets the description of this EnvelopeTemplateResult. 686 687 688 :param description: The description of this EnvelopeTemplateResult. 689 :type: str 690 """ 691 692 self._description = description 693 694 @property 695 def documents(self): 696 """ 697 Gets the documents of this EnvelopeTemplateResult. 698 Complex element contains the details on the documents in the envelope. 699 700 :return: The documents of this EnvelopeTemplateResult. 701 :rtype: list[Document] 702 """ 703 return self._documents 704 705 @documents.setter 706 def documents(self, documents): 707 """ 708 Sets the documents of this EnvelopeTemplateResult. 709 Complex element contains the details on the documents in the envelope. 710 711 :param documents: The documents of this EnvelopeTemplateResult. 712 :type: list[Document] 713 """ 714 715 self._documents = documents 716 717 @property 718 def documents_combined_uri(self): 719 """ 720 Gets the documents_combined_uri of this EnvelopeTemplateResult. 721 722 723 :return: The documents_combined_uri of this EnvelopeTemplateResult. 724 :rtype: str 725 """ 726 return self._documents_combined_uri 727 728 @documents_combined_uri.setter 729 def documents_combined_uri(self, documents_combined_uri): 730 """ 731 Sets the documents_combined_uri of this EnvelopeTemplateResult. 732 733 734 :param documents_combined_uri: The documents_combined_uri of this EnvelopeTemplateResult. 735 :type: str 736 """ 737 738 self._documents_combined_uri = documents_combined_uri 739 740 @property 741 def documents_uri(self): 742 """ 743 Gets the documents_uri of this EnvelopeTemplateResult. 744 Contains a URI for an endpoint that you can use to retrieve the documents. 745 746 :return: The documents_uri of this EnvelopeTemplateResult. 747 :rtype: str 748 """ 749 return self._documents_uri 750 751 @documents_uri.setter 752 def documents_uri(self, documents_uri): 753 """ 754 Sets the documents_uri of this EnvelopeTemplateResult. 755 Contains a URI for an endpoint that you can use to retrieve the documents. 756 757 :param documents_uri: The documents_uri of this EnvelopeTemplateResult. 758 :type: str 759 """ 760 761 self._documents_uri = documents_uri 762 763 @property 764 def email_blurb(self): 765 """ 766 Gets the email_blurb of this EnvelopeTemplateResult. 767 768 769 :return: The email_blurb of this EnvelopeTemplateResult. 770 :rtype: str 771 """ 772 return self._email_blurb 773 774 @email_blurb.setter 775 def email_blurb(self, email_blurb): 776 """ 777 Sets the email_blurb of this EnvelopeTemplateResult. 778 779 780 :param email_blurb: The email_blurb of this EnvelopeTemplateResult. 781 :type: str 782 """ 783 784 self._email_blurb = email_blurb 785 786 @property 787 def email_settings(self): 788 """ 789 Gets the email_settings of this EnvelopeTemplateResult. 790 791 :return: The email_settings of this EnvelopeTemplateResult. 792 :rtype: EmailSettings 793 """ 794 return self._email_settings 795 796 @email_settings.setter 797 def email_settings(self, email_settings): 798 """ 799 Sets the email_settings of this EnvelopeTemplateResult. 800 801 :param email_settings: The email_settings of this EnvelopeTemplateResult. 802 :type: EmailSettings 803 """ 804 805 self._email_settings = email_settings 806 807 @property 808 def email_subject(self): 809 """ 810 Gets the email_subject of this EnvelopeTemplateResult. 811 Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject. 812 813 :return: The email_subject of this EnvelopeTemplateResult. 814 :rtype: str 815 """ 816 return self._email_subject 817 818 @email_subject.setter 819 def email_subject(self, email_subject): 820 """ 821 Sets the email_subject of this EnvelopeTemplateResult. 822 Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject. 823 824 :param email_subject: The email_subject of this EnvelopeTemplateResult. 825 :type: str 826 """ 827 828 self._email_subject = email_subject 829 830 @property 831 def enable_wet_sign(self): 832 """ 833 Gets the enable_wet_sign of this EnvelopeTemplateResult. 834 When set to **true**, the signer is allowed to print the document and sign it on paper. 835 836 :return: The enable_wet_sign of this EnvelopeTemplateResult. 837 :rtype: str 838 """ 839 return self._enable_wet_sign 840 841 @enable_wet_sign.setter 842 def enable_wet_sign(self, enable_wet_sign): 843 """ 844 Sets the enable_wet_sign of this EnvelopeTemplateResult. 845 When set to **true**, the signer is allowed to print the document and sign it on paper. 846 847 :param enable_wet_sign: The enable_wet_sign of this EnvelopeTemplateResult. 848 :type: str 849 """ 850 851 self._enable_wet_sign = enable_wet_sign 852 853 @property 854 def enforce_signer_visibility(self): 855 """ 856 Gets the enforce_signer_visibility of this EnvelopeTemplateResult. 857 When set to **true**, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. Your account must have Document Visibility enabled to use this. 858 859 :return: The enforce_signer_visibility of this EnvelopeTemplateResult. 860 :rtype: str 861 """ 862 return self._enforce_signer_visibility 863 864 @enforce_signer_visibility.setter 865 def enforce_signer_visibility(self, enforce_signer_visibility): 866 """ 867 Sets the enforce_signer_visibility of this EnvelopeTemplateResult. 868 When set to **true**, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. Your account must have Document Visibility enabled to use this. 869 870 :param enforce_signer_visibility: The enforce_signer_visibility of this EnvelopeTemplateResult. 871 :type: str 872 """ 873 874 self._enforce_signer_visibility = enforce_signer_visibility 875 876 @property 877 def envelope_id(self): 878 """ 879 Gets the envelope_id of this EnvelopeTemplateResult. 880 The envelope ID of the envelope status that failed to post. 881 882 :return: The envelope_id of this EnvelopeTemplateResult. 883 :rtype: str 884 """ 885 return self._envelope_id 886 887 @envelope_id.setter 888 def envelope_id(self, envelope_id): 889 """ 890 Sets the envelope_id of this EnvelopeTemplateResult. 891 The envelope ID of the envelope status that failed to post. 892 893 :param envelope_id: The envelope_id of this EnvelopeTemplateResult. 894 :type: str 895 """ 896 897 self._envelope_id = envelope_id 898 899 @property 900 def envelope_id_stamping(self): 901 """ 902 Gets the envelope_id_stamping of this EnvelopeTemplateResult. 903 When set to **true**, Envelope ID Stamping is enabled. 904 905 :return: The envelope_id_stamping of this EnvelopeTemplateResult. 906 :rtype: str 907 """ 908 return self._envelope_id_stamping 909 910 @envelope_id_stamping.setter 911 def envelope_id_stamping(self, envelope_id_stamping): 912 """ 913 Sets the envelope_id_stamping of this EnvelopeTemplateResult. 914 When set to **true**, Envelope ID Stamping is enabled. 915 916 :param envelope_id_stamping: The envelope_id_stamping of this EnvelopeTemplateResult. 917 :type: str 918 """ 919 920 self._envelope_id_stamping = envelope_id_stamping 921 922 @property 923 def envelope_uri(self): 924 """ 925 Gets the envelope_uri of this EnvelopeTemplateResult. 926 Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes. 927 928 :return: The envelope_uri of this EnvelopeTemplateResult. 929 :rtype: str 930 """ 931 return self._envelope_uri 932 933 @envelope_uri.setter 934 def envelope_uri(self, envelope_uri): 935 """ 936 Sets the envelope_uri of this EnvelopeTemplateResult. 937 Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes. 938 939 :param envelope_uri: The envelope_uri of this EnvelopeTemplateResult. 940 :type: str 941 """ 942 943 self._envelope_uri = envelope_uri 944 945 @property 946 def folder_id(self): 947 """ 948 Gets the folder_id of this EnvelopeTemplateResult. 949 950 951 :return: The folder_id of this EnvelopeTemplateResult. 952 :rtype: str 953 """ 954 return self._folder_id 955 956 @folder_id.setter 957 def folder_id(self, folder_id): 958 """ 959 Sets the folder_id of this EnvelopeTemplateResult. 960 961 962 :param folder_id: The folder_id of this EnvelopeTemplateResult. 963 :type: str 964 """ 965 966 self._folder_id = folder_id 967 968 @property 969 def folder_name(self): 970 """ 971 Gets the folder_name of this EnvelopeTemplateResult. 972 973 974 :return: The folder_name of this EnvelopeTemplateResult. 975 :rtype: str 976 """ 977 return self._folder_name 978 979 @folder_name.setter 980 def folder_name(self, folder_name): 981 """ 982 Sets the folder_name of this EnvelopeTemplateResult. 983 984 985 :param folder_name: The folder_name of this EnvelopeTemplateResult. 986 :type: str 987 """ 988 989 self._folder_name = folder_name 990 991 @property 992 def folder_uri(self): 993 """ 994 Gets the folder_uri of this EnvelopeTemplateResult. 995 996 997 :return: The folder_uri of this EnvelopeTemplateResult. 998 :rtype: str 999 """ 1000 return self._folder_uri 1001 1002 @folder_uri.setter 1003 def folder_uri(self, folder_uri): 1004 """ 1005 Sets the folder_uri of this EnvelopeTemplateResult. 1006 1007 1008 :param folder_uri: The folder_uri of this EnvelopeTemplateResult. 1009 :type: str 1010 """ 1011 1012 self._folder_uri = folder_uri 1013 1014 @property 1015 def initial_sent_date_time(self): 1016 """ 1017 Gets the initial_sent_date_time of this EnvelopeTemplateResult. 1018 1019 1020 :return: The initial_sent_date_time of this EnvelopeTemplateResult. 1021 :rtype: str 1022 """ 1023 return self._initial_sent_date_time 1024 1025 @initial_sent_date_time.setter 1026 def initial_sent_date_time(self, initial_sent_date_time): 1027 """ 1028 Sets the initial_sent_date_time of this EnvelopeTemplateResult. 1029 1030 1031 :param initial_sent_date_time: The initial_sent_date_time of this EnvelopeTemplateResult. 1032 :type: str 1033 """ 1034 1035 self._initial_sent_date_time = initial_sent_date_time 1036 1037 @property 1038 def is21_cfr_part11(self): 1039 """ 1040 Gets the is21_cfr_part11 of this EnvelopeTemplateResult. 1041 When set to **true**, indicates that this module is enabled on the account. 1042 1043 :return: The is21_cfr_part11 of this EnvelopeTemplateResult. 1044 :rtype: str 1045 """ 1046 return self._is21_cfr_part11 1047 1048 @is21_cfr_part11.setter 1049 def is21_cfr_part11(self, is21_cfr_part11): 1050 """ 1051 Sets the is21_cfr_part11 of this EnvelopeTemplateResult. 1052 When set to **true**, indicates that this module is enabled on the account. 1053 1054 :param is21_cfr_part11: The is21_cfr_part11 of this EnvelopeTemplateResult. 1055 :type: str 1056 """ 1057 1058 self._is21_cfr_part11 = is21_cfr_part11 1059 1060 @property 1061 def is_signature_provider_envelope(self): 1062 """ 1063 Gets the is_signature_provider_envelope of this EnvelopeTemplateResult. 1064 1065 1066 :return: The is_signature_provider_envelope of this EnvelopeTemplateResult. 1067 :rtype: str 1068 """ 1069 return self._is_signature_provider_envelope 1070 1071 @is_signature_provider_envelope.setter 1072 def is_signature_provider_envelope(self, is_signature_provider_envelope): 1073 """ 1074 Sets the is_signature_provider_envelope of this EnvelopeTemplateResult. 1075 1076 1077 :param is_signature_provider_envelope: The is_signature_provider_envelope of this EnvelopeTemplateResult. 1078 :type: str 1079 """ 1080 1081 self._is_signature_provider_envelope = is_signature_provider_envelope 1082 1083 @property 1084 def last_modified(self): 1085 """ 1086 Gets the last_modified of this EnvelopeTemplateResult. 1087 1088 1089 :return: The last_modified of this EnvelopeTemplateResult. 1090 :rtype: str 1091 """ 1092 return self._last_modified 1093 1094 @last_modified.setter 1095 def last_modified(self, last_modified): 1096 """ 1097 Sets the last_modified of this EnvelopeTemplateResult. 1098 1099 1100 :param last_modified: The last_modified of this EnvelopeTemplateResult. 1101 :type: str 1102 """ 1103 1104 self._last_modified = last_modified 1105 1106 @property 1107 def last_modified_date_time(self): 1108 """ 1109 Gets the last_modified_date_time of this EnvelopeTemplateResult. 1110 The date and time the item was last modified. 1111 1112 :return: The last_modified_date_time of this EnvelopeTemplateResult. 1113 :rtype: str 1114 """ 1115 return self._last_modified_date_time 1116 1117 @last_modified_date_time.setter 1118 def last_modified_date_time(self, last_modified_date_time): 1119 """ 1120 Sets the last_modified_date_time of this EnvelopeTemplateResult. 1121 The date and time the item was last modified. 1122 1123 :param last_modified_date_time: The last_modified_date_time of this EnvelopeTemplateResult. 1124 :type: str 1125 """ 1126 1127 self._last_modified_date_time = last_modified_date_time 1128 1129 @property 1130 def lock_information(self): 1131 """ 1132 Gets the lock_information of this EnvelopeTemplateResult. 1133 1134 :return: The lock_information of this EnvelopeTemplateResult. 1135 :rtype: LockInformation 1136 """ 1137 return self._lock_information 1138 1139 @lock_information.setter 1140 def lock_information(self, lock_information): 1141 """ 1142 Sets the lock_information of this EnvelopeTemplateResult. 1143 1144 :param lock_information: The lock_information of this EnvelopeTemplateResult. 1145 :type: LockInformation 1146 """ 1147 1148 self._lock_information = lock_information 1149 1150 @property 1151 def message_lock(self): 1152 """ 1153 Gets the message_lock of this EnvelopeTemplateResult. 1154 When set to **true**, prevents senders from changing the contents of `emailBlurb` and `emailSubject` properties for the envelope. Additionally, this prevents users from making changes to the contents of `emailBlurb` and `emailSubject` properties when correcting envelopes. However, if the `messageLock` node is set to true**** and the `emailSubject` property is empty, senders and correctors are able to add a subject to the envelope. 1155 1156 :return: The message_lock of this EnvelopeTemplateResult. 1157 :rtype: str 1158 """ 1159 return self._message_lock 1160 1161 @message_lock.setter 1162 def message_lock(self, message_lock): 1163 """ 1164 Sets the message_lock of this EnvelopeTemplateResult. 1165 When set to **true**, prevents senders from changing the contents of `emailBlurb` and `emailSubject` properties for the envelope. Additionally, this prevents users from making changes to the contents of `emailBlurb` and `emailSubject` properties when correcting envelopes. However, if the `messageLock` node is set to true**** and the `emailSubject` property is empty, senders and correctors are able to add a subject to the envelope. 1166 1167 :param message_lock: The message_lock of this EnvelopeTemplateResult. 1168 :type: str 1169 """ 1170 1171 self._message_lock = message_lock 1172 1173 @property 1174 def name(self): 1175 """ 1176 Gets the name of this EnvelopeTemplateResult. 1177 1178 1179 :return: The name of this EnvelopeTemplateResult. 1180 :rtype: str 1181 """ 1182 return self._name 1183 1184 @name.setter 1185 def name(self, name): 1186 """ 1187 Sets the name of this EnvelopeTemplateResult. 1188 1189 1190 :param name: The name of this EnvelopeTemplateResult. 1191 :type: str 1192 """ 1193 1194 self._name = name 1195 1196 @property 1197 def notification(self): 1198 """ 1199 Gets the notification of this EnvelopeTemplateResult. 1200 1201 :return: The notification of this EnvelopeTemplateResult. 1202 :rtype: Notification 1203 """ 1204 return self._notification 1205 1206 @notification.setter 1207 def notification(self, notification): 1208 """ 1209 Sets the notification of this EnvelopeTemplateResult. 1210 1211 :param notification: The notification of this EnvelopeTemplateResult. 1212 :type: Notification 1213 """ 1214 1215 self._notification = notification 1216 1217 @property 1218 def notification_uri(self): 1219 """ 1220 Gets the notification_uri of this EnvelopeTemplateResult. 1221 Contains a URI for an endpoint that you can use to retrieve the notifications. 1222 1223 :return: The notification_uri of this EnvelopeTemplateResult. 1224 :rtype: str 1225 """ 1226 return self._notification_uri 1227 1228 @notification_uri.setter 1229 def notification_uri(self, notification_uri): 1230 """ 1231 Sets the notification_uri of this EnvelopeTemplateResult. 1232 Contains a URI for an endpoint that you can use to retrieve the notifications. 1233 1234 :param notification_uri: The notification_uri of this EnvelopeTemplateResult. 1235 :type: str 1236 """ 1237 1238 self._notification_uri = notification_uri 1239 1240 @property 1241 def owner(self): 1242 """ 1243 Gets the owner of this EnvelopeTemplateResult. 1244 1245 :return: The owner of this EnvelopeTemplateResult. 1246 :rtype: UserInfo 1247 """ 1248 return self._owner 1249 1250 @owner.setter 1251 def owner(self, owner): 1252 """ 1253 Sets the owner of this EnvelopeTemplateResult. 1254 1255 :param owner: The owner of this EnvelopeTemplateResult. 1256 :type: UserInfo 1257 """ 1258 1259 self._owner = owner 1260 1261 @property 1262 def page_count(self): 1263 """ 1264 Gets the page_count of this EnvelopeTemplateResult. 1265 1266 1267 :return: The page_count of this EnvelopeTemplateResult. 1268 :rtype: int 1269 """ 1270 return self._page_count 1271 1272 @page_count.setter 1273 def page_count(self, page_count): 1274 """ 1275 Sets the page_count of this EnvelopeTemplateResult. 1276 1277 1278 :param page_count: The page_count of this EnvelopeTemplateResult. 1279 :type: int 1280 """ 1281 1282 self._page_count = page_count 1283 1284 @property 1285 def parent_folder_uri(self): 1286 """ 1287 Gets the parent_folder_uri of this EnvelopeTemplateResult. 1288 1289 1290 :return: The parent_folder_uri of this EnvelopeTemplateResult. 1291 :rtype: str 1292 """ 1293 return self._parent_folder_uri 1294 1295 @parent_folder_uri.setter 1296 def parent_folder_uri(self, parent_folder_uri): 1297 """ 1298 Sets the parent_folder_uri of this EnvelopeTemplateResult. 1299 1300 1301 :param parent_folder_uri: The parent_folder_uri of this EnvelopeTemplateResult. 1302 :type: str 1303 """ 1304 1305 self._parent_folder_uri = parent_folder_uri 1306 1307 @property 1308 def password(self): 1309 """ 1310 Gets the password of this EnvelopeTemplateResult. 1311 1312 1313 :return: The password of this EnvelopeTemplateResult. 1314 :rtype: str 1315 """ 1316 return self._password 1317 1318 @password.setter 1319 def password(self, password): 1320 """ 1321 Sets the password of this EnvelopeTemplateResult. 1322 1323 1324 :param password: The password of this EnvelopeTemplateResult. 1325 :type: str 1326 """ 1327 1328 self._password = password 1329 1330 @property 1331 def purge_state(self): 1332 """ 1333 Gets the purge_state of this EnvelopeTemplateResult. 1334 1335 1336 :return: The purge_state of this EnvelopeTemplateResult. 1337 :rtype: str 1338 """ 1339 return self._purge_state 1340 1341 @purge_state.setter 1342 def purge_state(self, purge_state): 1343 """ 1344 Sets the purge_state of this EnvelopeTemplateResult. 1345 1346 1347 :param purge_state: The purge_state of this EnvelopeTemplateResult. 1348 :type: str 1349 """ 1350 1351 self._purge_state = purge_state 1352 1353 @property 1354 def recipients(self): 1355 """ 1356 Gets the recipients of this EnvelopeTemplateResult. 1357 1358 :return: The recipients of this EnvelopeTemplateResult. 1359 :rtype: Recipients 1360 """ 1361 return self._recipients 1362 1363 @recipients.setter 1364 def recipients(self, recipients): 1365 """ 1366 Sets the recipients of this EnvelopeTemplateResult. 1367 1368 :param recipients: The recipients of this EnvelopeTemplateResult. 1369 :type: Recipients 1370 """ 1371 1372 self._recipients = recipients 1373 1374 @property 1375 def recipients_lock(self): 1376 """ 1377 Gets the recipients_lock of this EnvelopeTemplateResult. 1378 When set to **true**, prevents senders from changing, correcting, or deleting the recipient information for the envelope. 1379 1380 :return: The recipients_lock of this EnvelopeTemplateResult. 1381 :rtype: str 1382 """ 1383 return self._recipients_lock 1384 1385 @recipients_lock.setter 1386 def recipients_lock(self, recipients_lock): 1387 """ 1388 Sets the recipients_lock of this EnvelopeTemplateResult. 1389 When set to **true**, prevents senders from changing, correcting, or deleting the recipient information for the envelope. 1390 1391 :param recipients_lock: The recipients_lock of this EnvelopeTemplateResult. 1392 :type: str 1393 """ 1394 1395 self._recipients_lock = recipients_lock 1396 1397 @property 1398 def recipients_uri(self): 1399 """ 1400 Gets the recipients_uri of this EnvelopeTemplateResult. 1401 Contains a URI for an endpoint that you can use to retrieve the recipients. 1402 1403 :return: The recipients_uri of this EnvelopeTemplateResult. 1404 :rtype: str 1405 """ 1406 return self._recipients_uri 1407 1408 @recipients_uri.setter 1409 def recipients_uri(self, recipients_uri): 1410 """ 1411 Sets the recipients_uri of this EnvelopeTemplateResult. 1412 Contains a URI for an endpoint that you can use to retrieve the recipients. 1413 1414 :param recipients_uri: The recipients_uri of this EnvelopeTemplateResult. 1415 :type: str 1416 """ 1417 1418 self._recipients_uri = recipients_uri 1419 1420 @property 1421 def sent_date_time(self): 1422 """ 1423 Gets the sent_date_time of this EnvelopeTemplateResult. 1424 The date and time the envelope was sent. 1425 1426 :return: The sent_date_time of this EnvelopeTemplateResult. 1427 :rtype: str 1428 """ 1429 return self._sent_date_time 1430 1431 @sent_date_time.setter 1432 def sent_date_time(self, sent_date_time): 1433 """ 1434 Sets the sent_date_time of this EnvelopeTemplateResult. 1435 The date and time the envelope was sent. 1436 1437 :param sent_date_time: The sent_date_time of this EnvelopeTemplateResult. 1438 :type: str 1439 """ 1440 1441 self._sent_date_time = sent_date_time 1442 1443 @property 1444 def shared(self): 1445 """ 1446 Gets the shared of this EnvelopeTemplateResult. 1447 When set to **true**, this custom tab is shared. 1448 1449 :return: The shared of this EnvelopeTemplateResult. 1450 :rtype: str 1451 """ 1452 return self._shared 1453 1454 @shared.setter 1455 def shared(self, shared): 1456 """ 1457 Sets the shared of this EnvelopeTemplateResult. 1458 When set to **true**, this custom tab is shared. 1459 1460 :param shared: The shared of this EnvelopeTemplateResult. 1461 :type: str 1462 """ 1463 1464 self._shared = shared 1465 1466 @property 1467 def signer_can_sign_on_mobile(self): 1468 """ 1469 Gets the signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1470 1471 1472 :return: The signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1473 :rtype: str 1474 """ 1475 return self._signer_can_sign_on_mobile 1476 1477 @signer_can_sign_on_mobile.setter 1478 def signer_can_sign_on_mobile(self, signer_can_sign_on_mobile): 1479 """ 1480 Sets the signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1481 1482 1483 :param signer_can_sign_on_mobile: The signer_can_sign_on_mobile of this EnvelopeTemplateResult. 1484 :type: str 1485 """ 1486 1487 self._signer_can_sign_on_mobile = signer_can_sign_on_mobile 1488 1489 @property 1490 def signing_location(self): 1491 """ 1492 Gets the signing_location of this EnvelopeTemplateResult. 1493 Specifies the physical location where the signing takes place. It can have two enumeration values; InPerson and Online. The default value is Online. 1494 1495 :return: The signing_location of this EnvelopeTemplateResult. 1496 :rtype: str 1497 """ 1498 return self._signing_location 1499 1500 @signing_location.setter 1501 def signing_location(self, signing_location): 1502 """ 1503 Sets the signing_location of this EnvelopeTemplateResult. 1504 Specifies the physical location where the signing takes place. It can have two enumeration values; InPerson and Online. The default value is Online. 1505 1506 :param signing_location: The signing_location of this EnvelopeTemplateResult. 1507 :type: str 1508 """ 1509 1510 self._signing_location = signing_location 1511 1512 @property 1513 def status(self): 1514 """ 1515 Gets the status of this EnvelopeTemplateResult. 1516 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. 1517 1518 :return: The status of this EnvelopeTemplateResult. 1519 :rtype: str 1520 """ 1521 return self._status 1522 1523 @status.setter 1524 def status(self, status): 1525 """ 1526 Sets the status of this EnvelopeTemplateResult. 1527 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. 1528 1529 :param status: The status of this EnvelopeTemplateResult. 1530 :type: str 1531 """ 1532 1533 self._status = status 1534 1535 @property 1536 def status_changed_date_time(self): 1537 """ 1538 Gets the status_changed_date_time of this EnvelopeTemplateResult. 1539 The data and time the status changed. 1540 1541 :return: The status_changed_date_time of this EnvelopeTemplateResult. 1542 :rtype: str 1543 """ 1544 return self._status_changed_date_time 1545 1546 @status_changed_date_time.setter 1547 def status_changed_date_time(self, status_changed_date_time): 1548 """ 1549 Sets the status_changed_date_time of this EnvelopeTemplateResult. 1550 The data and time the status changed. 1551 1552 :param status_changed_date_time: The status_changed_date_time of this EnvelopeTemplateResult. 1553 :type: str 1554 """ 1555 1556 self._status_changed_date_time = status_changed_date_time 1557 1558 @property 1559 def template_id(self): 1560 """ 1561 Gets the template_id of this EnvelopeTemplateResult. 1562 The unique identifier of the template. If this is not provided, DocuSign will generate a value. 1563 1564 :return: The template_id of this EnvelopeTemplateResult. 1565 :rtype: str 1566 """ 1567 return self._template_id 1568 1569 @template_id.setter 1570 def template_id(self, template_id): 1571 """ 1572 Sets the template_id of this EnvelopeTemplateResult. 1573 The unique identifier of the template. If this is not provided, DocuSign will generate a value. 1574 1575 :param template_id: The template_id of this EnvelopeTemplateResult. 1576 :type: str 1577 """ 1578 1579 self._template_id = template_id 1580 1581 @property 1582 def templates_uri(self): 1583 """ 1584 Gets the templates_uri of this EnvelopeTemplateResult. 1585 Contains a URI for an endpoint which you can use to retrieve the templates. 1586 1587 :return: The templates_uri of this EnvelopeTemplateResult. 1588 :rtype: str 1589 """ 1590 return self._templates_uri 1591 1592 @templates_uri.setter 1593 def templates_uri(self, templates_uri): 1594 """ 1595 Sets the templates_uri of this EnvelopeTemplateResult. 1596 Contains a URI for an endpoint which you can use to retrieve the templates. 1597 1598 :param templates_uri: The templates_uri of this EnvelopeTemplateResult. 1599 :type: str 1600 """ 1601 1602 self._templates_uri = templates_uri 1603 1604 @property 1605 def transaction_id(self): 1606 """ 1607 Gets the transaction_id of this EnvelopeTemplateResult. 1608 Used to identify an envelope. The id is a sender-generated value and is valid in the DocuSign system for 7 days. It is recommended that a transaction ID is used for offline signing to ensure that an envelope is not sent multiple times. The `transactionId` property can be used determine an envelope's status (i.e. was it created or not) in cases where the internet connection was lost before the envelope status was returned. 1609 1610 :return: The transaction_id of this EnvelopeTemplateResult. 1611 :rtype: str 1612 """ 1613 return self._transaction_id 1614 1615 @transaction_id.setter 1616 def transaction_id(self, transaction_id): 1617 """ 1618 Sets the transaction_id of this EnvelopeTemplateResult. 1619 Used to identify an envelope. The id is a sender-generated value and is valid in the DocuSign system for 7 days. It is recommended that a transaction ID is used for offline signing to ensure that an envelope is not sent multiple times. The `transactionId` property can be used determine an envelope's status (i.e. was it created or not) in cases where the internet connection was lost before the envelope status was returned. 1620 1621 :param transaction_id: The transaction_id of this EnvelopeTemplateResult. 1622 :type: str 1623 """ 1624 1625 self._transaction_id = transaction_id 1626 1627 @property 1628 def uri(self): 1629 """ 1630 Gets the uri of this EnvelopeTemplateResult. 1631 1632 1633 :return: The uri of this EnvelopeTemplateResult. 1634 :rtype: str 1635 """ 1636 return self._uri 1637 1638 @uri.setter 1639 def uri(self, uri): 1640 """ 1641 Sets the uri of this EnvelopeTemplateResult. 1642 1643 1644 :param uri: The uri of this EnvelopeTemplateResult. 1645 :type: str 1646 """ 1647 1648 self._uri = uri 1649 1650 @property 1651 def use_disclosure(self): 1652 """ 1653 Gets the use_disclosure of this EnvelopeTemplateResult. 1654 When set to **true**, the disclosure is shown to recipients in accordance with the account's Electronic Record and Signature Disclosure frequency setting. When set to **false**, the Electronic Record and Signature Disclosure is not shown to any envelope recipients. If the `useDisclosure` property is not set, then the account's normal disclosure setting is used and the value of the `useDisclosure` property is not returned in responses when getting envelope information. 1655 1656 :return: The use_disclosure of this EnvelopeTemplateResult. 1657 :rtype: str 1658 """ 1659 return self._use_disclosure 1660 1661 @use_disclosure.setter 1662 def use_disclosure(self, use_disclosure): 1663 """ 1664 Sets the use_disclosure of this EnvelopeTemplateResult. 1665 When set to **true**, the disclosure is shown to recipients in accordance with the account's Electronic Record and Signature Disclosure frequency setting. When set to **false**, the Electronic Record and Signature Disclosure is not shown to any envelope recipients. If the `useDisclosure` property is not set, then the account's normal disclosure setting is used and the value of the `useDisclosure` property is not returned in responses when getting envelope information. 1666 1667 :param use_disclosure: The use_disclosure of this EnvelopeTemplateResult. 1668 :type: str 1669 """ 1670 1671 self._use_disclosure = use_disclosure 1672 1673 @property 1674 def voided_date_time(self): 1675 """ 1676 Gets the voided_date_time of this EnvelopeTemplateResult. 1677 The date and time the envelope or template was voided. 1678 1679 :return: The voided_date_time of this EnvelopeTemplateResult. 1680 :rtype: str 1681 """ 1682 return self._voided_date_time 1683 1684 @voided_date_time.setter 1685 def voided_date_time(self, voided_date_time): 1686 """ 1687 Sets the voided_date_time of this EnvelopeTemplateResult. 1688 The date and time the envelope or template was voided. 1689 1690 :param voided_date_time: The voided_date_time of this EnvelopeTemplateResult. 1691 :type: str 1692 """ 1693 1694 self._voided_date_time = voided_date_time 1695 1696 @property 1697 def voided_reason(self): 1698 """ 1699 Gets the voided_reason of this EnvelopeTemplateResult. 1700 The reason the envelope or template was voided. 1701 1702 :return: The voided_reason of this EnvelopeTemplateResult. 1703 :rtype: str 1704 """ 1705 return self._voided_reason 1706 1707 @voided_reason.setter 1708 def voided_reason(self, voided_reason): 1709 """ 1710 Sets the voided_reason of this EnvelopeTemplateResult. 1711 The reason the envelope or template was voided. 1712 1713 :param voided_reason: The voided_reason of this EnvelopeTemplateResult. 1714 :type: str 1715 """ 1716 1717 self._voided_reason = voided_reason 1718 1719 def to_dict(self): 1720 """ 1721 Returns the model properties as a dict 1722 """ 1723 result = {} 1724 1725 for attr, _ in iteritems(self.swagger_types): 1726 value = getattr(self, attr) 1727 if isinstance(value, list): 1728 result[attr] = list(map( 1729 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1730 value 1731 )) 1732 elif hasattr(value, "to_dict"): 1733 result[attr] = value.to_dict() 1734 elif isinstance(value, dict): 1735 result[attr] = dict(map( 1736 lambda item: (item[0], item[1].to_dict()) 1737 if hasattr(item[1], "to_dict") else item, 1738 value.items() 1739 )) 1740 else: 1741 result[attr] = value 1742 1743 return result 1744 1745 def to_str(self): 1746 """ 1747 Returns the string representation of the model 1748 """ 1749 return pformat(self.to_dict()) 1750 1751 def __repr__(self): 1752 """ 1753 For `print` and `pprint` 1754 """ 1755 return self.to_str() 1756 1757 def __eq__(self, other): 1758 """ 1759 Returns true if both objects are equal 1760 """ 1761 return self.__dict__ == other.__dict__ 1762 1763 def __ne__(self, other): 1764 """ 1765 Returns true if both objects are not equal 1766 """ 1767 return not self == other
NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.
25 def __init__(self, allow_markup=None, allow_reassign=None, allow_view_history=None, asynchronous=None, attachments_uri=None, authoritative_copy=None, authoritative_copy_default=None, auto_navigation=None, brand_id=None, brand_lock=None, certificate_uri=None, completed_date_time=None, created=None, created_date_time=None, custom_fields=None, custom_fields_uri=None, declined_date_time=None, deleted_date_time=None, delivered_date_time=None, description=None, documents=None, documents_combined_uri=None, documents_uri=None, email_blurb=None, email_settings=None, email_subject=None, enable_wet_sign=None, enforce_signer_visibility=None, envelope_id=None, envelope_id_stamping=None, envelope_uri=None, folder_id=None, folder_name=None, folder_uri=None, initial_sent_date_time=None, is21_cfr_part11=None, is_signature_provider_envelope=None, last_modified=None, last_modified_date_time=None, lock_information=None, message_lock=None, name=None, notification=None, notification_uri=None, owner=None, page_count=None, parent_folder_uri=None, password=None, purge_state=None, recipients=None, recipients_lock=None, recipients_uri=None, sent_date_time=None, shared=None, signer_can_sign_on_mobile=None, signing_location=None, status=None, status_changed_date_time=None, template_id=None, templates_uri=None, transaction_id=None, uri=None, use_disclosure=None, voided_date_time=None, voided_reason=None): 26 """ 27 EnvelopeTemplateResult - a model defined in Swagger 28 29 :param dict swaggerTypes: The key is attribute name 30 and the value is attribute type. 31 :param dict attributeMap: The key is attribute name 32 and the value is json key in definition. 33 """ 34 self.swagger_types = { 35 'allow_markup': 'str', 36 'allow_reassign': 'str', 37 'allow_view_history': 'str', 38 'asynchronous': 'str', 39 'attachments_uri': 'str', 40 'authoritative_copy': 'str', 41 'authoritative_copy_default': 'str', 42 'auto_navigation': 'str', 43 'brand_id': 'str', 44 'brand_lock': 'str', 45 'certificate_uri': 'str', 46 'completed_date_time': 'str', 47 'created': 'str', 48 'created_date_time': 'str', 49 'custom_fields': 'CustomFields', 50 'custom_fields_uri': 'str', 51 'declined_date_time': 'str', 52 'deleted_date_time': 'str', 53 'delivered_date_time': 'str', 54 'description': 'str', 55 'documents': 'list[Document]', 56 'documents_combined_uri': 'str', 57 'documents_uri': 'str', 58 'email_blurb': 'str', 59 'email_settings': 'EmailSettings', 60 'email_subject': 'str', 61 'enable_wet_sign': 'str', 62 'enforce_signer_visibility': 'str', 63 'envelope_id': 'str', 64 'envelope_id_stamping': 'str', 65 'envelope_uri': 'str', 66 'folder_id': 'str', 67 'folder_name': 'str', 68 'folder_uri': 'str', 69 'initial_sent_date_time': 'str', 70 'is21_cfr_part11': 'str', 71 'is_signature_provider_envelope': 'str', 72 'last_modified': 'str', 73 'last_modified_date_time': 'str', 74 'lock_information': 'LockInformation', 75 'message_lock': 'str', 76 'name': 'str', 77 'notification': 'Notification', 78 'notification_uri': 'str', 79 'owner': 'UserInfo', 80 'page_count': 'int', 81 'parent_folder_uri': 'str', 82 'password': 'str', 83 'purge_state': 'str', 84 'recipients': 'Recipients', 85 'recipients_lock': 'str', 86 'recipients_uri': 'str', 87 'sent_date_time': 'str', 88 'shared': 'str', 89 'signer_can_sign_on_mobile': 'str', 90 'signing_location': 'str', 91 'status': 'str', 92 'status_changed_date_time': 'str', 93 'template_id': 'str', 94 'templates_uri': 'str', 95 'transaction_id': 'str', 96 'uri': 'str', 97 'use_disclosure': 'str', 98 'voided_date_time': 'str', 99 'voided_reason': 'str' 100 } 101 102 self.attribute_map = { 103 'allow_markup': 'allowMarkup', 104 'allow_reassign': 'allowReassign', 105 'allow_view_history': 'allowViewHistory', 106 'asynchronous': 'asynchronous', 107 'attachments_uri': 'attachmentsUri', 108 'authoritative_copy': 'authoritativeCopy', 109 'authoritative_copy_default': 'authoritativeCopyDefault', 110 'auto_navigation': 'autoNavigation', 111 'brand_id': 'brandId', 112 'brand_lock': 'brandLock', 113 'certificate_uri': 'certificateUri', 114 'completed_date_time': 'completedDateTime', 115 'created': 'created', 116 'created_date_time': 'createdDateTime', 117 'custom_fields': 'customFields', 118 'custom_fields_uri': 'customFieldsUri', 119 'declined_date_time': 'declinedDateTime', 120 'deleted_date_time': 'deletedDateTime', 121 'delivered_date_time': 'deliveredDateTime', 122 'description': 'description', 123 'documents': 'documents', 124 'documents_combined_uri': 'documentsCombinedUri', 125 'documents_uri': 'documentsUri', 126 'email_blurb': 'emailBlurb', 127 'email_settings': 'emailSettings', 128 'email_subject': 'emailSubject', 129 'enable_wet_sign': 'enableWetSign', 130 'enforce_signer_visibility': 'enforceSignerVisibility', 131 'envelope_id': 'envelopeId', 132 'envelope_id_stamping': 'envelopeIdStamping', 133 'envelope_uri': 'envelopeUri', 134 'folder_id': 'folderId', 135 'folder_name': 'folderName', 136 'folder_uri': 'folderUri', 137 'initial_sent_date_time': 'initialSentDateTime', 138 'is21_cfr_part11': 'is21CFRPart11', 139 'is_signature_provider_envelope': 'isSignatureProviderEnvelope', 140 'last_modified': 'lastModified', 141 'last_modified_date_time': 'lastModifiedDateTime', 142 'lock_information': 'lockInformation', 143 'message_lock': 'messageLock', 144 'name': 'name', 145 'notification': 'notification', 146 'notification_uri': 'notificationUri', 147 'owner': 'owner', 148 'page_count': 'pageCount', 149 'parent_folder_uri': 'parentFolderUri', 150 'password': 'password', 151 'purge_state': 'purgeState', 152 'recipients': 'recipients', 153 'recipients_lock': 'recipientsLock', 154 'recipients_uri': 'recipientsUri', 155 'sent_date_time': 'sentDateTime', 156 'shared': 'shared', 157 'signer_can_sign_on_mobile': 'signerCanSignOnMobile', 158 'signing_location': 'signingLocation', 159 'status': 'status', 160 'status_changed_date_time': 'statusChangedDateTime', 161 'template_id': 'templateId', 162 'templates_uri': 'templatesUri', 163 'transaction_id': 'transactionId', 164 'uri': 'uri', 165 'use_disclosure': 'useDisclosure', 166 'voided_date_time': 'voidedDateTime', 167 'voided_reason': 'voidedReason' 168 } 169 170 self._allow_markup = allow_markup 171 self._allow_reassign = allow_reassign 172 self._allow_view_history = allow_view_history 173 self._asynchronous = asynchronous 174 self._attachments_uri = attachments_uri 175 self._authoritative_copy = authoritative_copy 176 self._authoritative_copy_default = authoritative_copy_default 177 self._auto_navigation = auto_navigation 178 self._brand_id = brand_id 179 self._brand_lock = brand_lock 180 self._certificate_uri = certificate_uri 181 self._completed_date_time = completed_date_time 182 self._created = created 183 self._created_date_time = created_date_time 184 self._custom_fields = custom_fields 185 self._custom_fields_uri = custom_fields_uri 186 self._declined_date_time = declined_date_time 187 self._deleted_date_time = deleted_date_time 188 self._delivered_date_time = delivered_date_time 189 self._description = description 190 self._documents = documents 191 self._documents_combined_uri = documents_combined_uri 192 self._documents_uri = documents_uri 193 self._email_blurb = email_blurb 194 self._email_settings = email_settings 195 self._email_subject = email_subject 196 self._enable_wet_sign = enable_wet_sign 197 self._enforce_signer_visibility = enforce_signer_visibility 198 self._envelope_id = envelope_id 199 self._envelope_id_stamping = envelope_id_stamping 200 self._envelope_uri = envelope_uri 201 self._folder_id = folder_id 202 self._folder_name = folder_name 203 self._folder_uri = folder_uri 204 self._initial_sent_date_time = initial_sent_date_time 205 self._is21_cfr_part11 = is21_cfr_part11 206 self._is_signature_provider_envelope = is_signature_provider_envelope 207 self._last_modified = last_modified 208 self._last_modified_date_time = last_modified_date_time 209 self._lock_information = lock_information 210 self._message_lock = message_lock 211 self._name = name 212 self._notification = notification 213 self._notification_uri = notification_uri 214 self._owner = owner 215 self._page_count = page_count 216 self._parent_folder_uri = parent_folder_uri 217 self._password = password 218 self._purge_state = purge_state 219 self._recipients = recipients 220 self._recipients_lock = recipients_lock 221 self._recipients_uri = recipients_uri 222 self._sent_date_time = sent_date_time 223 self._shared = shared 224 self._signer_can_sign_on_mobile = signer_can_sign_on_mobile 225 self._signing_location = signing_location 226 self._status = status 227 self._status_changed_date_time = status_changed_date_time 228 self._template_id = template_id 229 self._templates_uri = templates_uri 230 self._transaction_id = transaction_id 231 self._uri = uri 232 self._use_disclosure = use_disclosure 233 self._voided_date_time = voided_date_time 234 self._voided_reason = voided_reason
EnvelopeTemplateResult - a model defined in Swagger
Parameters
- dict swaggerTypes: The key is attribute name and the value is attribute type.
- dict attributeMap: The key is attribute name and the value is json key in definition.
Gets the allow_markup of this EnvelopeTemplateResult. When set to true, Document Markup is enabled for envelope. Account must have Document Markup enabled to use this
Returns
The allow_markup of this EnvelopeTemplateResult.
Gets the allow_reassign of this EnvelopeTemplateResult. When set to true, the recipient can redirect an envelope to a more appropriate recipient.
Returns
The allow_reassign of this EnvelopeTemplateResult.
Gets the allow_view_history of this EnvelopeTemplateResult.
Returns
The allow_view_history of this EnvelopeTemplateResult.
Gets the asynchronous of this EnvelopeTemplateResult.
When set to true, the envelope is queued for processing and the value of the status
property is set to 'Processing'. Additionally, get status calls return 'Processing' until completed.
Returns
The asynchronous of this EnvelopeTemplateResult.
Gets the attachments_uri of this EnvelopeTemplateResult.
Returns
The attachments_uri of this EnvelopeTemplateResult.
Gets the brand_id of this EnvelopeTemplateResult.
Returns
The brand_id of this EnvelopeTemplateResult.
Gets the brand_lock of this EnvelopeTemplateResult.
Returns
The brand_lock of this EnvelopeTemplateResult.
Gets the certificate_uri of this EnvelopeTemplateResult. Retrieves a URI for an endpoint that allows you to easily retrieve certificate information.
Returns
The certificate_uri of this EnvelopeTemplateResult.
Gets the completed_date_time of this EnvelopeTemplateResult. Specifies the date and time this item was completed.
Returns
The completed_date_time of this EnvelopeTemplateResult.
Gets the created of this EnvelopeTemplateResult.
Returns
The created of this EnvelopeTemplateResult.
Gets the created_date_time of this EnvelopeTemplateResult. Indicates the date and time the item was created.
Returns
The created_date_time of this EnvelopeTemplateResult.
Gets the custom_fields of this EnvelopeTemplateResult.
Returns
The custom_fields of this EnvelopeTemplateResult.
Gets the custom_fields_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint that you can use to retrieve the custom fields.
Returns
The custom_fields_uri of this EnvelopeTemplateResult.
Gets the declined_date_time of this EnvelopeTemplateResult. The date and time the recipient declined the document.
Returns
The declined_date_time of this EnvelopeTemplateResult.
Gets the deleted_date_time of this EnvelopeTemplateResult. Specifies the data and time the item was deleted.
Returns
The deleted_date_time of this EnvelopeTemplateResult.
Gets the delivered_date_time of this EnvelopeTemplateResult. Reserved: For DocuSign use only.
Returns
The delivered_date_time of this EnvelopeTemplateResult.
Gets the description of this EnvelopeTemplateResult.
Returns
The description of this EnvelopeTemplateResult.
Gets the documents of this EnvelopeTemplateResult. Complex element contains the details on the documents in the envelope.
Returns
The documents of this EnvelopeTemplateResult.
Gets the documents_combined_uri of this EnvelopeTemplateResult.
Returns
The documents_combined_uri of this EnvelopeTemplateResult.
Gets the documents_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint that you can use to retrieve the documents.
Returns
The documents_uri of this EnvelopeTemplateResult.
Gets the email_blurb of this EnvelopeTemplateResult.
Returns
The email_blurb of this EnvelopeTemplateResult.
Gets the email_settings of this EnvelopeTemplateResult.
Returns
The email_settings of this EnvelopeTemplateResult.
Gets the email_subject of this EnvelopeTemplateResult. Specifies the subject of the email that is sent to all recipients. See [ML:Template Email Subject Merge Fields] for information about adding merge field information to the email subject.
Returns
The email_subject of this EnvelopeTemplateResult.
Gets the enable_wet_sign of this EnvelopeTemplateResult. When set to true, the signer is allowed to print the document and sign it on paper.
Returns
The enable_wet_sign of this EnvelopeTemplateResult.
Gets the enforce_signer_visibility of this EnvelopeTemplateResult. When set to true, documents with tabs can only be viewed by signers that have a tab on that document. Recipients that have an administrative role (Agent, Editor, or Intermediaries) or informational role (Certified Deliveries or Carbon Copies) can always see all the documents in an envelope, unless they are specifically excluded using this setting when an envelope is sent. Documents that do not have tabs are always visible to all recipients, unless they are specifically excluded using this setting when an envelope is sent. Your account must have Document Visibility enabled to use this.
Returns
The enforce_signer_visibility of this EnvelopeTemplateResult.
Gets the envelope_id of this EnvelopeTemplateResult. The envelope ID of the envelope status that failed to post.
Returns
The envelope_id of this EnvelopeTemplateResult.
Gets the envelope_id_stamping of this EnvelopeTemplateResult. When set to true, Envelope ID Stamping is enabled.
Returns
The envelope_id_stamping of this EnvelopeTemplateResult.
Gets the envelope_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint that you can use to retrieve the envelope or envelopes.
Returns
The envelope_uri of this EnvelopeTemplateResult.
Gets the folder_id of this EnvelopeTemplateResult.
Returns
The folder_id of this EnvelopeTemplateResult.
Gets the folder_name of this EnvelopeTemplateResult.
Returns
The folder_name of this EnvelopeTemplateResult.
Gets the folder_uri of this EnvelopeTemplateResult.
Returns
The folder_uri of this EnvelopeTemplateResult.
Gets the initial_sent_date_time of this EnvelopeTemplateResult.
Returns
The initial_sent_date_time of this EnvelopeTemplateResult.
Gets the is21_cfr_part11 of this EnvelopeTemplateResult. When set to true, indicates that this module is enabled on the account.
Returns
The is21_cfr_part11 of this EnvelopeTemplateResult.
Gets the is_signature_provider_envelope of this EnvelopeTemplateResult.
Returns
The is_signature_provider_envelope of this EnvelopeTemplateResult.
Gets the last_modified of this EnvelopeTemplateResult.
Returns
The last_modified of this EnvelopeTemplateResult.
Gets the last_modified_date_time of this EnvelopeTemplateResult. The date and time the item was last modified.
Returns
The last_modified_date_time of this EnvelopeTemplateResult.
Gets the lock_information of this EnvelopeTemplateResult.
Returns
The lock_information of this EnvelopeTemplateResult.
Gets the message_lock of this EnvelopeTemplateResult.
When set to true, prevents senders from changing the contents of emailBlurb
and emailSubject
properties for the envelope. Additionally, this prevents users from making changes to the contents of emailBlurb
and emailSubject
properties when correcting envelopes. However, if the messageLock
node is set to true** and the emailSubject
property is empty, senders and correctors are able to add a subject to the envelope.
Returns
The message_lock of this EnvelopeTemplateResult.
Gets the notification of this EnvelopeTemplateResult.
Returns
The notification of this EnvelopeTemplateResult.
Gets the notification_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint that you can use to retrieve the notifications.
Returns
The notification_uri of this EnvelopeTemplateResult.
Gets the owner of this EnvelopeTemplateResult.
Returns
The owner of this EnvelopeTemplateResult.
Gets the page_count of this EnvelopeTemplateResult.
Returns
The page_count of this EnvelopeTemplateResult.
Gets the parent_folder_uri of this EnvelopeTemplateResult.
Returns
The parent_folder_uri of this EnvelopeTemplateResult.
Gets the password of this EnvelopeTemplateResult.
Returns
The password of this EnvelopeTemplateResult.
Gets the purge_state of this EnvelopeTemplateResult.
Returns
The purge_state of this EnvelopeTemplateResult.
Gets the recipients of this EnvelopeTemplateResult.
Returns
The recipients of this EnvelopeTemplateResult.
Gets the recipients_lock of this EnvelopeTemplateResult. When set to true, prevents senders from changing, correcting, or deleting the recipient information for the envelope.
Returns
The recipients_lock of this EnvelopeTemplateResult.
Gets the recipients_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint that you can use to retrieve the recipients.
Returns
The recipients_uri of this EnvelopeTemplateResult.
Gets the sent_date_time of this EnvelopeTemplateResult. The date and time the envelope was sent.
Returns
The sent_date_time of this EnvelopeTemplateResult.
Gets the signer_can_sign_on_mobile of this EnvelopeTemplateResult.
Returns
The signer_can_sign_on_mobile of this EnvelopeTemplateResult.
Gets the signing_location of this EnvelopeTemplateResult. Specifies the physical location where the signing takes place. It can have two enumeration values; InPerson and Online. The default value is Online.
Returns
The signing_location of this EnvelopeTemplateResult.
Gets the status of this EnvelopeTemplateResult. 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.
Returns
The status of this EnvelopeTemplateResult.
Gets the status_changed_date_time of this EnvelopeTemplateResult. The data and time the status changed.
Returns
The status_changed_date_time of this EnvelopeTemplateResult.
Gets the template_id of this EnvelopeTemplateResult. The unique identifier of the template. If this is not provided, DocuSign will generate a value.
Returns
The template_id of this EnvelopeTemplateResult.
Gets the templates_uri of this EnvelopeTemplateResult. Contains a URI for an endpoint which you can use to retrieve the templates.
Returns
The templates_uri of this EnvelopeTemplateResult.
Gets the transaction_id of this EnvelopeTemplateResult.
Used to identify an envelope. The id is a sender-generated value and is valid in the DocuSign system for 7 days. It is recommended that a transaction ID is used for offline signing to ensure that an envelope is not sent multiple times. The transactionId
property can be used determine an envelope's status (i.e. was it created or not) in cases where the internet connection was lost before the envelope status was returned.
Returns
The transaction_id of this EnvelopeTemplateResult.
Gets the use_disclosure of this EnvelopeTemplateResult.
When set to true, the disclosure is shown to recipients in accordance with the account's Electronic Record and Signature Disclosure frequency setting. When set to false, the Electronic Record and Signature Disclosure is not shown to any envelope recipients. If the useDisclosure
property is not set, then the account's normal disclosure setting is used and the value of the useDisclosure
property is not returned in responses when getting envelope information.
Returns
The use_disclosure of this EnvelopeTemplateResult.
Gets the voided_date_time of this EnvelopeTemplateResult. The date and time the envelope or template was voided.
Returns
The voided_date_time of this EnvelopeTemplateResult.
Gets the voided_reason of this EnvelopeTemplateResult. The reason the envelope or template was voided.
Returns
The voided_reason of this EnvelopeTemplateResult.
1719 def to_dict(self): 1720 """ 1721 Returns the model properties as a dict 1722 """ 1723 result = {} 1724 1725 for attr, _ in iteritems(self.swagger_types): 1726 value = getattr(self, attr) 1727 if isinstance(value, list): 1728 result[attr] = list(map( 1729 lambda x: x.to_dict() if hasattr(x, "to_dict") else x, 1730 value 1731 )) 1732 elif hasattr(value, "to_dict"): 1733 result[attr] = value.to_dict() 1734 elif isinstance(value, dict): 1735 result[attr] = dict(map( 1736 lambda item: (item[0], item[1].to_dict()) 1737 if hasattr(item[1], "to_dict") else item, 1738 value.items() 1739 )) 1740 else: 1741 result[attr] = value 1742 1743 return result
Returns the model properties as a dict