All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| invoiceCategory | InvoiceCategoryDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"invoiceCategory" : {
"code" : "...",
"description" : "...",
"languageDescriptions" : [ {
"languageCode" : "...",
"description" : "..."
}, {
"languageCode" : "...",
"description" : "..."
} ],
"customFields" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
},
"updatedCode" : "..."
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "ENTITY_DOES_NOT_EXISTS_EXCEPTION",
"message" : "..."
}
}