docusign_esign.models.display_appliance_recipient

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.1 Contact: devcenter@docusign.com Generated by: https://github.com/swagger-api/swagger-codegen.git

  1# coding: utf-8
  2
  3"""
  4    DocuSign REST API
  5
  6    The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
  7
  8    OpenAPI spec version: v2.1
  9    Contact: devcenter@docusign.com
 10    Generated by: https://github.com/swagger-api/swagger-codegen.git
 11"""
 12
 13
 14from pprint import pformat
 15from six import iteritems
 16import re
 17
 18
 19class DisplayApplianceRecipient(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, cfr_part11=None, company=None, custom_field2=None, digital_signature_base64=None, digital_signatures_pending=None, email=None, first_name=None, full_name=None, initials_base64=None, in_person_email=None, is_notary=None, is_notary_transaction=None, job_title=None, last_name=None, notary_seal_base64=None, phone_number=None, recipient_complete_count=None, recipient_guid_id=None, recipient_id=None, recipient_status=None, recipient_type=None, require_signer_certificate=None, row_state=None, signature_base64=None, signature_image_id=None, signed=None, signer_apply_tabs=None, signer_attachment_base64=None, user_id=None, user_name=None):
 25        """
 26        DisplayApplianceRecipient - 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            'cfr_part11': 'bool',
 35            'company': 'str',
 36            'custom_field2': 'str',
 37            'digital_signature_base64': 'str',
 38            'digital_signatures_pending': 'str',
 39            'email': 'str',
 40            'first_name': 'str',
 41            'full_name': 'str',
 42            'initials_base64': 'str',
 43            'in_person_email': 'str',
 44            'is_notary': 'bool',
 45            'is_notary_transaction': 'bool',
 46            'job_title': 'str',
 47            'last_name': 'str',
 48            'notary_seal_base64': 'str',
 49            'phone_number': 'str',
 50            'recipient_complete_count': 'int',
 51            'recipient_guid_id': 'str',
 52            'recipient_id': 'str',
 53            'recipient_status': 'str',
 54            'recipient_type': 'str',
 55            'require_signer_certificate': 'str',
 56            'row_state': 'str',
 57            'signature_base64': 'str',
 58            'signature_image_id': 'str',
 59            'signed': 'bool',
 60            'signer_apply_tabs': 'bool',
 61            'signer_attachment_base64': 'str',
 62            'user_id': 'str',
 63            'user_name': 'str'
 64        }
 65
 66        self.attribute_map = {
 67            'cfr_part11': 'cfrPart11',
 68            'company': 'company',
 69            'custom_field2': 'customField2',
 70            'digital_signature_base64': 'digitalSignatureBase64',
 71            'digital_signatures_pending': 'digitalSignaturesPending',
 72            'email': 'email',
 73            'first_name': 'firstName',
 74            'full_name': 'fullName',
 75            'initials_base64': 'initialsBase64',
 76            'in_person_email': 'inPersonEmail',
 77            'is_notary': 'isNotary',
 78            'is_notary_transaction': 'isNotaryTransaction',
 79            'job_title': 'jobTitle',
 80            'last_name': 'lastName',
 81            'notary_seal_base64': 'notarySealBase64',
 82            'phone_number': 'phoneNumber',
 83            'recipient_complete_count': 'recipientCompleteCount',
 84            'recipient_guid_id': 'recipientGuidId',
 85            'recipient_id': 'recipientId',
 86            'recipient_status': 'recipientStatus',
 87            'recipient_type': 'recipientType',
 88            'require_signer_certificate': 'requireSignerCertificate',
 89            'row_state': 'rowState',
 90            'signature_base64': 'signatureBase64',
 91            'signature_image_id': 'signatureImageId',
 92            'signed': 'signed',
 93            'signer_apply_tabs': 'signerApplyTabs',
 94            'signer_attachment_base64': 'signerAttachmentBase64',
 95            'user_id': 'userId',
 96            'user_name': 'userName'
 97        }
 98
 99        self._cfr_part11 = cfr_part11
100        self._company = company
101        self._custom_field2 = custom_field2
102        self._digital_signature_base64 = digital_signature_base64
103        self._digital_signatures_pending = digital_signatures_pending
104        self._email = email
105        self._first_name = first_name
106        self._full_name = full_name
107        self._initials_base64 = initials_base64
108        self._in_person_email = in_person_email
109        self._is_notary = is_notary
110        self._is_notary_transaction = is_notary_transaction
111        self._job_title = job_title
112        self._last_name = last_name
113        self._notary_seal_base64 = notary_seal_base64
114        self._phone_number = phone_number
115        self._recipient_complete_count = recipient_complete_count
116        self._recipient_guid_id = recipient_guid_id
117        self._recipient_id = recipient_id
118        self._recipient_status = recipient_status
119        self._recipient_type = recipient_type
120        self._require_signer_certificate = require_signer_certificate
121        self._row_state = row_state
122        self._signature_base64 = signature_base64
123        self._signature_image_id = signature_image_id
124        self._signed = signed
125        self._signer_apply_tabs = signer_apply_tabs
126        self._signer_attachment_base64 = signer_attachment_base64
127        self._user_id = user_id
128        self._user_name = user_name
129
130    @property
131    def cfr_part11(self):
132        """
133        Gets the cfr_part11 of this DisplayApplianceRecipient.
134        
135
136        :return: The cfr_part11 of this DisplayApplianceRecipient.
137        :rtype: bool
138        """
139        return self._cfr_part11
140
141    @cfr_part11.setter
142    def cfr_part11(self, cfr_part11):
143        """
144        Sets the cfr_part11 of this DisplayApplianceRecipient.
145        
146
147        :param cfr_part11: The cfr_part11 of this DisplayApplianceRecipient.
148        :type: bool
149        """
150
151        self._cfr_part11 = cfr_part11
152
153    @property
154    def company(self):
155        """
156        Gets the company of this DisplayApplianceRecipient.
157        
158
159        :return: The company of this DisplayApplianceRecipient.
160        :rtype: str
161        """
162        return self._company
163
164    @company.setter
165    def company(self, company):
166        """
167        Sets the company of this DisplayApplianceRecipient.
168        
169
170        :param company: The company of this DisplayApplianceRecipient.
171        :type: str
172        """
173
174        self._company = company
175
176    @property
177    def custom_field2(self):
178        """
179        Gets the custom_field2 of this DisplayApplianceRecipient.
180        
181
182        :return: The custom_field2 of this DisplayApplianceRecipient.
183        :rtype: str
184        """
185        return self._custom_field2
186
187    @custom_field2.setter
188    def custom_field2(self, custom_field2):
189        """
190        Sets the custom_field2 of this DisplayApplianceRecipient.
191        
192
193        :param custom_field2: The custom_field2 of this DisplayApplianceRecipient.
194        :type: str
195        """
196
197        self._custom_field2 = custom_field2
198
199    @property
200    def digital_signature_base64(self):
201        """
202        Gets the digital_signature_base64 of this DisplayApplianceRecipient.
203        
204
205        :return: The digital_signature_base64 of this DisplayApplianceRecipient.
206        :rtype: str
207        """
208        return self._digital_signature_base64
209
210    @digital_signature_base64.setter
211    def digital_signature_base64(self, digital_signature_base64):
212        """
213        Sets the digital_signature_base64 of this DisplayApplianceRecipient.
214        
215
216        :param digital_signature_base64: The digital_signature_base64 of this DisplayApplianceRecipient.
217        :type: str
218        """
219
220        self._digital_signature_base64 = digital_signature_base64
221
222    @property
223    def digital_signatures_pending(self):
224        """
225        Gets the digital_signatures_pending of this DisplayApplianceRecipient.
226        
227
228        :return: The digital_signatures_pending of this DisplayApplianceRecipient.
229        :rtype: str
230        """
231        return self._digital_signatures_pending
232
233    @digital_signatures_pending.setter
234    def digital_signatures_pending(self, digital_signatures_pending):
235        """
236        Sets the digital_signatures_pending of this DisplayApplianceRecipient.
237        
238
239        :param digital_signatures_pending: The digital_signatures_pending of this DisplayApplianceRecipient.
240        :type: str
241        """
242
243        self._digital_signatures_pending = digital_signatures_pending
244
245    @property
246    def email(self):
247        """
248        Gets the email of this DisplayApplianceRecipient.
249        
250
251        :return: The email of this DisplayApplianceRecipient.
252        :rtype: str
253        """
254        return self._email
255
256    @email.setter
257    def email(self, email):
258        """
259        Sets the email of this DisplayApplianceRecipient.
260        
261
262        :param email: The email of this DisplayApplianceRecipient.
263        :type: str
264        """
265
266        self._email = email
267
268    @property
269    def first_name(self):
270        """
271        Gets the first_name of this DisplayApplianceRecipient.
272        The user's first name.  Maximum Length: 50 characters.
273
274        :return: The first_name of this DisplayApplianceRecipient.
275        :rtype: str
276        """
277        return self._first_name
278
279    @first_name.setter
280    def first_name(self, first_name):
281        """
282        Sets the first_name of this DisplayApplianceRecipient.
283        The user's first name.  Maximum Length: 50 characters.
284
285        :param first_name: The first_name of this DisplayApplianceRecipient.
286        :type: str
287        """
288
289        self._first_name = first_name
290
291    @property
292    def full_name(self):
293        """
294        Gets the full_name of this DisplayApplianceRecipient.
295        
296
297        :return: The full_name of this DisplayApplianceRecipient.
298        :rtype: str
299        """
300        return self._full_name
301
302    @full_name.setter
303    def full_name(self, full_name):
304        """
305        Sets the full_name of this DisplayApplianceRecipient.
306        
307
308        :param full_name: The full_name of this DisplayApplianceRecipient.
309        :type: str
310        """
311
312        self._full_name = full_name
313
314    @property
315    def initials_base64(self):
316        """
317        Gets the initials_base64 of this DisplayApplianceRecipient.
318        
319
320        :return: The initials_base64 of this DisplayApplianceRecipient.
321        :rtype: str
322        """
323        return self._initials_base64
324
325    @initials_base64.setter
326    def initials_base64(self, initials_base64):
327        """
328        Sets the initials_base64 of this DisplayApplianceRecipient.
329        
330
331        :param initials_base64: The initials_base64 of this DisplayApplianceRecipient.
332        :type: str
333        """
334
335        self._initials_base64 = initials_base64
336
337    @property
338    def in_person_email(self):
339        """
340        Gets the in_person_email of this DisplayApplianceRecipient.
341        
342
343        :return: The in_person_email of this DisplayApplianceRecipient.
344        :rtype: str
345        """
346        return self._in_person_email
347
348    @in_person_email.setter
349    def in_person_email(self, in_person_email):
350        """
351        Sets the in_person_email of this DisplayApplianceRecipient.
352        
353
354        :param in_person_email: The in_person_email of this DisplayApplianceRecipient.
355        :type: str
356        """
357
358        self._in_person_email = in_person_email
359
360    @property
361    def is_notary(self):
362        """
363        Gets the is_notary of this DisplayApplianceRecipient.
364        
365
366        :return: The is_notary of this DisplayApplianceRecipient.
367        :rtype: bool
368        """
369        return self._is_notary
370
371    @is_notary.setter
372    def is_notary(self, is_notary):
373        """
374        Sets the is_notary of this DisplayApplianceRecipient.
375        
376
377        :param is_notary: The is_notary of this DisplayApplianceRecipient.
378        :type: bool
379        """
380
381        self._is_notary = is_notary
382
383    @property
384    def is_notary_transaction(self):
385        """
386        Gets the is_notary_transaction of this DisplayApplianceRecipient.
387        
388
389        :return: The is_notary_transaction of this DisplayApplianceRecipient.
390        :rtype: bool
391        """
392        return self._is_notary_transaction
393
394    @is_notary_transaction.setter
395    def is_notary_transaction(self, is_notary_transaction):
396        """
397        Sets the is_notary_transaction of this DisplayApplianceRecipient.
398        
399
400        :param is_notary_transaction: The is_notary_transaction of this DisplayApplianceRecipient.
401        :type: bool
402        """
403
404        self._is_notary_transaction = is_notary_transaction
405
406    @property
407    def job_title(self):
408        """
409        Gets the job_title of this DisplayApplianceRecipient.
410        
411
412        :return: The job_title of this DisplayApplianceRecipient.
413        :rtype: str
414        """
415        return self._job_title
416
417    @job_title.setter
418    def job_title(self, job_title):
419        """
420        Sets the job_title of this DisplayApplianceRecipient.
421        
422
423        :param job_title: The job_title of this DisplayApplianceRecipient.
424        :type: str
425        """
426
427        self._job_title = job_title
428
429    @property
430    def last_name(self):
431        """
432        Gets the last_name of this DisplayApplianceRecipient.
433        
434
435        :return: The last_name of this DisplayApplianceRecipient.
436        :rtype: str
437        """
438        return self._last_name
439
440    @last_name.setter
441    def last_name(self, last_name):
442        """
443        Sets the last_name of this DisplayApplianceRecipient.
444        
445
446        :param last_name: The last_name of this DisplayApplianceRecipient.
447        :type: str
448        """
449
450        self._last_name = last_name
451
452    @property
453    def notary_seal_base64(self):
454        """
455        Gets the notary_seal_base64 of this DisplayApplianceRecipient.
456        
457
458        :return: The notary_seal_base64 of this DisplayApplianceRecipient.
459        :rtype: str
460        """
461        return self._notary_seal_base64
462
463    @notary_seal_base64.setter
464    def notary_seal_base64(self, notary_seal_base64):
465        """
466        Sets the notary_seal_base64 of this DisplayApplianceRecipient.
467        
468
469        :param notary_seal_base64: The notary_seal_base64 of this DisplayApplianceRecipient.
470        :type: str
471        """
472
473        self._notary_seal_base64 = notary_seal_base64
474
475    @property
476    def phone_number(self):
477        """
478        Gets the phone_number of this DisplayApplianceRecipient.
479        
480
481        :return: The phone_number of this DisplayApplianceRecipient.
482        :rtype: str
483        """
484        return self._phone_number
485
486    @phone_number.setter
487    def phone_number(self, phone_number):
488        """
489        Sets the phone_number of this DisplayApplianceRecipient.
490        
491
492        :param phone_number: The phone_number of this DisplayApplianceRecipient.
493        :type: str
494        """
495
496        self._phone_number = phone_number
497
498    @property
499    def recipient_complete_count(self):
500        """
501        Gets the recipient_complete_count of this DisplayApplianceRecipient.
502        
503
504        :return: The recipient_complete_count of this DisplayApplianceRecipient.
505        :rtype: int
506        """
507        return self._recipient_complete_count
508
509    @recipient_complete_count.setter
510    def recipient_complete_count(self, recipient_complete_count):
511        """
512        Sets the recipient_complete_count of this DisplayApplianceRecipient.
513        
514
515        :param recipient_complete_count: The recipient_complete_count of this DisplayApplianceRecipient.
516        :type: int
517        """
518
519        self._recipient_complete_count = recipient_complete_count
520
521    @property
522    def recipient_guid_id(self):
523        """
524        Gets the recipient_guid_id of this DisplayApplianceRecipient.
525        
526
527        :return: The recipient_guid_id of this DisplayApplianceRecipient.
528        :rtype: str
529        """
530        return self._recipient_guid_id
531
532    @recipient_guid_id.setter
533    def recipient_guid_id(self, recipient_guid_id):
534        """
535        Sets the recipient_guid_id of this DisplayApplianceRecipient.
536        
537
538        :param recipient_guid_id: The recipient_guid_id of this DisplayApplianceRecipient.
539        :type: str
540        """
541
542        self._recipient_guid_id = recipient_guid_id
543
544    @property
545    def recipient_id(self):
546        """
547        Gets the recipient_id of this DisplayApplianceRecipient.
548        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.
549
550        :return: The recipient_id of this DisplayApplianceRecipient.
551        :rtype: str
552        """
553        return self._recipient_id
554
555    @recipient_id.setter
556    def recipient_id(self, recipient_id):
557        """
558        Sets the recipient_id of this DisplayApplianceRecipient.
559        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.
560
561        :param recipient_id: The recipient_id of this DisplayApplianceRecipient.
562        :type: str
563        """
564
565        self._recipient_id = recipient_id
566
567    @property
568    def recipient_status(self):
569        """
570        Gets the recipient_status of this DisplayApplianceRecipient.
571        
572
573        :return: The recipient_status of this DisplayApplianceRecipient.
574        :rtype: str
575        """
576        return self._recipient_status
577
578    @recipient_status.setter
579    def recipient_status(self, recipient_status):
580        """
581        Sets the recipient_status of this DisplayApplianceRecipient.
582        
583
584        :param recipient_status: The recipient_status of this DisplayApplianceRecipient.
585        :type: str
586        """
587
588        self._recipient_status = recipient_status
589
590    @property
591    def recipient_type(self):
592        """
593        Gets the recipient_type of this DisplayApplianceRecipient.
594        
595
596        :return: The recipient_type of this DisplayApplianceRecipient.
597        :rtype: str
598        """
599        return self._recipient_type
600
601    @recipient_type.setter
602    def recipient_type(self, recipient_type):
603        """
604        Sets the recipient_type of this DisplayApplianceRecipient.
605        
606
607        :param recipient_type: The recipient_type of this DisplayApplianceRecipient.
608        :type: str
609        """
610
611        self._recipient_type = recipient_type
612
613    @property
614    def require_signer_certificate(self):
615        """
616        Gets the require_signer_certificate of this DisplayApplianceRecipient.
617        
618
619        :return: The require_signer_certificate of this DisplayApplianceRecipient.
620        :rtype: str
621        """
622        return self._require_signer_certificate
623
624    @require_signer_certificate.setter
625    def require_signer_certificate(self, require_signer_certificate):
626        """
627        Sets the require_signer_certificate of this DisplayApplianceRecipient.
628        
629
630        :param require_signer_certificate: The require_signer_certificate of this DisplayApplianceRecipient.
631        :type: str
632        """
633
634        self._require_signer_certificate = require_signer_certificate
635
636    @property
637    def row_state(self):
638        """
639        Gets the row_state of this DisplayApplianceRecipient.
640        
641
642        :return: The row_state of this DisplayApplianceRecipient.
643        :rtype: str
644        """
645        return self._row_state
646
647    @row_state.setter
648    def row_state(self, row_state):
649        """
650        Sets the row_state of this DisplayApplianceRecipient.
651        
652
653        :param row_state: The row_state of this DisplayApplianceRecipient.
654        :type: str
655        """
656
657        self._row_state = row_state
658
659    @property
660    def signature_base64(self):
661        """
662        Gets the signature_base64 of this DisplayApplianceRecipient.
663        
664
665        :return: The signature_base64 of this DisplayApplianceRecipient.
666        :rtype: str
667        """
668        return self._signature_base64
669
670    @signature_base64.setter
671    def signature_base64(self, signature_base64):
672        """
673        Sets the signature_base64 of this DisplayApplianceRecipient.
674        
675
676        :param signature_base64: The signature_base64 of this DisplayApplianceRecipient.
677        :type: str
678        """
679
680        self._signature_base64 = signature_base64
681
682    @property
683    def signature_image_id(self):
684        """
685        Gets the signature_image_id of this DisplayApplianceRecipient.
686        
687
688        :return: The signature_image_id of this DisplayApplianceRecipient.
689        :rtype: str
690        """
691        return self._signature_image_id
692
693    @signature_image_id.setter
694    def signature_image_id(self, signature_image_id):
695        """
696        Sets the signature_image_id of this DisplayApplianceRecipient.
697        
698
699        :param signature_image_id: The signature_image_id of this DisplayApplianceRecipient.
700        :type: str
701        """
702
703        self._signature_image_id = signature_image_id
704
705    @property
706    def signed(self):
707        """
708        Gets the signed of this DisplayApplianceRecipient.
709        
710
711        :return: The signed of this DisplayApplianceRecipient.
712        :rtype: bool
713        """
714        return self._signed
715
716    @signed.setter
717    def signed(self, signed):
718        """
719        Sets the signed of this DisplayApplianceRecipient.
720        
721
722        :param signed: The signed of this DisplayApplianceRecipient.
723        :type: bool
724        """
725
726        self._signed = signed
727
728    @property
729    def signer_apply_tabs(self):
730        """
731        Gets the signer_apply_tabs of this DisplayApplianceRecipient.
732        
733
734        :return: The signer_apply_tabs of this DisplayApplianceRecipient.
735        :rtype: bool
736        """
737        return self._signer_apply_tabs
738
739    @signer_apply_tabs.setter
740    def signer_apply_tabs(self, signer_apply_tabs):
741        """
742        Sets the signer_apply_tabs of this DisplayApplianceRecipient.
743        
744
745        :param signer_apply_tabs: The signer_apply_tabs of this DisplayApplianceRecipient.
746        :type: bool
747        """
748
749        self._signer_apply_tabs = signer_apply_tabs
750
751    @property
752    def signer_attachment_base64(self):
753        """
754        Gets the signer_attachment_base64 of this DisplayApplianceRecipient.
755        
756
757        :return: The signer_attachment_base64 of this DisplayApplianceRecipient.
758        :rtype: str
759        """
760        return self._signer_attachment_base64
761
762    @signer_attachment_base64.setter
763    def signer_attachment_base64(self, signer_attachment_base64):
764        """
765        Sets the signer_attachment_base64 of this DisplayApplianceRecipient.
766        
767
768        :param signer_attachment_base64: The signer_attachment_base64 of this DisplayApplianceRecipient.
769        :type: str
770        """
771
772        self._signer_attachment_base64 = signer_attachment_base64
773
774    @property
775    def user_id(self):
776        """
777        Gets the user_id of this DisplayApplianceRecipient.
778        
779
780        :return: The user_id of this DisplayApplianceRecipient.
781        :rtype: str
782        """
783        return self._user_id
784
785    @user_id.setter
786    def user_id(self, user_id):
787        """
788        Sets the user_id of this DisplayApplianceRecipient.
789        
790
791        :param user_id: The user_id of this DisplayApplianceRecipient.
792        :type: str
793        """
794
795        self._user_id = user_id
796
797    @property
798    def user_name(self):
799        """
800        Gets the user_name of this DisplayApplianceRecipient.
801        
802
803        :return: The user_name of this DisplayApplianceRecipient.
804        :rtype: str
805        """
806        return self._user_name
807
808    @user_name.setter
809    def user_name(self, user_name):
810        """
811        Sets the user_name of this DisplayApplianceRecipient.
812        
813
814        :param user_name: The user_name of this DisplayApplianceRecipient.
815        :type: str
816        """
817
818        self._user_name = user_name
819
820    def to_dict(self):
821        """
822        Returns the model properties as a dict
823        """
824        result = {}
825
826        for attr, _ in iteritems(self.swagger_types):
827            value = getattr(self, attr)
828            if isinstance(value, list):
829                result[attr] = list(map(
830                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
831                    value
832                ))
833            elif hasattr(value, "to_dict"):
834                result[attr] = value.to_dict()
835            elif isinstance(value, dict):
836                result[attr] = dict(map(
837                    lambda item: (item[0], item[1].to_dict())
838                    if hasattr(item[1], "to_dict") else item,
839                    value.items()
840                ))
841            else:
842                result[attr] = value
843
844        return result
845
846    def to_str(self):
847        """
848        Returns the string representation of the model
849        """
850        return pformat(self.to_dict())
851
852    def __repr__(self):
853        """
854        For `print` and `pprint`
855        """
856        return self.to_str()
857
858    def __eq__(self, other):
859        """
860        Returns true if both objects are equal
861        """
862        return self.__dict__ == other.__dict__
863
864    def __ne__(self, other):
865        """
866        Returns true if both objects are not equal
867        """
868        return not self == other
class DisplayApplianceRecipient:
 20class DisplayApplianceRecipient(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, cfr_part11=None, company=None, custom_field2=None, digital_signature_base64=None, digital_signatures_pending=None, email=None, first_name=None, full_name=None, initials_base64=None, in_person_email=None, is_notary=None, is_notary_transaction=None, job_title=None, last_name=None, notary_seal_base64=None, phone_number=None, recipient_complete_count=None, recipient_guid_id=None, recipient_id=None, recipient_status=None, recipient_type=None, require_signer_certificate=None, row_state=None, signature_base64=None, signature_image_id=None, signed=None, signer_apply_tabs=None, signer_attachment_base64=None, user_id=None, user_name=None):
 26        """
 27        DisplayApplianceRecipient - 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            'cfr_part11': 'bool',
 36            'company': 'str',
 37            'custom_field2': 'str',
 38            'digital_signature_base64': 'str',
 39            'digital_signatures_pending': 'str',
 40            'email': 'str',
 41            'first_name': 'str',
 42            'full_name': 'str',
 43            'initials_base64': 'str',
 44            'in_person_email': 'str',
 45            'is_notary': 'bool',
 46            'is_notary_transaction': 'bool',
 47            'job_title': 'str',
 48            'last_name': 'str',
 49            'notary_seal_base64': 'str',
 50            'phone_number': 'str',
 51            'recipient_complete_count': 'int',
 52            'recipient_guid_id': 'str',
 53            'recipient_id': 'str',
 54            'recipient_status': 'str',
 55            'recipient_type': 'str',
 56            'require_signer_certificate': 'str',
 57            'row_state': 'str',
 58            'signature_base64': 'str',
 59            'signature_image_id': 'str',
 60            'signed': 'bool',
 61            'signer_apply_tabs': 'bool',
 62            'signer_attachment_base64': 'str',
 63            'user_id': 'str',
 64            'user_name': 'str'
 65        }
 66
 67        self.attribute_map = {
 68            'cfr_part11': 'cfrPart11',
 69            'company': 'company',
 70            'custom_field2': 'customField2',
 71            'digital_signature_base64': 'digitalSignatureBase64',
 72            'digital_signatures_pending': 'digitalSignaturesPending',
 73            'email': 'email',
 74            'first_name': 'firstName',
 75            'full_name': 'fullName',
 76            'initials_base64': 'initialsBase64',
 77            'in_person_email': 'inPersonEmail',
 78            'is_notary': 'isNotary',
 79            'is_notary_transaction': 'isNotaryTransaction',
 80            'job_title': 'jobTitle',
 81            'last_name': 'lastName',
 82            'notary_seal_base64': 'notarySealBase64',
 83            'phone_number': 'phoneNumber',
 84            'recipient_complete_count': 'recipientCompleteCount',
 85            'recipient_guid_id': 'recipientGuidId',
 86            'recipient_id': 'recipientId',
 87            'recipient_status': 'recipientStatus',
 88            'recipient_type': 'recipientType',
 89            'require_signer_certificate': 'requireSignerCertificate',
 90            'row_state': 'rowState',
 91            'signature_base64': 'signatureBase64',
 92            'signature_image_id': 'signatureImageId',
 93            'signed': 'signed',
 94            'signer_apply_tabs': 'signerApplyTabs',
 95            'signer_attachment_base64': 'signerAttachmentBase64',
 96            'user_id': 'userId',
 97            'user_name': 'userName'
 98        }
 99
