from ideastatica_rcs_api.models.loading import Loading
# TODO update the JSON string below
json = "{}"
# create an instance of Loading from a JSON string
loading_instance = Loading.from_json(json)
# print the JSON string representation of the object
print(loading_instance.to_json())
# convert the object into a dict
loading_dict = loading_instance.to_dict()
# create an instance of Loading from a dict
loading_from_dict = Loading.from_dict(loading_dict)