* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
16 lines
398 B
Python
16 lines
398 B
Python
from typing import List, Optional
|
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
from ..models.face_edge_info import FaceEdgeInfo
|
|
|
|
|
|
class EntityCircularPattern(BaseModel):
|
|
"""The response from the `EntityCircularPattern` command."""
|
|
|
|
entity_face_edge_ids: Optional[List[FaceEdgeInfo]] = None
|
|
|
|
entity_ids: Optional[List[str]] = None
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|