All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| catMessages | CatMessagesListDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"catMessages" : {
"catMessage" : [ {
"entityClass" : "...",
"code" : "...",
"defaultDescription" : "...",
"translatedDescriptions" : [ { }, { } ]
}, {
"entityClass" : "...",
"code" : "...",
"defaultDescription" : "...",
"translatedDescriptions" : [ { }, { } ]
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "DUPLICATE_ACCESS",
"message" : "..."
}
}