All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| workflow | WorkflowDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"workflow" : {
"code" : "...",
"description" : "...",
"wfType" : "...",
"enableHistory" : true,
"transition" : [ {
"uuid" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"conditionEl" : "...",
"priority" : 12345,
"description" : "...",
"action" : [ { }, { } ],
"decisionRule" : [ { }, { } ]
}, {
"uuid" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"conditionEl" : "...",
"priority" : 12345,
"description" : "...",
"action" : [ { }, { } ],
"decisionRule" : [ { }, { } ]
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ENTITY_DOES_NOT_EXISTS_EXCEPTION",
"message" : "..."
}
}