Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 3.69 KB

EzsigntemplatepublicRequestCompound.md

File metadata and controls

39 lines (30 loc) · 3.69 KB

EzsigntemplatepublicRequestCompound

A Ezsigntemplatepublic Object and children

Properties

Name Type Description Notes
pki_ezsigntemplatepublic_id int The unique ID of the Ezsigntemplatepublic [optional]
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
fki_userlogintype_id int The unique ID of the Userlogintype Valid values: Value
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
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

Example

from eZmaxApi.models.ezsigntemplatepublic_request_compound import EzsigntemplatepublicRequestCompound

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

# convert the object into a dict
ezsigntemplatepublic_request_compound_dict = ezsigntemplatepublic_request_compound_instance.to_dict()
# create an instance of EzsigntemplatepublicRequestCompound from a dict
ezsigntemplatepublic_request_compound_from_dict = EzsigntemplatepublicRequestCompound.from_dict(ezsigntemplatepublic_request_compound_dict)

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