All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| wfTransitionDto | WFTransitionDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"wfTransitionDto" : {
"uuid" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"conditionEl" : "...",
"priority" : 12345,
"description" : "...",
"action" : [ {
"uuid" : "...",
"actionEl" : "...",
"priority" : 12345,
"conditionEl" : "..."
}, {
"uuid" : "...",
"actionEl" : "...",
"priority" : 12345,
"conditionEl" : "..."
} ],
"decisionRule" : [ {
"name" : "...",
"value" : "..."
}, {
"name" : "...",
"value" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "AUTHENTICATION_AUTHORIZATION_EXCEPTION",
"message" : "..."
}
}