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

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-06-17 07:50:42 -07:00

12 lines
202 B
Python

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