All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| paymentMethods | array of PaymentMethodEnum | |
| creditCategories | CreditCategoriesDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"paymentMethods" : [ "DIRECTDEBIT", "CARD" ],
"creditCategories" : {
"creditCategory" : [ {
"code" : "...",
"description" : "...",
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "INVALID_ENUM_VALUE",
"message" : "..."
}
}