const metadata: RequiredMetadata = {
buyer_name: "Teszt Elek",
country: "Hungary",
zip: "1234",
city: "TestCity",
address: "Test street, 12, A/5",
email: "test@test.test",
identifier: "szamla-42",
vat: "27",
comment: "whatwhatwhat",
is_unit_price_gross: "true",
label: "label",
quantity: "5",
unit: "db",
unit_price: "500",
};
const paymentIntent = await stripe
.paymentIntents
.create({
amount: calculateOrderAmount(items),
currency: "huf",
automatic_payment_methods: {
enabled: true,
},
metadata,
});