PricePlanMatrixLineDto Data Type

A base class for all API DTO classes

Implemented Interfaces
Serializable
Properties
name data type constraints description
ppmLineId number  
priceWithoutTax number  
value number  
pricePlanMatrixCode string  
pricePlanMatrixVersion number  
description string  
pricePlanMatrixValues array of PricePlanMatrixValueDto  
priority number  
priceEL string  
valueEL string  

Example

{
  "ppmLineId" : 12345,
  "value" : 12345.0,
  "pricePlanMatrixCode" : "...",
  "pricePlanMatrixVersion" : 12345,
  "description" : "...",
  "pricePlanMatrixValues" : [ {
    "ppmValueId" : 12345,
    "ppmColumnCode" : "...",
    "longValue" : 12345,
    "doubleValue" : 12345.0,
    "stringValue" : "...",
    "dateValue" : 12345,
    "fromDateValue" : 12345,
    "toDateValue" : 12345,
    "fromDoubleValue" : 12345.0,
    "toDoubleValue" : 12345.0,
    "booleanValue" : true
  }, {
    "ppmValueId" : 12345,
    "ppmColumnCode" : "...",
    "longValue" : 12345,
    "doubleValue" : 12345.0,
    "stringValue" : "...",
    "dateValue" : 12345,
    "fromDateValue" : 12345,
    "toDateValue" : 12345,
    "fromDoubleValue" : 12345.0,
    "toDoubleValue" : 12345.0,
    "booleanValue" : true
  } ],
  "priority" : 12345,
  "priceEL" : "...",
  "valueEL" : "..."
}