mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 19:09:32 +00:00
* Add sensor platform to Bring integration * Add more tests * unignore typedef check * Update language sensor * update snapshot * changes * add entities Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * add units * lowercase * snapshot --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
13 lines
257 B
Python
13 lines
257 B
Python
"""Constants for the Bring! integration."""
|
|
|
|
from typing import Final
|
|
|
|
DOMAIN = "bring"
|
|
|
|
ATTR_SENDER: Final = "sender"
|
|
ATTR_ITEM_NAME: Final = "item"
|
|
ATTR_NOTIFICATION_TYPE: Final = "message"
|
|
|
|
SERVICE_PUSH_NOTIFICATION = "send_message"
|
|
UNIT_ITEMS = "items"
|