mirror of
https://github.com/home-assistant/core.git
synced 2026-08-19 21:01:05 +01:00
18 lines
373 B
Python
18 lines
373 B
Python
"""Constants for the person entity platform."""
|
|
|
|
from enum import StrEnum
|
|
|
|
DOMAIN = "person"
|
|
|
|
|
|
class PersonEntityStateAttribute(StrEnum):
|
|
"""State attributes for person entities."""
|
|
|
|
EDITABLE = "editable"
|
|
ID = "id"
|
|
DEVICE_TRACKERS = "device_trackers"
|
|
IN_ZONES = "in_zones"
|
|
GPS_ACCURACY = "gps_accuracy"
|
|
SOURCE = "source"
|
|
USER_ID = "user_id"
|