WorkflowStepDetailsDto
Details about a specific workflow step when a TaskItemDto represents a workflow step view
Properties
| Name | Type | Description |
|---|---|---|
| step | CodeAndNameDto | |
| workflowGroup | CodeAndNameDto | |
| groupDeadline | string | The deadline for the workflow group containing this step |
The deadline for the workflow group containing this step | ||
| status | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| completedDate | string | When this workflow step was completed (if applicable) |
When this workflow step was completed (if applicable) | ||
| assignedTo | CodeAndNameDto | |
JSON Example
{
"step": {
"code": "string",
"name": "string"
},
"workflowGroup": {
"code": "string",
"name": "string"
},
"groupDeadline": "2024-01-01T00:00:00Z",
"status": "NotStarted",
"completedDate": "2024-01-01T00:00:00Z"
}