Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Roku integration."""
2 
3 DOMAIN = "roku"
4 
5 # Attributes
6 ATTR_ARTIST_NAME = "artist_name"
7 ATTR_CONTENT_ID = "content_id"
8 ATTR_FORMAT = "format"
9 ATTR_KEYWORD = "keyword"
10 ATTR_MEDIA_TYPE = "media_type"
11 ATTR_THUMBNAIL = "thumbnail"
12 
13 # Default Values
14 DEFAULT_PORT = 8060
15 
16 # Services
17 SERVICE_SEARCH = "search"
18 
19 # Config
20 CONF_PLAY_MEDIA_APP_ID = "play_media_app_id"
21 
22 # Defaults
23 DEFAULT_PLAY_MEDIA_APP_ID = "15985"