Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Aquacell integration."""
2 
3 from datetime import timedelta
4 
5 DOMAIN = "aquacell"
6 DATA_AQUACELL = "DATA_AQUACELL"
7 
8 CONF_BRAND = "brand"
9 CONF_REFRESH_TOKEN = "refresh_token"
10 CONF_REFRESH_TOKEN_CREATION_TIME = "refresh_token_creation_time"
11 
12 REFRESH_TOKEN_EXPIRY_TIME = timedelta(days=30)
13 UPDATE_INTERVAL = timedelta(days=1)