from pdf_generator_client.models.template_files_response_dto import TemplateFilesResponseDto
# TODO update the JSON string belowjson ="{}"# create an instance of TemplateFilesResponseDto from a JSON stringtemplate_files_response_dto_instance = TemplateFilesResponseDto.from_json(json)# print the JSON string representation of the objectprint(TemplateFilesResponseDto.to_json())# convert the object into a dicttemplate_files_response_dto_dict = template_files_response_dto_instance.to_dict()# create an instance of TemplateFilesResponseDto from a dicttemplate_files_response_dto_from_dict = TemplateFilesResponseDto.from_dict(template_files_response_dto_dict)