12 lines
184 B
Python
12 lines
184 B
Python
![]() |
|
||
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
|
||
|
class EntityGetDistance(BaseModel):
|
||
|
"""The response from the `EntitiesGetDistance` command."""
|
||
|
|
||
|
max_distance: float
|
||
|
|
||
|
min_distance: float
|