Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """The bond integration models."""
2 
3 from __future__ import annotations
4 
5 from dataclasses import dataclass
6 
7 from bond_async import BPUPSubscriptions
8 
9 from .utils import BondHub
10 
11 
12 @dataclass
13 class BondData:
14  """Data for the bond integration."""
15 
16  hub: BondHub
17  bpup_subs: BPUPSubscriptions