PlateData
Provides data of the single plate
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Name of the plate | [optional] |
| thickness | float | Thickness of the plate | [optional] |
| material | str | Name of the material | [optional] |
| outline_points | List[Point2D] | Outline points | [optional] |
| origin | Point3D | [optional] | |
| axis_x | Vector3D | [optional] | |
| axis_y | Vector3D | [optional] | |
| axis_z | Vector3D | [optional] | |
| region | str | Geometry of the plate in svg format. In next version will be mark as OBSOLETE! New use property Geometry | [optional] |
| geometry | Region2D | [optional] | |
| original_model_id | str | Get or set the identification in the original model In the case of the imported connection from another application | [optional] |
| is_negative_object | bool | Is negative object | [optional] |
| id | int | Element Id | [optional] |
Example
from ideastatica_connection_api.models.plate_data import PlateData
# TODO update the JSON string below
json = "{}"
# create an instance of PlateData from a JSON string
plate_data_instance = PlateData.from_json(json)
# print the JSON string representation of the object
print(plate_data_instance.to_json())
# convert the object into a dict
plate_data_dict = plate_data_instance.to_dict()
# create an instance of PlateData from a dict
plate_data_from_dict = PlateData.from_dict(plate_data_dict)