Files
kittycad.py/kittycad/models/solid3d_get_all_edge_faces.py

12 lines
211 B
Python
Raw Normal View History

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