Skip to main content

InvoiceLineDto

Invoice line DTO model.

lineNumberstringnullable

The line sequence number

Example: 1
descriptionstringnullable

Specifies the description of the invoice line

Example: Macbook Pro 14 inch, 512gb SSD, 16GB RAM, Space Grey
namestringnullable

A short name optionally given to this item, such as a name from a catalogue, as distinct from a description

Example: MACBOOKPRO14-SG
quantitynumber<double>nullable

The quantity of the item in the invoice line

Example: 1
unitOfMeasurestringnullable

Unit of measure for the invoice line

Example: Pcs
lineAmountExVatnumber<double>required

The line amount not including VAT

Example: 108
lineVatAmountnumber<double>required

The line VAT amount

Example: 27
lineAmountInclVatnumber<double>required

The line amount including VAT

Example: 135
InvoiceLineDto
{
"lineNumber": "1",
"description": "Macbook Pro 14 inch, 512gb SSD, 16GB RAM, Space Grey",
"name": "MACBOOKPRO14-SG",
"quantity": 1,
"unitOfMeasure": "Pcs",
"lineAmountExVat": 108,
"lineVatAmount": 27,
"lineAmountInclVat": 135
}