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

    How an invoice line item's quantity and price were matched against expected values, including any variances and their underlying reasons.

    interface MatchingContext {
        matchedAmount: Currency;
        matchedQuantity: number;
        paidAmount?: Currency;
        paidQuantity?: number;
        priceVariance?: Currency;
        quantityVariance?: number;
        varianceReasons?: VarianceReason[];
    }
    Index
    matchedAmount: Currency
    matchedQuantity: number

    The quantity that was matched.

    paidAmount?: Currency
    paidQuantity?: number

    The quantity that has been paid for.

    priceVariance?: Currency
    quantityVariance?: number

    The difference between expected and actual quantity.

    varianceReasons?: VarianceReason[]

    Reasons for the variance.