2024-07-28 15:21:51 -07:00
|
|
|
from typing import List
|
2024-06-20 11:10:00 -07:00
|
|
|
|
2024-07-28 15:21:51 -07:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2024-06-20 11:10:00 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class EntityLinearPatternTransform(BaseModel):
|
|
|
|
"""The response from the `EntityLinearPatternTransform` command."""
|
|
|
|
|
|
|
|
entity_ids: List[str]
|
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|