A Ezsigntemplate Object and children
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 |
fki_ezdoctemplatedocument_id | int | The unique ID of the Ezdoctemplatedocument | [optional] |
s_ezsigntemplate_description | str | The description of the Ezsigntemplate | |
s_ezsigntemplate_externaldescription | str | The external description of the Ezsigntemplate | [optional] |
t_ezsigntemplate_comment | str | The comment of the Ezsigntemplate | [optional] |
e_ezsigntemplate_recognition | FieldEEzsigntemplateRecognition | [optional] [default to FieldEEzsigntemplateRecognition.NO] | |
s_ezsigntemplate_filenameregexp | str | The filename regexp of the Ezsigntemplate. | [optional] |
b_ezsigntemplate_adminonly | bool | Whether the Ezsigntemplate can be accessed by admin users only (eUserType=Normal) | |
e_ezsigntemplate_type | FieldEEzsigntemplateType |
from eZmaxApi.models.ezsigntemplate_request_compound_v3 import EzsigntemplateRequestCompoundV3
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigntemplateRequestCompoundV3 from a JSON string
ezsigntemplate_request_compound_v3_instance = EzsigntemplateRequestCompoundV3.from_json(json)
# print the JSON string representation of the object
print(EzsigntemplateRequestCompoundV3.to_json())
# convert the object into a dict
ezsigntemplate_request_compound_v3_dict = ezsigntemplate_request_compound_v3_instance.to_dict()
# create an instance of EzsigntemplateRequestCompoundV3 from a dict
ezsigntemplate_request_compound_v3_from_dict = EzsigntemplateRequestCompoundV3.from_dict(ezsigntemplate_request_compound_v3_dict)