from ideastatica_rcs_api.models.reinforced_cross_section import ReinforcedCrossSection
# TODO update the JSON string below
json = "{}"
# create an instance of ReinforcedCrossSection from a JSON string
reinforced_cross_section_instance = ReinforcedCrossSection.from_json(json)
# print the JSON string representation of the object
print(reinforced_cross_section_instance.to_json())
# convert the object into a dict
reinforced_cross_section_dict = reinforced_cross_section_instance.to_dict()
# create an instance of ReinforcedCrossSection from a dict
reinforced_cross_section_from_dict = ReinforcedCrossSection.from_dict(reinforced_cross_section_dict)