from pdf_generator_client.models.file_list_result_dto_entries_inner import FileListResultDtoEntriesInner
# TODO update the JSON string belowjson ="{}"# create an instance of FileListResultDtoEntriesInner from a JSON stringfile_list_result_dto_entries_inner_instance = FileListResultDtoEntriesInner.from_json(json)# print the JSON string representation of the objectprint(FileListResultDtoEntriesInner.to_json())# convert the object into a dictfile_list_result_dto_entries_inner_dict = file_list_result_dto_entries_inner_instance.to_dict()# create an instance of FileListResultDtoEntriesInner from a dictfile_list_result_dto_entries_inner_from_dict = FileListResultDtoEntriesInner.from_dict(file_list_result_dto_entries_inner_dict)