100        self._cfr_part11 = cfr_part11
101        self._company = company
102        self._custom_field2 = custom_field2
103        self._digital_signature_base64 = digital_signature_base64
104        self._digital_signatures_pending = digital_signatures_pending
105        self._email = email
106        self._first_name = first_name
107        self._full_name = full_name
108        self._initials_base64 = initials_base64
109        self._in_person_email = in_person_email
110        self._is_notary = is_notary
111        self._is_notary_transaction = is_notary_transaction
112        self._job_title = job_title
113        self._last_name = last_name
114        self._notary_seal_base64 = notary_seal_base64
115        self._phone_number = phone_number
116        self._recipient_complete_count = recipient_complete_count
117        self._recipient_guid_id = recipient_guid_id
118        self._recipient_id = recipient_id
119        self._recipient_status = recipient_status
120        self._recipient_type = recipient_type
121        self._require_signer_certificate = require_signer_certificate
122        self._row_state = row_state
123        self._signature_base64 = signature_base64
124        self._signature_image_id = signature_image_id
125        self._signed = signed
126        self._signer_apply_tabs = signer_apply_tabs
127        self._signer_attachment_base64 = signer_attachment_base64
128        self._user_id = user_id
129        self._user_name = user_name
130
131    @property
132    def cfr_part11(self):
133        """
134        Gets the cfr_part11 of this DisplayApplianceRecipient.
135        
136
137        :return: The cfr_part11 of this DisplayApplianceRecipient.
138        :rtype: bool
139        """
140        return self._cfr_part11
141
142    @cfr_part11.setter
143    def cfr_part11(self, cfr_part11):
144        """
145        Sets the cfr_part11 of this DisplayApplianceRecipient.
146        
147
148        :param cfr_part11: The cfr_part11 of this DisplayApplianceRecipient.
149        :type: bool
150        """
151
152        self._cfr_part11 = cfr_part11
153
154    @property
155    def company(self):
156        """
157        Gets the company of this DisplayApplianceRecipient.
158        
159
160        :return: The company of this DisplayApplianceRecipient.
161        :rtype: str
162        """
163        return self._company
164
165    @company.setter
166    def company(self, company):
167        """
168        Sets the company of this DisplayApplianceRecipient.
169        
170
171        :param company: The company of this DisplayApplianceRecipient.
172        :type: str
173        """
174
175        self._company = company
176
177    @property
178    def custom_field2(self):
179        """
180        Gets the custom_field2 of this DisplayApplianceRecipient.
181        
182
183        :return: The custom_field2 of this DisplayApplianceRecipient.
184        :rtype: str
185        """
186        return self._custom_field2
187
188    @custom_field2.setter
189    def custom_field2(self, custom_field2):
190        """
191        Sets the custom_field2 of this DisplayApplianceRecipient.
192        
193
194        :param custom_field2: The custom_field2 of this DisplayApplianceRecipient.
195        :type: str
196        """
197
198        self._custom_field2 = custom_field2
199
200    @property
201    def digital_signature_base64(self):
202        """
203        Gets the digital_signature_base64 of this DisplayApplianceRecipient.
204        
205
206        :return: The digital_signature_base64 of this DisplayApplianceRecipient.
207        :rtype: str
208        """
209        return self._digital_signature_base64
210
211    @digital_signature_base64.setter
212    def digital_signature_base64(self, digital_signature_base64):
213        """
214        Sets the digital_signature_base64 of this DisplayApplianceRecipient.
215        
216
217        :param digital_signature_base64: The digital_signature_base64 of this DisplayApplianceRecipient.
218        :type: str
219        """
220
221        self._digital_signature_base64 = digital_signature_base64
222
223    @property
224    def digital_signatures_pending(self):
225        """
226        Gets the digital_signatures_pending of this DisplayApplianceRecipient.
227        
228
229        :return: The digital_signatures_pending of this DisplayApplianceRecipient.
230        :rtype: str
231        """
232        return self._digital_signatures_pending
233
234    @digital_signatures_pending.setter
235    def digital_signatures_pending(self, digital_signatures_pending):
236        """
237        Sets the digital_signatures_pending of this DisplayApplianceRecipient.
238        
239
240        :param digital_signatures_pending: The digital_signatures_pending of this DisplayApplianceRecipient.
241        :type: str
242        """
243
244        self._digital_signatures_pending = digital_signatures_pending
245
246    @property
247    def email(self):
248        """
249        Gets the email of this DisplayApplianceRecipient.
250        
251
252        :return: The email of this DisplayApplianceRecipient.
253        :rtype: str
254        """
255        return self._email
256
257    @email.setter
258    def email(self, email):
259        """
260        Sets the email of this DisplayApplianceRecipient.
261        
262
263        :param email: The email of this DisplayApplianceRecipient.
264        :type: str
265        """
266
267        self._email = email
268
269    @property
270    def first_name(self):
271        """
272        Gets the first_name of this DisplayApplianceRecipient.
273        The user's first name.  Maximum Length: 50 characters.
274
275        :return: The first_name of this DisplayApplianceRecipient.
276        :rtype: str
277        """
278        return self._first_name
279
280    @first_name.setter
281    def first_name(self, first_name):
282        """
283        Sets the first_name of this DisplayApplianceRecipient.
284        The user's first name.  Maximum Length: 50 characters.
285
286        :param first_name: The first_name of this DisplayApplianceRecipient.
287        :type: str
288        """
289
290        self._first_name = first_name
291
292    @property
293    def full_name(self):
294        """
295        Gets the full_name of this DisplayApplianceRecipient.
296        
297
298        :return: The full_name of this DisplayApplianceRecipient.
299        :rtype: str
300        """
301        return self._full_name
302
303    @full_name.setter
304    def full_name(self, full_name):
305        """
306        Sets the full_name of this DisplayApplianceRecipient.
307        
308
309        :param full_name: The full_name of this DisplayApplianceRecipient.
310        :type: str
311        """
312
313        self._full_name = full_name
314
315    @property
316    def initials_base64(self):
317        """
318        Gets the initials_base64 of this DisplayApplianceRecipient.
319        
320
321        :return: The initials_base64 of this DisplayApplianceRecipient.
322        :rtype: str
323        """
324        return self._initials_base64
325
326    @initials_base64.setter
327    def initials_base64(self, initials_base64):
328        """
329        Sets the initials_base64 of this DisplayApplianceRecipient.
330        
331
332        :param initials_base64: The initials_base64 of this DisplayApplianceRecipient.
333        :type: str
334        """
335
336        self._initials_base64 = initials_base64
337
338    @property
339    def in_person_email(self):
340        """
341        Gets the in_person_email of this DisplayApplianceRecipient.
342        
343
344        :return: The in_person_email of this DisplayApplianceRecipient.
345        :rtype: str
346        """
347        return self._in_person_email
348
349    @in_person_email.setter
350    def in_person_email(self, in_person_email):
351        """
352        Sets the in_person_email of this DisplayApplianceRecipient.
353        
354
355        :param in_person_email: The in_person_email of this DisplayApplianceRecipient.
356        :type: str
357        """
358
359        self._in_person_email = in_person_email
360
361    @property
362    def is_notary(self):
363        """
364        Gets the is_notary of this DisplayApplianceRecipient.
365        
366
367        :return: The is_notary of this DisplayApplianceRecipient.
368        :rtype: bool
369        """
370        return self._is_notary
371
372    @is_notary.setter
373    def is_notary(self, is_notary):
374        """
375        Sets the is_notary of this DisplayApplianceRecipient.
376        
377
378        :param is_notary: The is_notary of this DisplayApplianceRecipient.
379        :type: bool
380        """
381
382        self._is_notary = is_notary
383
384    @property
385    def is_notary_transaction(self):
386        """
387        Gets the is_notary_transaction of this DisplayApplianceRecipient.
388        
389
390        :return: The is_notary_transaction of this DisplayApplianceRecipient.
391        :rtype: bool
392        """
393        return self._is_notary_transaction
394
395    @is_notary_transaction.setter
396    def is_notary_transaction(self, is_notary_transaction):
397        """
398        Sets the is_notary_transaction of this DisplayApplianceRecipient.
399        
400
401        :param is_notary_transaction: The is_notary_transaction of this DisplayApplianceRecipient.
402        :type: bool
403        """
404
405        self._is_notary_transaction = is_notary_transaction
406
407    @property
408    def job_title(self):
409        """
410        Gets the job_title of this DisplayApplianceRecipient.
411        
412
413        :return: The job_title of this DisplayApplianceRecipient.
414        :rtype: str
415        """
416        return self._job_title
417
418    @job_title.setter
419    def job_title(self, job_title):
420        """
421        Sets the job_title of this DisplayApplianceRecipient.
422        
423
424        :param job_title: The job_title of this DisplayApplianceRecipient.
425        :type: str
426        """
427
428        self._job_title = job_title
429
430    @property
431    def last_name(self):
432        """
433        Gets the last_name of this DisplayApplianceRecipient.
434        
435
436        :return: The last_name of this DisplayApplianceRecipient.
437        :rtype: str
438        """
439        return self._last_name
440
441    @last_name.setter
442    def last_name(self, last_name):
443        """
444        Sets the last_name of this DisplayApplianceRecipient.
445        
446
447        :param last_name: The last_name of this DisplayApplianceRecipient.
448        :type: str
449        """
450
451        self._last_name = last_name
452
453    @property
454    def notary_seal_base64(self):
455        """
456        Gets the notary_seal_base64 of this DisplayApplianceRecipient.
457        
458
459        :return: The notary_seal_base64 of this DisplayApplianceRecipient.
460        :rtype: str
461        """
462        return self._notary_seal_base64
463
464    @notary_seal_base64.setter
465    def notary_seal_base64(self, notary_seal_base64):
466        """
467        Sets the notary_seal_base64 of this DisplayApplianceRecipient.
468        
469
470        :param notary_seal_base64: The notary_seal_base64 of this DisplayApplianceRecipient.
471        :type: str
472        """
473
474        self._notary_seal_base64 = notary_seal_base64
475
476    @property
477    def phone_number(self):
478        """
479        Gets the phone_number of this DisplayApplianceRecipient.
480        
481
482        :return: The phone_number of this DisplayApplianceRecipient.
483        :rtype: str
484        """
485        return self._phone_number
486
487    @phone_number.setter
488    def phone_number(self, phone_number):
489        """
490        Sets the phone_number of this DisplayApplianceRecipient.
491        
492
493        :param phone_number: The phone_number of this DisplayApplianceRecipient.
494        :type: str
495        """
496
497        self._phone_number = phone_number
498
499    @property
500    def recipient_complete_count(self):
501        """
502        Gets the recipient_complete_count of this DisplayApplianceRecipient.
503        
504
505        :return: The recipient_complete_count of this DisplayApplianceRecipient.
506        :rtype: int
507        """
508        return self._recipient_complete_count
509
510    @recipient_complete_count.setter
511    def recipient_complete_count(self, recipient_complete_count):
512        """
513        Sets the recipient_complete_count of this DisplayApplianceRecipient.
514        
515
516        :param recipient_complete_count: The recipient_complete_count of this DisplayApplianceRecipient.
517        :type: int
518        """
519
520        self._recipient_complete_count = recipient_complete_count
521
522    @property
523    def recipient_guid_id(self):
524        """
525        Gets the recipient_guid_id of this DisplayApplianceRecipient.
526        
527
528        :return: The recipient_guid_id of this DisplayApplianceRecipient.
529        :rtype: str
530        """
531        return self._recipient_guid_id
532
533    @recipient_guid_id.setter
534    def recipient_guid_id(self, recipient_guid_id):
535        """
536        Sets the recipient_guid_id of this DisplayApplianceRecipient.
537        
538
539        :param recipient_guid_id: The recipient_guid_id of this DisplayApplianceRecipient.
540        :type: str
541        """
542
543        self._recipient_guid_id = recipient_guid_id
544
545    @property
546    def recipient_id(self):
547        """
548        Gets the recipient_id of this DisplayApplianceRecipient.
549        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.
550
551        :return: The recipient_id of this DisplayApplianceRecipient.
552        :rtype: str
553        """
554        return self._recipient_id
555
556    @recipient_id.setter
557    def recipient_id(self, recipient_id):
558        """
559        Sets the recipient_id of this DisplayApplianceRecipient.
560        Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.
561
562        :param recipient_id: The recipient_id of this DisplayApplianceRecipient.
563        :type: str
564        """
565
566        self._recipient_id = recipient_id
567
568    @property
569    def recipient_status(self):
570        """
571        Gets the recipient_status of this DisplayApplianceRecipient.
572        
573
574        :return: The recipient_status of this DisplayApplianceRecipient.
575        :rtype: str
576        """
577        return self._recipient_status
578
579    @recipient_status.setter
580    def recipient_status(self, recipient_status):
581        """
582        Sets the recipient_status of this DisplayApplianceRecipient.
583        
584
585        :param recipient_status: The recipient_status of this DisplayApplianceRecipient.
586        :type: str
587        """
588
589        self._recipient_status = recipient_status
590
591    @property
592    def recipient_type(self):
593        """
594        Gets the recipient_type of this DisplayApplianceRecipient.
595        
596
597        :return: The recipient_type of this DisplayApplianceRecipient.
598        :rtype: str
599        """
600        return self._recipient_type
601
602    @recipient_type.setter
603    def recipient_type(self, recipient_type):
604        """
605        Sets the recipient_type of this DisplayApplianceRecipient.
606        
607
608        :param recipient_type: The recipient_type of this DisplayApplianceRecipient.
609        :type: str
610        """
611
612        self._recipient_type = recipient_type
613
614    @property
615    def require_signer_certificate(self):
616        """
617        Gets the require_signer_certificate of this DisplayApplianceRecipient.
618        
619
620        :return: The require_signer_certificate of this DisplayApplianceRecipient.
621        :rtype: str
622        """
623        return self._require_signer_certificate
624
625    @require_signer_certificate.setter
626    def require_signer_certificate(self, require_signer_certificate):
627        """
628        Sets the require_signer_certificate of this DisplayApplianceRecipient.
629        
630
631        :param require_signer_certificate: The require_signer_certificate of this DisplayApplianceRecipient.
632        :type: str
633        """
634
635        self._require_signer_certificate = require_signer_certificate
636
637    @property
638    def row_state(self):
639        """
640        Gets the row_state of this DisplayApplianceRecipient.
641        
642
643        :return: The row_state of this DisplayApplianceRecipient.
644        :rtype: str
645        """
646        return self._row_state
647
648    @row_state.setter
649    def row_state(self, row_state):
650        """
651        Sets the row_state of this DisplayApplianceRecipient.
652        
653
654        :param row_state: The row_state of this DisplayApplianceRecipient.
655        :type: str
656        """
657
658        self._row_state = row_state
659
660    @property
661    def signature_base64(self):
662        """
663        Gets the signature_base64 of this DisplayApplianceRecipient.
664        
665
666        :return: The signature_base64 of this DisplayApplianceRecipient.
667        :rtype: str
668        """
669        return self._signature_base64
670
671    @signature_base64.setter
672    def signature_base64(self, signature_base64):
673        """
674        Sets the signature_base64 of this DisplayApplianceRecipient.
675        
676
677        :param signature_base64: The signature_base64 of this DisplayApplianceRecipient.
678        :type: str
679        """
680
681        self._signature_base64 = signature_base64
682
683    @property
684    def signature_image_id(self):
685        """
686        Gets the signature_image_id of this DisplayApplianceRecipient.
687        
688
689        :return: The signature_image_id of this DisplayApplianceRecipient.
690        :rtype: str
691        """
692        return self._signature_image_id
693
694    @signature_image_id.setter
695    def signature_image_id(self, signature_image_id):
696        """
697        Sets the signature_image_id of this DisplayApplianceRecipient.
698        
699
700        :param signature_image_id: The signature_image_id of this DisplayApplianceRecipient.
701        :type: str
702        """
703
704        self._signature_image_id = signature_image_id
705
706    @property
707    def signed(self):
708        """
709        Gets the signed of this DisplayApplianceRecipient.
710        
711
712        :return: The signed of this DisplayApplianceRecipient.
713        :rtype: bool
714        """
715        return self._signed
716
717    @signed.setter
718    def signed(self, signed):
719        """
720        Sets the signed of this DisplayApplianceRecipient.
721        
722
723        :param signed: The signed of this DisplayApplianceRecipient.
724        :type: bool
725        """
726
727        self._signed = signed
728
729    @property
730    def signer_apply_tabs(self):
731        """
732        Gets the signer_apply_tabs of this DisplayApplianceRecipient.
733        
734
735        :return: The signer_apply_tabs of this DisplayApplianceRecipient.
736        :rtype: bool
737        """
738        return self._signer_apply_tabs
739
740    @signer_apply_tabs.setter
741    def signer_apply_tabs(self, signer_apply_tabs):
742        """
743        Sets the signer_apply_tabs of this DisplayApplianceRecipient.
744        
745
746        :param signer_apply_tabs: The signer_apply_tabs of this DisplayApplianceRecipient.
747        :type: bool
748        """
749
750        self._signer_apply_tabs = signer_apply_tabs
751
752    @property
753    def signer_attachment_base64(self):
754        """
755        Gets the signer_attachment_base64 of this DisplayApplianceRecipient.
756        
757
758        :return: The signer_attachment_base64 of this DisplayApplianceRecipient.
759        :rtype: str
760        """
761        return self._signer_attachment_base64
762
763    @signer_attachment_base64.setter
764    def signer_attachment_base64(self, signer_attachment_base64):
765        """
766        Sets the signer_attachment_base64 of this DisplayApplianceRecipient.
767        
768
769        :param signer_attachment_base64: The signer_attachment_base64 of this DisplayApplianceRecipient.
770        :type: str
771        """
772
773        self._signer_attachment_base64 = signer_attachment_base64
774
775    @property
776    def user_id(self):
777        """
778        Gets the user_id of this DisplayApplianceRecipient.
779        
780
781        :return: The user_id of this DisplayApplianceRecipient.
782        :rtype: str
783        """
784        return self._user_id
785
786    @user_id.setter
787    def user_id(self, user_id):
788        """
789        Sets the user_id of this DisplayApplianceRecipient.
790        
791
792        :param user_id: The user_id of this DisplayApplianceRecipient.
793        :type: str
794        """
795
796        self._user_id = user_id
797
798    @property
799    def user_name(self):
800        """
801        Gets the user_name of this DisplayApplianceRecipient.
802        
803
804        :return: The user_name of this DisplayApplianceRecipient.
805        :rtype: str
806        """
807        return self._user_name
808
809    @user_name.setter
810    def user_name(self, user_name):
811        """
812        Sets the user_name of this DisplayApplianceRecipient.
813        
814
815        :param user_name: The user_name of this DisplayApplianceRecipient.
816        :type: str
817        """
818
819        self._user_name = user_name
820
821    def to_dict(self):
822        """
823        Returns the model properties as a dict
824        """
825        result = {}
826
827        for attr, _ in iteritems(self.swagger_types):
828            value = getattr(self, attr)
829            if isinstance(value, list):
830                result[attr] = list(map(
831                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
832                    value
833                ))
834            elif hasattr(value, "to_dict"):
835                result[attr] = value.to_dict()
836            elif isinstance(value, dict):
837                result[attr] = dict(map(
838                    lambda item: (item[0], item[1].to_dict())
839                    if hasattr(item[1], "to_dict") else item,
840                    value.items()
841                ))
842            else:
843                result[attr] = value
844
845        return result
846
847    def to_str(self):
848        """
849        Returns the string representation of the model
850        """
851        return pformat(self.to_dict())
852
853    def __repr__(self):
854        """
855        For `print` and `pprint`
856        """
857        return self.to_str()
858
859    def __eq__(self, other):
860        """
861        Returns true if both objects are equal
862        """
863        return self.__dict__ == other.__dict__
864
865    def __ne__(self, other):
866        """
867        Returns true if both objects are not equal
868        """
869        return not self == other

