from ideastatica_connection_api.models.con_template_create_result import ConTemplateCreateResult
# TODO update the JSON string below
json = "{}"
# create an instance of ConTemplateCreateResult from a JSON string
con_template_create_result_instance = ConTemplateCreateResult.from_json(json)
# print the JSON string representation of the object
print(con_template_create_result_instance.to_json())
# convert the object into a dict
con_template_create_result_dict = con_template_create_result_instance.to_dict()
# create an instance of ConTemplateCreateResult from a dict
con_template_create_result_from_dict = ConTemplateCreateResult.from_dict(con_template_create_result_dict)