Interface SupplementaryPurchaseData

Supplementary Purchase Data

interface SupplementaryPurchaseData {
    customer?: Customer;
    lineItems?: LineItem[];
    ondemandService?: OndemandService;
    purchaseReference?: string;
    shipping?: Shipping[];
}

Properties

customer?: Customer

Information about the customer.

lineItems?: LineItem[]

Optional line items describing the purchase, the total sum of the line items must match the payment amount.

ondemandService?: OndemandService

On Demand information.

purchaseReference?: string

Consumer-facing order number. It will be displayed to consumers on the Klarna app and other communications. It will also be included in settlement reports for reconciliation.

shipping?: Shipping[]

The recipient and delivery address of the consumer.