2024-07-28 15:21:51 -07:00
|
|
|
from typing import List
|
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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class EntityCircularPattern(BaseModel):
|
|
|
|
"""The response from the `EntityCircularPattern` command."""
|
|
|
|
|
|
|
|
entity_ids: List[str]
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|