Files
kittycad.py/kittycad/models/path_get_vertex_uuids.py
Jess Frazelle ed36086040 working samples
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-29 10:32:31 -08:00

11 lines
185 B
Python

from typing import List
from pydantic import BaseModel
class PathGetVertexUuids(BaseModel):
"""The response from the `PathGetVertexUuids` command."""
vertex_ids: List[str]