Update api spec (#298)
* 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
863f97277f
commit
75827098b2
11
kittycad/models/solid3d_get_common_edge.py
Normal file
11
kittycad/models/solid3d_get_common_edge.py
Normal file
@ -0,0 +1,11 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class Solid3dGetCommonEdge(BaseModel):
|
||||
"""The response from the `Solid3DGetCommonEdge` command."""
|
||||
|
||||
edge: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user