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: '',
cancel_url: '',
});