Skip to content

Files

Latest commit

 

History

History
37 lines (28 loc) · 1.92 KB

EzdoctemplatedocumentRequest.md

File metadata and controls

37 lines (28 loc) · 1.92 KB

EzdoctemplatedocumentRequest

A Ezdoctemplatedocument Object

Properties

Name Type Description Notes
pki_ezdoctemplatedocument_id int The unique ID of the Ezdoctemplatedocument [optional]
fki_language_id int The unique ID of the Language. Valid values: Value
fki_ezsignfoldertype_id int The unique ID of the Ezsignfoldertype. [optional]
fki_ezdoctemplatetype_id int The unique ID of the Ezdoctemplatetype
fki_ezdoctemplatefieldtypecategory_id int The unique ID of the Ezdoctemplatefieldtypecategory
e_ezdoctemplatedocument_privacylevel FieldEEzdoctemplatedocumentPrivacylevel [optional]
b_ezdoctemplatedocument_isactive bool Whether the ezdoctemplatedocument is active or not
obj_ezdoctemplatedocument_name MultilingualEzdoctemplatedocumentName

Example

from eZmaxApi.models.ezdoctemplatedocument_request import EzdoctemplatedocumentRequest

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

# convert the object into a dict
ezdoctemplatedocument_request_dict = ezdoctemplatedocument_request_instance.to_dict()
# create an instance of EzdoctemplatedocumentRequest from a dict
ezdoctemplatedocument_request_from_dict = EzdoctemplatedocumentRequest.from_dict(ezdoctemplatedocument_request_dict)

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