Skip to main content

DocumentLineResponseDto

lineNumberstringnullablerequired

The document line number.

itemDescriptionstringnullablerequired

The description of the item.

itemCodestringnullablerequired

The code of the item.

quantitynumber<double>nullablerequired

The quantity of the item.

unitOfMeasurestringnullablerequired

The unit of measure for the item.

unitPricenumber<double>nullablerequired

The unit price of the item.

lineAmountExVatnumber<double>nullablerequired

The line amount excluding VAT.

lineVatAmountnumber<double>nullablerequired

The line VAT amount.

lineVatRatenumber<double>nullablerequired

The line VAT rate.

lineAmountInclVatnumber<double>nullablerequired

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"
    }
    ]
    }