Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """All constants related to the shopping list component."""
2 
3 from homeassistant.const import EVENT_SHOPPING_LIST_UPDATED # noqa: F401
4 
5 DOMAIN = "shopping_list"
6 
7 
8 ATTR_REVERSE = "reverse"
9 
10 DEFAULT_REVERSE = False
11 
12 SERVICE_ADD_ITEM = "add_item"
13 SERVICE_REMOVE_ITEM = "remove_item"
14 SERVICE_COMPLETE_ITEM = "complete_item"
15 SERVICE_INCOMPLETE_ITEM = "incomplete_item"
16 SERVICE_COMPLETE_ALL = "complete_all"
17 SERVICE_INCOMPLETE_ALL = "incomplete_all"
18 SERVICE_CLEAR_COMPLETED_ITEMS = "clear_completed_items"
19 SERVICE_SORT = "sort"