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