Update api spec (#433)
* 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
2fd4d315db
commit
06a646e558
13
kittycad/models/complementary_edges.py
Normal file
13
kittycad/models/complementary_edges.py
Normal file
@ -0,0 +1,13 @@
|
||||
from typing import List, Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
|
||||
class ComplementaryEdges(BaseModel):
|
||||
"""Struct to contain the edge information of a wall of an extrude/rotate/loft/sweep."""
|
||||
|
||||
adjacent_ids: List[str]
|
||||
|
||||
opposite_id: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user