ProductToApplyDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
code string
quantity number
applicationDate number
criteria1 string
criteria2 string
criteria3 string
amountWithoutTax number
amountWithTax number
customFields CustomFieldsDto

Example

{
  "code" : "...",
  "quantity" : 12345.0,
  "applicationDate" : 12345,
  "criteria1" : "...",
  "criteria2" : "...",
  "criteria3" : "...",
  "amountWithoutTax" : 12345.0,
  "amountWithTax" : 12345.0,
  "customFields" : {
    "customField" : [ {
      "code" : "...",
      "valueDate" : 12345,
      "valuePeriodStartDate" : 12345,
      "valuePeriodEndDate" : 12345,
      "valuePeriodPriority" : 12345,
      "stringValue" : "...",
      "dateValue" : 12345,
      "longValue" : 12345,
      "doubleValue" : 12345.0,
      "value" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValue" : { },
      "indexType" : "INDEX"
    }, {
      "code" : "...",
      "valueDate" : 12345,
      "valuePeriodStartDate" : 12345,
      "valuePeriodEndDate" : 12345,
      "valuePeriodPriority" : 12345,
      "stringValue" : "...",
      "dateValue" : 12345,
      "longValue" : 12345,
      "doubleValue" : 12345.0,
      "value" : [ { }, { } ],
      "mapValue" : {
        "property1" : { },
        "property2" : { }
      },
      "entityReferenceValue" : { },
      "indexType" : "STORE_ONLY"
    } ]
  }
}