from pdf_generator_client.models.template_variable_data_options import TemplateVariableDataOptions
# TODO update the JSON string belowjson ="{}"# create an instance of TemplateVariableDataOptions from a JSON stringtemplate_variable_data_options_instance = TemplateVariableDataOptions.from_json(json)# print the JSON string representation of the objectprint(TemplateVariableDataOptions.to_json())# convert the object into a dicttemplate_variable_data_options_dict = template_variable_data_options_instance.to_dict()# create an instance of TemplateVariableDataOptions from a dicttemplate_variable_data_options_from_dict = TemplateVariableDataOptions.from_dict(template_variable_data_options_dict)