Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.81 KB

EzsigntemplatepackageRequestCompound.md

File metadata and controls

35 lines (26 loc) · 1.81 KB

EzsigntemplatepackageRequestCompound

A Ezsigntemplatepackage Object and children

Properties

Name Type Description Notes
pki_ezsigntemplatepackage_id int The unique ID of the Ezsigntemplatepackage [optional]
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype.
fki_language_id int The unique ID of the Language. Valid values: Value
s_ezsigntemplatepackage_description str The description of the Ezsigntemplatepackage
b_ezsigntemplatepackage_adminonly bool Whether the Ezsigntemplatepackage can be accessed by admin users only (eUserType=Normal)
b_ezsigntemplatepackage_isactive bool Whether the Ezsigntemplatepackage is active or not

Example

from eZmaxApi.models.ezsigntemplatepackage_request_compound import EzsigntemplatepackageRequestCompound

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

# convert the object into a dict
ezsigntemplatepackage_request_compound_dict = ezsigntemplatepackage_request_compound_instance.to_dict()
# create an instance of EzsigntemplatepackageRequestCompound from a dict
ezsigntemplatepackage_request_compound_form_dict = ezsigntemplatepackage_request_compound.from_dict(ezsigntemplatepackage_request_compound_dict)

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