langchain_community.utilities.clickup.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: Optional[str], due_date: Optional[str], start_date: Optional[str], points: int, team_id: int, project_id: int)[source]ΒΆ
Class for a task.
Attributes
idnametext_contentdescriptionstatuscreator_idcreator_usernamecreator_emailassigneeswatchersprioritydue_datestart_datepointsteam_idproject_idMethods
__init__(id,Β name,Β text_content,Β ...)from_data(data)- 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 (Optional[str]) β
due_date (Optional[str]) β
start_date (Optional[str]) β
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: Optional[str], due_date: Optional[str], start_date: Optional[str], 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 (Optional[str]) β
due_date (Optional[str]) β
start_date (Optional[str]) β
points (int) β
team_id (int) β
project_id (int) β
- Return type
None