Files
kittycad.py/kittycad/models/solid_info.py
zoo-github-actions-auth[bot] 06a646e558 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>
2025-05-08 12:57:30 -07:00

20 lines
521 B
Python

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=())