Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Alert integration."""
2 
3 import logging
4 from typing import Final
5 
6 DOMAIN: Final = "alert"
7 
8 LOGGER = logging.getLogger(__package__)
9 
10 CONF_CAN_ACK = "can_acknowledge"
11 CONF_NOTIFIERS = "notifiers"
12 CONF_SKIP_FIRST = "skip_first"
13 CONF_ALERT_MESSAGE = "message"
14 CONF_DONE_MESSAGE = "done_message"
15 CONF_TITLE = "title"
16 CONF_DATA = "data"
17 
18 DEFAULT_CAN_ACK = True
19 DEFAULT_SKIP_FIRST = False