Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.65 KB

CustomEzsignsignaturestatusResponse.md

File metadata and controls

33 lines (24 loc) · 1.65 KB

CustomEzsignsignaturestatusResponse

A Ezsignsignaturestatus Object and children to create a complete structure

Properties

Name Type Description Notes
e_ezsignsignaturestatus_steptype str Type of step
i_ezsignsignaturestatus_step int The step at which the Ezsignsigner will be invited to sign or fill the form fields
i_ezsignsignaturestatus_total int The total number of signature or form fields the Ezsignsigner must process at the current step
i_ezsignsignaturestatus_signed int The number of signature or form fields the Ezsignsigner has already processed at the current step

Example

from eZmaxApi.models.custom_ezsignsignaturestatus_response import CustomEzsignsignaturestatusResponse

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

# convert the object into a dict
custom_ezsignsignaturestatus_response_dict = custom_ezsignsignaturestatus_response_instance.to_dict()
# create an instance of CustomEzsignsignaturestatusResponse from a dict
custom_ezsignsignaturestatus_response_form_dict = custom_ezsignsignaturestatus_response.from_dict(custom_ezsignsignaturestatus_response_dict)

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