Interface KlarnaPlacementOptions

Create a Klarna placement

Klarna.Messaging.placement({
key: 'credit-promotion-auto-size',
amount: 2000,
locale: 'en-GB',
}).mount('#test-container');
interface KlarnaPlacementOptions {
    amount?: number;
    instance?: string;
    key: PlacementKey;
    locale: string;
    messagePrefix?: MessagePrefix;
    theme?: "default" | "light" | "dark" | "outlined";
}

Properties

amount?: number
instance?: string
locale: string
messagePrefix?: MessagePrefix
theme?: "default" | "light" | "dark" | "outlined"