Response body after uploading a company document.
| 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. |
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)