Skip to content

Files

Latest commit

 

History

History
47 lines (38 loc) · 4.72 KB

EzsigntemplatepublicResponse.md

File metadata and controls

47 lines (38 loc) · 4.72 KB

EzsigntemplatepublicResponse

A Ezsigntemplatepublic Object

Properties

Name Type Description Notes
pki_ezsigntemplatepublic_id int The unique ID of the Ezsigntemplatepublic
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
s_ezsignfoldertype_name_x str The name of the Ezsignfoldertype in the language of the requester
fki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
s_userlogintype_description_x str The description of the Userlogintype in the language of the requester
fki_ezsigntemplate_id int The unique ID of the Ezsigntemplate [optional]
fki_ezsigntemplatepackage_id int The unique ID of the Ezsigntemplatepackage [optional]
s_ezsigntemplatepublic_description str The description of the Ezsigntemplatepublic
s_ezsigntemplatepublic_referenceid str The referenceid of the Ezsigntemplatepublic
b_ezsigntemplatepublic_isactive bool Whether the ezsigntemplatepublic is active or not
t_ezsigntemplatepublic_note str The note of the Ezsigntemplatepublic
e_ezsigntemplatepublic_limittype FieldEEzsigntemplatepublicLimittype
i_ezsigntemplatepublic_limit int The limit of the Ezsigntemplatepublic
i_ezsigntemplatepublic_limitexceeded int The limitexceeded of the Ezsigntemplatepublic
dt_ezsigntemplatepublic_limitexceededsince str The limitexceededsince of the Ezsigntemplatepublic
s_ezsigntemplatepublic_url str The url of the Ezsigntemplatepublic You can add these value as query parameters to prefill the corresponding role Parameter
s_ezsigntemplatepublic_ezsigntemplatedescription str The Ezsigntemplate/Ezsigntemplatepackage description
obj_audit CommonAudit [optional]

Example

from eZmaxApi.models.ezsigntemplatepublic_response import EzsigntemplatepublicResponse

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

# convert the object into a dict
ezsigntemplatepublic_response_dict = ezsigntemplatepublic_response_instance.to_dict()
# create an instance of EzsigntemplatepublicResponse from a dict
ezsigntemplatepublic_response_from_dict = EzsigntemplatepublicResponse.from_dict(ezsigntemplatepublic_response_dict)

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