Table of Contents

ReinforcedCrossSection

Properties

Name Type Description Notes
name str [optional]
cross_section ReferenceElement [optional]
bars List[ReinforcedBar] [optional]
stirrups List[Stirrup] [optional]
tendon_bars List[TendonBar] [optional]
tendon_ducts List[TendonDuct] [optional]
id int [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]