Files
kittycad.py/kittycad/models/loft.py
zoo-github-actions-auth[bot] d2e9b0b865 Update api spec (#261)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-08-26 14:46:20 -07:00

12 lines
193 B
Python

from pydantic import BaseModel, ConfigDict
class Loft(BaseModel):
"""The response from the `Loft` command."""
solid_id: str
model_config = ConfigDict(protected_namespaces=())