Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 1.34 KB

File metadata and controls

31 lines (24 loc) · 1.34 KB

FileListDto

Properties

Name Type Description Notes
files List[FileDto] [optional]
current_folder str [optional]
encoded_current_folder str [optional]
root_folder bool [optional]
last_changed_files List[FileDto] [optional]

Example

from phrasetms_client.models.file_list_dto import FileListDto

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

# convert the object into a dict
file_list_dto_dict = file_list_dto_instance.to_dict()
# create an instance of FileListDto from a dict
file_list_dto_from_dict = FileListDto.from_dict(file_list_dto_dict)

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