Files
kittycad.py/kittycad/models/solid3d_get_all_edge_faces.py
Jess Frazelle ed36086040 working samples
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2023-11-29 10:32:31 -08:00

11 lines
188 B
Python

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