ListDocumentsResponseDtoEntriesInner

Properties

NameTypeDescriptionNotes
idintDocument ID[optional]
namestrDocument filename[optional]
sizeintFile size in bytes[optional]
last_modifieddatetimeLast modified timestamp[optional]
templateListDocumentsResponseDtoEntriesInnerTemplate[optional]

Example

from pdf_generator_client.models.list_documents_response_dto_entries_inner import ListDocumentsResponseDtoEntriesInner

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

# convert the object into a dict
list_documents_response_dto_entries_inner_dict = list_documents_response_dto_entries_inner_instance.to_dict()
# create an instance of ListDocumentsResponseDtoEntriesInner from a dict
list_documents_response_dto_entries_inner_from_dict = ListDocumentsResponseDtoEntriesInner.from_dict(list_documents_response_dto_entries_inner_dict)

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