TemplateFilesResponseDto

Properties

NameTypeDescriptionNotes
file_namestrFilename as stored in the template
originalnamestrOriginal filename from upload
mimetypestrMIME type of the uploaded file
sizefloatFile size in bytes
e_tagstrETag for the uploaded file
locationstrStorage location of the file

Example

from pdf_generator_client.models.template_files_response_dto import TemplateFilesResponseDto

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

# convert the object into a dict
template_files_response_dto_dict = template_files_response_dto_instance.to_dict()
# create an instance of TemplateFilesResponseDto from a dict
template_files_response_dto_from_dict = TemplateFilesResponseDto.from_dict(template_files_response_dto_dict)

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