ConnectionData
Provides data of the connection
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| connection_point | ReferenceElement | [optional] | |
| beams | List[BeamData] | Connected beams | [optional] |
| plates | List[PlateData] | Plates of the connection | [optional] |
| folded_plates | List[FoldedPlateData] | Folded plate of the connection | [optional] |
| bolt_grids | List[BoltGrid] | Bolt grids which belongs to the connection | [optional] |
| anchor_grids | List[AnchorGrid] | Anchor grids which belongs to the connection | [optional] |
| pin_grids | List[PinGrid] | Pin grids which belongs to the connection | [optional] |
| welds | List[WeldData] | Welds of the connection | [optional] |
| concrete_blocks | List[ConcreteBlockData] | ConcreteBlocksof the connection | [optional] |
| cut_beam_by_beams | List[CutBeamByBeamData] | cut beam by beams | [optional] |
Example
from ideastatica_connection_api.models.connection_data import ConnectionData
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionData from a JSON string
connection_data_instance = ConnectionData.from_json(json)
# print the JSON string representation of the object
print(connection_data_instance.to_json())
# convert the object into a dict
connection_data_dict = connection_data_instance.to_dict()
# create an instance of ConnectionData from a dict
connection_data_from_dict = ConnectionData.from_dict(connection_data_dict)