Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the simplepush integration."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "simplepush"
6 DEFAULT_NAME: Final = "simplepush"
7 DATA_HASS_CONFIG: Final = "simplepush_hass_config"
8 
9 ATTR_ATTACHMENTS: Final = "attachments"
10 ATTR_ENCRYPTED: Final = "encrypted"
11 ATTR_EVENT: Final = "event"
12 
13 CONF_DEVICE_KEY: Final = "device_key"
14 CONF_SALT: Final = "salt"