WorkflowStepDto
DTO for workflow steps within a workflow group.
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| description | string | |
| timeEstimate | number | |
| stepNumber | integer | The step number within the workflow group. |
The step number within the workflow group. | ||
| assignmentType | enum | TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate |
TaskOwner SpecificUser ClientManager ClientServiceManager ClientPartner ClientAssociate | ||
| assignedUser | CodeAndNameDto | |
| billableService | CodeAndNameDto | |
| dependsOnStepNumbers | array of integer | The step numbers that this step depends on (must be completed first). |
The step numbers that this step depends on (must be completed first). | ||
JSON Example
{
"name": "string",
"description": "string",
"timeEstimate": 0,
"stepNumber": 0,
"assignmentType": "TaskOwner"
}