A Ezsigntemplatedocument Object
| Name | Type | Description | Notes |
|---|---|---|---|
| pki_ezsigntemplatedocument_id | int | The unique ID of the Ezsigntemplatedocument | |
| fki_ezsigntemplate_id | int | The unique ID of the Ezsigntemplate | |
| s_ezsigntemplatedocument_name | str | The name of the Ezsigntemplatedocument. | |
| i_ezsigntemplatedocument_pagetotal | int | The number of pages in the Ezsigntemplatedocument. | |
| i_ezsigntemplatedocument_signaturetotal | int | The number of total signatures in the Ezsigntemplate. | |
| i_ezsigntemplatedocument_formfieldtotal | int | The number of total form fields in the Ezsigntemplate. | |
| b_ezsigntemplatedocument_hassignedsignatures | bool | If the Ezsigntemplatedocument contains signed signatures (From internal or external sources) |
from eZmaxApi.models.ezsigntemplatedocument_response import EzsigntemplatedocumentResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigntemplatedocumentResponse from a JSON string
ezsigntemplatedocument_response_instance = EzsigntemplatedocumentResponse.from_json(json)
# print the JSON string representation of the object
print(EzsigntemplatedocumentResponse.to_json())
# convert the object into a dict
ezsigntemplatedocument_response_dict = ezsigntemplatedocument_response_instance.to_dict()
# create an instance of EzsigntemplatedocumentResponse from a dict
ezsigntemplatedocument_response_from_dict = EzsigntemplatedocumentResponse.from_dict(ezsigntemplatedocument_response_dict)