Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.31 KB

File metadata and controls

39 lines (30 loc) · 1.31 KB

IdDocument

Properties

Name Type Description Notes
type str [optional]
first_name str [optional]
last_name str [optional]
country str [optional]
document_number str [optional]
address Address [optional]
dob ModelDate [optional]
issued_date ModelDate [optional]
expiration_date ModelDate [optional]
document_files List[str] [optional]
selfie_file str [optional]

Example

from boldsign.models.id_document import IdDocument

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

# convert the object into a dict
id_document_dict = id_document_instance.to_dict()
# create an instance of IdDocument from a dict
id_document_from_dict = IdDocument.from_dict(id_document_dict)

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