All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| oneShotChargeTemplateDtos | array of OneShotChargeTemplateWithPriceDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"oneShotChargeTemplateDtos" : [ {
"chargeCode" : "...",
"description" : "...",
"unitPriceWithoutTax" : 12345.0,
"taxPercent" : 12345.0,
"taxCode" : "...",
"taxDescription" : "..."
}, {
"chargeCode" : "...",
"description" : "...",
"unitPriceWithoutTax" : 12345.0,
"taxPercent" : 12345.0,
"taxCode" : "...",
"taxDescription" : "..."
} ],
"actionStatus" : {
"status" : "SUCCESS",
"errorCode" : "ENTITY_ALREADY_EXISTS_EXCEPTION",
"message" : "..."
}
}