RunningTimerDto
The calling user's live timer
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Unique code for the timer |
Unique code for the timer | ||
| user | CodeAndNameDto | |
| startedAt | string | When the timer was first started (UTC) — the start of its first block |
When the timer was first started (UTC) — the start of its first block | ||
| blocks | array of TimerBlockDto | The blocks of work accrued as the timer is paused and resumed. The block |
The blocks of work accrued as the timer is paused and resumed. The block | ||
| description | string | What the time is being spent on |
What the time is being spent on | ||
| isBillable | boolean | Whether the logged time will be billable — carried onto the entry when the timer stops |
Whether the logged time will be billable — carried onto the entry when the timer stops | ||
| client | CodeAndNameDto | |
| taskItem | CodeAndNameDto | |
| workflowStep | LinkedWorkflowStepDto | |
JSON Example
{
"code": "string",
"user": {
"code": "string",
"name": "string"
},
"startedAt": "2024-01-01T00:00:00Z",
"blocks": [
{
"startedAt": "...",
"endedAt": "...",
"minutes": "..."
}
],
"description": "string"
}