Task#
- class langchain_community.utilities.clickup.Task(id: int, name: str, text_content: str, description: str, status: str, creator_id: int, creator_username: str, creator_email: str, assignees: List[Dict[str, Any]], watchers: List[Dict[str, Any]], priority: str | None, due_date: str | None, start_date: str | None, points: int, team_id: int, project_id: int)[source]#
Class for a task.
Attributes
Methods
- Parameters:
id (int) β
name (str) β
text_content (str) β
description (str) β
status (str) β
creator_id (int) β
creator_username (str) β
creator_email (str) β
assignees (List[Dict[str, Any]]) β
watchers (List[Dict[str, Any]]) β
priority (str | None) β
due_date (str | None) β
start_date (str | None) β
points (int) β
team_id (int) β
project_id (int) β
- __init__(id: int, name: str, text_content: str, description: str, status: str, creator_id: int, creator_username: str, creator_email: str, assignees: List[Dict[str, Any]], watchers: List[Dict[str, Any]], priority: str | None, due_date: str | None, start_date: str | None, points: int, team_id: int, project_id: int) None #
- Parameters:
id (int) β
name (str) β
text_content (str) β
description (str) β
status (str) β
creator_id (int) β
creator_username (str) β
creator_email (str) β
assignees (List[Dict[str, Any]]) β
watchers (List[Dict[str, Any]]) β
priority (str | None) β
due_date (str | None) β
start_date (str | None) β
points (int) β
team_id (int) β
project_id (int) β
- Return type:
None