2023-12-21 08:14:08 -08:00
|
|
|
|
2024-01-06 18:32:21 -08:00
|
|
|
from pydantic import BaseModel, ConfigDict
|
2023-12-21 08:14:08 -08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class EntityGetDistance(BaseModel):
|
|
|
|
"""The response from the `EntitiesGetDistance` command."""
|
|
|
|
|
|
|
|
max_distance: float
|
|
|
|
|
|
|
|
min_distance: float
|
2024-01-06 18:32:21 -08:00
|
|
|
|
|
|
|
model_config = ConfigDict(protected_namespaces=())
|