2025-05-08 12:57:30 -07:00
|
|
|
from typing import List, Optional
|
2023-12-21 08:14:08 -08:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2023-12-21 08:14:08 -08:00
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
from ..models.face_edge_info import FaceEdgeInfo
|
|
|
|
|
2023-12-21 08:14:08 -08:00
|
|
|
|
|
|
|
class EntityLinearPattern(BaseModel):
|
|
|
|
"""The response from the `EntityLinearPattern` command."""
|
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
entity_face_edge_ids: Optional[List[FaceEdgeInfo]] = None
|
|
|
|
|
|
|
|
entity_ids: Optional[List[str]] = None
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|