from pdf_generator_client.models.file_list_result_dto import FileListResultDto
# TODO update the JSON string belowjson ="{}"# create an instance of FileListResultDto from a JSON stringfile_list_result_dto_instance = FileListResultDto.from_json(json)# print the JSON string representation of the objectprint(FileListResultDto.to_json())# convert the object into a dictfile_list_result_dto_dict = file_list_result_dto_instance.to_dict()# create an instance of FileListResultDto from a dictfile_list_result_dto_from_dict = FileListResultDto.from_dict(file_list_result_dto_dict)