from pdf_generator_client.models.template_variable_list_response_dto import TemplateVariableListResponseDto
# TODO update the JSON string belowjson ="{}"# create an instance of TemplateVariableListResponseDto from a JSON stringtemplate_variable_list_response_dto_instance = TemplateVariableListResponseDto.from_json(json)# print the JSON string representation of the objectprint(TemplateVariableListResponseDto.to_json())# convert the object into a dicttemplate_variable_list_response_dto_dict = template_variable_list_response_dto_instance.to_dict()# create an instance of TemplateVariableListResponseDto from a dicttemplate_variable_list_response_dto_from_dict = TemplateVariableListResponseDto.from_dict(template_variable_list_response_dto_dict)