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

11 lines
210 B
Python

from typing import Optional
from pydantic import BaseModel
class Solid3dGetPrevAdjacentEdge(BaseModel):
"""The response from the `Solid3dGetPrevAdjacentEdge` command."""
edge: Optional[str] = None