Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.42 KB

File metadata and controls

31 lines (22 loc) · 1.42 KB

EzsigndocumentCreateElementV3Response

A Ezsigndocument createObject Response

Properties

Name Type Description Notes
pki_ezsigndocument_id int The unique ID of the Ezsigndocument
a_obj_matchingtemplate List[EzsigndocumentMatchingtemplateV3Response] An array of possibly matching template.

Example

from eZmaxApi.models.ezsigndocument_create_element_v3_response import EzsigndocumentCreateElementV3Response

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

# convert the object into a dict
ezsigndocument_create_element_v3_response_dict = ezsigndocument_create_element_v3_response_instance.to_dict()
# create an instance of EzsigndocumentCreateElementV3Response from a dict
ezsigndocument_create_element_v3_response_from_dict = EzsigndocumentCreateElementV3Response.from_dict(ezsigndocument_create_element_v3_response_dict)

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