Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.41 KB

EzsigntemplateglobalsignerResponse.md

File metadata and controls

32 lines (23 loc) · 1.41 KB

EzsigntemplateglobalsignerResponse

A Ezsigntemplateglobalsigner Object

Properties

Name Type Description Notes
pki_ezsigntemplateglobalsigner_id int The unique ID of the Ezsigntemplateglobalsigner
fki_ezsigntemplateglobal_id int The unique ID of the Ezsigntemplateglobal
s_ezsigntemplateglobalsigner_description str The description of the Ezsigntemplateglobalsigner

Example

from eZmaxApi.models.ezsigntemplateglobalsigner_response import EzsigntemplateglobalsignerResponse

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

# convert the object into a dict
ezsigntemplateglobalsigner_response_dict = ezsigntemplateglobalsigner_response_instance.to_dict()
# create an instance of EzsigntemplateglobalsignerResponse from a dict
ezsigntemplateglobalsigner_response_form_dict = ezsigntemplateglobalsigner_response.from_dict(ezsigntemplateglobalsigner_response_dict)

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