All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| customerBrands | CustomerBrandsDto | |
| customerCategories | CustomerCategoriesDto | |
| titles | TitlesDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"customerBrands" : {
"customerBrand" : [ {
"code" : "...",
"description" : "...",
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"updatedCode" : "..."
} ]
},
"customerCategories" : {
"customerCategory" : [ {
"code" : "...",
"description" : "...",
"exoneratedFromTaxes" : true,
"exonerationTaxEl" : "...",
"exonerationReason" : "...",
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"exoneratedFromTaxes" : true,
"exonerationTaxEl" : "...",
"exonerationReason" : "...",
"updatedCode" : "..."
} ]
},
"titles" : {
"title" : [ {
"code" : "...",
"description" : "...",
"isCompany" : true,
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"isCompany" : true,
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "DELETE_REFERENCED_ENTITY_EXCEPTION",
"message" : "..."
}
}