Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 4.25 KB

EzsigntemplatepublicListElement.md

File metadata and controls

45 lines (36 loc) · 4.25 KB

EzsigntemplatepublicListElement

A Ezsigntemplatepublic List Element

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
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
i_ezsigntemplatepublic_limitexceeded int The limitexceeded of the Ezsigntemplatepublic
dt_ezsigntemplatepublic_limitexceededsince str The limitexceededsince of the Ezsigntemplatepublic
i_ezsignfolder int The total number of Ezsignfolders using the Ezsigntemplatepublic
i_ezsigndocument int The total number of Ezsigndocuments using the Ezsigntemplatepublic
s_ezsigntemplatepublic_ezsigntemplatedescription str The Ezsigntemplate/Ezsigntemplatepackage description

Example

from eZmaxApi.models.ezsigntemplatepublic_list_element import EzsigntemplatepublicListElement

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

# convert the object into a dict
ezsigntemplatepublic_list_element_dict = ezsigntemplatepublic_list_element_instance.to_dict()
# create an instance of EzsigntemplatepublicListElement from a dict
ezsigntemplatepublic_list_element_from_dict = EzsigntemplatepublicListElement.from_dict(ezsigntemplatepublic_list_element_dict)

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