All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customerPaymentDtoList | array of PaymentDto | |
| balance | number | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customerPaymentDtoList" : [ {
"type" : "...",
"description" : "...",
"paymentMethod" : "TIP",
"occTemplateCode" : "...",
"amount" : 12345.0,
"customerAccountCode" : "...",
"reference" : "...",
"bankLot" : "...",
"depositDate" : 12345,
"bankCollectionDate" : 12345,
"dueDate" : 12345,
"transactionDate" : 12345,
"listOCCReferenceforMatching" : [ "...", "..." ],
"isToMatching" : true,
"paymentOrder" : "...",
"fees" : 12345.0,
"comment" : "...",
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
}
}, {
"type" : "...",
"description" : "...",
"paymentMethod" : "CARD",
"occTemplateCode" : "...",
"amount" : 12345.0,
"customerAccountCode" : "...",
"reference" : "...",
"bankLot" : "...",
"depositDate" : 12345,
"bankCollectionDate" : 12345,
"dueDate" : 12345,
"transactionDate" : 12345,
"listOCCReferenceforMatching" : [ "...", "..." ],
"isToMatching" : true,
"paymentOrder" : "...",
"fees" : 12345.0,
"comment" : "...",
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
}
} ],
"balance" : 12345.0,
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "INVALID_PARAMETER",
"message" : "..."
}
}