FileListResultDto

Properties

NameTypeDescriptionNotes
entriesList[FileListResultDtoEntriesInner]List of file entries
has_moreboolWhether there are more results available
start_offsetobjectPagination offset for the next page
prefixstrCommon prefix for all listed files

Example

from pdf_generator_client.models.file_list_result_dto import FileListResultDto

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

# convert the object into a dict
file_list_result_dto_dict = file_list_result_dto_instance.to_dict()
# create an instance of FileListResultDto from a dict
file_list_result_dto_from_dict = FileListResultDto.from_dict(file_list_result_dto_dict)

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