You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: types/stripe/index.d.ts
+47
Original file line number
Diff line number
Diff line change
@@ -3359,6 +3359,15 @@ declare namespace Stripe {
3359
3359
source?: string;
3360
3360
}
3361
3361
3362
+
interfaceIPaymentIntentRetrieveOptions{
3363
+
/**
3364
+
* The client secret of the PaymentIntent. Required if a publishable key is used to retrieve the source.
3365
+
*
3366
+
* REQUIRED IF USING PUBLISHABLE KEY!
3367
+
*/
3368
+
client_secret: string;
3369
+
}
3370
+
3362
3371
interfaceIPaymentIntentCaptureOptions{
3363
3372
/**
3364
3373
* The amount to capture (in cents) from the PaymentIntent, which must be less than or equal to the original amount. Any additional amount will be automatically refunded. Defaults to the full `amount_capturable` if not provided.
@@ -7276,6 +7285,17 @@ declare namespace Stripe {
7276
7285
* Client-side retrieval using a publishable key is allowed when the client_secret is provided in the query string.
7277
7286
* When retrieved with a publishable key, only a subset of properties will be returned. Please refer to the payment intent object reference for more details.
* A PaymentIntent object can be canceled when it is in one of these statuses: `requires_payment_method`, `requires_capture`, `requires_confirmation`, `requires_action`.
0 commit comments