GetProductChargeTemplateResponseDto Data Type

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

Implemented Interfaces
Serializable
Properties
name data type description
productChargeTemplate ProductChargeTemplateDto
Properties inherited from BaseResponse
actionStatus ActionStatus

Example

{
  "productChargeTemplate" : {
    "code" : "...",
    "description" : "...",
    "invoiceSubCategory" : "...",
    "disabled" : true,
    "amountEditable" : true,
    "languageDescriptions" : [ {
      "languageCode" : "...",
      "description" : "..."
    }, {
      "languageCode" : "...",
      "description" : "..."
    } ],
    "inputUnitDescription" : "...",
    "ratingUnitDescription" : "...",
    "unitMultiplicator" : 12345.0,
    "unitNbDecimal" : 12345,
    "roundingModeDtoEnum" : "NEAREST",
    "revenueRecognitionRuleCode" : "...",
    "customFields" : {
      "customField" : [ { }, { } ]
    },
    "triggeredEdrs" : {
      "triggeredEdr" : [ { }, { } ]
    },
    "updatedCode" : "..."
  },
  "actionStatus" : {
    "status" : "SUCCESS",
    "errorCode" : "INVALID_IMAGE_DATA",
    "message" : "..."
  }
}