Items
The class represents a single row that appears on an invoice. Typically a purchased commodity but it can also be a more abstract think such as a discount with a negative value.
| Property | Data Type | Default Value | Description |
|---|---|---|---|
| Description | String (max. 35 characters) | None. Must be specified. | A shorter description of the item (that would typically appear on an invoice line) |
| Notes | String (max. 35 characters) | An empty string | An optional longer description of the item that might or might not be displayed on the invoice. |
| Amount | Decimal | None. Must be specified. | The item amount. Can be negative, zero or positive. The tax amount should be included in the amount. |
| TaxCode | String | An empty string. | The tax code. The value should be in %. If tax code are 25% send in 25. |
| TaxAmount | Decimal | 0.00 | The item tax amount. Can be zero or positive. |