Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for Google Mail integration."""
2 
3 from __future__ import annotations
4 
5 ATTR_BCC = "bcc"
6 ATTR_CC = "cc"
7 ATTR_ENABLED = "enabled"
8 ATTR_END = "end"
9 ATTR_FROM = "from"
10 ATTR_ME = "me"
11 ATTR_MESSAGE = "message"
12 ATTR_PLAIN_TEXT = "plain_text"
13 ATTR_RESTRICT_CONTACTS = "restrict_contacts"
14 ATTR_RESTRICT_DOMAIN = "restrict_domain"
15 ATTR_SEND = "send"
16 ATTR_START = "start"
17 ATTR_TITLE = "title"
18 
19 DATA_AUTH = "auth"
20 DATA_HASS_CONFIG = "hass_config"
21 DEFAULT_ACCESS = [
22  "https://www.googleapis.com/auth/gmail.compose",
23  "https://www.googleapis.com/auth/gmail.settings.basic",
24 ]
25 DOMAIN = "google_mail"
26 MANUFACTURER = "Google, Inc."