Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 3.66 KB

EzsignsignerResponseCompound.md

File metadata and controls

35 lines (26 loc) · 3.66 KB

EzsignsignerResponseCompound

An Ezsignsigner Object and children to create a complete structure

Properties

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

Example

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_form_dict = ezsignsigner_response_compound.from_dict(ezsignsigner_response_compound_dict)

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