ProductsDto Data Type

The Class ProductsDto.

Implemented Interfaces
Serializable
Properties
name data type description
products array of ProductDto The products.

Example

{
  "products" : [ {
    "code" : "...",
    "description" : "...",
    "chargeDate" : 12345,
    "quantity" : 12345.0,
    "amountWithoutTax" : 12345.0,
    "amountWithTax" : 12345.0,
    "criteria1" : "...",
    "criteria2" : "...",
    "criteria3" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  }, {
    "code" : "...",
    "description" : "...",
    "chargeDate" : 12345,
    "quantity" : 12345.0,
    "amountWithoutTax" : 12345.0,
    "amountWithTax" : 12345.0,
    "criteria1" : "...",
    "criteria2" : "...",
    "criteria3" : "...",
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    }
  } ]
}