All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| discountPlanItem | array of DiscountPlanItemDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"discountPlanItem" : [ {
"code" : "...",
"discountPlanCode" : "...",
"invoiceCategoryCode" : "...",
"invoiceSubCategoryCode" : "...",
"percent" : 12345.0,
"accountingCode" : "...",
"expressionEl" : "..."
}, {
"code" : "...",
"discountPlanCode" : "...",
"invoiceCategoryCode" : "...",
"invoiceSubCategoryCode" : "...",
"percent" : 12345.0,
"accountingCode" : "...",
"expressionEl" : "..."
} ],
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "DELETE_REFERENCED_ENTITY_EXCEPTION",
"message" : "..."
}
}