NextStepDto
A workflow step on a task that is executable right now: not omitted, not complete, and
with all its dependencies satisfied. A task can have several in parallel.
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The step's name |
The step's name | ||
| assignedUser | CodeAndNameDto | |
| assignedTeam | CodeAndNameDto | |
| isAutoExecute | boolean | Whether the step will be executed automatically by the system rather than a person |
Whether the step will be executed automatically by the system rather than a person | ||
JSON Example
{
"name": "string",
"assignedUser": {
"code": "string",
"name": "string"
},
"assignedTeam": {
"code": "string",
"name": "string"
},
"isAutoExecute": false
}