Source code for kittycad.models.solid3d_get_prev_adjacent_edge

from typing import Optional

from .base import KittyCadBaseModel


[docs] class Solid3dGetPrevAdjacentEdge(KittyCadBaseModel): """The response from the `Solid3dGetPrevAdjacentEdge` command.""" edge: Optional[str] = None