Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 985 Bytes

File metadata and controls

32 lines (23 loc) · 985 Bytes

IdReport

Properties

Name Type Description Notes
verification_result str [optional]
verified_date datetime [optional]
error Error [optional]
document IdDocument [optional]

Example

from boldsign.models.id_report import IdReport

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

# convert the object into a dict
id_report_dict = id_report_instance.to_dict()
# create an instance of IdReport from a dict
id_report_from_dict = IdReport.from_dict(id_report_dict)

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