Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Google Tasks integration."""
2 
3 from enum import StrEnum
4 
5 DOMAIN = "google_tasks"
6 
7 OAUTH2_AUTHORIZE = "https://accounts.google.com/o/oauth2/v2/auth"
8 OAUTH2_TOKEN = "https://oauth2.googleapis.com/token"
9 OAUTH2_SCOPES = [
10  "https://www.googleapis.com/auth/tasks",
11  "https://www.googleapis.com/auth/userinfo.profile",
12 ]
13 
14 
15 class TaskStatus(StrEnum):
16  """Status of a Google Task."""
17 
18  NEEDS_ACTION = "needsAction"
19  COMPLETED = "completed"