Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 4.65 KB

EzsignsignerRequestCompound.md

File metadata and controls

35 lines (26 loc) · 4.65 KB

EzsignsignerRequestCompound

An Ezsignsigner Object and children to create a complete structure

Properties

Name Type Description Notes
fki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
fki_taxassignment_id int The unique ID of the Taxassignment. Valid values: Value
fki_secretquestion_id int The unique ID of the Secretquestion. Valid values: Value
e_ezsignsigner_logintype str The method the Ezsignsigner will authenticate to the signing platform. 1. Password means the Ezsignsigner will receive a secure link by email. 2. PasswordPhone means the Ezsignsigner will receive a secure link by email and will need to authenticate using SMS or Phone call. Additional fee applies. 3. PasswordQuestion means the Ezsignsigner will receive a secure link by email and will need to authenticate using a predefined question and answer. 4. InPersonPhone means the Ezsignsigner will only be able to sign "In-Person" and will need to authenticate using SMS or Phone call. No email will be sent for invitation to sign. Additional fee applies. 5. InPerson means the Ezsignsigner will only be able to sign "In-Person" and there won't be any authentication. No email will be sent for invitation to sign. Make sure you evaluate the risk of signature denial and at minimum, we recommend you use a handwritten signature type. [optional]
s_ezsignsigner_secretanswer str The predefined answer to the secret question the Ezsignsigner will need to provide to successfully authenticate. [optional]
obj_contact EzsignsignerRequestCompoundContact

Example

from eZmaxApi.models.ezsignsigner_request_compound import EzsignsignerRequestCompound

# TODO update the JSON string below
json = "{}"
# create an instance of EzsignsignerRequestCompound from a JSON string
ezsignsigner_request_compound_instance = EzsignsignerRequestCompound.from_json(json)
# print the JSON string representation of the object
print(EzsignsignerRequestCompound.to_json())

# convert the object into a dict
ezsignsigner_request_compound_dict = ezsignsigner_request_compound_instance.to_dict()
# create an instance of EzsignsignerRequestCompound from a dict
ezsignsigner_request_compound_form_dict = ezsignsigner_request_compound.from_dict(ezsignsigner_request_compound_dict)

[Back to Model list] [Back to API list] [Back to README]