Files
kittycad.py/kittycad/models/extrude.py

8 lines
179 B
Python
Raw Normal View History

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