Request body for uploading a company document.
| Name | Type | Description | Notes |
|---|---|---|---|
| file_classification | str | Classification of the document. | Tipo de archivo |
| content_type | str | MIME type of the file. Allowed values depend on the `file_classification`. - `image/jpeg` - `image/png` - `application/pdf` | |
| international | bool | Indicates if the document is international. Defaults to false. | [optional] |
| file_name | str | Name of the file being uploaded. | |
| file_data | bytearray | Base64 encoded content of the file. |
from conekta.models.company_document_request import CompanyDocumentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CompanyDocumentRequest from a JSON string
company_document_request_instance = CompanyDocumentRequest.from_json(json)
# print the JSON string representation of the object
print(CompanyDocumentRequest.to_json())
# convert the object into a dict
company_document_request_dict = company_document_request_instance.to_dict()
# create an instance of CompanyDocumentRequest from a dict
company_document_request_from_dict = CompanyDocumentRequest.from_dict(company_document_request_dict)