A Ezsigntemplatepublic Object
| 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 |
from eZmaxApi.models.ezsigntemplatepublic_request import EzsigntemplatepublicRequest
# TODO update the JSON string below
json = "{}"
# create an instance of EzsigntemplatepublicRequest from a JSON string
ezsigntemplatepublic_request_instance = EzsigntemplatepublicRequest.from_json(json)
# print the JSON string representation of the object
print(EzsigntemplatepublicRequest.to_json())
# convert the object into a dict
ezsigntemplatepublic_request_dict = ezsigntemplatepublic_request_instance.to_dict()
# create an instance of EzsigntemplatepublicRequest from a dict
ezsigntemplatepublic_request_from_dict = EzsigntemplatepublicRequest.from_dict(ezsigntemplatepublic_request_dict)