2024-06-17 07:50:42 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-06-17 07:50:42 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ClosePath(BaseModel):
|
|
|
|
"""The response from the `ClosePath` command."""
|
|
|
|
|
|
|
|
face_id: str
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|