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-03-02/Invoices.d.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -298,7 +298,7 @@ declare module 'stripe' {
298
298
/**
299
299
* The account (if any) the payment will be attributed to for tax reporting, and where funds from the payment will be transferred to for the invoice.
300
300
*/
301
-
transfer_data?: Invoice.TransferData|null;
301
+
transfer_data: Invoice.TransferData|null;
302
302
303
303
/**
304
304
* Invoices are automatically paid or sent 1 hour after webhooks are delivered, or until all webhook delivery attempts have [been exhausted](https://stripe.com/docs/billing/webhooks#understand). This field tracks the time when webhooks for this invoice were successfully delivered. If the invoice had no webhooks to deliver, this will be set while the invoice is being created.
Copy file name to clipboardexpand all lines: types/2020-03-02/PaymentMethods.d.ts
+56
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ declare module 'stripe' {
18
18
19
19
bacs_debit?: PaymentMethod.BacsDebit;
20
20
21
+
bancontact?: PaymentMethod.Bancontact;
22
+
21
23
billing_details: PaymentMethod.BillingDetails;
22
24
23
25
card?: PaymentMethod.Card;
@@ -34,8 +36,12 @@ declare module 'stripe' {
34
36
*/
35
37
customer: string|Stripe.Customer|null;
36
38
39
+
eps?: PaymentMethod.Eps;
40
+
37
41
fpx?: PaymentMethod.Fpx;
38
42
43
+
giropay?: PaymentMethod.Giropay;
44
+
39
45
ideal?: PaymentMethod.Ideal;
40
46
41
47
interac_present?: PaymentMethod.InteracPresent;
@@ -50,6 +56,8 @@ declare module 'stripe' {
50
56
*/
51
57
metadata: Metadata;
52
58
59
+
p24?: PaymentMethod.P24;
60
+
53
61
sepa_debit?: PaymentMethod.SepaDebit;
54
62
55
63
/**
@@ -93,6 +101,8 @@ declare module 'stripe' {
93
101
sort_code: string|null;
94
102
}
95
103
104
+
interfaceBancontact{}
105
+
96
106
interfaceBillingDetails{
97
107
/**
98
108
* Billing address.
@@ -296,6 +306,8 @@ declare module 'stripe' {
296
306
297
307
interfaceCardPresent{}
298
308
309
+
interfaceEps{}
310
+
299
311
interfaceFpx{
300
312
/**
301
313
* Account holder type, if provided. Can be one of `individual` or `company`.
@@ -334,6 +346,8 @@ declare module 'stripe' {
334
346
|'uob';
335
347
}
336
348
349
+
interfaceGiropay{}
350
+
337
351
interfaceIdeal{
338
352
/**
339
353
* The customer's bank, if provided. Can be one of `abn_amro`, `asn_bank`, `bunq`, `handelsbanken`, `ing`, `knab`, `moneyou`, `rabobank`, `regiobank`, `sns_bank`, `triodos_bank`, or `van_lanschot`.
@@ -378,6 +392,8 @@ declare module 'stripe' {
378
392
379
393
interfaceInteracPresent{}
380
394
395
+
interfaceP24{}
396
+
381
397
interfaceSepaDebit{
382
398
/**
383
399
* Bank code of bank associated with the bank account.
@@ -408,10 +424,14 @@ declare module 'stripe' {
408
424
typeType=
409
425
|'au_becs_debit'
410
426
|'bacs_debit'
427
+
|'bancontact'
411
428
|'card'
412
429
|'card_present'
430
+
|'eps'
413
431
|'fpx'
432
+
|'giropay'
414
433
|'ideal'
434
+
|'p24'
415
435
|'sepa_debit';
416
436
}
417
437
@@ -426,6 +446,11 @@ declare module 'stripe' {
426
446
*/
427
447
bacs_debit?: PaymentMethodCreateParams.BacsDebit;
428
448
449
+
/**
450
+
* If this is a `bancontact` PaymentMethod, this hash contains details about the Bancontact payment method.
Copy file name to clipboardexpand all lines: types/2020-03-02/SubscriptionSchedules.d.ts
+2-2
Original file line number
Diff line number
Diff line change
@@ -119,7 +119,7 @@ declare module 'stripe' {
119
119
/**
120
120
* The account (if any) the subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
* The account (if any) the subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
Copy file name to clipboardexpand all lines: types/2020-03-02/Subscriptions.d.ts
+1-1
Original file line number
Diff line number
Diff line change
@@ -185,7 +185,7 @@ declare module 'stripe' {
185
185
/**
186
186
* The account (if any) the subscription's payments will be attributed to for tax reporting, and where funds from each payment will be transferred to for each of the subscription's invoices.
187
187
*/
188
-
transfer_data?: Subscription.TransferData|null;
188
+
transfer_data: Subscription.TransferData|null;
189
189
190
190
/**
191
191
* If the subscription has a trial, the end of that trial.
0 commit comments