Source code for kittycad.models.close_path


from pydantic import BaseModel, ConfigDict



[docs] class ClosePath(BaseModel): """The response from the `ClosePath` command.""" face_id: str model_config = ConfigDict(protected_namespaces=())