Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 2.45 KB

File metadata and controls

31 lines (22 loc) · 2.45 KB

CompanyResponseDocumentsInner

Properties

Name Type Description Notes
file_classification str Classification of the document. Tipo de archivo
status str The status of the document. [optional]
file_name str The name of the file. [optional]

Example

from conekta.models.company_response_documents_inner import CompanyResponseDocumentsInner

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

# convert the object into a dict
company_response_documents_inner_dict = company_response_documents_inner_instance.to_dict()
# create an instance of CompanyResponseDocumentsInner from a dict
company_response_documents_inner_from_dict = CompanyResponseDocumentsInner.from_dict(company_response_documents_inner_dict)

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