InvoiceLineItemResponse
Response model representing a single line item on an invoice.
Properties
| Name | Type | Description |
|---|---|---|
| applicationCode* | string | The application that submitted this line item. |
The application that submitted this line item. | ||
| description* | string | Description of the charge. |
Description of the charge. | ||
| amount | number | Net amount in pounds. |
Net amount in pounds. | ||
| quantity | integer | Quantity of items. |
Quantity of items. | ||
| vatRate | number | VAT rate as a percentage (e.g., 20.00). |
VAT rate as a percentage (e.g., 20.00). | ||
| vatAmount | number | VAT amount in pounds. |
VAT amount in pounds. | ||
| periodStart | string | Start date of the billing period. |
Start date of the billing period. | ||
| periodEnd | string | End date of the billing period. |
End date of the billing period. | ||
JSON Example
{
"applicationCode": "string",
"description": "string",
"amount": 0,
"quantity": 0,
"vatRate": 0
}