Price Data/Price ID
(Create products on the fly)
Payment Methods

const session = await stripe.checkout.sessions.create({
 line_items: [{
  price_data: {
   currency: 'usd',
   unit_amount: 1000,
   product_data:{
    name: 'Stripe Playground',
    description: 'This is a playground to check out Stripe Checkout',
   },
  },
 quantity: 1,
 }],
mode: 'payment',
success_url: 'undefined',
cancel_url: 'undefined',
});