Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the pushbullet integration."""
2 
3 from typing import Final
4 
5 DOMAIN: Final = "pushbullet"
6 DEFAULT_NAME: Final = "Pushbullet"
7 DATA_HASS_CONFIG: Final = "pushbullet_hass_config"
8 DATA_UPDATED: Final = "pushbullet_data_updated"
9 
10 ATTR_URL: Final = "url"
11 ATTR_FILE: Final = "file"
12 ATTR_FILE_URL: Final = "file_url"