NOTE: This class is auto generated by the swagger code generator program. Do not edit the class manually.

DisplayApplianceRecipient( cfr_part11=None, company=None, custom_field2=None, digital_signature_base64=None, digital_signatures_pending=None, email=None, first_name=None, full_name=None, initials_base64=None, in_person_email=None, is_notary=None, is_notary_transaction=None, job_title=None, last_name=None, notary_seal_base64=None, phone_number=None, recipient_complete_count=None, recipient_guid_id=None, recipient_id=None, recipient_status=None, recipient_type=None, require_signer_certificate=None, row_state=None, signature_base64=None, signature_image_id=None, signed=None, signer_apply_tabs=None, signer_attachment_base64=None, user_id=None, user_name=None)
 25    def __init__(self, cfr_part11=None, company=None, custom_field2=None, digital_signature_base64=None, digital_signatures_pending=None, email=None, first_name=None, full_name=None, initials_base64=None, in_person_email=None, is_notary=None, is_notary_transaction=None, job_title=None, last_name=None, notary_seal_base64=None, phone_number=None, recipient_complete_count=None, recipient_guid_id=None, recipient_id=None, recipient_status=None, recipient_type=None, require_signer_certificate=None, row_state=None, signature_base64=None, signature_image_id=None, signed=None, signer_apply_tabs=None, signer_attachment_base64=None, user_id=None, user_name=None):
 26        """
 27        DisplayApplianceRecipient - 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            'cfr_part11': 'bool',
 36            'company': 'str',
 37            'custom_field2': 'str',
 38            'digital_signature_base64': 'str',
 39            'digital_signatures_pending': 'str',
 40            'email': 'str',
 41            'first_name': 'str',
 42            'full_name': 'str',
 43            'initials_base64': 'str',
 44            'in_person_email': 'str',
 45            'is_notary': 'bool',
 46            'is_notary_transaction': 'bool',
 47            'job_title': 'str',
 48            'last_name': 'str',
 49            'notary_seal_base64': 'str',
 50            'phone_number': 'str',
 51            'recipient_complete_count': 'int',
 52            'recipient_guid_id': 'str',
 53            'recipient_id': 'str',
 54            'recipient_status': 'str',
 55            'recipient_type': 'str',
 56            'require_signer_certificate': 'str',
 57            'row_state': 'str',
 58            'signature_base64': 'str',
 59            'signature_image_id': 'str',
 60            'signed': 'bool',
 61            'signer_apply_tabs': 'bool',
 62            'signer_attachment_base64': 'str',
 63            'user_id': 'str',
 64            'user_name': 'str'
 65        }
 66
 67        self.attribute_map = {
 68            'cfr_part11': 'cfrPart11',
 69            'company': 'company',
 70            'custom_field2': 'customField2',
 71            'digital_signature_base64': 'digitalSignatureBase64',
 72            'digital_signatures_pending': 'digitalSignaturesPending',
 73            'email': 'email',
 74            'first_name': 'firstName',
 75            'full_name': 'fullName',
 76            'initials_base64': 'initialsBase64',
 77            'in_person_email': 'inPersonEmail',
 78            'is_notary': 'isNotary',
 79            'is_notary_transaction': 'isNotaryTransaction',
 80            'job_title': 'jobTitle',
 81            'last_name': 'lastName',
 82            'notary_seal_base64': 'notarySealBase64',
 83            'phone_number': 'phoneNumber',
 84            'recipient_complete_count': 'recipientCompleteCount',
 85            'recipient_guid_id': 'recipientGuidId',
 86            'recipient_id': 'recipientId',
 87            'recipient_status': 'recipientStatus',
 88            'recipient_type': 'recipientType',
 89            'require_signer_certificate': 'requireSignerCertificate',
 90            'row_state': 'rowState',
 91            'signature_base64': 'signatureBase64',
 92            'signature_image_id': 'signatureImageId',
 93            'signed': 'signed',
 94            'signer_apply_tabs': 'signerApplyTabs',
 95            'signer_attachment_base64': 'signerAttachmentBase64',
 96            'user_id': 'userId',
 97            'user_name': 'userName'
 98        }
 99
100        self._cfr_part11 = cfr_part11
101        self._company = company
102        self._custom_field2 = custom_field2
103        self._digital_signature_base64 = digital_signature_base64
104        self._digital_signatures_pending = digital_signatures_pending
105        self._email = email
106        self._first_name = first_name
107        self._full_name = full_name
108        self._initials_base64 = initials_base64
109        self._in_person_email = in_person_email
110        self._is_notary = is_notary
111        self._is_notary_transaction = is_notary_transaction
112        self._job_title = job_title
113        self._last_name = last_name
114        self._notary_seal_base64 = notary_seal_base64
115        self._phone_number = phone_number
116        self._recipient_complete_count = recipient_complete_count
117        self._recipient_guid_id = recipient_guid_id
118        self._recipient_id = recipient_id
119        self._recipient_status = recipient_status
120        self._recipient_type = recipient_type
121        self._require_signer_certificate = require_signer_certificate
122        self._row_state = row_state
123        self._signature_base64 = signature_base64
124        self._signature_image_id = signature_image_id
125        self._signed = signed
126        self._signer_apply_tabs = signer_apply_tabs
127        self._signer_attachment_base64 = signer_attachment_base64
128        self._user_id = user_id
129        self._user_name = user_name

DisplayApplianceRecipient - 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.
cfr_part11

Gets the cfr_part11 of this DisplayApplianceRecipient.

Returns

The cfr_part11 of this DisplayApplianceRecipient.

company

Gets the company of this DisplayApplianceRecipient.

Returns

The company of this DisplayApplianceRecipient.

custom_field2

Gets the custom_field2 of this DisplayApplianceRecipient.

Returns

The custom_field2 of this DisplayApplianceRecipient.

digital_signature_base64

Gets the digital_signature_base64 of this DisplayApplianceRecipient.

Returns

The digital_signature_base64 of this DisplayApplianceRecipient.

digital_signatures_pending

Gets the digital_signatures_pending of this DisplayApplianceRecipient.

Returns

The digital_signatures_pending of this DisplayApplianceRecipient.

email

Gets the email of this DisplayApplianceRecipient.

Returns

The email of this DisplayApplianceRecipient.

first_name

Gets the first_name of this DisplayApplianceRecipient. The user's first name. Maximum Length: 50 characters.

Returns

The first_name of this DisplayApplianceRecipient.

full_name

Gets the full_name of this DisplayApplianceRecipient.

Returns

The full_name of this DisplayApplianceRecipient.

initials_base64

Gets the initials_base64 of this DisplayApplianceRecipient.

Returns

The initials_base64 of this DisplayApplianceRecipient.

in_person_email

Gets the in_person_email of this DisplayApplianceRecipient.

Returns

The in_person_email of this DisplayApplianceRecipient.

is_notary

Gets the is_notary of this DisplayApplianceRecipient.

Returns

The is_notary of this DisplayApplianceRecipient.

is_notary_transaction

Gets the is_notary_transaction of this DisplayApplianceRecipient.

Returns

The is_notary_transaction of this DisplayApplianceRecipient.

job_title

Gets the job_title of this DisplayApplianceRecipient.

Returns

The job_title of this DisplayApplianceRecipient.

last_name

Gets the last_name of this DisplayApplianceRecipient.

Returns

The last_name of this DisplayApplianceRecipient.

notary_seal_base64

Gets the notary_seal_base64 of this DisplayApplianceRecipient.

Returns

The notary_seal_base64 of this DisplayApplianceRecipient.

phone_number

Gets the phone_number of this DisplayApplianceRecipient.

Returns

The phone_number of this DisplayApplianceRecipient.

recipient_complete_count

Gets the recipient_complete_count of this DisplayApplianceRecipient.

Returns

The recipient_complete_count of this DisplayApplianceRecipient.

recipient_guid_id

Gets the recipient_guid_id of this DisplayApplianceRecipient.

Returns

The recipient_guid_id of this DisplayApplianceRecipient.

recipient_id

Gets the recipient_id of this DisplayApplianceRecipient. Unique for the recipient. It is used by the tab element to indicate which recipient is to sign the Document.

Returns

The recipient_id of this DisplayApplianceRecipient.

recipient_status

Gets the recipient_status of this DisplayApplianceRecipient.

Returns

The recipient_status of this DisplayApplianceRecipient.

recipient_type

Gets the recipient_type of this DisplayApplianceRecipient.

Returns

The recipient_type of this DisplayApplianceRecipient.

require_signer_certificate

Gets the require_signer_certificate of this DisplayApplianceRecipient.

Returns

The require_signer_certificate of this DisplayApplianceRecipient.

row_state

Gets the row_state of this DisplayApplianceRecipient.

Returns

The row_state of this DisplayApplianceRecipient.

signature_base64

Gets the signature_base64 of this DisplayApplianceRecipient.

Returns

The signature_base64 of this DisplayApplianceRecipient.

signature_image_id

Gets the signature_image_id of this DisplayApplianceRecipient.

Returns

The signature_image_id of this DisplayApplianceRecipient.

signed

Gets the signed of this DisplayApplianceRecipient.

Returns

The signed of this DisplayApplianceRecipient.

signer_apply_tabs

Gets the signer_apply_tabs of this DisplayApplianceRecipient.

Returns

The signer_apply_tabs of this DisplayApplianceRecipient.

signer_attachment_base64

Gets the signer_attachment_base64 of this DisplayApplianceRecipient.

Returns

The signer_attachment_base64 of this DisplayApplianceRecipient.

user_id

Gets the user_id of this DisplayApplianceRecipient.

Returns

The user_id of this DisplayApplianceRecipient.

user_name

Gets the user_name of this DisplayApplianceRecipient.

Returns

The user_name of this DisplayApplianceRecipient.

def to_dict(self)
821    def to_dict(self):
822        """
823        Returns the model properties as a dict
824        """
825        result = {}
826
827        for attr, _ in iteritems(self.swagger_types):
828            value = getattr(self, attr)
829            if isinstance(value, list):
830                result[attr] = list(map(
831                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
832                    value
833                ))
834            elif hasattr(value, "to_dict"):
835                result[attr] = value.to_dict()
836            elif isinstance(value, dict):
837                result[attr] = dict(map(
838                    lambda item: (item[0], item[1].to_dict())
839                    if hasattr(item[1], "to_dict") else item,
840                    value.items()
841                ))
842            else:
843                result[attr] = value
844
845        return result

Returns the model properties as a dict

def to_str(self)
847    def to_str(self):
848        """
849        Returns the string representation of the model
850        """
851        return pformat(self.to_dict())

Returns the string representation of the model