Source code for kittycad.models.solid3d_get_next_adjacent_edge
from typing import Optional
from pydantic import BaseModel
[docs]class Solid3dGetNextAdjacentEdge(BaseModel):
"""The response from the `Solid3dGetNextAdjacentEdge` command."""
edge: Optional[str] = None