Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.45 KB

EzsignsigningreasonResponseCompound.md

File metadata and controls

32 lines (23 loc) · 1.45 KB

EzsignsigningreasonResponseCompound

A Ezsignsigningreason Object

Properties

Name Type Description Notes
pki_ezsignsigningreason_id int The unique ID of the Ezsignsigningreason
obj_ezsignsigningreason_description MultilingualEzsignsigningreasonDescription
b_ezsignsigningreason_isactive bool Whether the ezsignsigningreason is active or not

Example

from eZmaxApi.models.ezsignsigningreason_response_compound import EzsignsigningreasonResponseCompound

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

# convert the object into a dict
ezsignsigningreason_response_compound_dict = ezsignsigningreason_response_compound_instance.to_dict()
# create an instance of EzsignsigningreasonResponseCompound from a dict
ezsignsigningreason_response_compound_form_dict = ezsignsigningreason_response_compound.from_dict(ezsignsigningreason_response_compound_dict)

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