Skip to content

Commit

Permalink
Merge pull request #910 from stripe/remi/codegen-8a11585
Browse files Browse the repository at this point in the history
Add support for Bancontact, EPS, Giropay and P24 on Checkout `Session`
  • Loading branch information
remi-stripe authored Jun 3, 2020
2 parents 5a38be3 + c973d65 commit 82387e6
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion types/2020-03-02/Checkout/Sessions.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,15 @@ declare module 'stripe' {
}
}

type PaymentMethodType = 'bacs_debit' | 'card' | 'fpx' | 'ideal';
type PaymentMethodType =
| 'bacs_debit'
| 'bancontact'
| 'card'
| 'eps'
| 'fpx'
| 'giropay'
| 'ideal'
| 'p24';

interface SetupIntentData {
/**
Expand Down

0 comments on commit 82387e6

Please sign in to comment.