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

    Details about the movement of money. Breakdowns are further categorized into breakdown types, breakdown amounts, and sub-breakdowns.

    interface Breakdown {
        breakdownAmount: Currency;
        breakdowns?: Breakdown[];
        breakdownType: string;
    }
    Index
    breakdownAmount: Currency
    breakdowns?: Breakdown[]

    A list of breakdowns that detail how the total amount is calculated.

    breakdownType: string

    The type of charge. Possible values for invoiceAmountBreakdowns: * Total: Total invoice amount. * InvoiceAmountWithoutTax: Invoice amount excluding tax. * TaxAmount: Tax amount on the invoice. * MiscCharges: Miscellaneous charges on the invoice. * Other: Other breakdown type. Possible values for invoiceSettlementBreakdowns: * AmountPaid: Amount that has been paid. * QueuedForPayment: Amount queued for payment. * QuickPayDiscount: Quick pay discount amount. * QuantityVarianceAmount: Quantity variance amount. * PriceVariance: Price variance amount. * Other: Other settlement breakdown type. Possible values for totalAmountBreakdown (line item level): * ItemCostWithoutTax: Line item cost excluding tax. * ItemTaxAmount: Tax amount on the line item. * Other: Other line item breakdown type.