Source code for kittycad.models.solid3d_get_opposite_edge
from pydantic import BaseModel, ConfigDict
[docs]
class Solid3dGetOppositeEdge(BaseModel):
"""The response from the `Solid3dGetOppositeEdge` command."""
edge: str
model_config = ConfigDict(protected_namespaces=())