Home Assistant Unofficial Reference
2024.12.1
const.py
Go to the documentation of this file.
1
"""Constants for the Epic Games Store integration."""
2
3
from
enum
import
StrEnum
4
5
DOMAIN =
"epic_games_store"
6
7
SUPPORTED_LANGUAGES = [
8
"ar"
,
9
"de"
,
10
"en-US"
,
11
"es-ES"
,
12
"es-MX"
,
13
"fr"
,
14
"it"
,
15
"ja"
,
16
"ko"
,
17
"pl"
,
18
"pt-BR"
,
19
"ru"
,
20
"th"
,
21
"tr"
,
22
"zh-CN"
,
23
"zh-Hant"
,
24
]
25
26
27
class
CalendarType
(StrEnum):
28
"""Calendar types."""
29
30
FREE =
"free"
31
DISCOUNT =
"discount"
homeassistant.components.epic_games_store.const .CalendarType
Definition:
const.py:27
core
homeassistant
components
epic_games_store
const.py
Generated by
1.9.1