from pdf_generator_client.models.template_file import TemplateFile
# TODO update the JSON string belowjson ="{}"# create an instance of TemplateFile from a JSON stringtemplate_file_instance = TemplateFile.from_json(json)# print the JSON string representation of the objectprint(TemplateFile.to_json())# convert the object into a dicttemplate_file_dict = template_file_instance.to_dict()# create an instance of TemplateFile from a dicttemplate_file_from_dict = TemplateFile.from_dict(template_file_dict)