2025-05-08 12:57:30 -07:00
|
|
|
from typing import List, Optional
|
2024-02-24 17:03:55 -08:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-02-24 17:03:55 -08:00
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
from ..models.face_edge_info import FaceEdgeInfo
|
|
|
|
|
2024-02-24 17:03:55 -08:00
|
|
|
|
|
|
|
class EntityCircularPattern(BaseModel):
|
|
|
|
"""The response from the `EntityCircularPattern` command."""
|
|
|
|
|
2025-05-08 12:57:30 -07:00
|
|
|
entity_face_edge_ids: Optional[List[FaceEdgeInfo]] = None
|
|
|
|
|
2024-02-24 17:03:55 -08:00
|
|
|
model_config = ConfigDict(protected_namespaces=())
|