Home Assistant Unofficial Reference 2024.12.1
models.py
Go to the documentation of this file.
1 """The yalexs_ble integration models."""
2 
3 from __future__ import annotations
4 
5 from dataclasses import dataclass
6 
7 from yalexs_ble import PushLock
8 
9 
10 @dataclass
12  """Data for the yale xs ble integration."""
13 
14  title: str
15  lock: PushLock
16  always_connected: bool