2023-11-28 23:50:50 -08:00
|
|
|
from typing import List
|
|
|
|
from uuid import UUID
|
2022-04-06 22:41:11 -07:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
from pydantic import BaseModel
|
2022-04-06 22:41:11 -07:00
|
|
|
|
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class PathGetCurveUuidsForVertices(BaseModel):
|
|
|
|
"""The response from the `PathGetCurveUuidsForVertices` command."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
curve_ids: List[UUID]
|