API Docs / Schemas / NextStepDto

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
namestring

The step's name

The step's name

assignedUserCodeAndNameDto
assignedTeamCodeAndNameDto
isAutoExecuteboolean

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
}

Contained in Schemas