Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Bring! integration."""
2 
3 from typing import Final
4 
5 DOMAIN = "bring"
6 
7 ATTR_SENDER: Final = "sender"
8 ATTR_ITEM_NAME: Final = "item"
9 ATTR_NOTIFICATION_TYPE: Final = "message"
10 
11 SERVICE_PUSH_NOTIFICATION = "send_message"
12 UNIT_ITEMS = "items"