Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.83 KB

CustomEzsignfoldertransmissionResponse.md

File metadata and controls

35 lines (26 loc) · 1.83 KB

CustomEzsignfoldertransmissionResponse

An Ezsignfolder Object in the context of an Ezsignbulksendtransmission

Properties

Name Type Description Notes
pki_ezsignfolder_id int The unique ID of the Ezsignfolder
s_ezsignfolder_description str The description of the Ezsignfolder
e_ezsignfolder_step FieldEEzsignfolderStep
i_ezsignfolder_signaturetotal int The number of total signatures that were requested in the Ezsignfolder
i_ezsignfolder_signaturesigned int The number of signatures that were signed in the Ezsignfolder.
a_obj_ezsignfoldertransmission_signer List[CustomEzsignfoldertransmissionSignerResponse]

Example

from eZmaxApi.models.custom_ezsignfoldertransmission_response import CustomEzsignfoldertransmissionResponse

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

# convert the object into a dict
custom_ezsignfoldertransmission_response_dict = custom_ezsignfoldertransmission_response_instance.to_dict()
# create an instance of CustomEzsignfoldertransmissionResponse from a dict
custom_ezsignfoldertransmission_response_form_dict = custom_ezsignfoldertransmission_response.from_dict(custom_ezsignfoldertransmission_response_dict)

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