Files
kittycad.py/kittycad/models/solid3d_fillet_edge.py

8 lines
199 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class Solid3dFilletEdge(BaseModel):
"""The response from the `Solid3dFilletEdge` endpoint."""
model_config = ConfigDict(protected_namespaces=())