All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| notificationHistories | NotificationHistoriesDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"notificationHistories" : {
"notificationHistory" : [ {
"notification" : "...",
"entityClassName" : "...",
"entityCode" : "...",
"serializedEntity" : "...",
"nbRetry" : 12345,
"result" : "...",
"date" : 12345,
"status" : "CANCELED"
}, {
"notification" : "...",
"entityClassName" : "...",
"entityCode" : "...",
"serializedEntity" : "...",
"nbRetry" : 12345,
"result" : "...",
"date" : 12345,
"status" : "FAILED"
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ENTITY_ALREADY_EXISTS_EXCEPTION",
"message" : "..."
}
}