from ideastatica_rcs_api.models.section_concrete_check_result import SectionConcreteCheckResult
# TODO update the JSON string below
json = "{}"
# create an instance of SectionConcreteCheckResult from a JSON string
section_concrete_check_result_instance = SectionConcreteCheckResult.from_json(json)
# print the JSON string representation of the object
print(section_concrete_check_result_instance.to_json())
# convert the object into a dict
section_concrete_check_result_dict = section_concrete_check_result_instance.to_dict()
# create an instance of SectionConcreteCheckResult from a dict
section_concrete_check_result_from_dict = SectionConcreteCheckResult.from_dict(section_concrete_check_result_dict)