Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

EzsignuserResponseCompound.md

File metadata and controls

33 lines (24 loc) · 1.27 KB

EzsignuserResponseCompound

A Ezsignuser Object

Properties

Name Type Description Notes
pki_ezsignuser_id int The unique ID of the Ezsignuser
fki_contact_id int The unique ID of the Contact
obj_contact ContactResponseCompound
obj_audit CommonAudit

Example

from eZmaxApi.models.ezsignuser_response_compound import EzsignuserResponseCompound

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

# convert the object into a dict
ezsignuser_response_compound_dict = ezsignuser_response_compound_instance.to_dict()
# create an instance of EzsignuserResponseCompound from a dict
ezsignuser_response_compound_from_dict = EzsignuserResponseCompound.from_dict(ezsignuser_response_compound_dict)

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