const stripe = Stripe('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'); const elements = stripe.elements(); const options = { amount: 9900, // $99.00 USD currency: 'USD', paymentMethodTypes: ['klarna', 'afterpay_clearpay', 'affirm'], // the country that the end-buyer is in countryCode: 'US', }; const PaymentMessageElement = elements.create('paymentMethodMessaging', options); PaymentMessageElement.mount('#payment-method-messaging-element');