Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 3.41 KB

EzsignsignerResponse.md

File metadata and controls

34 lines (25 loc) · 3.41 KB

EzsignsignerResponse

An Ezsignsigner Object

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

Example

from eZmaxApi.models.ezsignsigner_response import EzsignsignerResponse

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

# convert the object into a dict
ezsignsigner_response_dict = ezsignsigner_response_instance.to_dict()
# create an instance of EzsignsignerResponse from a dict
ezsignsigner_response_form_dict = ezsignsigner_response.from_dict(ezsignsigner_response_dict)

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