mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
* add date and time service * update quality scale * add changes from review * fix issues after merge * fix icons * apply changes from review * remove list from service schema * update quality scale * update strings * Update homeassistant/components/bosch_alarm/services.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * apply changes from review * apply changes from review * Update tests/components/bosch_alarm/test_services.py Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com> * validate exception messages * use schema to validate service call * update docstring * update error message --------- Co-authored-by: Joost Lekkerkerker <joostlek@outlook.com>
10 lines
274 B
Python
10 lines
274 B
Python
"""Constants for the Bosch Alarm integration."""
|
|
|
|
DOMAIN = "bosch_alarm"
|
|
ATTR_HISTORY = "history"
|
|
CONF_INSTALLER_CODE = "installer_code"
|
|
CONF_USER_CODE = "user_code"
|
|
ATTR_DATETIME = "datetime"
|
|
SERVICE_SET_DATE_TIME = "set_date_time"
|
|
ATTR_CONFIG_ENTRY_ID = "config_entry_id"
|