mirror of
https://github.com/home-assistant/core.git
synced 2026-07-14 18:14:35 +01:00
15 lines
337 B
Python
15 lines
337 B
Python
"""Constants for the timer integration."""
|
|
|
|
from enum import StrEnum
|
|
|
|
|
|
class TimerEntityStateAttribute(StrEnum):
|
|
"""State attributes for timer entities."""
|
|
|
|
DURATION = "duration"
|
|
EDITABLE = "editable"
|
|
LAST_TRANSITION = "last_transition"
|
|
FINISHES_AT = "finishes_at"
|
|
REMAINING = "remaining"
|
|
RESTORE = "restore"
|