Update api spec (#370)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
64befa5559
commit
f232b907e1
13
kittycad/models/project_entity_to_plane.py
Normal file
13
kittycad/models/project_entity_to_plane.py
Normal file
@ -0,0 +1,13 @@
|
||||
from typing import List
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
from ..models.point3d import Point3d
|
||||
|
||||
|
||||
class ProjectEntityToPlane(BaseModel):
|
||||
"""The response from the `ProjectEntityToPlane` command."""
|
||||
|
||||
projected_points: List[Point3d]
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user