Amazon Selling Partner API (SP-API) SDK for TypeScript
    Preparing search index...

    A line item within an invoice, including unit costs, quantities, tax information, and contextual details about the goods or services being invoiced.

    interface InvoiceItem {
        lineItemContext: LineItemContext;
        lineItemId: string;
        quantity?: number;
        relatedItemIdentifiers?: RelatedIdentifier[];
        taxRateCodes?: string[];
        totalAmount: Currency;
        totalAmountBreakdown?: Breakdown[];
        unitCost?: Currency;
    }
    Index
    lineItemContext: LineItemContext
    lineItemId: string

    The unique identifier for the line item.

    quantity?: number

    The number of units for the line item.

    relatedItemIdentifiers?: RelatedIdentifier[]

    List of related item identifiers for the line item.

    taxRateCodes?: string[]

    A list of country code and tax rate combinations applied to the line item. Example: DE 19

    totalAmount: Currency
    totalAmountBreakdown?: Breakdown[]

    The breakdown of the total amount into sub-components. Possible breakdownType values: * ItemCostWithoutTax: Line item cost excluding tax. * ItemTaxAmount: Tax amount on the line item. * Other: Other line item breakdown type.

    unitCost?: Currency