All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| ddrequestLotOp | array of DDRequestLotOpDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"ddrequestLotOp" : [ {
"fromDueDate" : 12345,
"toDueDate" : 12345,
"ddrequestOp" : "FILE",
"status" : "WAIT",
"errorCause" : "...",
"fileFormat" : "SEPA"
}, {
"fromDueDate" : 12345,
"toDueDate" : 12345,
"ddrequestOp" : "FILE",
"status" : "WAIT",
"errorCause" : "...",
"fileFormat" : "PAYNUM"
} ],
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "BUSINESS_API_EXCEPTION",
"message" : "..."
}
}