WorkflowOccurrenceDto
One occurrence (task) of the workflow: its total elapsed time and the client-wait vs
internal split - "show me the ten slowest VAT-return runs this quarter".
Properties
| Name | Type | Description |
|---|---|---|
| task | CodeAndNameDto | |
| client | CodeAndNameDto | |
| completedDate | string | When the task completed (UTC). |
When the task completed (UTC). | ||
| totalElapsedDays | number | Days from the task's actual start (fallback planned start) to completion. |
Days from the task's actual start (fallback planned start) to completion. | ||
| clientWaitDays | number | Days of the step chain spent waiting on the client. |
Days of the step chain spent waiting on the client. | ||
| internalDays | number | Days of the step chain spent on practice-side steps. |
Days of the step chain spent on practice-side steps. | ||
JSON Example
{
"task": {
"code": "string",
"name": "string"
},
"client": {
"code": "string",
"name": "string"
},
"completedDate": "2024-01-01T00:00:00Z",
"totalElapsedDays": 0,
"clientWaitDays": 0
}