All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| inboundRequests | InboundRequestsDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"inboundRequests" : {
"inboundRequest" : [ {
"contentLength" : 12345,
"contentType" : "...",
"protocol" : "...",
"scheme" : "...",
"remoteAddr" : "...",
"remotePort" : 12345,
"method" : "...",
"authType" : "...",
"pathInfo" : "...",
"requestURI" : "...",
"responseContentType" : "...",
"responseEncoding" : "..."
}, {
"contentLength" : 12345,
"contentType" : "...",
"protocol" : "...",
"scheme" : "...",
"remoteAddr" : "...",
"remotePort" : 12345,
"method" : "...",
"authType" : "...",
"pathInfo" : "...",
"requestURI" : "...",
"responseContentType" : "...",
"responseEncoding" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "MISSING_PARAMETER",
"message" : "..."
}
}