2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-07-18 12:05:04 -07:00
|
|
|
|
|
|
|
|
|
|
|
class PathGetCurveUuid(BaseModel):
|
|
|
|
"""The response from the `PathGetCurveUuid` command."""
|
|
|
|
|
|
|
|
curve_id: str
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|