Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.45 KB

EzsignsignergroupResponseCompound.md

File metadata and controls

32 lines (23 loc) · 1.45 KB

EzsignsignergroupResponseCompound

An Ezsignsignergroup Object

Properties

Name Type Description Notes
pki_ezsignsignergroup_id int The unique ID of the Ezsignsignergroup
obj_ezsignsignergroup_description MultilingualEzsignsignergroupDescription
s_ezsignsignergroup_description_x str The Description of the Ezsignsignergroup in the language of the requester [optional]

Example

from eZmaxApi.models.ezsignsignergroup_response_compound import EzsignsignergroupResponseCompound

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

# convert the object into a dict
ezsignsignergroup_response_compound_dict = ezsignsignergroup_response_compound_instance.to_dict()
# create an instance of EzsignsignergroupResponseCompound from a dict
ezsignsignergroup_response_compound_from_dict = EzsignsignergroupResponseCompound.from_dict(ezsignsignergroup_response_compound_dict)

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