Files
kittycad.py/kittycad/models/solid3d_get_all_opposite_edges.py

11 lines
218 B
Python
Raw Normal View History

from typing import List
from uuid import UUID
from pydantic import BaseModel
class Solid3dGetAllOppositeEdges(BaseModel):
"""The response from the `Solid3dGetAllOppositeEdges` command."""
edges: List[UUID]