from pdf_generator_client.models.update_template_variable_dto import UpdateTemplateVariableDto
# TODO update the JSON string belowjson ="{}"# create an instance of UpdateTemplateVariableDto from a JSON stringupdate_template_variable_dto_instance = UpdateTemplateVariableDto.from_json(json)# print the JSON string representation of the objectprint(UpdateTemplateVariableDto.to_json())# convert the object into a dictupdate_template_variable_dto_dict = update_template_variable_dto_instance.to_dict()# create an instance of UpdateTemplateVariableDto from a dictupdate_template_variable_dto_from_dict = UpdateTemplateVariableDto.from_dict(update_template_variable_dto_dict)