mirror of
https://github.com/home-assistant/core.git
synced 2026-04-20 00:19:02 +02:00
14 lines
276 B
Python
14 lines
276 B
Python
"""Provides the constants needed for the component."""
|
|
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "event"
|
|
ATTR_EVENT_TYPE = "event_type"
|
|
ATTR_EVENT_TYPES = "event_types"
|
|
|
|
|
|
class DoorbellEventType(StrEnum):
|
|
"""Standard event types for doorbell device class."""
|
|
|
|
RING = "ring"
|