All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| jobExecutionResultDto | JobExecutionResultDto | Contains job execution result information |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"jobExecutionResultDto" : {
"startDate" : 12345,
"endDate" : 12345,
"nbItemsToProcess" : 12345,
"nbItemsCorrectlyProcessed" : 12345,
"nbItemsProcessedWithWarning" : 12345,
"nbItemsProcessedWithError" : 12345,
"done" : true,
"report" : "..."
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}