Files
kittycad.py/kittycad/models/close_path.py

10 lines
200 B
Python
Raw Normal View History

from pydantic import BaseModel, ConfigDict
class ClosePath(BaseModel):
"""The response from the `ClosePath` command."""
face_id: str
model_config = ConfigDict(protected_namespaces=())