Table of Contents

CheckResPlate

Check value for Plate

Properties

Name Type Description Notes
name str Name of Plate [optional]
check_status bool Status of the Check [optional]
load_case_id int Id of Load Case [optional]
max_strain float Max Strain [optional]
max_stress float Max Stress [optional]
items List[int] In case of presentation of groups plates (uncoiled beams) [optional]

Example

from ideastatica_connection_api.models.check_res_plate import CheckResPlate

# TODO update the JSON string below
json = "{}"
# create an instance of CheckResPlate from a JSON string
check_res_plate_instance = CheckResPlate.from_json(json)
# print the JSON string representation of the object
print(check_res_plate_instance.to_json())

# convert the object into a dict
check_res_plate_dict = check_res_plate_instance.to_dict()
# create an instance of CheckResPlate from a dict
check_res_plate_from_dict = CheckResPlate.from_dict(check_res_plate_dict)

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