| name | data type | description |
|---|---|---|
| type | string | |
| itemNumber | number | |
| accountingCode | string | |
| description | string | |
| taxPercent | number | |
| quantity | number | |
| discount | number | |
| amountWithoutTax | number | |
| amountTax | number | |
| amountWithTax | number | |
| invoiceSubCategoryCode | string | |
| taxesCodes | array of string | |
| userAccountCode | string | |
| ratedTransaction | array of RatedTransactionDto |
Example
{
"type" : "...",
"itemNumber" : 12345,
"accountingCode" : "...",
"description" : "...",
"taxPercent" : 12345.0,
"quantity" : 12345.0,
"discount" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountTax" : 12345.0,
"amountWithTax" : 12345.0,
"invoiceSubCategoryCode" : "...",
"taxesCodes" : [ "...", "..." ],
"userAccountCode" : "...",
"ratedTransaction" : [ {
"usageDate" : 12345,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"code" : "...",
"description" : "...",
"unityDescription" : "...",
"priceplanCode" : "...",
"doNotTriggerInvoicing" : true
}, {
"usageDate" : 12345,
"unitAmountWithoutTax" : 12345.0,
"unitAmountWithTax" : 12345.0,
"unitAmountTax" : 12345.0,
"quantity" : 12345.0,
"amountWithoutTax" : 12345.0,
"amountWithTax" : 12345.0,
"amountTax" : 12345.0,
"code" : "...",
"description" : "...",
"unityDescription" : "...",
"priceplanCode" : "...",
"doNotTriggerInvoicing" : true
} ]
}