All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| accesses | AccessesDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"accesses" : {
"access" : [ {
"code" : "...",
"subscription" : "...",
"startDate" : 12345,
"endDate" : 12345,
"customFields" : { }
}, {
"code" : "...",
"subscription" : "...",
"startDate" : 12345,
"endDate" : 12345,
"customFields" : { }
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "INVALID_PARAMETER",
"message" : "..."
}
}