from pdf_generator_client.models.create_template_variable_dto import CreateTemplateVariableDto
# TODO update the JSON string belowjson ="{}"# create an instance of CreateTemplateVariableDto from a JSON stringcreate_template_variable_dto_instance = CreateTemplateVariableDto.from_json(json)# print the JSON string representation of the objectprint(CreateTemplateVariableDto.to_json())# convert the object into a dictcreate_template_variable_dto_dict = create_template_variable_dto_instance.to_dict()# create an instance of CreateTemplateVariableDto from a dictcreate_template_variable_dto_from_dict = CreateTemplateVariableDto.from_dict(create_template_variable_dto_dict)