Files
kittycad.py/kittycad/models/path_get_curve_uuid.py
zoo-github-actions-auth[bot] 40e278a550 Update api spec (#237)
* YOYO NEW API SPEC!

* I have generated the latest API!

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-07-18 12:05:04 -07:00

12 lines
217 B
Python

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