FileUploadResponse
Resposta devolvida após o upload de arquivo(s).
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| original_name | List[str] | Nome(s) original(is) do(s) arquivo(s) enviado(s). | |
| relative_path | str | Caminho relativo onde o(s) arquivo(s) foi(foram) armazenado(s) no servidor. | |
| size_bytes | int | Tamanho total, em bytes, dos arquivos enviados. |
Example
from pldpro_sdk.api_client.models.file_upload_response import FileUploadResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FileUploadResponse from a JSON string
file_upload_response_instance = FileUploadResponse.from_json(json)
# print the JSON string representation of the object
print(FileUploadResponse.to_json())
# convert the object into a dict
file_upload_response_dict = file_upload_response_instance.to_dict()
# create an instance of FileUploadResponse from a dict
file_upload_response_from_dict = FileUploadResponse.from_dict(file_upload_response_dict)