from ideastatica_rcs_api.models.result_of_loading import ResultOfLoading
# TODO update the JSON string below
json = "{}"
# create an instance of ResultOfLoading from a JSON string
result_of_loading_instance = ResultOfLoading.from_json(json)
# print the JSON string representation of the object
print(result_of_loading_instance.to_json())
# convert the object into a dict
result_of_loading_dict = result_of_loading_instance.to_dict()
# create an instance of ResultOfLoading from a dict
result_of_loading_from_dict = ResultOfLoading.from_dict(result_of_loading_dict)