UsageChargeAggregateResponseDto Data Type

All the MEVEO API web service response must extend this class.

Implemented Interfaces
Serializable
Properties
name data type description
chargeAggregate array of ChargeAggregateDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "chargeAggregate" : [ {
    "description" : "...",
    "quantity" : "...",
    "amount" : "..."
  }, {
    "description" : "...",
    "quantity" : "...",
    "amount" : "..."
  } ],
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : "ENTITY_ALREADY_EXISTS_EXCEPTION",
    "message" : "..."
  }
}