All the MEVEO API web service response must extend this class.
| name | data type | description |
|---|---|---|
| walletOperations | array of WalletOperationDto | |
Properties inherited from BaseResponse |
||
| actionStatus | ActionStatus | |
Example
{
"walletOperations" : [ {
"code" : "...",
"description" : "...",
"userAccount" : "...",
"subscription" : "...",
"walletTemplate" : "...",
"seller" : "...",
"chargeInstance" : "...",
"currency" : "...",
"type" : "DEBIT",
"status" : "TO_RERATE",
"ratingUnitDescription" : "...",
"taxPercent" : 12345.0,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"parameter1" : "...",
"parameter2" : "...",
"parameter3" : "...",
"orderNumber" : "...",
"startDate" : 12345,
"endDate" : 12345,
"operationDate" : 12345,
"subscriptionDate" : 12345,
"offerCode" : "..."
}, {
"code" : "...",
"description" : "...",
"userAccount" : "...",
"subscription" : "...",
"walletTemplate" : "...",
"seller" : "...",
"chargeInstance" : "...",
"currency" : "...",
"type" : "DEBIT",
"status" : "RERATED",
"ratingUnitDescription" : "...",
"taxPercent" : 12345.0,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"parameter1" : "...",
"parameter2" : "...",
"parameter3" : "...",
"orderNumber" : "...",
"startDate" : 12345,
"endDate" : 12345,
"operationDate" : 12345,
"subscriptionDate" : 12345,
"offerCode" : "..."
} ],
"actionStatus" : {
"status" : "FAIL",
"errorCode" : "ENTITY_DOES_NOT_EXISTS_EXCEPTION",
"message" : "..."
}
}