from ideastatica_connection_api.models.con_cross_section_geometry import ConCrossSectionGeometry
# TODO update the JSON string below
json = "{}"
# create an instance of ConCrossSectionGeometry from a JSON string
con_cross_section_geometry_instance = ConCrossSectionGeometry.from_json(json)
# print the JSON string representation of the object
print(con_cross_section_geometry_instance.to_json())
# convert the object into a dict
con_cross_section_geometry_dict = con_cross_section_geometry_instance.to_dict()
# create an instance of ConCrossSectionGeometry from a dict
con_cross_section_geometry_from_dict = ConCrossSectionGeometry.from_dict(con_cross_section_geometry_dict)