Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 2.01 KB

EzsigntemplateglobalResponse.md

File metadata and controls

39 lines (30 loc) · 2.01 KB

EzsigntemplateglobalResponse

A Ezsigntemplateglobal Object

Properties

Name Type Description Notes
pki_ezsigntemplateglobal_id int The unique ID of the Ezsigntemplateglobal
fki_ezsigntemplateglobaldocument_id int The unique ID of the Ezsigntemplateglobaldocument
fki_module_id int The unique ID of the Module
s_module_name_x str The Name of the Module in the language of the requester [optional]
fki_language_id int The unique ID of the Language. Valid values: Value
s_language_name_x str The Name of the Language in the language of the requester
e_ezsigntemplateglobal_module FieldEEzsigntemplateglobalModule
e_ezsigntemplateglobal_supplier FieldEEzsigntemplateglobalSupplier
s_ezsigntemplateglobal_code str The Code of the Ezsigntemplateglobal
s_ezsigntemplateglobal_description str The description of the Ezsigntemplate

Example

from eZmaxApi.models.ezsigntemplateglobal_response import EzsigntemplateglobalResponse

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

# convert the object into a dict
ezsigntemplateglobal_response_dict = ezsigntemplateglobal_response_instance.to_dict()
# create an instance of EzsigntemplateglobalResponse from a dict
ezsigntemplateglobal_response_form_dict = ezsigntemplateglobal_response.from_dict(ezsigntemplateglobal_response_dict)

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