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
19
kittycad/models/solid_info.py
Normal file
19
kittycad/models/solid_info.py
Normal file
@ -0,0 +1,19 @@
|
||||
from typing import Dict, List, Optional
|
||||
|
||||
from pydantic import BaseModel, ConfigDict
|
||||
|
||||
from ..models.complementary_edges import ComplementaryEdges
|
||||
|
||||
|
||||
class SolidInfo(BaseModel):
|
||||
"""Solid info struct (useful for maintaining mappings between edges and faces and adjacent/opposite edges)."""
|
||||
|
||||
bottom_cap_id: Optional[str] = None
|
||||
|
||||
common_edges: Dict[str, List[str]]
|
||||
|
||||
complementary_edges: Dict[str, ComplementaryEdges]
|
||||
|
||||
top_cap_id: Optional[str] = None
|
||||
|
||||
model_config = ConfigDict(protected_namespaces=())
|
Reference in New Issue
Block a user