36 lines
856 B
Python
36 lines
856 B
Python
"""Model Classes for here_travel_time."""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from datetime import time
|
|
from typing import TypedDict
|
|
|
|
|
|
class HERERoutingData(TypedDict):
|
|
"""Routing information calculated from a herepy.RoutingResponse."""
|
|
|
|
ATTR_ATTRIBUTION: str | None
|
|
ATTR_DURATION: float
|
|
ATTR_DURATION_IN_TRAFFIC: float
|
|
ATTR_DISTANCE: float
|
|
ATTR_ROUTE: str
|
|
ATTR_ORIGIN: str
|
|
ATTR_DESTINATION: str
|
|
ATTR_ORIGIN_NAME: str
|
|
ATTR_DESTINATION_NAME: str
|
|
|
|
|
|
@dataclass
|
|
class HERETravelTimeConfig:
|
|
"""Configuration for HereTravelTimeDataUpdateCoordinator."""
|
|
|
|
origin: str | None
|
|
destination: str | None
|
|
origin_entity_id: str | None
|
|
destination_entity_id: str | None
|
|
travel_mode: str
|
|
route_mode: str
|
|
units: str
|
|
arrival: time | None
|
|
departure: time | None
|