Skip to main content

DocumentLineResponseDto

lineNumberstringnullablerequired

The document line number.

itemDescriptionstringnullablerequired

The description of the item.

itemCodestringnullablerequired

The code of the item.

quantitydoublenullablerequired

The quantity of the item.

unitOfMeasurestringnullablerequired

The unit of measure for the item.

unitPricedoublenullablerequired

The unit price of the item.

lineAmountExVatdoublenullablerequired

The line amount excluding VAT.

lineVatAmountdoublenullablerequired

The line VAT amount.

lineVatRatedoublenullablerequired

The line VAT rate.

lineAmountInclVatdoublenullablerequired

The line amount including VAT.

customFields object[]nullablerequired

The list of line-level custom fields associated with the document line.

  • Array [
  • idstringrequired

    The unique identifier of the custom field.

    fieldNamestringrequired

    The name of the custom field.

    fieldValue objectnullablerequired

    The value of the custom field, which can be either a string or a number.

    oneOf
    string
  • ]
  • DocumentLineResponseDto
    {
    "lineNumber": "string",
    "itemDescription": "string",
    "itemCode": "string",
    "quantity": 0,
    "unitOfMeasure": "string",
    "unitPrice": 0,
    "lineAmountExVat": 0,
    "lineVatAmount": 0,
    "lineVatRate": 0,
    "lineAmountInclVat": 0,
    "customFields": [
    {
    "id": "string",
    "fieldName": "string",
    "fieldValue": "string"
    }
    ]
    }