InvoiceLineDto
Invoice line DTO model.
lineNumberstringnullable
The line sequence number
Example:
1descriptionstringnullable
Specifies the description of the invoice line
Example:
Macbook Pro 14 inch, 512gb SSD, 16GB RAM, Space Greynamestringnullable
A short name optionally given to this item, such as a name from a catalogue, as distinct from a description
Example:
MACBOOKPRO14-SGquantitynumber<double>nullable
The quantity of the item in the invoice line
Example:
1unitOfMeasurestringnullable
Unit of measure for the invoice line
Example:
PcslineAmountExVatnumber<double>required
The line amount not including VAT
Example:
108lineVatAmountnumber<double>required
The line VAT amount
Example:
27lineAmountInclVatnumber<double>required
The line amount including VAT
Example:
135additionalFields objectnullable
Additional custom fields for flexible data storage
property name*string
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,
"additionalFields": {
"customField1": "value1",
"customField2": "value2"
}
}