Pular para conteúdo

UploadTrocasArquivosResponse

Properties

Name Type Description Notes
tipo str
quantidade_trocas int Quantidade de itens processados.
arquivos_recebidos List[str] Lista dos nomes finais registrados internamente após a renomeação da API.
entrada_atualizada bool Indica se a entrada do caso foi atualizada.

Example

from pldpro_sdk.api_client.models.upload_trocas_arquivos_response import UploadTrocasArquivosResponse

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

# convert the object into a dict
upload_trocas_arquivos_response_dict = upload_trocas_arquivos_response_instance.to_dict()
# create an instance of UploadTrocasArquivosResponse from a dict
upload_trocas_arquivos_response_from_dict = UploadTrocasArquivosResponse.from_dict(upload_trocas_arquivos_response_dict)
[Back to Model list] [Back to API list] [Back to README]