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