The Class WFTransitionDto.
name | data type | description |
---|---|---|
uuid | string | The uuid. |
fromStatus | string | The from status. |
toStatus | string | The to status. |
conditionEl | string | The condition el. |
priority | number | The priority. |
description | string | The description. |
action | array of WFActionDto | The list WF action dto. |
decisionRule | array of WFDecisionRuleDto | The list WF decision rule dto. |
Example
{ "uuid" : "...", "fromStatus" : "...", "toStatus" : "...", "conditionEl" : "...", "priority" : 12345, "description" : "...", "action" : [ { "uuid" : "...", "actionEl" : "...", "priority" : 12345, "conditionEl" : "..." }, { "uuid" : "...", "actionEl" : "...", "priority" : 12345, "conditionEl" : "..." } ], "decisionRule" : [ { "name" : "...", "value" : "..." }, { "name" : "...", "value" : "..." } ] }