Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.69 KB

EzsigntemplateRequestV2.md

File metadata and controls

36 lines (27 loc) · 1.69 KB

EzsigntemplateRequestV2

A Ezsigntemplate Object

Properties

Name Type Description Notes
pki_ezsigntemplate_id int The unique ID of the Ezsigntemplate [optional]
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype. [optional]
fki_language_id int The unique ID of the Language. Valid values: Value
s_ezsigntemplate_description str The description of the Ezsigntemplate
s_ezsigntemplate_filenamepattern str The filename pattern of the Ezsigntemplate [optional]
b_ezsigntemplate_adminonly bool Whether the Ezsigntemplate can be accessed by admin users only (eUserType=Normal)
e_ezsigntemplate_type FieldEEzsigntemplateType

Example

from eZmaxApi.models.ezsigntemplate_request_v2 import EzsigntemplateRequestV2

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

# convert the object into a dict
ezsigntemplate_request_v2_dict = ezsigntemplate_request_v2_instance.to_dict()
# create an instance of EzsigntemplateRequestV2 from a dict
ezsigntemplate_request_v2_form_dict = ezsigntemplate_request_v2.from_dict(ezsigntemplate_request_v2_dict)

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