| name | data type | description |
|---|---|---|
| uuid | string | |
| fromStatus | string | |
| toStatus | string | |
| conditionEl | string | |
| priority | number | |
| description | string | |
| action | array of WFActionDto | |
| decisionRule | array of WFDecisionRuleDto |
Example
{
"uuid" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"conditionEl" : "...",
"priority" : 12345,
"description" : "...",
"action" : [ {
"uuid" : "...",
"actionEl" : "...",
"priority" : 12345,
"conditionEl" : "..."
}, {
"uuid" : "...",
"actionEl" : "...",
"priority" : 12345,
"conditionEl" : "..."
} ],
"decisionRule" : [ {
"name" : "...",
"value" : "..."
}, {
"name" : "...",
"value" : "..."
} ]
}