Update api spec (#439)
* 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
ed50b95b1e
commit
243ae12ed3
17
kittycad/models/adjacency_info.py
Normal file
17
kittycad/models/adjacency_info.py
Normal file
@ -0,0 +1,17 @@
|
||||
from typing import Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
from ..models.edge_info import EdgeInfo
|
||||
|
||||
|
||||
class AdjacencyInfo(BaseModel):
|
||||
"""Edge info struct (useful for maintaining mappings between edges and faces and adjacent/opposite edges)."""
|
||||
|
||||
adjacent_info: Optional[EdgeInfo] = None
|
||||
|
||||
opposite_info: Optional[EdgeInfo] = None
|
||||
|
||||
original_info: Optional[EdgeInfo] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user