GetTaxesResponse Data Type

The Class GetTaxesResponse.

Implemented Interfaces
Serializable
Properties
name data type description
taxesDto TaxesDto The taxes dto.
paging PagingAndFiltering The paging.
actionStatus ActionStatus The status response of the web service response.

Example

{
  "taxesDto" : {
    "tax" : [ {
      "percent" : 12345.0,
      "accountingCode" : "...",
      "id" : 12345,
      "auditableField" : [ { }, { } ],
      "languageDescriptions" : [ { }, { } ],
      "code" : "...",
      "customFields" : { },
      "composite" : true,
      "description" : "...",
      "subTaxes" : [ { }, { } ],
      "updatedCode" : "..."
    }, {
      "percent" : 12345.0,
      "accountingCode" : "...",
      "id" : 12345,
      "auditableField" : [ { }, { } ],
      "languageDescriptions" : [ { }, { } ],
      "code" : "...",
      "customFields" : { },
      "composite" : true,
      "description" : "...",
      "subTaxes" : [ { }, { } ],
      "updatedCode" : "..."
    } ]
  },
  "paging" : {
    "fullTextFilter" : "...",
    "filters" : {
      "property1" : { },
      "property2" : { }
    },
    "fields" : "...",
    "offset" : 12345,
    "limit" : 12345,
    "sortBy" : "...",
    "sortOrder" : "DESCENDING",
    "multiSortOrder" : "...",
    "totalNumberOfRecords" : 12345,
    "loadReferenceDepth" : 12345
  },
  "actionStatus" : {
    "status" : "WARNING",
    "errorCode" : { },
    "message" : "...",
    "entityId" : 12345,
    "entityCode" : "...",
    "nrAffected" : 12345,
    "json" : "..."
  }
}