ClientConfirmationDto
Summary DTO for a client confirmation workflow step
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The workflow step ID |
The workflow step ID | ||
| stepName | string | The name of the workflow step |
The name of the workflow step | ||
| status | enum | NotStarted InProgress Blocked Completed Skipped |
NotStarted InProgress Blocked Completed Skipped | ||
| task | CodeAndNameDto | |
| client | CodeAndNameDto | |
| groupName | string | The workflow group name |
The workflow group name | ||
| createdDate | string | When the confirmation step was created |
When the confirmation step was created | ||
| updatedDate | string | When the confirmation step was last updated |
When the confirmation step was last updated | ||
JSON Example
{
"id": 0,
"stepName": "string",
"status": "NotStarted",
"task": {
"code": "string",
"name": "string"
},
"client": {
"code": "string",
"name": "string"
}
}