All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| workflowHistory | array of WorkflowHistoryDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"workflowHistory" : [ {
"actionDate" : 12345,
"workflowCode" : "...",
"entityInstanceCode" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"action" : [ {
"action" : "...",
"result" : "..."
}, {
"action" : "...",
"result" : "..."
} ]
}, {
"actionDate" : 12345,
"workflowCode" : "...",
"entityInstanceCode" : "...",
"fromStatus" : "...",
"toStatus" : "...",
"action" : [ {
"action" : "...",
"result" : "..."
}, {
"action" : "...",
"result" : "..."
} ]
} ],
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "GENERIC_API_EXCEPTION",
"message" : "..."
}
}