2025-01-07 12:27:04 -08:00
|
|
|
from typing import List
|
|
|
|
|
2024-09-23 09:39:00 -04:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
|
|
|
|
|
|
|
|
|
|
|
class EntityMirrorAcrossEdge(BaseModel):
|
|
|
|
"""The response from the `EntityMirrorAcrossEdge` endpoint."""
|
|
|
|
|
2025-01-07 12:27:04 -08:00
|
|
|
entity_ids: List[str]
|
|
|
|
|
2024-09-23 09:39:00 -04:00
|
|
|
model_config = ConfigDict(protected_namespaces=())
|