All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| taxesDto | TaxesDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"taxesDto" : {
"tax" : [ {
"code" : "...",
"description" : "...",
"percent" : 12345.0,
"accountingCode" : "...",
"languageDescriptions" : [ { }, { } ],
"customFields" : { },
"updatedCode" : "..."
}, {
"code" : "...",
"description" : "...",
"percent" : 12345.0,
"accountingCode" : "...",
"languageDescriptions" : [ { }, { } ],
"customFields" : { },
"updatedCode" : "..."
} ]
},
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "INVALID_ENUM_VALUE",
"message" : "..."
}
}