Home Assistant Unofficial Reference
2024.12.1
models.py
Go to the documentation of this file.
1
"""Data models for the Snooz component."""
2
3
from
dataclasses
import
dataclass
4
5
from
bleak.backends.device
import
BLEDevice
6
from
pysnooz.device
import
SnoozDevice
7
8
9
@dataclass
10
class
SnoozConfigurationData
:
11
"""Configuration data for Snooz."""
12
13
ble_device: BLEDevice
14
device: SnoozDevice
15
title: str
homeassistant.components.snooz.models.SnoozConfigurationData
Definition:
models.py:10
core
homeassistant
components
snooz
models.py
Generated by
1.9.1