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/2020-08-27/SetupAttempts.d.ts
+165Lines changed: 165 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -70,15 +70,69 @@ declare module 'stripe' {
70
70
71
71
namespaceSetupAttempt{
72
72
interfacePaymentMethodDetails{
73
+
bancontact?: PaymentMethodDetails.Bancontact;
74
+
73
75
card?: PaymentMethodDetails.Card;
74
76
77
+
ideal?: PaymentMethodDetails.Ideal;
78
+
79
+
sofort?: PaymentMethodDetails.Sofort;
80
+
75
81
/**
76
82
* The type of the payment method used in the SetupIntent (e.g., `card`). An additional hash is included on `payment_method_details` with a name matching this value. It contains confirmation-specific information for the payment method.
77
83
*/
78
84
type: string;
79
85
}
80
86
81
87
namespacePaymentMethodDetails{
88
+
interfaceBancontact{
89
+
/**
90
+
* Bank code of bank associated with the bank account.
91
+
*/
92
+
bank_code: string|null;
93
+
94
+
/**
95
+
* Name of the bank associated with the bank account.
96
+
*/
97
+
bank_name: string|null;
98
+
99
+
/**
100
+
* Bank Identifier Code of the bank associated with the bank account.
101
+
*/
102
+
bic: string|null;
103
+
104
+
/**
105
+
* The ID of the SEPA Direct Debit PaymentMethod which was generated by this SetupAttempt.
* Owner's verified full name. Values are verified or provided by Bancontact directly
127
+
* (if supported) at the time of authorization or settlement. They cannot be set or mutated.
128
+
*/
129
+
verified_name: string|null;
130
+
}
131
+
132
+
namespaceBancontact{
133
+
typePreferredLanguage='de'|'en'|'fr'|'nl';
134
+
}
135
+
82
136
interfaceCard{
83
137
/**
84
138
* Populated if this authorization used 3D Secure authentication.
@@ -133,6 +187,117 @@ declare module 'stripe' {
133
187
typeVersion='1.0.2'|'2.1.0'|'2.2.0';
134
188
}
135
189
}
190
+
191
+
interfaceIdeal{
192
+
/**
193
+
* The customer's bank. Can be one of `abn_amro`, `asn_bank`, `bunq`, `handelsbanken`, `ing`, `knab`, `moneyou`, `rabobank`, `regiobank`, `sns_bank`, `triodos_bank`, or `van_lanschot`.
194
+
*/
195
+
bank: Ideal.Bank|null;
196
+
197
+
/**
198
+
* The Bank Identifier Code of the customer's bank.
199
+
*/
200
+
bic: Ideal.Bic|null;
201
+
202
+
/**
203
+
* The ID of the SEPA Direct Debit PaymentMethod which was generated by this SetupAttempt.
0 commit comments