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
id
name
text_content
description
status
creator_id
creator_username
creator_email
assignees
watchers
priority
due_date
start_date
points
team_id
project_id
Methods
__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