mirror of
https://github.com/home-assistant/core.git
synced 2026-02-21 18:38:17 +00:00
21 lines
362 B
Python
21 lines
362 B
Python
"""Constants for the Roku integration."""
|
|
|
|
DOMAIN = "roku"
|
|
|
|
# Attributes
|
|
ATTR_ARTIST_NAME = "artist_name"
|
|
ATTR_CONTENT_ID = "content_id"
|
|
ATTR_FORMAT = "format"
|
|
ATTR_MEDIA_TYPE = "media_type"
|
|
ATTR_THUMBNAIL = "thumbnail"
|
|
|
|
# Default Values
|
|
DEFAULT_PORT = 8060
|
|
|
|
|
|
# Config
|
|
CONF_PLAY_MEDIA_APP_ID = "play_media_app_id"
|
|
|
|
# Defaults
|
|
DEFAULT_PLAY_MEDIA_APP_ID = "15985"
|