Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 4.98 KB

EzsigntemplatepublicResponseCompound.md

File metadata and controls

48 lines (39 loc) · 4.98 KB

EzsigntemplatepublicResponseCompound

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]
a_obj_ezsignfolderezsigntemplatepublic List[CustomEzsignfolderezsigntemplatepublicResponse]

Example

from eZmaxApi.models.ezsigntemplatepublic_response_compound import EzsigntemplatepublicResponseCompound

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

# convert the object into a dict
ezsigntemplatepublic_response_compound_dict = ezsigntemplatepublic_response_compound_instance.to_dict()
# create an instance of EzsigntemplatepublicResponseCompound from a dict
ezsigntemplatepublic_response_compound_from_dict = EzsigntemplatepublicResponseCompound.from_dict(ezsigntemplatepublic_response_compound_dict)

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