from pdf_generator_client.models.template_variable import TemplateVariable
# TODO update the JSON string belowjson ="{}"# create an instance of TemplateVariable from a JSON stringtemplate_variable_instance = TemplateVariable.from_json(json)# print the JSON string representation of the objectprint(TemplateVariable.to_json())# convert the object into a dicttemplate_variable_dict = template_variable_instance.to_dict()# create an instance of TemplateVariable from a dicttemplate_variable_from_dict = TemplateVariable.from_dict(template_variable_dict)