from ideastatica_connection_api.models.con_load_effect import ConLoadEffect
# TODO update the JSON string below
json = "{}"
# create an instance of ConLoadEffect from a JSON string
con_load_effect_instance = ConLoadEffect.from_json(json)
# print the JSON string representation of the object
print(con_load_effect_instance.to_json())
# convert the object into a dict
con_load_effect_dict = con_load_effect_instance.to_dict()
# create an instance of ConLoadEffect from a dict
con_load_effect_from_dict = ConLoadEffect.from_dict(con_load_effect_dict)