Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 3.81 KB

EzsigndocumentResponse.md

File metadata and controls

52 lines (43 loc) · 3.81 KB

EzsigndocumentResponse

An Ezsigndocument Object

Properties

Name Type Description Notes
pki_ezsigndocument_id int The unique ID of the Ezsigndocument
fki_ezsignfolder_id int The unique ID of the Ezsignfolder
fki_ezsignfoldersignerassociation_id_declinedtosign int The unique ID of the Ezsignfoldersignerassociation [optional]
dt_ezsigndocument_duedate str The maximum date and time at which the Ezsigndocument can be signed.
dt_ezsignform_completed str The date and time at which the Ezsignform has been completed. [optional]
fki_language_id int The unique ID of the Language. Valid values: Value
s_ezsigndocument_name str The name of the document that will be presented to Ezsignfoldersignerassociations
e_ezsigndocument_step FieldEEzsigndocumentStep
dt_ezsigndocument_firstsend str The date and time when the Ezsigndocument was first sent. [optional]
dt_ezsigndocument_lastsend str The date and time when the Ezsigndocument was sent the last time. [optional]
i_ezsigndocument_order int The order in which the Ezsigndocument will be presented to the signatory in the Ezsignfolder.
i_ezsigndocument_pagetotal int The number of pages in the Ezsigndocument.
i_ezsigndocument_signaturesigned int The number of signatures that were signed in the document.
i_ezsigndocument_signaturetotal int The number of total signatures that were requested in the Ezsigndocument.
s_ezsigndocument_md5initial str MD5 Hash of the initial PDF Document before signatures were applied to it. [optional]
t_ezsigndocument_declinedtosignreason str A custom text message that will contain the refusal message if the Ezsigndocument is declined to sign [optional]
s_ezsigndocument_md5signed str MD5 Hash of the final PDF Document after all signatures were applied to it. [optional]
b_ezsigndocument_ezsignform bool If the Ezsigndocument contains an Ezsignform or not [optional]
b_ezsigndocument_hassignedsignatures bool If the Ezsigndocument contains signed signatures (From internal or external sources) [optional]
obj_audit CommonAudit [optional]
s_ezsigndocument_externalid str This field can be used to store an External ID from the client's system. Anything can be stored in this field, it will never be evaluated by the eZmax system and will be returned AS-IS. To store multiple values, consider using a JSON formatted structure, a URL encoded string, a CSV or any other custom format. [optional]
i_ezsigndocument_ezsignsignatureattachmenttotal int The number of Ezsigndocumentattachment total
i_ezsigndocument_ezsigndiscussiontotal int The total number of Ezsigndiscussions

Example

from eZmaxApi.models.ezsigndocument_response import EzsigndocumentResponse

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

# convert the object into a dict
ezsigndocument_response_dict = ezsigndocument_response_instance.to_dict()
# create an instance of EzsigndocumentResponse from a dict
ezsigndocument_response_form_dict = ezsigndocument_response.from_dict(ezsigndocument_response_dict)

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