Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 2.41 KB

File metadata and controls

32 lines (23 loc) · 2.41 KB

CompanyDocumentResponse

Response body after uploading a company document.

Properties

Name Type Description Notes
file_classification str Classification of the document. Tipo de archivo
file_name str Name of the file as stored or processed.
status str Current status of the document.

Example

from conekta.models.company_document_response import CompanyDocumentResponse

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

# convert the object into a dict
company_document_response_dict = company_document_response_instance.to_dict()
# create an instance of CompanyDocumentResponse from a dict
company_document_response_from_dict = CompanyDocumentResponse.from_dict(company_document_response_dict)

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