TaxesDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
tax array of TaxDto

Example

{
  "tax" : [ {
    "code" : "...",
    "description" : "...",
    "percent" : 12345.0,
    "accountingCode" : "...",
    "languageDescriptions" : [ {
      "languageCode" : "...",
      "description" : "..."
    }, {
      "languageCode" : "...",
      "description" : "..."
    } ],
    "customFields" : {
      "customField" : [ { }, { } ]
    },
    "updatedCode" : "..."
  }, {
    "code" : "...",
    "description" : "...",
    "percent" : 12345.0,
    "accountingCode" : "...",
    "languageDescriptions" : [ {
      "languageCode" : "...",
      "description" : "..."
    }, {
      "languageCode" : "...",
      "description" : "..."
    } ],
    "customFields" : {
      "customField" : [ { }, { } ]
    },
    "updatedCode" : "..."
  } ]
}