2025-05-08 12:57:30 -07:00
|
|
|
from typing import List, Optional
|
2025-01-07 12:27:04 -08:00
|
|
|
|
2024-09-23 09:39:00 -04:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
from ..models.face_edge_info import FaceEdgeInfo
|
|
|
|
|
2024-09-23 09:39:00 -04:00
|
|
|
|
|
|
|
class EntityMirror(BaseModel):
|
|
|
|
"""The response from the `EntityMirror` endpoint."""
|
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
entity_face_edge_ids: Optional[List[FaceEdgeInfo]] = None
|
|
|
|
|
|
|
|
entity_ids: Optional[List[str]] = None
|
2025-01-07 12:27:04 -08:00
|
|
|
|
2024-09-23 09:39:00 -04:00
|
|
|
model_config = ConfigDict(protected_namespaces=())
|