Files
kittycad.py/kittycad/models/path_get_curve_uuid.py

10 lines
215 B
Python
Raw Normal View History

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