11 lines
226 B
Python
11 lines
226 B
Python
from typing import List
|
|
from uuid import UUID
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class PathGetCurveUuidsForVertices(BaseModel):
|
|
"""The response from the `PathGetCurveUuidsForVertices` command."""
|
|
|
|
curve_ids: List[UUID]
|