Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

EzsignuserRequest

A Ezsignuser Object

Properties

Name Type Description Notes
pki_ezsignuser_id int The unique ID of the Ezsignuser [optional]
fki_contact_id int The unique ID of the Contact
obj_contact ContactRequestCompoundV2

Example

from eZmaxApi.models.ezsignuser_request import EzsignuserRequest

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

# convert the object into a dict
ezsignuser_request_dict = ezsignuser_request_instance.to_dict()
# create an instance of EzsignuserRequest from a dict
ezsignuser_request_from_dict = EzsignuserRequest.from_dict(ezsignuser_request_dict)

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