Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """The roomba integration models."""
2 
3 from __future__ import annotations
4 
5 from dataclasses import dataclass
6 
7 from roombapy import Roomba
8 
9 
10 @dataclass
11 class RoombaData:
12  """Data for the roomba integration."""
13 
14  roomba: Roomba
15  blid: str