2023-11-28 23:50:50 -08:00
|
|
|
from typing import List
|
2023-01-27 14:50:50 -08:00
|
|
|
|
2024-01-06 18:32:21 -08:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2023-01-27 14:50:50 -08:00
|
|
|
|
|
|
|
|
2023-11-29 00:39:14 -08:00
|
|
|
|
2023-11-28 23:50:50 -08:00
|
|
|
class PathGetVertexUuids(BaseModel):
|
|
|
|
"""The response from the `PathGetVertexUuids` command."""
|
2023-11-27 16:01:20 -08:00
|
|
|
|
2023-11-29 10:32:31 -08:00
|
|
|
vertex_ids: List[str]
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|