from ideastatica_rcs_api.models.concrete_check_result import ConcreteCheckResult
# TODO update the JSON string below
json = "{}"
# create an instance of ConcreteCheckResult from a JSON string
concrete_check_result_instance = ConcreteCheckResult.from_json(json)
# print the JSON string representation of the object
print(concrete_check_result_instance.to_json())
# convert the object into a dict
concrete_check_result_dict = concrete_check_result_instance.to_dict()
# create an instance of ConcreteCheckResult from a dict
concrete_check_result_from_dict = ConcreteCheckResult.from_dict(concrete_check_result_dict)