from ideastatica_connection_api.models.base_template_conversion import BaseTemplateConversion
# TODO update the JSON string below
json = "{}"
# create an instance of BaseTemplateConversion from a JSON string
base_template_conversion_instance = BaseTemplateConversion.from_json(json)
# print the JSON string representation of the object
print(base_template_conversion_instance.to_json())
# convert the object into a dict
base_template_conversion_dict = base_template_conversion_instance.to_dict()
# create an instance of BaseTemplateConversion from a dict
base_template_conversion_from_dict = BaseTemplateConversion.from_dict(base_template_conversion_dict)