InvoiceSubCategoriesDto Data Type

Implemented Interfaces
Serializable
Properties
name data type description
invoiceSubCategory array of InvoiceSubCategoryDto

Example

{
  "invoiceSubCategory" : [ {
    "code" : "...",
    "description" : "...",
    "invoiceCategory" : "...",
    "accountingCode" : "...",
    "languageDescriptions" : [ {
      "languageCode" : "...",
      "description" : "..."
    }, {
      "languageCode" : "...",
      "description" : "..."
    } ],
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    },
    "updatedCode" : "..."
  }, {
    "code" : "...",
    "description" : "...",
    "invoiceCategory" : "...",
    "accountingCode" : "...",
    "languageDescriptions" : [ {
      "languageCode" : "...",
      "description" : "..."
    }, {
      "languageCode" : "...",
      "description" : "..."
    } ],
    "customFields" : {
      "customField" : [ { }, { } ],
      "inheritedCustomField" : [ { }, { } ]
    },
    "updatedCode" : "..."
  } ]
}