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

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]