ConnectionCheckRes
Results for connection in project
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| check_res_summary | List[CheckResSummary] | List of CheckResSummary | [optional] |
| check_res_plate | List[CheckResPlate] | List of check results for plates | [optional] |
| check_res_weld | List[CheckResWeld] | List of check results for welds | [optional] |
| check_res_bolt | List[CheckResBolt] | List of check results for bolts | [optional] |
| check_res_anchor | List[CheckResAnchor] | List of check results for anchors | [optional] |
| check_res_concrete_block | List[CheckResConcreteBlock] | List of check results for concrete blocks | [optional] |
| buckling_results | List[BucklingRes] | List of results of buckling analysis | [optional] |
| name | str | Name of connection | [optional] |
| connection_id | str | Guid of connection | [optional] |
| id | int | Integer Id of connection | [optional] |
| messages | OpenMessages | [optional] |
Example
from ideastatica_connection_api.models.connection_check_res import ConnectionCheckRes
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionCheckRes from a JSON string
connection_check_res_instance = ConnectionCheckRes.from_json(json)
# print the JSON string representation of the object
print(connection_check_res_instance.to_json())
# convert the object into a dict
connection_check_res_dict = connection_check_res_instance.to_dict()
# create an instance of ConnectionCheckRes from a dict
connection_check_res_from_dict = ConnectionCheckRes.from_dict(connection_check_res_dict)