Source code for kittycad.models.path_get_curve_uuid
from pydantic import BaseModel, ConfigDict
[docs]
class PathGetCurveUuid(BaseModel):
"""The response from the `PathGetCurveUuid` command."""
curve_id: str
model_config = ConfigDict(protected_namespaces=())