8 lines
189 B
Python
8 lines
189 B
Python
![]() |
from pydantic import BaseModel, ConfigDict
|
||
|
|
||
|
|
||
|
class EntityMirror(BaseModel):
|
||
|
"""The response from the `EntityMirror` endpoint."""
|
||
|
|
||
|
model_config = ConfigDict(protected_namespaces=())
|