Info related to the different tasks associated to the current state
| name | data type | description |
|---|---|---|
| id | string | Unique identificator of the task |
| name | string | Title of the task |
| assignee | User | User currently assigned to the task |
| actions | array of string | Available actions; assign, complete, delete. |
| dueDate | number | Time limit to do the task expressed in epoch millis |
| description | string | Description for the task |
| completed | boolean | If the task has been completed |
| date | number | Date of task's completion expressed in epoch millis |
| comment | string | Comments on completion |
Example
{
"id" : "1",
"name" : "Review",
"assignee" : {
"name" : "user_1",
"rolename" : "Project Manager",
"shortName" : "user_1",
"fullName" : "User One",
"pictureUrl" : "/images/icons/profilepics/user1.png"
},
"actions" : [ "complete", "delete" ],
"dueDate" : 1507278989419,
"description" : "Review the whole document",
"completed" : true,
"date" : 1507278989419,
"comment" : "Document reviewed, good job"
}