Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Slack integration."""
2 
3 from typing import Final
4 
5 ATTR_BLOCKS = "blocks"
6 ATTR_BLOCKS_TEMPLATE = "blocks_template"
7 ATTR_FILE = "file"
8 ATTR_PASSWORD = "password"
9 ATTR_PATH = "path"
10 ATTR_SNOOZE = "snooze_endtime"
11 ATTR_URL = "url"
12 ATTR_USERNAME = "username"
13 ATTR_USER_ID = "user_id"
14 ATTR_THREAD_TS = "thread_ts"
15 
16 CONF_DEFAULT_CHANNEL = "default_channel"
17 
18 DATA_CLIENT = "client"
19 DEFAULT_NAME = "Slack"
20 DEFAULT_TIMEOUT_SECONDS = 15
21 DOMAIN: Final = "slack"
22 
23 SLACK_DATA = "data"
24 DATA_HASS_CONFIG = "slack_hass_config"