Skip to content

Commit

Permalink
Add allow_redisplay to Typescript definitions (#572)
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcquinn-stripe authored Mar 7, 2024
1 parent 20b5632 commit 7f5a38b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions types/stripe-js/payment-intents.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1422,6 +1422,11 @@ export interface ConfirmPaymentData extends PaymentIntentConfirmParams {
* @docs https://stripe.com/docs/api/payment_intents/create#create_payment_intent-payment_method_data-billing_details
*/
billing_details?: PaymentMethodCreateParams.BillingDetails;

/**
* Specifies if the PaymentMethod should be redisplayed when using the Saved Payment Method feature
*/
allow_redisplay?: 'always' | 'limited' | 'unspecified';
};

/**
Expand Down

0 comments on commit 7f5a38b

Please sign in to comment.