A base class for all API DTO classes
name | data type | constraints | description |
---|---|---|---|
ppmLineId | number | ||
priceWithoutTax | number | required | |
pricePlanMatrixCode | string | ||
pricePlanMatrixVersion | number | ||
description | string | ||
pricePlanMatrixValues | array of PricePlanMatrixValueDto | ||
priority | number | ||
priceEL | string |
Example
{ "ppmLineId" : 12345, "priceWithoutTax" : 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" : "..." }