All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customerAccounts | CustomerAccountsDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customerAccounts" : {
"customerAccount" : [ {
"customer" : "...",
"currency" : "...",
"language" : "...",
"status" : "CLOSE",
"paymentMethod" : "TIP",
"creditCategory" : "...",
"dateStatus" : 12345,
"dateDunningLevel" : 12345,
"contactInformation" : { },
"dunningLevel" : "R2",
"mandateIdentification" : "...",
"mandateDate" : 12345,
"balance" : 12345.0,
"totalInvoiceBalance" : 12345.0,
"terminationDate" : 12345,
"dueDateDelayEL" : "...",
"billingAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
}, {
"customer" : "...",
"currency" : "...",
"language" : "...",
"status" : "CLOSE",
"paymentMethod" : "DIRECTDEBIT",
"creditCategory" : "...",
"dateStatus" : 12345,
"dateDunningLevel" : 12345,
"contactInformation" : { },
"dunningLevel" : "R3",
"mandateIdentification" : "...",
"mandateDate" : 12345,
"balance" : 12345.0,
"totalInvoiceBalance" : 12345.0,
"terminationDate" : 12345,
"dueDateDelayEL" : "...",
"billingAccounts" : { },
"code" : "...",
"description" : "...",
"externalRef1" : "...",
"externalRef2" : "...",
"name" : { },
"address" : { },
"businessAccountModel" : { },
"customFields" : { },
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "DELETE_REFERENCED_ENTITY_EXCEPTION",
"message" : "..."
}
}