An Ezsignsigner Object and children to create a complete structure
Name | Type | Description | Notes |
---|---|---|---|
pki_ezsignsigner_id | int | The unique ID of the Ezsignsigner | |
fki_taxassignment_id | int | The unique ID of the Taxassignment. Valid values: | Value |
fki_secretquestion_id | int | The unique ID of the Secretquestion. Valid values: | Value |
fki_userlogintype_id | int | The unique ID of the Userlogintype Valid values: | Value |
s_userlogintype_description_x | str | The description of the Userlogintype in the language of the requester | |
obj_contact | EzsignsignerResponseCompoundContact |
from eZmaxApi.models.ezsignsigner_response_compound import EzsignsignerResponseCompound
# TODO update the JSON string below
json = "{}"
# create an instance of EzsignsignerResponseCompound from a JSON string
ezsignsigner_response_compound_instance = EzsignsignerResponseCompound.from_json(json)
# print the JSON string representation of the object
print(EzsignsignerResponseCompound.to_json())
# convert the object into a dict
ezsignsigner_response_compound_dict = ezsignsigner_response_compound_instance.to_dict()
# create an instance of EzsignsignerResponseCompound from a dict
ezsignsigner_response_compound_from_dict = EzsignsignerResponseCompound.from_dict(ezsignsigner_response_compound_dict)