From f7fd2183703aa142d182a409e2d9ecf5154ce693 Mon Sep 17 00:00:00 2001 From: Akhil Bojedla Date: Tue, 9 Jul 2019 00:42:01 +0200 Subject: [PATCH] Added payment_method to Stripe's IPaymentIntentConfirmOptions (#36686) --- types/stripe/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/stripe/index.d.ts b/types/stripe/index.d.ts index d9af4b6dfe..d8ad5f59ce 100644 --- a/types/stripe/index.d.ts +++ b/types/stripe/index.d.ts @@ -4300,6 +4300,11 @@ declare namespace Stripe { */ client_secret?: string; + /** + * ID of the payment method (a PaymentMethod, Card, BankAccount, or saved Source object) to attach to this PaymentIntent. + */ + payment_method?: string; + /** * Email address that the receipt for the resulting payment will be sent to. */