Class for a task.
Task(
self,
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
)