Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.16 KB

File metadata and controls

33 lines (24 loc) · 1.16 KB

EzsignuserResponse

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 import EzsignuserResponse

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

# convert the object into a dict
ezsignuser_response_dict = ezsignuser_response_instance.to_dict()
# create an instance of EzsignuserResponse from a dict
ezsignuser_response_from_dict = EzsignuserResponse.from_dict(ezsignuser_response_dict)

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