Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Music Assistant Component."""
2 
3 import logging
4 
5 DOMAIN = "music_assistant"
6 DOMAIN_EVENT = f"{DOMAIN}_event"
7 
8 DEFAULT_NAME = "Music Assistant"
9 
10 ATTR_IS_GROUP = "is_group"
11 ATTR_GROUP_MEMBERS = "group_members"
12 ATTR_GROUP_PARENTS = "group_parents"
13 
14 ATTR_MASS_PLAYER_TYPE = "mass_player_type"
15 ATTR_ACTIVE_QUEUE = "active_queue"
16 ATTR_STREAM_TITLE = "stream_title"
17 
18 LOGGER = logging.getLogger(__package__)