stripe 22.2.1 → 22.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/README.md +18 -11
  3. package/VERSION +1 -1
  4. package/cjs/resources/Apps/index.d.ts +1 -1
  5. package/cjs/resources/Billing/index.d.ts +7 -7
  6. package/cjs/resources/BillingPortal/index.d.ts +2 -2
  7. package/cjs/resources/Checkout/Sessions.d.ts +2 -1
  8. package/cjs/resources/Checkout/index.d.ts +1 -1
  9. package/cjs/resources/Climate/index.d.ts +3 -3
  10. package/cjs/resources/CreditNotes.d.ts +2 -1
  11. package/cjs/resources/Entitlements/index.d.ts +2 -2
  12. package/cjs/resources/FinancialConnections/index.d.ts +3 -3
  13. package/cjs/resources/Forwarding/index.d.ts +1 -1
  14. package/cjs/resources/Identity/index.d.ts +2 -2
  15. package/cjs/resources/Issuing/index.d.ts +8 -8
  16. package/cjs/resources/LineItems.d.ts +2 -1
  17. package/cjs/resources/Quotes.d.ts +5 -5
  18. package/cjs/resources/Radar/index.d.ts +6 -4
  19. package/cjs/resources/Reporting/index.d.ts +2 -2
  20. package/cjs/resources/Reserve/index.js +1 -2
  21. package/cjs/resources/Reserve/index.js.map +1 -1
  22. package/cjs/resources/Sigma/index.d.ts +1 -1
  23. package/cjs/resources/SubscriptionSchedules.d.ts +4 -3
  24. package/cjs/resources/Tax/index.d.ts +5 -5
  25. package/cjs/resources/Terminal/index.d.ts +8 -5
  26. package/cjs/resources/TestHelpers/index.d.ts +2 -1
  27. package/cjs/resources/Treasury/index.d.ts +10 -10
  28. package/cjs/resources/V2/Billing/index.d.ts +3 -3
  29. package/cjs/resources/V2/Core/index.d.ts +5 -5
  30. package/cjs/stripe.cjs.node.d.ts +2513 -1
  31. package/cjs/stripe.cjs.node.js +1 -4
  32. package/cjs/stripe.cjs.node.js.map +1 -1
  33. package/cjs/stripe.core.d.ts +44 -1
  34. package/cjs/stripe.core.js +2 -1
  35. package/cjs/stripe.core.js.map +1 -1
  36. package/esm/resources/Apps/index.d.ts +1 -1
  37. package/esm/resources/Billing/index.d.ts +7 -7
  38. package/esm/resources/BillingPortal/index.d.ts +2 -2
  39. package/esm/resources/Checkout/Sessions.d.ts +2 -1
  40. package/esm/resources/Checkout/index.d.ts +1 -1
  41. package/esm/resources/Climate/index.d.ts +3 -3
  42. package/esm/resources/CreditNotes.d.ts +2 -1
  43. package/esm/resources/Entitlements/index.d.ts +2 -2
  44. package/esm/resources/FinancialConnections/index.d.ts +3 -3
  45. package/esm/resources/Forwarding/index.d.ts +1 -1
  46. package/esm/resources/Identity/index.d.ts +2 -2
  47. package/esm/resources/Issuing/index.d.ts +8 -8
  48. package/esm/resources/LineItems.d.ts +2 -1
  49. package/esm/resources/Quotes.d.ts +5 -5
  50. package/esm/resources/Radar/index.d.ts +6 -4
  51. package/esm/resources/Reporting/index.d.ts +2 -2
  52. package/esm/resources/Reserve/index.js +1 -2
  53. package/esm/resources/Reserve/index.js.map +1 -1
  54. package/esm/resources/Sigma/index.d.ts +1 -1
  55. package/esm/resources/SubscriptionSchedules.d.ts +4 -3
  56. package/esm/resources/Tax/index.d.ts +5 -5
  57. package/esm/resources/Terminal/index.d.ts +8 -5
  58. package/esm/resources/TestHelpers/index.d.ts +2 -1
  59. package/esm/resources/Treasury/index.d.ts +10 -10
  60. package/esm/resources/V2/Billing/index.d.ts +3 -3
  61. package/esm/resources/V2/Core/index.d.ts +5 -5
  62. package/esm/stripe.core.d.ts +44 -1
  63. package/esm/stripe.core.js +2 -1
  64. package/esm/stripe.core.js.map +1 -1
  65. package/esm/stripe.esm.node.d.ts +44 -1
  66. package/esm/stripe.esm.node.js +2 -3
  67. package/esm/stripe.esm.node.js.map +1 -1
  68. package/package.json +1 -1
@@ -1,9 +1,2521 @@
1
1
  import { Stripe } from './stripe.core.js';
2
+ import { StripeConfig } from './lib.js';
2
3
  type StripeCallableConstructor = typeof Stripe & {
3
- (key: string, config?: Record<string, unknown>): Stripe;
4
+ (key: string, config?: StripeConfig): Stripe;
4
5
  };
5
6
  declare const StripeConstructor: StripeCallableConstructor;
7
+ interface StripeConstructor extends Stripe {
8
+ }
6
9
  declare namespace StripeConstructor {
7
10
  type Stripe = import('./stripe.core.js').Stripe;
11
+ type Account = Stripe.Account;
12
+ type DeletedAccount = Stripe.DeletedAccount;
13
+ type AccountCreateParams = Stripe.AccountCreateParams;
14
+ type AccountRetrieveParams = Stripe.AccountRetrieveParams;
15
+ type AccountUpdateParams = Stripe.AccountUpdateParams;
16
+ type AccountListParams = Stripe.AccountListParams;
17
+ type AccountDeleteParams = Stripe.AccountDeleteParams;
18
+ type AccountCreateExternalAccountParams = Stripe.AccountCreateExternalAccountParams;
19
+ type AccountCreateLoginLinkParams = Stripe.AccountCreateLoginLinkParams;
20
+ type AccountCreatePersonParams = Stripe.AccountCreatePersonParams;
21
+ type AccountDeleteExternalAccountParams = Stripe.AccountDeleteExternalAccountParams;
22
+ type AccountDeletePersonParams = Stripe.AccountDeletePersonParams;
23
+ type AccountListCapabilitiesParams = Stripe.AccountListCapabilitiesParams;
24
+ type AccountListExternalAccountsParams = Stripe.AccountListExternalAccountsParams;
25
+ type AccountListPersonsParams = Stripe.AccountListPersonsParams;
26
+ type AccountRejectParams = Stripe.AccountRejectParams;
27
+ type AccountRetrieveCurrentParams = Stripe.AccountRetrieveCurrentParams;
28
+ type AccountRetrieveCapabilityParams = Stripe.AccountRetrieveCapabilityParams;
29
+ type AccountRetrieveExternalAccountParams = Stripe.AccountRetrieveExternalAccountParams;
30
+ type AccountRetrievePersonParams = Stripe.AccountRetrievePersonParams;
31
+ type AccountUpdateCapabilityParams = Stripe.AccountUpdateCapabilityParams;
32
+ type AccountUpdateExternalAccountParams = Stripe.AccountUpdateExternalAccountParams;
33
+ type AccountUpdatePersonParams = Stripe.AccountUpdatePersonParams;
34
+ type AccountResource = Stripe.AccountResource;
35
+ type AccountLink = Stripe.AccountLink;
36
+ type AccountLinkCreateParams = Stripe.AccountLinkCreateParams;
37
+ type AccountLinkResource = Stripe.AccountLinkResource;
38
+ type AccountSession = Stripe.AccountSession;
39
+ type AccountSessionCreateParams = Stripe.AccountSessionCreateParams;
40
+ type AccountSessionResource = Stripe.AccountSessionResource;
41
+ type ApplePayDomain = Stripe.ApplePayDomain;
42
+ type DeletedApplePayDomain = Stripe.DeletedApplePayDomain;
43
+ type ApplePayDomainCreateParams = Stripe.ApplePayDomainCreateParams;
44
+ type ApplePayDomainRetrieveParams = Stripe.ApplePayDomainRetrieveParams;
45
+ type ApplePayDomainListParams = Stripe.ApplePayDomainListParams;
46
+ type ApplePayDomainDeleteParams = Stripe.ApplePayDomainDeleteParams;
47
+ type ApplePayDomainResource = Stripe.ApplePayDomainResource;
48
+ type ApplicationFee = Stripe.ApplicationFee;
49
+ type ApplicationFeeRetrieveParams = Stripe.ApplicationFeeRetrieveParams;
50
+ type ApplicationFeeListParams = Stripe.ApplicationFeeListParams;
51
+ type ApplicationFeeCreateRefundParams = Stripe.ApplicationFeeCreateRefundParams;
52
+ type ApplicationFeeListRefundsParams = Stripe.ApplicationFeeListRefundsParams;
53
+ type ApplicationFeeRetrieveRefundParams = Stripe.ApplicationFeeRetrieveRefundParams;
54
+ type ApplicationFeeUpdateRefundParams = Stripe.ApplicationFeeUpdateRefundParams;
55
+ type ApplicationFeeResource = Stripe.ApplicationFeeResource;
56
+ type Balance = Stripe.Balance;
57
+ type BalanceRetrieveParams = Stripe.BalanceRetrieveParams;
58
+ type BalanceResource = Stripe.BalanceResource;
59
+ type BalanceSettings = Stripe.BalanceSettings;
60
+ type BalanceSettingsRetrieveParams = Stripe.BalanceSettingsRetrieveParams;
61
+ type BalanceSettingsUpdateParams = Stripe.BalanceSettingsUpdateParams;
62
+ type BalanceSettingResource = Stripe.BalanceSettingResource;
63
+ type BalanceTransaction = Stripe.BalanceTransaction;
64
+ type BalanceTransactionRetrieveParams = Stripe.BalanceTransactionRetrieveParams;
65
+ type BalanceTransactionListParams = Stripe.BalanceTransactionListParams;
66
+ type BalanceTransactionResource = Stripe.BalanceTransactionResource;
67
+ type Charge = Stripe.Charge;
68
+ type ChargeCreateParams = Stripe.ChargeCreateParams;
69
+ type ChargeRetrieveParams = Stripe.ChargeRetrieveParams;
70
+ type ChargeUpdateParams = Stripe.ChargeUpdateParams;
71
+ type ChargeListParams = Stripe.ChargeListParams;
72
+ type ChargeCaptureParams = Stripe.ChargeCaptureParams;
73
+ type ChargeSearchParams = Stripe.ChargeSearchParams;
74
+ type ChargeResource = Stripe.ChargeResource;
75
+ type ConfirmationToken = Stripe.ConfirmationToken;
76
+ type ConfirmationTokenRetrieveParams = Stripe.ConfirmationTokenRetrieveParams;
77
+ type ConfirmationTokenResource = Stripe.ConfirmationTokenResource;
78
+ type CountrySpec = Stripe.CountrySpec;
79
+ type CountrySpecRetrieveParams = Stripe.CountrySpecRetrieveParams;
80
+ type CountrySpecListParams = Stripe.CountrySpecListParams;
81
+ type CountrySpecResource = Stripe.CountrySpecResource;
82
+ type Coupon = Stripe.Coupon;
83
+ type DeletedCoupon = Stripe.DeletedCoupon;
84
+ type CouponCreateParams = Stripe.CouponCreateParams;
85
+ type CouponRetrieveParams = Stripe.CouponRetrieveParams;
86
+ type CouponUpdateParams = Stripe.CouponUpdateParams;
87
+ type CouponListParams = Stripe.CouponListParams;
88
+ type CouponDeleteParams = Stripe.CouponDeleteParams;
89
+ type CouponResource = Stripe.CouponResource;
90
+ type CreditNote = Stripe.CreditNote;
91
+ type CreditNoteCreateParams = Stripe.CreditNoteCreateParams;
92
+ type CreditNoteRetrieveParams = Stripe.CreditNoteRetrieveParams;
93
+ type CreditNoteUpdateParams = Stripe.CreditNoteUpdateParams;
94
+ type CreditNoteListParams = Stripe.CreditNoteListParams;
95
+ type CreditNoteListLineItemsParams = Stripe.CreditNoteListLineItemsParams;
96
+ type CreditNoteListPreviewLineItemsParams = Stripe.CreditNoteListPreviewLineItemsParams;
97
+ type CreditNotePreviewParams = Stripe.CreditNotePreviewParams;
98
+ type CreditNoteVoidCreditNoteParams = Stripe.CreditNoteVoidCreditNoteParams;
99
+ type CreditNoteResource = Stripe.CreditNoteResource;
100
+ type Customer = Stripe.Customer;
101
+ type DeletedCustomer = Stripe.DeletedCustomer;
102
+ type CustomerCreateParams = Stripe.CustomerCreateParams;
103
+ type CustomerRetrieveParams = Stripe.CustomerRetrieveParams;
104
+ type CustomerUpdateParams = Stripe.CustomerUpdateParams;
105
+ type CustomerListParams = Stripe.CustomerListParams;
106
+ type CustomerDeleteParams = Stripe.CustomerDeleteParams;
107
+ type CustomerCreateBalanceTransactionParams = Stripe.CustomerCreateBalanceTransactionParams;
108
+ type CustomerCreateFundingInstructionsParams = Stripe.CustomerCreateFundingInstructionsParams;
109
+ type CustomerCreateSourceParams = Stripe.CustomerCreateSourceParams;
110
+ type CustomerCreateTaxIdParams = Stripe.CustomerCreateTaxIdParams;
111
+ type CustomerDeleteDiscountParams = Stripe.CustomerDeleteDiscountParams;
112
+ type CustomerDeleteSourceParams = Stripe.CustomerDeleteSourceParams;
113
+ type CustomerDeleteTaxIdParams = Stripe.CustomerDeleteTaxIdParams;
114
+ type CustomerListBalanceTransactionsParams = Stripe.CustomerListBalanceTransactionsParams;
115
+ type CustomerListCashBalanceTransactionsParams = Stripe.CustomerListCashBalanceTransactionsParams;
116
+ type CustomerListPaymentMethodsParams = Stripe.CustomerListPaymentMethodsParams;
117
+ type CustomerListSourcesParams = Stripe.CustomerListSourcesParams;
118
+ type CustomerListTaxIdsParams = Stripe.CustomerListTaxIdsParams;
119
+ type CustomerRetrieveBalanceTransactionParams = Stripe.CustomerRetrieveBalanceTransactionParams;
120
+ type CustomerRetrieveCashBalanceParams = Stripe.CustomerRetrieveCashBalanceParams;
121
+ type CustomerRetrieveCashBalanceTransactionParams = Stripe.CustomerRetrieveCashBalanceTransactionParams;
122
+ type CustomerRetrievePaymentMethodParams = Stripe.CustomerRetrievePaymentMethodParams;
123
+ type CustomerRetrieveSourceParams = Stripe.CustomerRetrieveSourceParams;
124
+ type CustomerRetrieveTaxIdParams = Stripe.CustomerRetrieveTaxIdParams;
125
+ type CustomerSearchParams = Stripe.CustomerSearchParams;
126
+ type CustomerUpdateBalanceTransactionParams = Stripe.CustomerUpdateBalanceTransactionParams;
127
+ type CustomerUpdateCashBalanceParams = Stripe.CustomerUpdateCashBalanceParams;
128
+ type CustomerUpdateSourceParams = Stripe.CustomerUpdateSourceParams;
129
+ type CustomerVerifySourceParams = Stripe.CustomerVerifySourceParams;
130
+ type CustomerResource = Stripe.CustomerResource;
131
+ type CustomerSession = Stripe.CustomerSession;
132
+ type CustomerSessionCreateParams = Stripe.CustomerSessionCreateParams;
133
+ type CustomerSessionResource = Stripe.CustomerSessionResource;
134
+ type Dispute = Stripe.Dispute;
135
+ type DisputeRetrieveParams = Stripe.DisputeRetrieveParams;
136
+ type DisputeUpdateParams = Stripe.DisputeUpdateParams;
137
+ type DisputeListParams = Stripe.DisputeListParams;
138
+ type DisputeCloseParams = Stripe.DisputeCloseParams;
139
+ type DisputeResource = Stripe.DisputeResource;
140
+ type EphemeralKey = Stripe.EphemeralKey;
141
+ type EphemeralKeyCreateParams = Stripe.EphemeralKeyCreateParams;
142
+ type EphemeralKeyDeleteParams = Stripe.EphemeralKeyDeleteParams;
143
+ type EphemeralKeyResource = Stripe.EphemeralKeyResource;
144
+ type Event = Stripe.Event;
145
+ type EventBase = Stripe.EventBase;
146
+ type EventRetrieveParams = Stripe.EventRetrieveParams;
147
+ type EventListParams = Stripe.EventListParams;
148
+ type EventResource = Stripe.EventResource;
149
+ type ExchangeRate = Stripe.ExchangeRate;
150
+ type ExchangeRateRetrieveParams = Stripe.ExchangeRateRetrieveParams;
151
+ type ExchangeRateListParams = Stripe.ExchangeRateListParams;
152
+ type ExchangeRateResource = Stripe.ExchangeRateResource;
153
+ type File = Stripe.File;
154
+ type FileCreateParams = Stripe.FileCreateParams;
155
+ type FileRetrieveParams = Stripe.FileRetrieveParams;
156
+ type FileListParams = Stripe.FileListParams;
157
+ type FileResource = Stripe.FileResource;
158
+ type FileLink = Stripe.FileLink;
159
+ type FileLinkCreateParams = Stripe.FileLinkCreateParams;
160
+ type FileLinkRetrieveParams = Stripe.FileLinkRetrieveParams;
161
+ type FileLinkUpdateParams = Stripe.FileLinkUpdateParams;
162
+ type FileLinkListParams = Stripe.FileLinkListParams;
163
+ type FileLinkResource = Stripe.FileLinkResource;
164
+ type Invoice = Stripe.Invoice;
165
+ type DeletedInvoice = Stripe.DeletedInvoice;
166
+ type InvoiceCreateParams = Stripe.InvoiceCreateParams;
167
+ type InvoiceRetrieveParams = Stripe.InvoiceRetrieveParams;
168
+ type InvoiceUpdateParams = Stripe.InvoiceUpdateParams;
169
+ type InvoiceListParams = Stripe.InvoiceListParams;
170
+ type InvoiceDeleteParams = Stripe.InvoiceDeleteParams;
171
+ type InvoiceAddLinesParams = Stripe.InvoiceAddLinesParams;
172
+ type InvoiceAttachPaymentParams = Stripe.InvoiceAttachPaymentParams;
173
+ type InvoiceCreatePreviewParams = Stripe.InvoiceCreatePreviewParams;
174
+ type InvoiceFinalizeInvoiceParams = Stripe.InvoiceFinalizeInvoiceParams;
175
+ type InvoiceListLineItemsParams = Stripe.InvoiceListLineItemsParams;
176
+ type InvoiceMarkUncollectibleParams = Stripe.InvoiceMarkUncollectibleParams;
177
+ type InvoicePayParams = Stripe.InvoicePayParams;
178
+ type InvoiceRemoveLinesParams = Stripe.InvoiceRemoveLinesParams;
179
+ type InvoiceSearchParams = Stripe.InvoiceSearchParams;
180
+ type InvoiceSendInvoiceParams = Stripe.InvoiceSendInvoiceParams;
181
+ type InvoiceUpdateLinesParams = Stripe.InvoiceUpdateLinesParams;
182
+ type InvoiceUpdateLineItemParams = Stripe.InvoiceUpdateLineItemParams;
183
+ type InvoiceVoidInvoiceParams = Stripe.InvoiceVoidInvoiceParams;
184
+ type InvoiceResource = Stripe.InvoiceResource;
185
+ type InvoiceItem = Stripe.InvoiceItem;
186
+ type DeletedInvoiceItem = Stripe.DeletedInvoiceItem;
187
+ type InvoiceItemCreateParams = Stripe.InvoiceItemCreateParams;
188
+ type InvoiceItemRetrieveParams = Stripe.InvoiceItemRetrieveParams;
189
+ type InvoiceItemUpdateParams = Stripe.InvoiceItemUpdateParams;
190
+ type InvoiceItemListParams = Stripe.InvoiceItemListParams;
191
+ type InvoiceItemDeleteParams = Stripe.InvoiceItemDeleteParams;
192
+ type InvoiceItemResource = Stripe.InvoiceItemResource;
193
+ type InvoicePayment = Stripe.InvoicePayment;
194
+ type InvoicePaymentRetrieveParams = Stripe.InvoicePaymentRetrieveParams;
195
+ type InvoicePaymentListParams = Stripe.InvoicePaymentListParams;
196
+ type InvoicePaymentResource = Stripe.InvoicePaymentResource;
197
+ type InvoiceRenderingTemplate = Stripe.InvoiceRenderingTemplate;
198
+ type InvoiceRenderingTemplateRetrieveParams = Stripe.InvoiceRenderingTemplateRetrieveParams;
199
+ type InvoiceRenderingTemplateListParams = Stripe.InvoiceRenderingTemplateListParams;
200
+ type InvoiceRenderingTemplateArchiveParams = Stripe.InvoiceRenderingTemplateArchiveParams;
201
+ type InvoiceRenderingTemplateUnarchiveParams = Stripe.InvoiceRenderingTemplateUnarchiveParams;
202
+ type InvoiceRenderingTemplateResource = Stripe.InvoiceRenderingTemplateResource;
203
+ type Mandate = Stripe.Mandate;
204
+ type MandateRetrieveParams = Stripe.MandateRetrieveParams;
205
+ type MandateResource = Stripe.MandateResource;
206
+ type PaymentAttemptRecord = Stripe.PaymentAttemptRecord;
207
+ type PaymentAttemptRecordRetrieveParams = Stripe.PaymentAttemptRecordRetrieveParams;
208
+ type PaymentAttemptRecordListParams = Stripe.PaymentAttemptRecordListParams;
209
+ type PaymentAttemptRecordResource = Stripe.PaymentAttemptRecordResource;
210
+ type PaymentIntent = Stripe.PaymentIntent;
211
+ type PaymentIntentCreateParams = Stripe.PaymentIntentCreateParams;
212
+ type PaymentIntentRetrieveParams = Stripe.PaymentIntentRetrieveParams;
213
+ type PaymentIntentUpdateParams = Stripe.PaymentIntentUpdateParams;
214
+ type PaymentIntentListParams = Stripe.PaymentIntentListParams;
215
+ type PaymentIntentApplyCustomerBalanceParams = Stripe.PaymentIntentApplyCustomerBalanceParams;
216
+ type PaymentIntentCancelParams = Stripe.PaymentIntentCancelParams;
217
+ type PaymentIntentCaptureParams = Stripe.PaymentIntentCaptureParams;
218
+ type PaymentIntentConfirmParams = Stripe.PaymentIntentConfirmParams;
219
+ type PaymentIntentIncrementAuthorizationParams = Stripe.PaymentIntentIncrementAuthorizationParams;
220
+ type PaymentIntentListAmountDetailsLineItemsParams = Stripe.PaymentIntentListAmountDetailsLineItemsParams;
221
+ type PaymentIntentSearchParams = Stripe.PaymentIntentSearchParams;
222
+ type PaymentIntentVerifyMicrodepositsParams = Stripe.PaymentIntentVerifyMicrodepositsParams;
223
+ type PaymentIntentResource = Stripe.PaymentIntentResource;
224
+ type PaymentLink = Stripe.PaymentLink;
225
+ type PaymentLinkCreateParams = Stripe.PaymentLinkCreateParams;
226
+ type PaymentLinkRetrieveParams = Stripe.PaymentLinkRetrieveParams;
227
+ type PaymentLinkUpdateParams = Stripe.PaymentLinkUpdateParams;
228
+ type PaymentLinkListParams = Stripe.PaymentLinkListParams;
229
+ type PaymentLinkListLineItemsParams = Stripe.PaymentLinkListLineItemsParams;
230
+ type PaymentLinkResource = Stripe.PaymentLinkResource;
231
+ type PaymentMethod = Stripe.PaymentMethod;
232
+ type PaymentMethodCreateParams = Stripe.PaymentMethodCreateParams;
233
+ type PaymentMethodRetrieveParams = Stripe.PaymentMethodRetrieveParams;
234
+ type PaymentMethodUpdateParams = Stripe.PaymentMethodUpdateParams;
235
+ type PaymentMethodListParams = Stripe.PaymentMethodListParams;
236
+ type PaymentMethodAttachParams = Stripe.PaymentMethodAttachParams;
237
+ type PaymentMethodDetachParams = Stripe.PaymentMethodDetachParams;
238
+ type PaymentMethodResource = Stripe.PaymentMethodResource;
239
+ type PaymentMethodConfiguration = Stripe.PaymentMethodConfiguration;
240
+ type PaymentMethodConfigurationCreateParams = Stripe.PaymentMethodConfigurationCreateParams;
241
+ type PaymentMethodConfigurationRetrieveParams = Stripe.PaymentMethodConfigurationRetrieveParams;
242
+ type PaymentMethodConfigurationUpdateParams = Stripe.PaymentMethodConfigurationUpdateParams;
243
+ type PaymentMethodConfigurationListParams = Stripe.PaymentMethodConfigurationListParams;
244
+ type PaymentMethodConfigurationResource = Stripe.PaymentMethodConfigurationResource;
245
+ type PaymentMethodDomain = Stripe.PaymentMethodDomain;
246
+ type PaymentMethodDomainCreateParams = Stripe.PaymentMethodDomainCreateParams;
247
+ type PaymentMethodDomainRetrieveParams = Stripe.PaymentMethodDomainRetrieveParams;
248
+ type PaymentMethodDomainUpdateParams = Stripe.PaymentMethodDomainUpdateParams;
249
+ type PaymentMethodDomainListParams = Stripe.PaymentMethodDomainListParams;
250
+ type PaymentMethodDomainValidateParams = Stripe.PaymentMethodDomainValidateParams;
251
+ type PaymentMethodDomainResource = Stripe.PaymentMethodDomainResource;
252
+ type PaymentRecord = Stripe.PaymentRecord;
253
+ type PaymentRecordRetrieveParams = Stripe.PaymentRecordRetrieveParams;
254
+ type PaymentRecordReportPaymentParams = Stripe.PaymentRecordReportPaymentParams;
255
+ type PaymentRecordReportPaymentAttemptParams = Stripe.PaymentRecordReportPaymentAttemptParams;
256
+ type PaymentRecordReportPaymentAttemptCanceledParams = Stripe.PaymentRecordReportPaymentAttemptCanceledParams;
257
+ type PaymentRecordReportPaymentAttemptFailedParams = Stripe.PaymentRecordReportPaymentAttemptFailedParams;
258
+ type PaymentRecordReportPaymentAttemptGuaranteedParams = Stripe.PaymentRecordReportPaymentAttemptGuaranteedParams;
259
+ type PaymentRecordReportPaymentAttemptInformationalParams = Stripe.PaymentRecordReportPaymentAttemptInformationalParams;
260
+ type PaymentRecordReportRefundParams = Stripe.PaymentRecordReportRefundParams;
261
+ type PaymentRecordResource = Stripe.PaymentRecordResource;
262
+ type Payout = Stripe.Payout;
263
+ type PayoutCreateParams = Stripe.PayoutCreateParams;
264
+ type PayoutRetrieveParams = Stripe.PayoutRetrieveParams;
265
+ type PayoutUpdateParams = Stripe.PayoutUpdateParams;
266
+ type PayoutListParams = Stripe.PayoutListParams;
267
+ type PayoutCancelParams = Stripe.PayoutCancelParams;
268
+ type PayoutReverseParams = Stripe.PayoutReverseParams;
269
+ type PayoutResource = Stripe.PayoutResource;
270
+ type Plan = Stripe.Plan;
271
+ type DeletedPlan = Stripe.DeletedPlan;
272
+ type PlanCreateParams = Stripe.PlanCreateParams;
273
+ type PlanRetrieveParams = Stripe.PlanRetrieveParams;
274
+ type PlanUpdateParams = Stripe.PlanUpdateParams;
275
+ type PlanListParams = Stripe.PlanListParams;
276
+ type PlanDeleteParams = Stripe.PlanDeleteParams;
277
+ type PlanResource = Stripe.PlanResource;
278
+ type Price = Stripe.Price;
279
+ type DeletedPrice = Stripe.DeletedPrice;
280
+ type PriceCreateParams = Stripe.PriceCreateParams;
281
+ type PriceRetrieveParams = Stripe.PriceRetrieveParams;
282
+ type PriceUpdateParams = Stripe.PriceUpdateParams;
283
+ type PriceListParams = Stripe.PriceListParams;
284
+ type PriceSearchParams = Stripe.PriceSearchParams;
285
+ type PriceResource = Stripe.PriceResource;
286
+ type Product = Stripe.Product;
287
+ type DeletedProduct = Stripe.DeletedProduct;
288
+ type ProductCreateParams = Stripe.ProductCreateParams;
289
+ type ProductRetrieveParams = Stripe.ProductRetrieveParams;
290
+ type ProductUpdateParams = Stripe.ProductUpdateParams;
291
+ type ProductListParams = Stripe.ProductListParams;
292
+ type ProductDeleteParams = Stripe.ProductDeleteParams;
293
+ type ProductCreateFeatureParams = Stripe.ProductCreateFeatureParams;
294
+ type ProductDeleteFeatureParams = Stripe.ProductDeleteFeatureParams;
295
+ type ProductListFeaturesParams = Stripe.ProductListFeaturesParams;
296
+ type ProductRetrieveFeatureParams = Stripe.ProductRetrieveFeatureParams;
297
+ type ProductSearchParams = Stripe.ProductSearchParams;
298
+ type ProductResource = Stripe.ProductResource;
299
+ type PromotionCode = Stripe.PromotionCode;
300
+ type PromotionCodeCreateParams = Stripe.PromotionCodeCreateParams;
301
+ type PromotionCodeRetrieveParams = Stripe.PromotionCodeRetrieveParams;
302
+ type PromotionCodeUpdateParams = Stripe.PromotionCodeUpdateParams;
303
+ type PromotionCodeListParams = Stripe.PromotionCodeListParams;
304
+ type PromotionCodeResource = Stripe.PromotionCodeResource;
305
+ type Quote = Stripe.Quote;
306
+ type QuoteCreateParams = Stripe.QuoteCreateParams;
307
+ type QuoteRetrieveParams = Stripe.QuoteRetrieveParams;
308
+ type QuoteUpdateParams = Stripe.QuoteUpdateParams;
309
+ type QuoteListParams = Stripe.QuoteListParams;
310
+ type QuoteAcceptParams = Stripe.QuoteAcceptParams;
311
+ type QuoteCancelParams = Stripe.QuoteCancelParams;
312
+ type QuoteFinalizeQuoteParams = Stripe.QuoteFinalizeQuoteParams;
313
+ type QuoteListComputedUpfrontLineItemsParams = Stripe.QuoteListComputedUpfrontLineItemsParams;
314
+ type QuoteListLineItemsParams = Stripe.QuoteListLineItemsParams;
315
+ type QuotePdfParams = Stripe.QuotePdfParams;
316
+ type QuoteResource = Stripe.QuoteResource;
317
+ type Refund = Stripe.Refund;
318
+ type RefundCreateParams = Stripe.RefundCreateParams;
319
+ type RefundRetrieveParams = Stripe.RefundRetrieveParams;
320
+ type RefundUpdateParams = Stripe.RefundUpdateParams;
321
+ type RefundListParams = Stripe.RefundListParams;
322
+ type RefundCancelParams = Stripe.RefundCancelParams;
323
+ type RefundResource = Stripe.RefundResource;
324
+ type Review = Stripe.Review;
325
+ type ReviewRetrieveParams = Stripe.ReviewRetrieveParams;
326
+ type ReviewListParams = Stripe.ReviewListParams;
327
+ type ReviewApproveParams = Stripe.ReviewApproveParams;
328
+ type ReviewResource = Stripe.ReviewResource;
329
+ type SetupAttempt = Stripe.SetupAttempt;
330
+ type SetupAttemptListParams = Stripe.SetupAttemptListParams;
331
+ type SetupAttemptResource = Stripe.SetupAttemptResource;
332
+ type SetupIntent = Stripe.SetupIntent;
333
+ type SetupIntentCreateParams = Stripe.SetupIntentCreateParams;
334
+ type SetupIntentRetrieveParams = Stripe.SetupIntentRetrieveParams;
335
+ type SetupIntentUpdateParams = Stripe.SetupIntentUpdateParams;
336
+ type SetupIntentListParams = Stripe.SetupIntentListParams;
337
+ type SetupIntentCancelParams = Stripe.SetupIntentCancelParams;
338
+ type SetupIntentConfirmParams = Stripe.SetupIntentConfirmParams;
339
+ type SetupIntentVerifyMicrodepositsParams = Stripe.SetupIntentVerifyMicrodepositsParams;
340
+ type SetupIntentResource = Stripe.SetupIntentResource;
341
+ type ShippingRate = Stripe.ShippingRate;
342
+ type ShippingRateCreateParams = Stripe.ShippingRateCreateParams;
343
+ type ShippingRateRetrieveParams = Stripe.ShippingRateRetrieveParams;
344
+ type ShippingRateUpdateParams = Stripe.ShippingRateUpdateParams;
345
+ type ShippingRateListParams = Stripe.ShippingRateListParams;
346
+ type ShippingRateResource = Stripe.ShippingRateResource;
347
+ type Source = Stripe.Source;
348
+ type SourceCreateParams = Stripe.SourceCreateParams;
349
+ type SourceRetrieveParams = Stripe.SourceRetrieveParams;
350
+ type SourceUpdateParams = Stripe.SourceUpdateParams;
351
+ type SourceListSourceTransactionsParams = Stripe.SourceListSourceTransactionsParams;
352
+ type SourceVerifyParams = Stripe.SourceVerifyParams;
353
+ type SourceResource = Stripe.SourceResource;
354
+ type Subscription = Stripe.Subscription;
355
+ type SubscriptionCreateParams = Stripe.SubscriptionCreateParams;
356
+ type SubscriptionRetrieveParams = Stripe.SubscriptionRetrieveParams;
357
+ type SubscriptionUpdateParams = Stripe.SubscriptionUpdateParams;
358
+ type SubscriptionListParams = Stripe.SubscriptionListParams;
359
+ type SubscriptionCancelParams = Stripe.SubscriptionCancelParams;
360
+ type SubscriptionDeleteDiscountParams = Stripe.SubscriptionDeleteDiscountParams;
361
+ type SubscriptionMigrateParams = Stripe.SubscriptionMigrateParams;
362
+ type SubscriptionResumeParams = Stripe.SubscriptionResumeParams;
363
+ type SubscriptionSearchParams = Stripe.SubscriptionSearchParams;
364
+ type SubscriptionResource = Stripe.SubscriptionResource;
365
+ type SubscriptionItem = Stripe.SubscriptionItem;
366
+ type DeletedSubscriptionItem = Stripe.DeletedSubscriptionItem;
367
+ type SubscriptionItemCreateParams = Stripe.SubscriptionItemCreateParams;
368
+ type SubscriptionItemRetrieveParams = Stripe.SubscriptionItemRetrieveParams;
369
+ type SubscriptionItemUpdateParams = Stripe.SubscriptionItemUpdateParams;
370
+ type SubscriptionItemListParams = Stripe.SubscriptionItemListParams;
371
+ type SubscriptionItemDeleteParams = Stripe.SubscriptionItemDeleteParams;
372
+ type SubscriptionItemResource = Stripe.SubscriptionItemResource;
373
+ type SubscriptionSchedule = Stripe.SubscriptionSchedule;
374
+ type SubscriptionScheduleCreateParams = Stripe.SubscriptionScheduleCreateParams;
375
+ type SubscriptionScheduleRetrieveParams = Stripe.SubscriptionScheduleRetrieveParams;
376
+ type SubscriptionScheduleUpdateParams = Stripe.SubscriptionScheduleUpdateParams;
377
+ type SubscriptionScheduleListParams = Stripe.SubscriptionScheduleListParams;
378
+ type SubscriptionScheduleCancelParams = Stripe.SubscriptionScheduleCancelParams;
379
+ type SubscriptionScheduleReleaseParams = Stripe.SubscriptionScheduleReleaseParams;
380
+ type SubscriptionScheduleResource = Stripe.SubscriptionScheduleResource;
381
+ type TaxCode = Stripe.TaxCode;
382
+ type TaxCodeRetrieveParams = Stripe.TaxCodeRetrieveParams;
383
+ type TaxCodeListParams = Stripe.TaxCodeListParams;
384
+ type TaxCodeResource = Stripe.TaxCodeResource;
385
+ type TaxId = Stripe.TaxId;
386
+ type DeletedTaxId = Stripe.DeletedTaxId;
387
+ type TaxIdCreateParams = Stripe.TaxIdCreateParams;
388
+ type TaxIdRetrieveParams = Stripe.TaxIdRetrieveParams;
389
+ type TaxIdListParams = Stripe.TaxIdListParams;
390
+ type TaxIdDeleteParams = Stripe.TaxIdDeleteParams;
391
+ type TaxIdResource = Stripe.TaxIdResource;
392
+ type TaxRate = Stripe.TaxRate;
393
+ type TaxRateCreateParams = Stripe.TaxRateCreateParams;
394
+ type TaxRateRetrieveParams = Stripe.TaxRateRetrieveParams;
395
+ type TaxRateUpdateParams = Stripe.TaxRateUpdateParams;
396
+ type TaxRateListParams = Stripe.TaxRateListParams;
397
+ type TaxRateResource = Stripe.TaxRateResource;
398
+ type Token = Stripe.Token;
399
+ type TokenCreateParams = Stripe.TokenCreateParams;
400
+ type TokenRetrieveParams = Stripe.TokenRetrieveParams;
401
+ type TokenResource = Stripe.TokenResource;
402
+ type Topup = Stripe.Topup;
403
+ type TopupCreateParams = Stripe.TopupCreateParams;
404
+ type TopupRetrieveParams = Stripe.TopupRetrieveParams;
405
+ type TopupUpdateParams = Stripe.TopupUpdateParams;
406
+ type TopupListParams = Stripe.TopupListParams;
407
+ type TopupCancelParams = Stripe.TopupCancelParams;
408
+ type TopupResource = Stripe.TopupResource;
409
+ type Transfer = Stripe.Transfer;
410
+ type TransferCreateParams = Stripe.TransferCreateParams;
411
+ type TransferRetrieveParams = Stripe.TransferRetrieveParams;
412
+ type TransferUpdateParams = Stripe.TransferUpdateParams;
413
+ type TransferListParams = Stripe.TransferListParams;
414
+ type TransferCreateReversalParams = Stripe.TransferCreateReversalParams;
415
+ type TransferListReversalsParams = Stripe.TransferListReversalsParams;
416
+ type TransferRetrieveReversalParams = Stripe.TransferRetrieveReversalParams;
417
+ type TransferUpdateReversalParams = Stripe.TransferUpdateReversalParams;
418
+ type TransferResource = Stripe.TransferResource;
419
+ type WebhookEndpoint = Stripe.WebhookEndpoint;
420
+ type DeletedWebhookEndpoint = Stripe.DeletedWebhookEndpoint;
421
+ type WebhookEndpointCreateParams = Stripe.WebhookEndpointCreateParams;
422
+ type WebhookEndpointRetrieveParams = Stripe.WebhookEndpointRetrieveParams;
423
+ type WebhookEndpointUpdateParams = Stripe.WebhookEndpointUpdateParams;
424
+ type WebhookEndpointListParams = Stripe.WebhookEndpointListParams;
425
+ type WebhookEndpointDeleteParams = Stripe.WebhookEndpointDeleteParams;
426
+ type WebhookEndpointResource = Stripe.WebhookEndpointResource;
427
+ type Application = Stripe.Application;
428
+ type DeletedApplication = Stripe.DeletedApplication;
429
+ type BalanceTransactionSource = Stripe.BalanceTransactionSource;
430
+ type BankAccount = Stripe.BankAccount;
431
+ type DeletedBankAccount = Stripe.DeletedBankAccount;
432
+ type Card = Stripe.Card;
433
+ type DeletedCard = Stripe.DeletedCard;
434
+ type ConnectCollectionTransfer = Stripe.ConnectCollectionTransfer;
435
+ type Discount = Stripe.Discount;
436
+ type DeletedDiscount = Stripe.DeletedDiscount;
437
+ type FundingInstructions = Stripe.FundingInstructions;
438
+ type LineItem = Stripe.LineItem;
439
+ type ReserveTransaction = Stripe.ReserveTransaction;
440
+ type SourceMandateNotification = Stripe.SourceMandateNotification;
441
+ type SourceTransaction = Stripe.SourceTransaction;
442
+ type TaxDeductedAtSource = Stripe.TaxDeductedAtSource;
443
+ type Capability = Stripe.Capability;
444
+ type ExternalAccount = Stripe.ExternalAccount;
445
+ type DeletedExternalAccount = Stripe.DeletedExternalAccount;
446
+ type LoginLink = Stripe.LoginLink;
447
+ type Person = Stripe.Person;
448
+ type DeletedPerson = Stripe.DeletedPerson;
449
+ type FeeRefund = Stripe.FeeRefund;
450
+ type CreditNoteLineItem = Stripe.CreditNoteLineItem;
451
+ type CustomerBalanceTransaction = Stripe.CustomerBalanceTransaction;
452
+ type CashBalance = Stripe.CashBalance;
453
+ type CustomerCashBalanceTransaction = Stripe.CustomerCashBalanceTransaction;
454
+ type CustomerSource = Stripe.CustomerSource;
455
+ type DeletedCustomerSource = Stripe.DeletedCustomerSource;
456
+ type InvoiceLineItem = Stripe.InvoiceLineItem;
457
+ type PaymentIntentAmountDetailsLineItem = Stripe.PaymentIntentAmountDetailsLineItem;
458
+ type ProductFeature = Stripe.ProductFeature;
459
+ type DeletedProductFeature = Stripe.DeletedProductFeature;
460
+ type TransferReversal = Stripe.TransferReversal;
461
+ namespace AccountCreateParams {
462
+ type BusinessProfile = Stripe.AccountCreateParams.BusinessProfile;
463
+ type BusinessType = Stripe.AccountCreateParams.BusinessType;
464
+ type Capabilities = Stripe.AccountCreateParams.Capabilities;
465
+ type Company = Stripe.AccountCreateParams.Company;
466
+ type Controller = Stripe.AccountCreateParams.Controller;
467
+ type Documents = Stripe.AccountCreateParams.Documents;
468
+ type ExternalAccount = Stripe.AccountCreateParams.ExternalAccount;
469
+ type Groups = Stripe.AccountCreateParams.Groups;
470
+ type Individual = Stripe.AccountCreateParams.Individual;
471
+ type Settings = Stripe.AccountCreateParams.Settings;
472
+ type TosAcceptance = Stripe.AccountCreateParams.TosAcceptance;
473
+ type Type = Stripe.AccountCreateParams.Type;
474
+ }
475
+ namespace AccountUpdateParams {
476
+ type BusinessProfile = Stripe.AccountUpdateParams.BusinessProfile;
477
+ type BusinessType = Stripe.AccountUpdateParams.BusinessType;
478
+ type Capabilities = Stripe.AccountUpdateParams.Capabilities;
479
+ type Company = Stripe.AccountUpdateParams.Company;
480
+ type Documents = Stripe.AccountUpdateParams.Documents;
481
+ type BankAccount = Stripe.AccountUpdateParams.BankAccount;
482
+ type Card = Stripe.AccountUpdateParams.Card;
483
+ type CardToken = Stripe.AccountUpdateParams.CardToken;
484
+ type Groups = Stripe.AccountUpdateParams.Groups;
485
+ type Individual = Stripe.AccountUpdateParams.Individual;
486
+ type Settings = Stripe.AccountUpdateParams.Settings;
487
+ type TosAcceptance = Stripe.AccountUpdateParams.TosAcceptance;
488
+ }
489
+ namespace AccountCreateExternalAccountParams {
490
+ type Card = Stripe.AccountCreateExternalAccountParams.Card;
491
+ type BankAccount = Stripe.AccountCreateExternalAccountParams.BankAccount;
492
+ type CardToken = Stripe.AccountCreateExternalAccountParams.CardToken;
493
+ }
494
+ namespace AccountCreatePersonParams {
495
+ type AdditionalTosAcceptances = Stripe.AccountCreatePersonParams.AdditionalTosAcceptances;
496
+ type Dob = Stripe.AccountCreatePersonParams.Dob;
497
+ type Documents = Stripe.AccountCreatePersonParams.Documents;
498
+ type PoliticalExposure = Stripe.AccountCreatePersonParams.PoliticalExposure;
499
+ type Relationship = Stripe.AccountCreatePersonParams.Relationship;
500
+ type UsCfpbData = Stripe.AccountCreatePersonParams.UsCfpbData;
501
+ type Verification = Stripe.AccountCreatePersonParams.Verification;
502
+ }
503
+ namespace AccountListExternalAccountsParams {
504
+ type Object = Stripe.AccountListExternalAccountsParams.Object;
505
+ }
506
+ namespace AccountListPersonsParams {
507
+ type Relationship = Stripe.AccountListPersonsParams.Relationship;
508
+ }
509
+ namespace AccountUpdateExternalAccountParams {
510
+ type AccountHolderType = Stripe.AccountUpdateExternalAccountParams.AccountHolderType;
511
+ type AccountType = Stripe.AccountUpdateExternalAccountParams.AccountType;
512
+ type Documents = Stripe.AccountUpdateExternalAccountParams.Documents;
513
+ }
514
+ namespace AccountUpdatePersonParams {
515
+ type AdditionalTosAcceptances = Stripe.AccountUpdatePersonParams.AdditionalTosAcceptances;
516
+ type Dob = Stripe.AccountUpdatePersonParams.Dob;
517
+ type Documents = Stripe.AccountUpdatePersonParams.Documents;
518
+ type PoliticalExposure = Stripe.AccountUpdatePersonParams.PoliticalExposure;
519
+ type Relationship = Stripe.AccountUpdatePersonParams.Relationship;
520
+ type UsCfpbData = Stripe.AccountUpdatePersonParams.UsCfpbData;
521
+ type Verification = Stripe.AccountUpdatePersonParams.Verification;
522
+ }
523
+ namespace AccountLinkCreateParams {
524
+ type Type = Stripe.AccountLinkCreateParams.Type;
525
+ type Collect = Stripe.AccountLinkCreateParams.Collect;
526
+ type CollectionOptions = Stripe.AccountLinkCreateParams.CollectionOptions;
527
+ }
528
+ namespace AccountSessionCreateParams {
529
+ type Components = Stripe.AccountSessionCreateParams.Components;
530
+ }
531
+ namespace BalanceSettingsUpdateParams {
532
+ type Payments = Stripe.BalanceSettingsUpdateParams.Payments;
533
+ }
534
+ namespace ChargeCreateParams {
535
+ type Destination = Stripe.ChargeCreateParams.Destination;
536
+ type RadarOptions = Stripe.ChargeCreateParams.RadarOptions;
537
+ type Shipping = Stripe.ChargeCreateParams.Shipping;
538
+ type TransferData = Stripe.ChargeCreateParams.TransferData;
539
+ }
540
+ namespace ChargeUpdateParams {
541
+ type FraudDetails = Stripe.ChargeUpdateParams.FraudDetails;
542
+ type Shipping = Stripe.ChargeUpdateParams.Shipping;
543
+ }
544
+ namespace ChargeCaptureParams {
545
+ type TransferData = Stripe.ChargeCaptureParams.TransferData;
546
+ }
547
+ namespace CouponCreateParams {
548
+ type AppliesTo = Stripe.CouponCreateParams.AppliesTo;
549
+ type CurrencyOptions = Stripe.CouponCreateParams.CurrencyOptions;
550
+ type Duration = Stripe.CouponCreateParams.Duration;
551
+ }
552
+ namespace CouponUpdateParams {
553
+ type CurrencyOptions = Stripe.CouponUpdateParams.CurrencyOptions;
554
+ }
555
+ namespace CreditNoteCreateParams {
556
+ type EmailType = Stripe.CreditNoteCreateParams.EmailType;
557
+ type Line = Stripe.CreditNoteCreateParams.Line;
558
+ type Reason = Stripe.CreditNoteCreateParams.Reason;
559
+ type Refund = Stripe.CreditNoteCreateParams.Refund;
560
+ type ShippingCost = Stripe.CreditNoteCreateParams.ShippingCost;
561
+ }
562
+ namespace CreditNoteListPreviewLineItemsParams {
563
+ type EmailType = Stripe.CreditNoteListPreviewLineItemsParams.EmailType;
564
+ type Line = Stripe.CreditNoteListPreviewLineItemsParams.Line;
565
+ type Reason = Stripe.CreditNoteListPreviewLineItemsParams.Reason;
566
+ type Refund = Stripe.CreditNoteListPreviewLineItemsParams.Refund;
567
+ type ShippingCost = Stripe.CreditNoteListPreviewLineItemsParams.ShippingCost;
568
+ }
569
+ namespace CreditNotePreviewParams {
570
+ type EmailType = Stripe.CreditNotePreviewParams.EmailType;
571
+ type Line = Stripe.CreditNotePreviewParams.Line;
572
+ type Reason = Stripe.CreditNotePreviewParams.Reason;
573
+ type Refund = Stripe.CreditNotePreviewParams.Refund;
574
+ type ShippingCost = Stripe.CreditNotePreviewParams.ShippingCost;
575
+ }
576
+ namespace CustomerCreateParams {
577
+ type CashBalance = Stripe.CustomerCreateParams.CashBalance;
578
+ type InvoiceSettings = Stripe.CustomerCreateParams.InvoiceSettings;
579
+ type Shipping = Stripe.CustomerCreateParams.Shipping;
580
+ type Tax = Stripe.CustomerCreateParams.Tax;
581
+ type TaxExempt = Stripe.CustomerCreateParams.TaxExempt;
582
+ type TaxIdDatum = Stripe.CustomerCreateParams.TaxIdDatum;
583
+ }
584
+ namespace CustomerUpdateParams {
585
+ type CashBalance = Stripe.CustomerUpdateParams.CashBalance;
586
+ type InvoiceSettings = Stripe.CustomerUpdateParams.InvoiceSettings;
587
+ type Shipping = Stripe.CustomerUpdateParams.Shipping;
588
+ type Tax = Stripe.CustomerUpdateParams.Tax;
589
+ type TaxExempt = Stripe.CustomerUpdateParams.TaxExempt;
590
+ }
591
+ namespace CustomerCreateFundingInstructionsParams {
592
+ type BankTransfer = Stripe.CustomerCreateFundingInstructionsParams.BankTransfer;
593
+ }
594
+ namespace CustomerCreateTaxIdParams {
595
+ type Type = Stripe.CustomerCreateTaxIdParams.Type;
596
+ }
597
+ namespace CustomerListPaymentMethodsParams {
598
+ type AllowRedisplay = Stripe.CustomerListPaymentMethodsParams.AllowRedisplay;
599
+ type Type = Stripe.CustomerListPaymentMethodsParams.Type;
600
+ }
601
+ namespace CustomerUpdateCashBalanceParams {
602
+ type Settings = Stripe.CustomerUpdateCashBalanceParams.Settings;
603
+ }
604
+ namespace CustomerUpdateSourceParams {
605
+ type AccountHolderType = Stripe.CustomerUpdateSourceParams.AccountHolderType;
606
+ type Owner = Stripe.CustomerUpdateSourceParams.Owner;
607
+ }
608
+ namespace CustomerSessionCreateParams {
609
+ type Components = Stripe.CustomerSessionCreateParams.Components;
610
+ }
611
+ namespace DisputeUpdateParams {
612
+ type Evidence = Stripe.DisputeUpdateParams.Evidence;
613
+ }
614
+ namespace FileCreateParams {
615
+ type Purpose = Stripe.FileCreateParams.Purpose;
616
+ type FileLinkData = Stripe.FileCreateParams.FileLinkData;
617
+ }
618
+ namespace FileListParams {
619
+ type Purpose = Stripe.FileListParams.Purpose;
620
+ }
621
+ namespace InvoiceCreateParams {
622
+ type AutomaticTax = Stripe.InvoiceCreateParams.AutomaticTax;
623
+ type CollectionMethod = Stripe.InvoiceCreateParams.CollectionMethod;
624
+ type CustomField = Stripe.InvoiceCreateParams.CustomField;
625
+ type Discount = Stripe.InvoiceCreateParams.Discount;
626
+ type FromInvoice = Stripe.InvoiceCreateParams.FromInvoice;
627
+ type Issuer = Stripe.InvoiceCreateParams.Issuer;
628
+ type PaymentSettings = Stripe.InvoiceCreateParams.PaymentSettings;
629
+ type PendingInvoiceItemsBehavior = Stripe.InvoiceCreateParams.PendingInvoiceItemsBehavior;
630
+ type Rendering = Stripe.InvoiceCreateParams.Rendering;
631
+ type ShippingCost = Stripe.InvoiceCreateParams.ShippingCost;
632
+ type ShippingDetails = Stripe.InvoiceCreateParams.ShippingDetails;
633
+ type TransferData = Stripe.InvoiceCreateParams.TransferData;
634
+ }
635
+ namespace InvoiceUpdateParams {
636
+ type AutomaticTax = Stripe.InvoiceUpdateParams.AutomaticTax;
637
+ type CollectionMethod = Stripe.InvoiceUpdateParams.CollectionMethod;
638
+ type CustomField = Stripe.InvoiceUpdateParams.CustomField;
639
+ type Discount = Stripe.InvoiceUpdateParams.Discount;
640
+ type Issuer = Stripe.InvoiceUpdateParams.Issuer;
641
+ type PaymentSettings = Stripe.InvoiceUpdateParams.PaymentSettings;
642
+ type Rendering = Stripe.InvoiceUpdateParams.Rendering;
643
+ type ShippingCost = Stripe.InvoiceUpdateParams.ShippingCost;
644
+ type ShippingDetails = Stripe.InvoiceUpdateParams.ShippingDetails;
645
+ type TransferData = Stripe.InvoiceUpdateParams.TransferData;
646
+ }
647
+ namespace InvoiceListParams {
648
+ type CollectionMethod = Stripe.InvoiceListParams.CollectionMethod;
649
+ type Status = Stripe.InvoiceListParams.Status;
650
+ }
651
+ namespace InvoiceAddLinesParams {
652
+ type Line = Stripe.InvoiceAddLinesParams.Line;
653
+ }
654
+ namespace InvoiceCreatePreviewParams {
655
+ type AutomaticTax = Stripe.InvoiceCreatePreviewParams.AutomaticTax;
656
+ type CustomerDetails = Stripe.InvoiceCreatePreviewParams.CustomerDetails;
657
+ type Discount = Stripe.InvoiceCreatePreviewParams.Discount;
658
+ type InvoiceItem = Stripe.InvoiceCreatePreviewParams.InvoiceItem;
659
+ type Issuer = Stripe.InvoiceCreatePreviewParams.Issuer;
660
+ type PreviewMode = Stripe.InvoiceCreatePreviewParams.PreviewMode;
661
+ type ScheduleDetails = Stripe.InvoiceCreatePreviewParams.ScheduleDetails;
662
+ type SubscriptionDetails = Stripe.InvoiceCreatePreviewParams.SubscriptionDetails;
663
+ }
664
+ namespace InvoiceRemoveLinesParams {
665
+ type Line = Stripe.InvoiceRemoveLinesParams.Line;
666
+ }
667
+ namespace InvoiceUpdateLinesParams {
668
+ type Line = Stripe.InvoiceUpdateLinesParams.Line;
669
+ }
670
+ namespace InvoiceUpdateLineItemParams {
671
+ type Discount = Stripe.InvoiceUpdateLineItemParams.Discount;
672
+ type Period = Stripe.InvoiceUpdateLineItemParams.Period;
673
+ type PriceData = Stripe.InvoiceUpdateLineItemParams.PriceData;
674
+ type Pricing = Stripe.InvoiceUpdateLineItemParams.Pricing;
675
+ type TaxAmount = Stripe.InvoiceUpdateLineItemParams.TaxAmount;
676
+ }
677
+ namespace InvoiceItemCreateParams {
678
+ type Discount = Stripe.InvoiceItemCreateParams.Discount;
679
+ type Period = Stripe.InvoiceItemCreateParams.Period;
680
+ type PriceData = Stripe.InvoiceItemCreateParams.PriceData;
681
+ type Pricing = Stripe.InvoiceItemCreateParams.Pricing;
682
+ type TaxBehavior = Stripe.InvoiceItemCreateParams.TaxBehavior;
683
+ }
684
+ namespace InvoiceItemUpdateParams {
685
+ type Discount = Stripe.InvoiceItemUpdateParams.Discount;
686
+ type Period = Stripe.InvoiceItemUpdateParams.Period;
687
+ type PriceData = Stripe.InvoiceItemUpdateParams.PriceData;
688
+ type Pricing = Stripe.InvoiceItemUpdateParams.Pricing;
689
+ type TaxBehavior = Stripe.InvoiceItemUpdateParams.TaxBehavior;
690
+ }
691
+ namespace InvoicePaymentListParams {
692
+ type Payment = Stripe.InvoicePaymentListParams.Payment;
693
+ type Status = Stripe.InvoicePaymentListParams.Status;
694
+ }
695
+ namespace InvoiceRenderingTemplateListParams {
696
+ type Status = Stripe.InvoiceRenderingTemplateListParams.Status;
697
+ }
698
+ namespace PaymentIntentCreateParams {
699
+ type AmountDetails = Stripe.PaymentIntentCreateParams.AmountDetails;
700
+ type AutomaticPaymentMethods = Stripe.PaymentIntentCreateParams.AutomaticPaymentMethods;
701
+ type CaptureMethod = Stripe.PaymentIntentCreateParams.CaptureMethod;
702
+ type ConfirmationMethod = Stripe.PaymentIntentCreateParams.ConfirmationMethod;
703
+ type ExcludedPaymentMethodType = Stripe.PaymentIntentCreateParams.ExcludedPaymentMethodType;
704
+ type Hooks = Stripe.PaymentIntentCreateParams.Hooks;
705
+ type MandateData = Stripe.PaymentIntentCreateParams.MandateData;
706
+ type OffSession = Stripe.PaymentIntentCreateParams.OffSession;
707
+ type PaymentDetails = Stripe.PaymentIntentCreateParams.PaymentDetails;
708
+ type PaymentMethodData = Stripe.PaymentIntentCreateParams.PaymentMethodData;
709
+ type PaymentMethodOptions = Stripe.PaymentIntentCreateParams.PaymentMethodOptions;
710
+ type RadarOptions = Stripe.PaymentIntentCreateParams.RadarOptions;
711
+ type SetupFutureUsage = Stripe.PaymentIntentCreateParams.SetupFutureUsage;
712
+ type Shipping = Stripe.PaymentIntentCreateParams.Shipping;
713
+ type TransferData = Stripe.PaymentIntentCreateParams.TransferData;
714
+ }
715
+ namespace PaymentIntentUpdateParams {
716
+ type AmountDetails = Stripe.PaymentIntentUpdateParams.AmountDetails;
717
+ type CaptureMethod = Stripe.PaymentIntentUpdateParams.CaptureMethod;
718
+ type ExcludedPaymentMethodType = Stripe.PaymentIntentUpdateParams.ExcludedPaymentMethodType;
719
+ type Hooks = Stripe.PaymentIntentUpdateParams.Hooks;
720
+ type PaymentDetails = Stripe.PaymentIntentUpdateParams.PaymentDetails;
721
+ type PaymentMethodData = Stripe.PaymentIntentUpdateParams.PaymentMethodData;
722
+ type PaymentMethodOptions = Stripe.PaymentIntentUpdateParams.PaymentMethodOptions;
723
+ type SetupFutureUsage = Stripe.PaymentIntentUpdateParams.SetupFutureUsage;
724
+ type Shipping = Stripe.PaymentIntentUpdateParams.Shipping;
725
+ type TransferData = Stripe.PaymentIntentUpdateParams.TransferData;
726
+ }
727
+ namespace PaymentIntentCancelParams {
728
+ type CancellationReason = Stripe.PaymentIntentCancelParams.CancellationReason;
729
+ }
730
+ namespace PaymentIntentCaptureParams {
731
+ type AmountDetails = Stripe.PaymentIntentCaptureParams.AmountDetails;
732
+ type Hooks = Stripe.PaymentIntentCaptureParams.Hooks;
733
+ type PaymentDetails = Stripe.PaymentIntentCaptureParams.PaymentDetails;
734
+ type TransferData = Stripe.PaymentIntentCaptureParams.TransferData;
735
+ }
736
+ namespace PaymentIntentConfirmParams {
737
+ type AmountDetails = Stripe.PaymentIntentConfirmParams.AmountDetails;
738
+ type CaptureMethod = Stripe.PaymentIntentConfirmParams.CaptureMethod;
739
+ type ExcludedPaymentMethodType = Stripe.PaymentIntentConfirmParams.ExcludedPaymentMethodType;
740
+ type Hooks = Stripe.PaymentIntentConfirmParams.Hooks;
741
+ type MandateData = Stripe.PaymentIntentConfirmParams.MandateData;
742
+ type OffSession = Stripe.PaymentIntentConfirmParams.OffSession;
743
+ type PaymentDetails = Stripe.PaymentIntentConfirmParams.PaymentDetails;
744
+ type PaymentMethodData = Stripe.PaymentIntentConfirmParams.PaymentMethodData;
745
+ type PaymentMethodOptions = Stripe.PaymentIntentConfirmParams.PaymentMethodOptions;
746
+ type RadarOptions = Stripe.PaymentIntentConfirmParams.RadarOptions;
747
+ type SetupFutureUsage = Stripe.PaymentIntentConfirmParams.SetupFutureUsage;
748
+ type Shipping = Stripe.PaymentIntentConfirmParams.Shipping;
749
+ }
750
+ namespace PaymentIntentIncrementAuthorizationParams {
751
+ type AmountDetails = Stripe.PaymentIntentIncrementAuthorizationParams.AmountDetails;
752
+ type Hooks = Stripe.PaymentIntentIncrementAuthorizationParams.Hooks;
753
+ type PaymentDetails = Stripe.PaymentIntentIncrementAuthorizationParams.PaymentDetails;
754
+ type TransferData = Stripe.PaymentIntentIncrementAuthorizationParams.TransferData;
755
+ }
756
+ namespace PaymentLinkCreateParams {
757
+ type LineItem = Stripe.PaymentLinkCreateParams.LineItem;
758
+ type AfterCompletion = Stripe.PaymentLinkCreateParams.AfterCompletion;
759
+ type AutomaticTax = Stripe.PaymentLinkCreateParams.AutomaticTax;
760
+ type BillingAddressCollection = Stripe.PaymentLinkCreateParams.BillingAddressCollection;
761
+ type ConsentCollection = Stripe.PaymentLinkCreateParams.ConsentCollection;
762
+ type CustomField = Stripe.PaymentLinkCreateParams.CustomField;
763
+ type CustomText = Stripe.PaymentLinkCreateParams.CustomText;
764
+ type CustomerCreation = Stripe.PaymentLinkCreateParams.CustomerCreation;
765
+ type InvoiceCreation = Stripe.PaymentLinkCreateParams.InvoiceCreation;
766
+ type ManagedPayments = Stripe.PaymentLinkCreateParams.ManagedPayments;
767
+ type NameCollection = Stripe.PaymentLinkCreateParams.NameCollection;
768
+ type OptionalItem = Stripe.PaymentLinkCreateParams.OptionalItem;
769
+ type PaymentIntentData = Stripe.PaymentLinkCreateParams.PaymentIntentData;
770
+ type PaymentMethodCollection = Stripe.PaymentLinkCreateParams.PaymentMethodCollection;
771
+ type PaymentMethodOptions = Stripe.PaymentLinkCreateParams.PaymentMethodOptions;
772
+ type PaymentMethodType = Stripe.PaymentLinkCreateParams.PaymentMethodType;
773
+ type PhoneNumberCollection = Stripe.PaymentLinkCreateParams.PhoneNumberCollection;
774
+ type Restrictions = Stripe.PaymentLinkCreateParams.Restrictions;
775
+ type ShippingAddressCollection = Stripe.PaymentLinkCreateParams.ShippingAddressCollection;
776
+ type ShippingOption = Stripe.PaymentLinkCreateParams.ShippingOption;
777
+ type SubmitType = Stripe.PaymentLinkCreateParams.SubmitType;
778
+ type SubscriptionData = Stripe.PaymentLinkCreateParams.SubscriptionData;
779
+ type TaxIdCollection = Stripe.PaymentLinkCreateParams.TaxIdCollection;
780
+ type TransferData = Stripe.PaymentLinkCreateParams.TransferData;
781
+ }
782
+ namespace PaymentLinkUpdateParams {
783
+ type AfterCompletion = Stripe.PaymentLinkUpdateParams.AfterCompletion;
784
+ type AutomaticTax = Stripe.PaymentLinkUpdateParams.AutomaticTax;
785
+ type BillingAddressCollection = Stripe.PaymentLinkUpdateParams.BillingAddressCollection;
786
+ type CustomField = Stripe.PaymentLinkUpdateParams.CustomField;
787
+ type CustomText = Stripe.PaymentLinkUpdateParams.CustomText;
788
+ type CustomerCreation = Stripe.PaymentLinkUpdateParams.CustomerCreation;
789
+ type InvoiceCreation = Stripe.PaymentLinkUpdateParams.InvoiceCreation;
790
+ type LineItem = Stripe.PaymentLinkUpdateParams.LineItem;
791
+ type NameCollection = Stripe.PaymentLinkUpdateParams.NameCollection;
792
+ type OptionalItem = Stripe.PaymentLinkUpdateParams.OptionalItem;
793
+ type PaymentIntentData = Stripe.PaymentLinkUpdateParams.PaymentIntentData;
794
+ type PaymentMethodCollection = Stripe.PaymentLinkUpdateParams.PaymentMethodCollection;
795
+ type PaymentMethodOptions = Stripe.PaymentLinkUpdateParams.PaymentMethodOptions;
796
+ type PaymentMethodType = Stripe.PaymentLinkUpdateParams.PaymentMethodType;
797
+ type PhoneNumberCollection = Stripe.PaymentLinkUpdateParams.PhoneNumberCollection;
798
+ type Restrictions = Stripe.PaymentLinkUpdateParams.Restrictions;
799
+ type ShippingAddressCollection = Stripe.PaymentLinkUpdateParams.ShippingAddressCollection;
800
+ type SubmitType = Stripe.PaymentLinkUpdateParams.SubmitType;
801
+ type SubscriptionData = Stripe.PaymentLinkUpdateParams.SubscriptionData;
802
+ type TaxIdCollection = Stripe.PaymentLinkUpdateParams.TaxIdCollection;
803
+ }
804
+ namespace PaymentMethodCreateParams {
805
+ type AcssDebit = Stripe.PaymentMethodCreateParams.AcssDebit;
806
+ type Affirm = Stripe.PaymentMethodCreateParams.Affirm;
807
+ type AfterpayClearpay = Stripe.PaymentMethodCreateParams.AfterpayClearpay;
808
+ type Alipay = Stripe.PaymentMethodCreateParams.Alipay;
809
+ type AllowRedisplay = Stripe.PaymentMethodCreateParams.AllowRedisplay;
810
+ type Alma = Stripe.PaymentMethodCreateParams.Alma;
811
+ type AmazonPay = Stripe.PaymentMethodCreateParams.AmazonPay;
812
+ type AuBecsDebit = Stripe.PaymentMethodCreateParams.AuBecsDebit;
813
+ type BacsDebit = Stripe.PaymentMethodCreateParams.BacsDebit;
814
+ type Bancontact = Stripe.PaymentMethodCreateParams.Bancontact;
815
+ type Billie = Stripe.PaymentMethodCreateParams.Billie;
816
+ type BillingDetails = Stripe.PaymentMethodCreateParams.BillingDetails;
817
+ type Bizum = Stripe.PaymentMethodCreateParams.Bizum;
818
+ type Blik = Stripe.PaymentMethodCreateParams.Blik;
819
+ type Boleto = Stripe.PaymentMethodCreateParams.Boleto;
820
+ type Card = Stripe.PaymentMethodCreateParams.Card;
821
+ type Cashapp = Stripe.PaymentMethodCreateParams.Cashapp;
822
+ type Crypto = Stripe.PaymentMethodCreateParams.Crypto;
823
+ type Custom = Stripe.PaymentMethodCreateParams.Custom;
824
+ type CustomerBalance = Stripe.PaymentMethodCreateParams.CustomerBalance;
825
+ type Eps = Stripe.PaymentMethodCreateParams.Eps;
826
+ type Fpx = Stripe.PaymentMethodCreateParams.Fpx;
827
+ type Giropay = Stripe.PaymentMethodCreateParams.Giropay;
828
+ type Grabpay = Stripe.PaymentMethodCreateParams.Grabpay;
829
+ type Ideal = Stripe.PaymentMethodCreateParams.Ideal;
830
+ type InteracPresent = Stripe.PaymentMethodCreateParams.InteracPresent;
831
+ type KakaoPay = Stripe.PaymentMethodCreateParams.KakaoPay;
832
+ type Klarna = Stripe.PaymentMethodCreateParams.Klarna;
833
+ type Konbini = Stripe.PaymentMethodCreateParams.Konbini;
834
+ type KrCard = Stripe.PaymentMethodCreateParams.KrCard;
835
+ type Link = Stripe.PaymentMethodCreateParams.Link;
836
+ type MbWay = Stripe.PaymentMethodCreateParams.MbWay;
837
+ type Mobilepay = Stripe.PaymentMethodCreateParams.Mobilepay;
838
+ type Multibanco = Stripe.PaymentMethodCreateParams.Multibanco;
839
+ type NaverPay = Stripe.PaymentMethodCreateParams.NaverPay;
840
+ type NzBankAccount = Stripe.PaymentMethodCreateParams.NzBankAccount;
841
+ type Oxxo = Stripe.PaymentMethodCreateParams.Oxxo;
842
+ type P24 = Stripe.PaymentMethodCreateParams.P24;
843
+ type PayByBank = Stripe.PaymentMethodCreateParams.PayByBank;
844
+ type Payco = Stripe.PaymentMethodCreateParams.Payco;
845
+ type Paynow = Stripe.PaymentMethodCreateParams.Paynow;
846
+ type Paypal = Stripe.PaymentMethodCreateParams.Paypal;
847
+ type Payto = Stripe.PaymentMethodCreateParams.Payto;
848
+ type Pix = Stripe.PaymentMethodCreateParams.Pix;
849
+ type Promptpay = Stripe.PaymentMethodCreateParams.Promptpay;
850
+ type RadarOptions = Stripe.PaymentMethodCreateParams.RadarOptions;
851
+ type RevolutPay = Stripe.PaymentMethodCreateParams.RevolutPay;
852
+ type SamsungPay = Stripe.PaymentMethodCreateParams.SamsungPay;
853
+ type Satispay = Stripe.PaymentMethodCreateParams.Satispay;
854
+ type Scalapay = Stripe.PaymentMethodCreateParams.Scalapay;
855
+ type SepaDebit = Stripe.PaymentMethodCreateParams.SepaDebit;
856
+ type Sofort = Stripe.PaymentMethodCreateParams.Sofort;
857
+ type Sunbit = Stripe.PaymentMethodCreateParams.Sunbit;
858
+ type Swish = Stripe.PaymentMethodCreateParams.Swish;
859
+ type Twint = Stripe.PaymentMethodCreateParams.Twint;
860
+ type Type = Stripe.PaymentMethodCreateParams.Type;
861
+ type Upi = Stripe.PaymentMethodCreateParams.Upi;
862
+ type UsBankAccount = Stripe.PaymentMethodCreateParams.UsBankAccount;
863
+ type WechatPay = Stripe.PaymentMethodCreateParams.WechatPay;
864
+ type Zip = Stripe.PaymentMethodCreateParams.Zip;
865
+ }
866
+ namespace PaymentMethodUpdateParams {
867
+ type AllowRedisplay = Stripe.PaymentMethodUpdateParams.AllowRedisplay;
868
+ type BillingDetails = Stripe.PaymentMethodUpdateParams.BillingDetails;
869
+ type Card = Stripe.PaymentMethodUpdateParams.Card;
870
+ type Payto = Stripe.PaymentMethodUpdateParams.Payto;
871
+ type UsBankAccount = Stripe.PaymentMethodUpdateParams.UsBankAccount;
872
+ }
873
+ namespace PaymentMethodListParams {
874
+ type AllowRedisplay = Stripe.PaymentMethodListParams.AllowRedisplay;
875
+ type Type = Stripe.PaymentMethodListParams.Type;
876
+ }
877
+ namespace PaymentMethodConfigurationCreateParams {
878
+ type AcssDebit = Stripe.PaymentMethodConfigurationCreateParams.AcssDebit;
879
+ type Affirm = Stripe.PaymentMethodConfigurationCreateParams.Affirm;
880
+ type AfterpayClearpay = Stripe.PaymentMethodConfigurationCreateParams.AfterpayClearpay;
881
+ type Alipay = Stripe.PaymentMethodConfigurationCreateParams.Alipay;
882
+ type Alma = Stripe.PaymentMethodConfigurationCreateParams.Alma;
883
+ type AmazonPay = Stripe.PaymentMethodConfigurationCreateParams.AmazonPay;
884
+ type ApplePay = Stripe.PaymentMethodConfigurationCreateParams.ApplePay;
885
+ type ApplePayLater = Stripe.PaymentMethodConfigurationCreateParams.ApplePayLater;
886
+ type AuBecsDebit = Stripe.PaymentMethodConfigurationCreateParams.AuBecsDebit;
887
+ type BacsDebit = Stripe.PaymentMethodConfigurationCreateParams.BacsDebit;
888
+ type Bancontact = Stripe.PaymentMethodConfigurationCreateParams.Bancontact;
889
+ type Billie = Stripe.PaymentMethodConfigurationCreateParams.Billie;
890
+ type Bizum = Stripe.PaymentMethodConfigurationCreateParams.Bizum;
891
+ type Blik = Stripe.PaymentMethodConfigurationCreateParams.Blik;
892
+ type Boleto = Stripe.PaymentMethodConfigurationCreateParams.Boleto;
893
+ type Card = Stripe.PaymentMethodConfigurationCreateParams.Card;
894
+ type CartesBancaires = Stripe.PaymentMethodConfigurationCreateParams.CartesBancaires;
895
+ type Cashapp = Stripe.PaymentMethodConfigurationCreateParams.Cashapp;
896
+ type Crypto = Stripe.PaymentMethodConfigurationCreateParams.Crypto;
897
+ type CustomerBalance = Stripe.PaymentMethodConfigurationCreateParams.CustomerBalance;
898
+ type Eps = Stripe.PaymentMethodConfigurationCreateParams.Eps;
899
+ type Fpx = Stripe.PaymentMethodConfigurationCreateParams.Fpx;
900
+ type FrMealVoucherConecs = Stripe.PaymentMethodConfigurationCreateParams.FrMealVoucherConecs;
901
+ type Giropay = Stripe.PaymentMethodConfigurationCreateParams.Giropay;
902
+ type GooglePay = Stripe.PaymentMethodConfigurationCreateParams.GooglePay;
903
+ type Grabpay = Stripe.PaymentMethodConfigurationCreateParams.Grabpay;
904
+ type Ideal = Stripe.PaymentMethodConfigurationCreateParams.Ideal;
905
+ type Jcb = Stripe.PaymentMethodConfigurationCreateParams.Jcb;
906
+ type KakaoPay = Stripe.PaymentMethodConfigurationCreateParams.KakaoPay;
907
+ type Klarna = Stripe.PaymentMethodConfigurationCreateParams.Klarna;
908
+ type Konbini = Stripe.PaymentMethodConfigurationCreateParams.Konbini;
909
+ type KrCard = Stripe.PaymentMethodConfigurationCreateParams.KrCard;
910
+ type Link = Stripe.PaymentMethodConfigurationCreateParams.Link;
911
+ type MbWay = Stripe.PaymentMethodConfigurationCreateParams.MbWay;
912
+ type Mobilepay = Stripe.PaymentMethodConfigurationCreateParams.Mobilepay;
913
+ type Multibanco = Stripe.PaymentMethodConfigurationCreateParams.Multibanco;
914
+ type NaverPay = Stripe.PaymentMethodConfigurationCreateParams.NaverPay;
915
+ type NzBankAccount = Stripe.PaymentMethodConfigurationCreateParams.NzBankAccount;
916
+ type Oxxo = Stripe.PaymentMethodConfigurationCreateParams.Oxxo;
917
+ type P24 = Stripe.PaymentMethodConfigurationCreateParams.P24;
918
+ type PayByBank = Stripe.PaymentMethodConfigurationCreateParams.PayByBank;
919
+ type Payco = Stripe.PaymentMethodConfigurationCreateParams.Payco;
920
+ type Paynow = Stripe.PaymentMethodConfigurationCreateParams.Paynow;
921
+ type Paypal = Stripe.PaymentMethodConfigurationCreateParams.Paypal;
922
+ type Payto = Stripe.PaymentMethodConfigurationCreateParams.Payto;
923
+ type Pix = Stripe.PaymentMethodConfigurationCreateParams.Pix;
924
+ type Promptpay = Stripe.PaymentMethodConfigurationCreateParams.Promptpay;
925
+ type RevolutPay = Stripe.PaymentMethodConfigurationCreateParams.RevolutPay;
926
+ type SamsungPay = Stripe.PaymentMethodConfigurationCreateParams.SamsungPay;
927
+ type Satispay = Stripe.PaymentMethodConfigurationCreateParams.Satispay;
928
+ type Scalapay = Stripe.PaymentMethodConfigurationCreateParams.Scalapay;
929
+ type SepaDebit = Stripe.PaymentMethodConfigurationCreateParams.SepaDebit;
930
+ type Sofort = Stripe.PaymentMethodConfigurationCreateParams.Sofort;
931
+ type Sunbit = Stripe.PaymentMethodConfigurationCreateParams.Sunbit;
932
+ type Swish = Stripe.PaymentMethodConfigurationCreateParams.Swish;
933
+ type Twint = Stripe.PaymentMethodConfigurationCreateParams.Twint;
934
+ type Upi = Stripe.PaymentMethodConfigurationCreateParams.Upi;
935
+ type UsBankAccount = Stripe.PaymentMethodConfigurationCreateParams.UsBankAccount;
936
+ type WechatPay = Stripe.PaymentMethodConfigurationCreateParams.WechatPay;
937
+ type Zip = Stripe.PaymentMethodConfigurationCreateParams.Zip;
938
+ }
939
+ namespace PaymentMethodConfigurationUpdateParams {
940
+ type AcssDebit = Stripe.PaymentMethodConfigurationUpdateParams.AcssDebit;
941
+ type Affirm = Stripe.PaymentMethodConfigurationUpdateParams.Affirm;
942
+ type AfterpayClearpay = Stripe.PaymentMethodConfigurationUpdateParams.AfterpayClearpay;
943
+ type Alipay = Stripe.PaymentMethodConfigurationUpdateParams.Alipay;
944
+ type Alma = Stripe.PaymentMethodConfigurationUpdateParams.Alma;
945
+ type AmazonPay = Stripe.PaymentMethodConfigurationUpdateParams.AmazonPay;
946
+ type ApplePay = Stripe.PaymentMethodConfigurationUpdateParams.ApplePay;
947
+ type ApplePayLater = Stripe.PaymentMethodConfigurationUpdateParams.ApplePayLater;
948
+ type AuBecsDebit = Stripe.PaymentMethodConfigurationUpdateParams.AuBecsDebit;
949
+ type BacsDebit = Stripe.PaymentMethodConfigurationUpdateParams.BacsDebit;
950
+ type Bancontact = Stripe.PaymentMethodConfigurationUpdateParams.Bancontact;
951
+ type Billie = Stripe.PaymentMethodConfigurationUpdateParams.Billie;
952
+ type Bizum = Stripe.PaymentMethodConfigurationUpdateParams.Bizum;
953
+ type Blik = Stripe.PaymentMethodConfigurationUpdateParams.Blik;
954
+ type Boleto = Stripe.PaymentMethodConfigurationUpdateParams.Boleto;
955
+ type Card = Stripe.PaymentMethodConfigurationUpdateParams.Card;
956
+ type CartesBancaires = Stripe.PaymentMethodConfigurationUpdateParams.CartesBancaires;
957
+ type Cashapp = Stripe.PaymentMethodConfigurationUpdateParams.Cashapp;
958
+ type Crypto = Stripe.PaymentMethodConfigurationUpdateParams.Crypto;
959
+ type CustomerBalance = Stripe.PaymentMethodConfigurationUpdateParams.CustomerBalance;
960
+ type Eps = Stripe.PaymentMethodConfigurationUpdateParams.Eps;
961
+ type Fpx = Stripe.PaymentMethodConfigurationUpdateParams.Fpx;
962
+ type FrMealVoucherConecs = Stripe.PaymentMethodConfigurationUpdateParams.FrMealVoucherConecs;
963
+ type Giropay = Stripe.PaymentMethodConfigurationUpdateParams.Giropay;
964
+ type GooglePay = Stripe.PaymentMethodConfigurationUpdateParams.GooglePay;
965
+ type Grabpay = Stripe.PaymentMethodConfigurationUpdateParams.Grabpay;
966
+ type Ideal = Stripe.PaymentMethodConfigurationUpdateParams.Ideal;
967
+ type Jcb = Stripe.PaymentMethodConfigurationUpdateParams.Jcb;
968
+ type KakaoPay = Stripe.PaymentMethodConfigurationUpdateParams.KakaoPay;
969
+ type Klarna = Stripe.PaymentMethodConfigurationUpdateParams.Klarna;
970
+ type Konbini = Stripe.PaymentMethodConfigurationUpdateParams.Konbini;
971
+ type KrCard = Stripe.PaymentMethodConfigurationUpdateParams.KrCard;
972
+ type Link = Stripe.PaymentMethodConfigurationUpdateParams.Link;
973
+ type MbWay = Stripe.PaymentMethodConfigurationUpdateParams.MbWay;
974
+ type Mobilepay = Stripe.PaymentMethodConfigurationUpdateParams.Mobilepay;
975
+ type Multibanco = Stripe.PaymentMethodConfigurationUpdateParams.Multibanco;
976
+ type NaverPay = Stripe.PaymentMethodConfigurationUpdateParams.NaverPay;
977
+ type NzBankAccount = Stripe.PaymentMethodConfigurationUpdateParams.NzBankAccount;
978
+ type Oxxo = Stripe.PaymentMethodConfigurationUpdateParams.Oxxo;
979
+ type P24 = Stripe.PaymentMethodConfigurationUpdateParams.P24;
980
+ type PayByBank = Stripe.PaymentMethodConfigurationUpdateParams.PayByBank;
981
+ type Payco = Stripe.PaymentMethodConfigurationUpdateParams.Payco;
982
+ type Paynow = Stripe.PaymentMethodConfigurationUpdateParams.Paynow;
983
+ type Paypal = Stripe.PaymentMethodConfigurationUpdateParams.Paypal;
984
+ type Payto = Stripe.PaymentMethodConfigurationUpdateParams.Payto;
985
+ type Pix = Stripe.PaymentMethodConfigurationUpdateParams.Pix;
986
+ type Promptpay = Stripe.PaymentMethodConfigurationUpdateParams.Promptpay;
987
+ type RevolutPay = Stripe.PaymentMethodConfigurationUpdateParams.RevolutPay;
988
+ type SamsungPay = Stripe.PaymentMethodConfigurationUpdateParams.SamsungPay;
989
+ type Satispay = Stripe.PaymentMethodConfigurationUpdateParams.Satispay;
990
+ type Scalapay = Stripe.PaymentMethodConfigurationUpdateParams.Scalapay;
991
+ type SepaDebit = Stripe.PaymentMethodConfigurationUpdateParams.SepaDebit;
992
+ type Sofort = Stripe.PaymentMethodConfigurationUpdateParams.Sofort;
993
+ type Sunbit = Stripe.PaymentMethodConfigurationUpdateParams.Sunbit;
994
+ type Swish = Stripe.PaymentMethodConfigurationUpdateParams.Swish;
995
+ type Twint = Stripe.PaymentMethodConfigurationUpdateParams.Twint;
996
+ type Upi = Stripe.PaymentMethodConfigurationUpdateParams.Upi;
997
+ type UsBankAccount = Stripe.PaymentMethodConfigurationUpdateParams.UsBankAccount;
998
+ type WechatPay = Stripe.PaymentMethodConfigurationUpdateParams.WechatPay;
999
+ type Zip = Stripe.PaymentMethodConfigurationUpdateParams.Zip;
1000
+ }
1001
+ namespace PaymentRecordReportPaymentParams {
1002
+ type AmountRequested = Stripe.PaymentRecordReportPaymentParams.AmountRequested;
1003
+ type PaymentMethodDetails = Stripe.PaymentRecordReportPaymentParams.PaymentMethodDetails;
1004
+ type CustomerDetails = Stripe.PaymentRecordReportPaymentParams.CustomerDetails;
1005
+ type CustomerPresence = Stripe.PaymentRecordReportPaymentParams.CustomerPresence;
1006
+ type Failed = Stripe.PaymentRecordReportPaymentParams.Failed;
1007
+ type Guaranteed = Stripe.PaymentRecordReportPaymentParams.Guaranteed;
1008
+ type Outcome = Stripe.PaymentRecordReportPaymentParams.Outcome;
1009
+ type ProcessorDetails = Stripe.PaymentRecordReportPaymentParams.ProcessorDetails;
1010
+ type ShippingDetails = Stripe.PaymentRecordReportPaymentParams.ShippingDetails;
1011
+ }
1012
+ namespace PaymentRecordReportPaymentAttemptParams {
1013
+ type Failed = Stripe.PaymentRecordReportPaymentAttemptParams.Failed;
1014
+ type Guaranteed = Stripe.PaymentRecordReportPaymentAttemptParams.Guaranteed;
1015
+ type Outcome = Stripe.PaymentRecordReportPaymentAttemptParams.Outcome;
1016
+ type PaymentMethodDetails = Stripe.PaymentRecordReportPaymentAttemptParams.PaymentMethodDetails;
1017
+ type ShippingDetails = Stripe.PaymentRecordReportPaymentAttemptParams.ShippingDetails;
1018
+ }
1019
+ namespace PaymentRecordReportPaymentAttemptInformationalParams {
1020
+ type CustomerDetails = Stripe.PaymentRecordReportPaymentAttemptInformationalParams.CustomerDetails;
1021
+ type ShippingDetails = Stripe.PaymentRecordReportPaymentAttemptInformationalParams.ShippingDetails;
1022
+ }
1023
+ namespace PaymentRecordReportRefundParams {
1024
+ type ProcessorDetails = Stripe.PaymentRecordReportRefundParams.ProcessorDetails;
1025
+ type Refunded = Stripe.PaymentRecordReportRefundParams.Refunded;
1026
+ type Amount = Stripe.PaymentRecordReportRefundParams.Amount;
1027
+ }
1028
+ namespace PayoutCreateParams {
1029
+ type Method = Stripe.PayoutCreateParams.Method;
1030
+ type SourceType = Stripe.PayoutCreateParams.SourceType;
1031
+ }
1032
+ namespace PlanCreateParams {
1033
+ type Interval = Stripe.PlanCreateParams.Interval;
1034
+ type BillingScheme = Stripe.PlanCreateParams.BillingScheme;
1035
+ type Product = Stripe.PlanCreateParams.Product;
1036
+ type Tier = Stripe.PlanCreateParams.Tier;
1037
+ type TiersMode = Stripe.PlanCreateParams.TiersMode;
1038
+ type TransformUsage = Stripe.PlanCreateParams.TransformUsage;
1039
+ type UsageType = Stripe.PlanCreateParams.UsageType;
1040
+ }
1041
+ namespace PriceCreateParams {
1042
+ type BillingScheme = Stripe.PriceCreateParams.BillingScheme;
1043
+ type CurrencyOptions = Stripe.PriceCreateParams.CurrencyOptions;
1044
+ type CustomUnitAmount = Stripe.PriceCreateParams.CustomUnitAmount;
1045
+ type ProductData = Stripe.PriceCreateParams.ProductData;
1046
+ type Recurring = Stripe.PriceCreateParams.Recurring;
1047
+ type TaxBehavior = Stripe.PriceCreateParams.TaxBehavior;
1048
+ type Tier = Stripe.PriceCreateParams.Tier;
1049
+ type TiersMode = Stripe.PriceCreateParams.TiersMode;
1050
+ type TransformQuantity = Stripe.PriceCreateParams.TransformQuantity;
1051
+ }
1052
+ namespace PriceUpdateParams {
1053
+ type CurrencyOptions = Stripe.PriceUpdateParams.CurrencyOptions;
1054
+ type TaxBehavior = Stripe.PriceUpdateParams.TaxBehavior;
1055
+ }
1056
+ namespace PriceListParams {
1057
+ type Recurring = Stripe.PriceListParams.Recurring;
1058
+ type Type = Stripe.PriceListParams.Type;
1059
+ }
1060
+ namespace ProductCreateParams {
1061
+ type DefaultPriceData = Stripe.ProductCreateParams.DefaultPriceData;
1062
+ type MarketingFeature = Stripe.ProductCreateParams.MarketingFeature;
1063
+ type PackageDimensions = Stripe.ProductCreateParams.PackageDimensions;
1064
+ type Type = Stripe.ProductCreateParams.Type;
1065
+ }
1066
+ namespace ProductUpdateParams {
1067
+ type MarketingFeature = Stripe.ProductUpdateParams.MarketingFeature;
1068
+ type PackageDimensions = Stripe.ProductUpdateParams.PackageDimensions;
1069
+ }
1070
+ namespace ProductListParams {
1071
+ type Type = Stripe.ProductListParams.Type;
1072
+ }
1073
+ namespace PromotionCodeCreateParams {
1074
+ type Promotion = Stripe.PromotionCodeCreateParams.Promotion;
1075
+ type Restrictions = Stripe.PromotionCodeCreateParams.Restrictions;
1076
+ }
1077
+ namespace PromotionCodeUpdateParams {
1078
+ type Restrictions = Stripe.PromotionCodeUpdateParams.Restrictions;
1079
+ }
1080
+ namespace QuoteCreateParams {
1081
+ type AutomaticTax = Stripe.QuoteCreateParams.AutomaticTax;
1082
+ type CollectionMethod = Stripe.QuoteCreateParams.CollectionMethod;
1083
+ type Discount = Stripe.QuoteCreateParams.Discount;
1084
+ type FromQuote = Stripe.QuoteCreateParams.FromQuote;
1085
+ type InvoiceSettings = Stripe.QuoteCreateParams.InvoiceSettings;
1086
+ type LineItem = Stripe.QuoteCreateParams.LineItem;
1087
+ type SubscriptionData = Stripe.QuoteCreateParams.SubscriptionData;
1088
+ type TransferData = Stripe.QuoteCreateParams.TransferData;
1089
+ }
1090
+ namespace QuoteUpdateParams {
1091
+ type AutomaticTax = Stripe.QuoteUpdateParams.AutomaticTax;
1092
+ type CollectionMethod = Stripe.QuoteUpdateParams.CollectionMethod;
1093
+ type Discount = Stripe.QuoteUpdateParams.Discount;
1094
+ type InvoiceSettings = Stripe.QuoteUpdateParams.InvoiceSettings;
1095
+ type LineItem = Stripe.QuoteUpdateParams.LineItem;
1096
+ type SubscriptionData = Stripe.QuoteUpdateParams.SubscriptionData;
1097
+ type TransferData = Stripe.QuoteUpdateParams.TransferData;
1098
+ }
1099
+ namespace QuoteListParams {
1100
+ type Status = Stripe.QuoteListParams.Status;
1101
+ }
1102
+ namespace RefundCreateParams {
1103
+ type Reason = Stripe.RefundCreateParams.Reason;
1104
+ }
1105
+ namespace SetupIntentCreateParams {
1106
+ type AutomaticPaymentMethods = Stripe.SetupIntentCreateParams.AutomaticPaymentMethods;
1107
+ type ExcludedPaymentMethodType = Stripe.SetupIntentCreateParams.ExcludedPaymentMethodType;
1108
+ type FlowDirection = Stripe.SetupIntentCreateParams.FlowDirection;
1109
+ type MandateData = Stripe.SetupIntentCreateParams.MandateData;
1110
+ type PaymentMethodData = Stripe.SetupIntentCreateParams.PaymentMethodData;
1111
+ type PaymentMethodOptions = Stripe.SetupIntentCreateParams.PaymentMethodOptions;
1112
+ type SingleUse = Stripe.SetupIntentCreateParams.SingleUse;
1113
+ type Usage = Stripe.SetupIntentCreateParams.Usage;
1114
+ }
1115
+ namespace SetupIntentUpdateParams {
1116
+ type ExcludedPaymentMethodType = Stripe.SetupIntentUpdateParams.ExcludedPaymentMethodType;
1117
+ type FlowDirection = Stripe.SetupIntentUpdateParams.FlowDirection;
1118
+ type PaymentMethodData = Stripe.SetupIntentUpdateParams.PaymentMethodData;
1119
+ type PaymentMethodOptions = Stripe.SetupIntentUpdateParams.PaymentMethodOptions;
1120
+ }
1121
+ namespace SetupIntentCancelParams {
1122
+ type CancellationReason = Stripe.SetupIntentCancelParams.CancellationReason;
1123
+ }
1124
+ namespace SetupIntentConfirmParams {
1125
+ type MandateData = Stripe.SetupIntentConfirmParams.MandateData;
1126
+ type PaymentMethodData = Stripe.SetupIntentConfirmParams.PaymentMethodData;
1127
+ type PaymentMethodOptions = Stripe.SetupIntentConfirmParams.PaymentMethodOptions;
1128
+ }
1129
+ namespace ShippingRateCreateParams {
1130
+ type DeliveryEstimate = Stripe.ShippingRateCreateParams.DeliveryEstimate;
1131
+ type FixedAmount = Stripe.ShippingRateCreateParams.FixedAmount;
1132
+ type TaxBehavior = Stripe.ShippingRateCreateParams.TaxBehavior;
1133
+ }
1134
+ namespace ShippingRateUpdateParams {
1135
+ type FixedAmount = Stripe.ShippingRateUpdateParams.FixedAmount;
1136
+ type TaxBehavior = Stripe.ShippingRateUpdateParams.TaxBehavior;
1137
+ }
1138
+ namespace SourceCreateParams {
1139
+ type Flow = Stripe.SourceCreateParams.Flow;
1140
+ type Mandate = Stripe.SourceCreateParams.Mandate;
1141
+ type Owner = Stripe.SourceCreateParams.Owner;
1142
+ type Receiver = Stripe.SourceCreateParams.Receiver;
1143
+ type Redirect = Stripe.SourceCreateParams.Redirect;
1144
+ type SourceOrder = Stripe.SourceCreateParams.SourceOrder;
1145
+ type Usage = Stripe.SourceCreateParams.Usage;
1146
+ }
1147
+ namespace SourceUpdateParams {
1148
+ type Mandate = Stripe.SourceUpdateParams.Mandate;
1149
+ type Owner = Stripe.SourceUpdateParams.Owner;
1150
+ type SourceOrder = Stripe.SourceUpdateParams.SourceOrder;
1151
+ }
1152
+ namespace SubscriptionCreateParams {
1153
+ type AddInvoiceItem = Stripe.SubscriptionCreateParams.AddInvoiceItem;
1154
+ type AutomaticTax = Stripe.SubscriptionCreateParams.AutomaticTax;
1155
+ type BillingCycleAnchorConfig = Stripe.SubscriptionCreateParams.BillingCycleAnchorConfig;
1156
+ type BillingMode = Stripe.SubscriptionCreateParams.BillingMode;
1157
+ type BillingSchedule = Stripe.SubscriptionCreateParams.BillingSchedule;
1158
+ type BillingThresholds = Stripe.SubscriptionCreateParams.BillingThresholds;
1159
+ type CancelAt = Stripe.SubscriptionCreateParams.CancelAt;
1160
+ type CollectionMethod = Stripe.SubscriptionCreateParams.CollectionMethod;
1161
+ type Discount = Stripe.SubscriptionCreateParams.Discount;
1162
+ type InvoiceSettings = Stripe.SubscriptionCreateParams.InvoiceSettings;
1163
+ type Item = Stripe.SubscriptionCreateParams.Item;
1164
+ type PaymentBehavior = Stripe.SubscriptionCreateParams.PaymentBehavior;
1165
+ type PaymentSettings = Stripe.SubscriptionCreateParams.PaymentSettings;
1166
+ type PendingInvoiceItemInterval = Stripe.SubscriptionCreateParams.PendingInvoiceItemInterval;
1167
+ type ProrationBehavior = Stripe.SubscriptionCreateParams.ProrationBehavior;
1168
+ type TransferData = Stripe.SubscriptionCreateParams.TransferData;
1169
+ type TrialSettings = Stripe.SubscriptionCreateParams.TrialSettings;
1170
+ }
1171
+ namespace SubscriptionUpdateParams {
1172
+ type AddInvoiceItem = Stripe.SubscriptionUpdateParams.AddInvoiceItem;
1173
+ type AutomaticTax = Stripe.SubscriptionUpdateParams.AutomaticTax;
1174
+ type BillingCycleAnchor = Stripe.SubscriptionUpdateParams.BillingCycleAnchor;
1175
+ type BillingSchedule = Stripe.SubscriptionUpdateParams.BillingSchedule;
1176
+ type BillingThresholds = Stripe.SubscriptionUpdateParams.BillingThresholds;
1177
+ type CancelAt = Stripe.SubscriptionUpdateParams.CancelAt;
1178
+ type CancellationDetails = Stripe.SubscriptionUpdateParams.CancellationDetails;
1179
+ type CollectionMethod = Stripe.SubscriptionUpdateParams.CollectionMethod;
1180
+ type Discount = Stripe.SubscriptionUpdateParams.Discount;
1181
+ type InvoiceSettings = Stripe.SubscriptionUpdateParams.InvoiceSettings;
1182
+ type Item = Stripe.SubscriptionUpdateParams.Item;
1183
+ type PauseCollection = Stripe.SubscriptionUpdateParams.PauseCollection;
1184
+ type PaymentBehavior = Stripe.SubscriptionUpdateParams.PaymentBehavior;
1185
+ type PaymentSettings = Stripe.SubscriptionUpdateParams.PaymentSettings;
1186
+ type PendingInvoiceItemInterval = Stripe.SubscriptionUpdateParams.PendingInvoiceItemInterval;
1187
+ type ProrationBehavior = Stripe.SubscriptionUpdateParams.ProrationBehavior;
1188
+ type TransferData = Stripe.SubscriptionUpdateParams.TransferData;
1189
+ type TrialSettings = Stripe.SubscriptionUpdateParams.TrialSettings;
1190
+ }
1191
+ namespace SubscriptionListParams {
1192
+ type AutomaticTax = Stripe.SubscriptionListParams.AutomaticTax;
1193
+ type CollectionMethod = Stripe.SubscriptionListParams.CollectionMethod;
1194
+ type Status = Stripe.SubscriptionListParams.Status;
1195
+ }
1196
+ namespace SubscriptionCancelParams {
1197
+ type CancellationDetails = Stripe.SubscriptionCancelParams.CancellationDetails;
1198
+ }
1199
+ namespace SubscriptionMigrateParams {
1200
+ type BillingMode = Stripe.SubscriptionMigrateParams.BillingMode;
1201
+ }
1202
+ namespace SubscriptionResumeParams {
1203
+ type BillingCycleAnchor = Stripe.SubscriptionResumeParams.BillingCycleAnchor;
1204
+ type ProrationBehavior = Stripe.SubscriptionResumeParams.ProrationBehavior;
1205
+ }
1206
+ namespace SubscriptionItemCreateParams {
1207
+ type BillingThresholds = Stripe.SubscriptionItemCreateParams.BillingThresholds;
1208
+ type Discount = Stripe.SubscriptionItemCreateParams.Discount;
1209
+ type PaymentBehavior = Stripe.SubscriptionItemCreateParams.PaymentBehavior;
1210
+ type PriceData = Stripe.SubscriptionItemCreateParams.PriceData;
1211
+ type ProrationBehavior = Stripe.SubscriptionItemCreateParams.ProrationBehavior;
1212
+ }
1213
+ namespace SubscriptionItemUpdateParams {
1214
+ type BillingThresholds = Stripe.SubscriptionItemUpdateParams.BillingThresholds;
1215
+ type Discount = Stripe.SubscriptionItemUpdateParams.Discount;
1216
+ type PaymentBehavior = Stripe.SubscriptionItemUpdateParams.PaymentBehavior;
1217
+ type PriceData = Stripe.SubscriptionItemUpdateParams.PriceData;
1218
+ type ProrationBehavior = Stripe.SubscriptionItemUpdateParams.ProrationBehavior;
1219
+ }
1220
+ namespace SubscriptionItemDeleteParams {
1221
+ type PaymentBehavior = Stripe.SubscriptionItemDeleteParams.PaymentBehavior;
1222
+ type ProrationBehavior = Stripe.SubscriptionItemDeleteParams.ProrationBehavior;
1223
+ }
1224
+ namespace SubscriptionScheduleCreateParams {
1225
+ type BillingMode = Stripe.SubscriptionScheduleCreateParams.BillingMode;
1226
+ type DefaultSettings = Stripe.SubscriptionScheduleCreateParams.DefaultSettings;
1227
+ type EndBehavior = Stripe.SubscriptionScheduleCreateParams.EndBehavior;
1228
+ type Phase = Stripe.SubscriptionScheduleCreateParams.Phase;
1229
+ }
1230
+ namespace SubscriptionScheduleUpdateParams {
1231
+ type DefaultSettings = Stripe.SubscriptionScheduleUpdateParams.DefaultSettings;
1232
+ type EndBehavior = Stripe.SubscriptionScheduleUpdateParams.EndBehavior;
1233
+ type Phase = Stripe.SubscriptionScheduleUpdateParams.Phase;
1234
+ type ProrationBehavior = Stripe.SubscriptionScheduleUpdateParams.ProrationBehavior;
1235
+ }
1236
+ namespace TaxIdCreateParams {
1237
+ type Type = Stripe.TaxIdCreateParams.Type;
1238
+ type Owner = Stripe.TaxIdCreateParams.Owner;
1239
+ }
1240
+ namespace TaxIdListParams {
1241
+ type Owner = Stripe.TaxIdListParams.Owner;
1242
+ }
1243
+ namespace TaxRateCreateParams {
1244
+ type TaxType = Stripe.TaxRateCreateParams.TaxType;
1245
+ }
1246
+ namespace TaxRateUpdateParams {
1247
+ type TaxType = Stripe.TaxRateUpdateParams.TaxType;
1248
+ }
1249
+ namespace TokenCreateParams {
1250
+ type Account = Stripe.TokenCreateParams.Account;
1251
+ type BankAccount = Stripe.TokenCreateParams.BankAccount;
1252
+ type Card = Stripe.TokenCreateParams.Card;
1253
+ type CvcUpdate = Stripe.TokenCreateParams.CvcUpdate;
1254
+ type Person = Stripe.TokenCreateParams.Person;
1255
+ type Pii = Stripe.TokenCreateParams.Pii;
1256
+ }
1257
+ namespace TopupListParams {
1258
+ type Status = Stripe.TopupListParams.Status;
1259
+ }
1260
+ namespace TransferCreateParams {
1261
+ type SourceType = Stripe.TransferCreateParams.SourceType;
1262
+ }
1263
+ namespace WebhookEndpointCreateParams {
1264
+ type EnabledEvent = Stripe.WebhookEndpointCreateParams.EnabledEvent;
1265
+ type ApiVersion = Stripe.WebhookEndpointCreateParams.ApiVersion;
1266
+ }
1267
+ namespace WebhookEndpointUpdateParams {
1268
+ type EnabledEvent = Stripe.WebhookEndpointUpdateParams.EnabledEvent;
1269
+ }
1270
+ type Apps = Stripe.Apps;
1271
+ type Billing = Stripe.Billing;
1272
+ type BillingPortal = Stripe.BillingPortal;
1273
+ type Checkout = Stripe.Checkout;
1274
+ type Climate = Stripe.Climate;
1275
+ type Entitlements = Stripe.Entitlements;
1276
+ type FinancialConnections = Stripe.FinancialConnections;
1277
+ type Forwarding = Stripe.Forwarding;
1278
+ type Identity = Stripe.Identity;
1279
+ type Issuing = Stripe.Issuing;
1280
+ type Radar = Stripe.Radar;
1281
+ type Reporting = Stripe.Reporting;
1282
+ type Sigma = Stripe.Sigma;
1283
+ type Tax = Stripe.Tax;
1284
+ type Terminal = Stripe.Terminal;
1285
+ type TestHelpers = Stripe.TestHelpers;
1286
+ type Treasury = Stripe.Treasury;
1287
+ type V2 = Stripe.V2;
1288
+ type Reserve = Stripe.Reserve;
1289
+ namespace Apps {
1290
+ type Secret = Stripe.Apps.Secret;
1291
+ type SecretCreateParams = Stripe.Apps.SecretCreateParams;
1292
+ type SecretListParams = Stripe.Apps.SecretListParams;
1293
+ type SecretDeleteWhereParams = Stripe.Apps.SecretDeleteWhereParams;
1294
+ type SecretFindParams = Stripe.Apps.SecretFindParams;
1295
+ type SecretResource = Stripe.Apps.SecretResource;
1296
+ namespace SecretCreateParams {
1297
+ type Scope = Stripe.Apps.SecretCreateParams.Scope;
1298
+ }
1299
+ namespace SecretListParams {
1300
+ type Scope = Stripe.Apps.SecretListParams.Scope;
1301
+ }
1302
+ namespace SecretDeleteWhereParams {
1303
+ type Scope = Stripe.Apps.SecretDeleteWhereParams.Scope;
1304
+ }
1305
+ namespace SecretFindParams {
1306
+ type Scope = Stripe.Apps.SecretFindParams.Scope;
1307
+ }
1308
+ }
1309
+ namespace Billing {
1310
+ type Alert = Stripe.Billing.Alert;
1311
+ type AlertCreateParams = Stripe.Billing.AlertCreateParams;
1312
+ type AlertRetrieveParams = Stripe.Billing.AlertRetrieveParams;
1313
+ type AlertListParams = Stripe.Billing.AlertListParams;
1314
+ type AlertActivateParams = Stripe.Billing.AlertActivateParams;
1315
+ type AlertArchiveParams = Stripe.Billing.AlertArchiveParams;
1316
+ type AlertDeactivateParams = Stripe.Billing.AlertDeactivateParams;
1317
+ type AlertResource = Stripe.Billing.AlertResource;
1318
+ type CreditBalanceSummary = Stripe.Billing.CreditBalanceSummary;
1319
+ type CreditBalanceSummaryRetrieveParams = Stripe.Billing.CreditBalanceSummaryRetrieveParams;
1320
+ type CreditBalanceSummaryResource = Stripe.Billing.CreditBalanceSummaryResource;
1321
+ type CreditBalanceTransaction = Stripe.Billing.CreditBalanceTransaction;
1322
+ type CreditBalanceTransactionRetrieveParams = Stripe.Billing.CreditBalanceTransactionRetrieveParams;
1323
+ type CreditBalanceTransactionListParams = Stripe.Billing.CreditBalanceTransactionListParams;
1324
+ type CreditBalanceTransactionResource = Stripe.Billing.CreditBalanceTransactionResource;
1325
+ type CreditGrant = Stripe.Billing.CreditGrant;
1326
+ type CreditGrantCreateParams = Stripe.Billing.CreditGrantCreateParams;
1327
+ type CreditGrantRetrieveParams = Stripe.Billing.CreditGrantRetrieveParams;
1328
+ type CreditGrantUpdateParams = Stripe.Billing.CreditGrantUpdateParams;
1329
+ type CreditGrantListParams = Stripe.Billing.CreditGrantListParams;
1330
+ type CreditGrantExpireParams = Stripe.Billing.CreditGrantExpireParams;
1331
+ type CreditGrantVoidGrantParams = Stripe.Billing.CreditGrantVoidGrantParams;
1332
+ type CreditGrantResource = Stripe.Billing.CreditGrantResource;
1333
+ type Meter = Stripe.Billing.Meter;
1334
+ type MeterCreateParams = Stripe.Billing.MeterCreateParams;
1335
+ type MeterRetrieveParams = Stripe.Billing.MeterRetrieveParams;
1336
+ type MeterUpdateParams = Stripe.Billing.MeterUpdateParams;
1337
+ type MeterListParams = Stripe.Billing.MeterListParams;
1338
+ type MeterDeactivateParams = Stripe.Billing.MeterDeactivateParams;
1339
+ type MeterListEventSummariesParams = Stripe.Billing.MeterListEventSummariesParams;
1340
+ type MeterReactivateParams = Stripe.Billing.MeterReactivateParams;
1341
+ type MeterResource = Stripe.Billing.MeterResource;
1342
+ type MeterEvent = Stripe.Billing.MeterEvent;
1343
+ type MeterEventCreateParams = Stripe.Billing.MeterEventCreateParams;
1344
+ type MeterEventResource = Stripe.Billing.MeterEventResource;
1345
+ type MeterEventAdjustment = Stripe.Billing.MeterEventAdjustment;
1346
+ type MeterEventAdjustmentCreateParams = Stripe.Billing.MeterEventAdjustmentCreateParams;
1347
+ type MeterEventAdjustmentResource = Stripe.Billing.MeterEventAdjustmentResource;
1348
+ type AlertTriggered = Stripe.Billing.AlertTriggered;
1349
+ type MeterEventSummary = Stripe.Billing.MeterEventSummary;
1350
+ namespace AlertCreateParams {
1351
+ type UsageThreshold = Stripe.Billing.AlertCreateParams.UsageThreshold;
1352
+ }
1353
+ namespace CreditBalanceSummaryRetrieveParams {
1354
+ type Filter = Stripe.Billing.CreditBalanceSummaryRetrieveParams.Filter;
1355
+ }
1356
+ namespace CreditGrantCreateParams {
1357
+ type Amount = Stripe.Billing.CreditGrantCreateParams.Amount;
1358
+ type ApplicabilityConfig = Stripe.Billing.CreditGrantCreateParams.ApplicabilityConfig;
1359
+ type Category = Stripe.Billing.CreditGrantCreateParams.Category;
1360
+ }
1361
+ namespace MeterCreateParams {
1362
+ type DefaultAggregation = Stripe.Billing.MeterCreateParams.DefaultAggregation;
1363
+ type CustomerMapping = Stripe.Billing.MeterCreateParams.CustomerMapping;
1364
+ type EventTimeWindow = Stripe.Billing.MeterCreateParams.EventTimeWindow;
1365
+ type ValueSettings = Stripe.Billing.MeterCreateParams.ValueSettings;
1366
+ }
1367
+ namespace MeterListParams {
1368
+ type Status = Stripe.Billing.MeterListParams.Status;
1369
+ }
1370
+ namespace MeterListEventSummariesParams {
1371
+ type ValueGroupingWindow = Stripe.Billing.MeterListEventSummariesParams.ValueGroupingWindow;
1372
+ }
1373
+ namespace MeterEventAdjustmentCreateParams {
1374
+ type Cancel = Stripe.Billing.MeterEventAdjustmentCreateParams.Cancel;
1375
+ }
1376
+ }
1377
+ namespace BillingPortal {
1378
+ type Configuration = Stripe.BillingPortal.Configuration;
1379
+ type ConfigurationCreateParams = Stripe.BillingPortal.ConfigurationCreateParams;
1380
+ type ConfigurationRetrieveParams = Stripe.BillingPortal.ConfigurationRetrieveParams;
1381
+ type ConfigurationUpdateParams = Stripe.BillingPortal.ConfigurationUpdateParams;
1382
+ type ConfigurationListParams = Stripe.BillingPortal.ConfigurationListParams;
1383
+ type ConfigurationResource = Stripe.BillingPortal.ConfigurationResource;
1384
+ type Session = Stripe.BillingPortal.Session;
1385
+ type SessionCreateParams = Stripe.BillingPortal.SessionCreateParams;
1386
+ type SessionResource = Stripe.BillingPortal.SessionResource;
1387
+ namespace ConfigurationCreateParams {
1388
+ type Features = Stripe.BillingPortal.ConfigurationCreateParams.Features;
1389
+ type BusinessProfile = Stripe.BillingPortal.ConfigurationCreateParams.BusinessProfile;
1390
+ type LoginPage = Stripe.BillingPortal.ConfigurationCreateParams.LoginPage;
1391
+ }
1392
+ namespace ConfigurationUpdateParams {
1393
+ type BusinessProfile = Stripe.BillingPortal.ConfigurationUpdateParams.BusinessProfile;
1394
+ type Features = Stripe.BillingPortal.ConfigurationUpdateParams.Features;
1395
+ type LoginPage = Stripe.BillingPortal.ConfigurationUpdateParams.LoginPage;
1396
+ }
1397
+ namespace SessionCreateParams {
1398
+ type FlowData = Stripe.BillingPortal.SessionCreateParams.FlowData;
1399
+ type Locale = Stripe.BillingPortal.SessionCreateParams.Locale;
1400
+ }
1401
+ }
1402
+ namespace Checkout {
1403
+ type Session = Stripe.Checkout.Session;
1404
+ type SessionCreateParams = Stripe.Checkout.SessionCreateParams;
1405
+ type SessionRetrieveParams = Stripe.Checkout.SessionRetrieveParams;
1406
+ type SessionUpdateParams = Stripe.Checkout.SessionUpdateParams;
1407
+ type SessionListParams = Stripe.Checkout.SessionListParams;
1408
+ type SessionExpireParams = Stripe.Checkout.SessionExpireParams;
1409
+ type SessionListLineItemsParams = Stripe.Checkout.SessionListLineItemsParams;
1410
+ type SessionResource = Stripe.Checkout.SessionResource;
1411
+ namespace SessionCreateParams {
1412
+ type AdaptivePricing = Stripe.Checkout.SessionCreateParams.AdaptivePricing;
1413
+ type AfterExpiration = Stripe.Checkout.SessionCreateParams.AfterExpiration;
1414
+ type AutomaticTax = Stripe.Checkout.SessionCreateParams.AutomaticTax;
1415
+ type BillingAddressCollection = Stripe.Checkout.SessionCreateParams.BillingAddressCollection;
1416
+ type BrandingSettings = Stripe.Checkout.SessionCreateParams.BrandingSettings;
1417
+ type ConsentCollection = Stripe.Checkout.SessionCreateParams.ConsentCollection;
1418
+ type CustomField = Stripe.Checkout.SessionCreateParams.CustomField;
1419
+ type CustomText = Stripe.Checkout.SessionCreateParams.CustomText;
1420
+ type CustomerCreation = Stripe.Checkout.SessionCreateParams.CustomerCreation;
1421
+ type CustomerUpdate = Stripe.Checkout.SessionCreateParams.CustomerUpdate;
1422
+ type Discount = Stripe.Checkout.SessionCreateParams.Discount;
1423
+ type ExcludedPaymentMethodType = Stripe.Checkout.SessionCreateParams.ExcludedPaymentMethodType;
1424
+ type InvoiceCreation = Stripe.Checkout.SessionCreateParams.InvoiceCreation;
1425
+ type LineItem = Stripe.Checkout.SessionCreateParams.LineItem;
1426
+ type Locale = Stripe.Checkout.SessionCreateParams.Locale;
1427
+ type ManagedPayments = Stripe.Checkout.SessionCreateParams.ManagedPayments;
1428
+ type Mode = Stripe.Checkout.SessionCreateParams.Mode;
1429
+ type NameCollection = Stripe.Checkout.SessionCreateParams.NameCollection;
1430
+ type OptionalItem = Stripe.Checkout.SessionCreateParams.OptionalItem;
1431
+ type OriginContext = Stripe.Checkout.SessionCreateParams.OriginContext;
1432
+ type PaymentIntentData = Stripe.Checkout.SessionCreateParams.PaymentIntentData;
1433
+ type PaymentMethodCollection = Stripe.Checkout.SessionCreateParams.PaymentMethodCollection;
1434
+ type PaymentMethodData = Stripe.Checkout.SessionCreateParams.PaymentMethodData;
1435
+ type PaymentMethodOptions = Stripe.Checkout.SessionCreateParams.PaymentMethodOptions;
1436
+ type PaymentMethodType = Stripe.Checkout.SessionCreateParams.PaymentMethodType;
1437
+ type Permissions = Stripe.Checkout.SessionCreateParams.Permissions;
1438
+ type PhoneNumberCollection = Stripe.Checkout.SessionCreateParams.PhoneNumberCollection;
1439
+ type RedirectOnCompletion = Stripe.Checkout.SessionCreateParams.RedirectOnCompletion;
1440
+ type SavedPaymentMethodOptions = Stripe.Checkout.SessionCreateParams.SavedPaymentMethodOptions;
1441
+ type SetupIntentData = Stripe.Checkout.SessionCreateParams.SetupIntentData;
1442
+ type ShippingAddressCollection = Stripe.Checkout.SessionCreateParams.ShippingAddressCollection;
1443
+ type ShippingOption = Stripe.Checkout.SessionCreateParams.ShippingOption;
1444
+ type SubmitType = Stripe.Checkout.SessionCreateParams.SubmitType;
1445
+ type SubscriptionData = Stripe.Checkout.SessionCreateParams.SubscriptionData;
1446
+ type TaxIdCollection = Stripe.Checkout.SessionCreateParams.TaxIdCollection;
1447
+ type UiMode = Stripe.Checkout.SessionCreateParams.UiMode;
1448
+ type WalletOptions = Stripe.Checkout.SessionCreateParams.WalletOptions;
1449
+ }
1450
+ namespace SessionUpdateParams {
1451
+ type CollectedInformation = Stripe.Checkout.SessionUpdateParams.CollectedInformation;
1452
+ type LineItem = Stripe.Checkout.SessionUpdateParams.LineItem;
1453
+ type ShippingOption = Stripe.Checkout.SessionUpdateParams.ShippingOption;
1454
+ }
1455
+ namespace SessionListParams {
1456
+ type CustomerDetails = Stripe.Checkout.SessionListParams.CustomerDetails;
1457
+ type Status = Stripe.Checkout.SessionListParams.Status;
1458
+ }
1459
+ }
1460
+ namespace Climate {
1461
+ type Order = Stripe.Climate.Order;
1462
+ type OrderCreateParams = Stripe.Climate.OrderCreateParams;
1463
+ type OrderRetrieveParams = Stripe.Climate.OrderRetrieveParams;
1464
+ type OrderUpdateParams = Stripe.Climate.OrderUpdateParams;
1465
+ type OrderListParams = Stripe.Climate.OrderListParams;
1466
+ type OrderCancelParams = Stripe.Climate.OrderCancelParams;
1467
+ type OrderResource = Stripe.Climate.OrderResource;
1468
+ type Product = Stripe.Climate.Product;
1469
+ type ProductRetrieveParams = Stripe.Climate.ProductRetrieveParams;
1470
+ type ProductListParams = Stripe.Climate.ProductListParams;
1471
+ type ProductResource = Stripe.Climate.ProductResource;
1472
+ type Supplier = Stripe.Climate.Supplier;
1473
+ type SupplierRetrieveParams = Stripe.Climate.SupplierRetrieveParams;
1474
+ type SupplierListParams = Stripe.Climate.SupplierListParams;
1475
+ type SupplierResource = Stripe.Climate.SupplierResource;
1476
+ namespace OrderCreateParams {
1477
+ type Beneficiary = Stripe.Climate.OrderCreateParams.Beneficiary;
1478
+ }
1479
+ namespace OrderUpdateParams {
1480
+ type Beneficiary = Stripe.Climate.OrderUpdateParams.Beneficiary;
1481
+ }
1482
+ }
1483
+ namespace Entitlements {
1484
+ type ActiveEntitlement = Stripe.Entitlements.ActiveEntitlement;
1485
+ type ActiveEntitlementRetrieveParams = Stripe.Entitlements.ActiveEntitlementRetrieveParams;
1486
+ type ActiveEntitlementListParams = Stripe.Entitlements.ActiveEntitlementListParams;
1487
+ type ActiveEntitlementResource = Stripe.Entitlements.ActiveEntitlementResource;
1488
+ type Feature = Stripe.Entitlements.Feature;
1489
+ type FeatureCreateParams = Stripe.Entitlements.FeatureCreateParams;
1490
+ type FeatureRetrieveParams = Stripe.Entitlements.FeatureRetrieveParams;
1491
+ type FeatureUpdateParams = Stripe.Entitlements.FeatureUpdateParams;
1492
+ type FeatureListParams = Stripe.Entitlements.FeatureListParams;
1493
+ type FeatureResource = Stripe.Entitlements.FeatureResource;
1494
+ type ActiveEntitlementSummary = Stripe.Entitlements.ActiveEntitlementSummary;
1495
+ }
1496
+ namespace FinancialConnections {
1497
+ type Account = Stripe.FinancialConnections.Account;
1498
+ type AccountRetrieveParams = Stripe.FinancialConnections.AccountRetrieveParams;
1499
+ type AccountListParams = Stripe.FinancialConnections.AccountListParams;
1500
+ type AccountDisconnectParams = Stripe.FinancialConnections.AccountDisconnectParams;
1501
+ type AccountListOwnersParams = Stripe.FinancialConnections.AccountListOwnersParams;
1502
+ type AccountRefreshParams = Stripe.FinancialConnections.AccountRefreshParams;
1503
+ type AccountSubscribeParams = Stripe.FinancialConnections.AccountSubscribeParams;
1504
+ type AccountUnsubscribeParams = Stripe.FinancialConnections.AccountUnsubscribeParams;
1505
+ type AccountResource = Stripe.FinancialConnections.AccountResource;
1506
+ type Session = Stripe.FinancialConnections.Session;
1507
+ type SessionCreateParams = Stripe.FinancialConnections.SessionCreateParams;
1508
+ type SessionRetrieveParams = Stripe.FinancialConnections.SessionRetrieveParams;
1509
+ type SessionResource = Stripe.FinancialConnections.SessionResource;
1510
+ type Transaction = Stripe.FinancialConnections.Transaction;
1511
+ type TransactionRetrieveParams = Stripe.FinancialConnections.TransactionRetrieveParams;
1512
+ type TransactionListParams = Stripe.FinancialConnections.TransactionListParams;
1513
+ type TransactionResource = Stripe.FinancialConnections.TransactionResource;
1514
+ type AccountOwner = Stripe.FinancialConnections.AccountOwner;
1515
+ type AccountOwnership = Stripe.FinancialConnections.AccountOwnership;
1516
+ namespace AccountListParams {
1517
+ type AccountHolder = Stripe.FinancialConnections.AccountListParams.AccountHolder;
1518
+ }
1519
+ namespace AccountRefreshParams {
1520
+ type Feature = Stripe.FinancialConnections.AccountRefreshParams.Feature;
1521
+ }
1522
+ namespace SessionCreateParams {
1523
+ type AccountHolder = Stripe.FinancialConnections.SessionCreateParams.AccountHolder;
1524
+ type Permission = Stripe.FinancialConnections.SessionCreateParams.Permission;
1525
+ type Filters = Stripe.FinancialConnections.SessionCreateParams.Filters;
1526
+ type Prefetch = Stripe.FinancialConnections.SessionCreateParams.Prefetch;
1527
+ }
1528
+ namespace TransactionListParams {
1529
+ type TransactionRefresh = Stripe.FinancialConnections.TransactionListParams.TransactionRefresh;
1530
+ }
1531
+ }
1532
+ namespace Forwarding {
1533
+ type Request = Stripe.Forwarding.Request;
1534
+ type RequestCreateParams = Stripe.Forwarding.RequestCreateParams;
1535
+ type RequestRetrieveParams = Stripe.Forwarding.RequestRetrieveParams;
1536
+ type RequestListParams = Stripe.Forwarding.RequestListParams;
1537
+ type RequestResource = Stripe.Forwarding.RequestResource;
1538
+ namespace RequestCreateParams {
1539
+ type Replacement = Stripe.Forwarding.RequestCreateParams.Replacement;
1540
+ type Request = Stripe.Forwarding.RequestCreateParams.Request;
1541
+ }
1542
+ }
1543
+ namespace Identity {
1544
+ type VerificationReport = Stripe.Identity.VerificationReport;
1545
+ type VerificationReportRetrieveParams = Stripe.Identity.VerificationReportRetrieveParams;
1546
+ type VerificationReportListParams = Stripe.Identity.VerificationReportListParams;
1547
+ type VerificationReportResource = Stripe.Identity.VerificationReportResource;
1548
+ type VerificationSession = Stripe.Identity.VerificationSession;
1549
+ type VerificationSessionCreateParams = Stripe.Identity.VerificationSessionCreateParams;
1550
+ type VerificationSessionRetrieveParams = Stripe.Identity.VerificationSessionRetrieveParams;
1551
+ type VerificationSessionUpdateParams = Stripe.Identity.VerificationSessionUpdateParams;
1552
+ type VerificationSessionListParams = Stripe.Identity.VerificationSessionListParams;
1553
+ type VerificationSessionCancelParams = Stripe.Identity.VerificationSessionCancelParams;
1554
+ type VerificationSessionRedactParams = Stripe.Identity.VerificationSessionRedactParams;
1555
+ type VerificationSessionResource = Stripe.Identity.VerificationSessionResource;
1556
+ namespace VerificationReportListParams {
1557
+ type Type = Stripe.Identity.VerificationReportListParams.Type;
1558
+ }
1559
+ namespace VerificationSessionCreateParams {
1560
+ type Options = Stripe.Identity.VerificationSessionCreateParams.Options;
1561
+ type ProvidedDetails = Stripe.Identity.VerificationSessionCreateParams.ProvidedDetails;
1562
+ type RelatedPerson = Stripe.Identity.VerificationSessionCreateParams.RelatedPerson;
1563
+ type Type = Stripe.Identity.VerificationSessionCreateParams.Type;
1564
+ }
1565
+ namespace VerificationSessionUpdateParams {
1566
+ type Options = Stripe.Identity.VerificationSessionUpdateParams.Options;
1567
+ type ProvidedDetails = Stripe.Identity.VerificationSessionUpdateParams.ProvidedDetails;
1568
+ type Type = Stripe.Identity.VerificationSessionUpdateParams.Type;
1569
+ }
1570
+ namespace VerificationSessionListParams {
1571
+ type Status = Stripe.Identity.VerificationSessionListParams.Status;
1572
+ }
1573
+ }
1574
+ namespace Issuing {
1575
+ type Authorization = Stripe.Issuing.Authorization;
1576
+ type AuthorizationRetrieveParams = Stripe.Issuing.AuthorizationRetrieveParams;
1577
+ type AuthorizationUpdateParams = Stripe.Issuing.AuthorizationUpdateParams;
1578
+ type AuthorizationListParams = Stripe.Issuing.AuthorizationListParams;
1579
+ type AuthorizationApproveParams = Stripe.Issuing.AuthorizationApproveParams;
1580
+ type AuthorizationDeclineParams = Stripe.Issuing.AuthorizationDeclineParams;
1581
+ type AuthorizationResource = Stripe.Issuing.AuthorizationResource;
1582
+ type Card = Stripe.Issuing.Card;
1583
+ type CardCreateParams = Stripe.Issuing.CardCreateParams;
1584
+ type CardRetrieveParams = Stripe.Issuing.CardRetrieveParams;
1585
+ type CardUpdateParams = Stripe.Issuing.CardUpdateParams;
1586
+ type CardListParams = Stripe.Issuing.CardListParams;
1587
+ type CardResource = Stripe.Issuing.CardResource;
1588
+ type Cardholder = Stripe.Issuing.Cardholder;
1589
+ type CardholderCreateParams = Stripe.Issuing.CardholderCreateParams;
1590
+ type CardholderRetrieveParams = Stripe.Issuing.CardholderRetrieveParams;
1591
+ type CardholderUpdateParams = Stripe.Issuing.CardholderUpdateParams;
1592
+ type CardholderListParams = Stripe.Issuing.CardholderListParams;
1593
+ type CardholderResource = Stripe.Issuing.CardholderResource;
1594
+ type Dispute = Stripe.Issuing.Dispute;
1595
+ type DisputeCreateParams = Stripe.Issuing.DisputeCreateParams;
1596
+ type DisputeRetrieveParams = Stripe.Issuing.DisputeRetrieveParams;
1597
+ type DisputeUpdateParams = Stripe.Issuing.DisputeUpdateParams;
1598
+ type DisputeListParams = Stripe.Issuing.DisputeListParams;
1599
+ type DisputeSubmitParams = Stripe.Issuing.DisputeSubmitParams;
1600
+ type DisputeResource = Stripe.Issuing.DisputeResource;
1601
+ type PersonalizationDesign = Stripe.Issuing.PersonalizationDesign;
1602
+ type PersonalizationDesignCreateParams = Stripe.Issuing.PersonalizationDesignCreateParams;
1603
+ type PersonalizationDesignRetrieveParams = Stripe.Issuing.PersonalizationDesignRetrieveParams;
1604
+ type PersonalizationDesignUpdateParams = Stripe.Issuing.PersonalizationDesignUpdateParams;
1605
+ type PersonalizationDesignListParams = Stripe.Issuing.PersonalizationDesignListParams;
1606
+ type PersonalizationDesignResource = Stripe.Issuing.PersonalizationDesignResource;
1607
+ type PhysicalBundle = Stripe.Issuing.PhysicalBundle;
1608
+ type PhysicalBundleRetrieveParams = Stripe.Issuing.PhysicalBundleRetrieveParams;
1609
+ type PhysicalBundleListParams = Stripe.Issuing.PhysicalBundleListParams;
1610
+ type PhysicalBundleResource = Stripe.Issuing.PhysicalBundleResource;
1611
+ type Token = Stripe.Issuing.Token;
1612
+ type TokenRetrieveParams = Stripe.Issuing.TokenRetrieveParams;
1613
+ type TokenUpdateParams = Stripe.Issuing.TokenUpdateParams;
1614
+ type TokenListParams = Stripe.Issuing.TokenListParams;
1615
+ type TokenResource = Stripe.Issuing.TokenResource;
1616
+ type Transaction = Stripe.Issuing.Transaction;
1617
+ type TransactionRetrieveParams = Stripe.Issuing.TransactionRetrieveParams;
1618
+ type TransactionUpdateParams = Stripe.Issuing.TransactionUpdateParams;
1619
+ type TransactionListParams = Stripe.Issuing.TransactionListParams;
1620
+ type TransactionResource = Stripe.Issuing.TransactionResource;
1621
+ namespace AuthorizationListParams {
1622
+ type Status = Stripe.Issuing.AuthorizationListParams.Status;
1623
+ }
1624
+ namespace CardCreateParams {
1625
+ type Type = Stripe.Issuing.CardCreateParams.Type;
1626
+ type LifecycleControls = Stripe.Issuing.CardCreateParams.LifecycleControls;
1627
+ type Pin = Stripe.Issuing.CardCreateParams.Pin;
1628
+ type ReplacementReason = Stripe.Issuing.CardCreateParams.ReplacementReason;
1629
+ type Shipping = Stripe.Issuing.CardCreateParams.Shipping;
1630
+ type SpendingControls = Stripe.Issuing.CardCreateParams.SpendingControls;
1631
+ type Status = Stripe.Issuing.CardCreateParams.Status;
1632
+ }
1633
+ namespace CardUpdateParams {
1634
+ type CancellationReason = Stripe.Issuing.CardUpdateParams.CancellationReason;
1635
+ type Pin = Stripe.Issuing.CardUpdateParams.Pin;
1636
+ type Shipping = Stripe.Issuing.CardUpdateParams.Shipping;
1637
+ type SpendingControls = Stripe.Issuing.CardUpdateParams.SpendingControls;
1638
+ type Status = Stripe.Issuing.CardUpdateParams.Status;
1639
+ }
1640
+ namespace CardListParams {
1641
+ type Status = Stripe.Issuing.CardListParams.Status;
1642
+ type Type = Stripe.Issuing.CardListParams.Type;
1643
+ }
1644
+ namespace CardholderCreateParams {
1645
+ type Billing = Stripe.Issuing.CardholderCreateParams.Billing;
1646
+ type Company = Stripe.Issuing.CardholderCreateParams.Company;
1647
+ type Individual = Stripe.Issuing.CardholderCreateParams.Individual;
1648
+ type PreferredLocale = Stripe.Issuing.CardholderCreateParams.PreferredLocale;
1649
+ type SpendingControls = Stripe.Issuing.CardholderCreateParams.SpendingControls;
1650
+ type Status = Stripe.Issuing.CardholderCreateParams.Status;
1651
+ type Type = Stripe.Issuing.CardholderCreateParams.Type;
1652
+ }
1653
+ namespace CardholderUpdateParams {
1654
+ type Billing = Stripe.Issuing.CardholderUpdateParams.Billing;
1655
+ type Company = Stripe.Issuing.CardholderUpdateParams.Company;
1656
+ type Individual = Stripe.Issuing.CardholderUpdateParams.Individual;
1657
+ type PreferredLocale = Stripe.Issuing.CardholderUpdateParams.PreferredLocale;
1658
+ type SpendingControls = Stripe.Issuing.CardholderUpdateParams.SpendingControls;
1659
+ type Status = Stripe.Issuing.CardholderUpdateParams.Status;
1660
+ }
1661
+ namespace CardholderListParams {
1662
+ type Status = Stripe.Issuing.CardholderListParams.Status;
1663
+ type Type = Stripe.Issuing.CardholderListParams.Type;
1664
+ }
1665
+ namespace DisputeCreateParams {
1666
+ type Evidence = Stripe.Issuing.DisputeCreateParams.Evidence;
1667
+ type Treasury = Stripe.Issuing.DisputeCreateParams.Treasury;
1668
+ }
1669
+ namespace DisputeUpdateParams {
1670
+ type Evidence = Stripe.Issuing.DisputeUpdateParams.Evidence;
1671
+ }
1672
+ namespace DisputeListParams {
1673
+ type Status = Stripe.Issuing.DisputeListParams.Status;
1674
+ }
1675
+ namespace PersonalizationDesignCreateParams {
1676
+ type CarrierText = Stripe.Issuing.PersonalizationDesignCreateParams.CarrierText;
1677
+ type Preferences = Stripe.Issuing.PersonalizationDesignCreateParams.Preferences;
1678
+ }
1679
+ namespace PersonalizationDesignUpdateParams {
1680
+ type CarrierText = Stripe.Issuing.PersonalizationDesignUpdateParams.CarrierText;
1681
+ type Preferences = Stripe.Issuing.PersonalizationDesignUpdateParams.Preferences;
1682
+ }
1683
+ namespace PersonalizationDesignListParams {
1684
+ type Preferences = Stripe.Issuing.PersonalizationDesignListParams.Preferences;
1685
+ type Status = Stripe.Issuing.PersonalizationDesignListParams.Status;
1686
+ }
1687
+ namespace PhysicalBundleListParams {
1688
+ type Status = Stripe.Issuing.PhysicalBundleListParams.Status;
1689
+ type Type = Stripe.Issuing.PhysicalBundleListParams.Type;
1690
+ }
1691
+ namespace TokenUpdateParams {
1692
+ type Status = Stripe.Issuing.TokenUpdateParams.Status;
1693
+ }
1694
+ namespace TokenListParams {
1695
+ type Status = Stripe.Issuing.TokenListParams.Status;
1696
+ }
1697
+ namespace TransactionListParams {
1698
+ type Type = Stripe.Issuing.TransactionListParams.Type;
1699
+ }
1700
+ }
1701
+ namespace Radar {
1702
+ type EarlyFraudWarning = Stripe.Radar.EarlyFraudWarning;
1703
+ type EarlyFraudWarningRetrieveParams = Stripe.Radar.EarlyFraudWarningRetrieveParams;
1704
+ type EarlyFraudWarningListParams = Stripe.Radar.EarlyFraudWarningListParams;
1705
+ type EarlyFraudWarningResource = Stripe.Radar.EarlyFraudWarningResource;
1706
+ type PaymentEvaluation = Stripe.Radar.PaymentEvaluation;
1707
+ type PaymentEvaluationCreateParams = Stripe.Radar.PaymentEvaluationCreateParams;
1708
+ type PaymentEvaluationResource = Stripe.Radar.PaymentEvaluationResource;
1709
+ type ValueList = Stripe.Radar.ValueList;
1710
+ type DeletedValueList = Stripe.Radar.DeletedValueList;
1711
+ type ValueListCreateParams = Stripe.Radar.ValueListCreateParams;
1712
+ type ValueListRetrieveParams = Stripe.Radar.ValueListRetrieveParams;
1713
+ type ValueListUpdateParams = Stripe.Radar.ValueListUpdateParams;
1714
+ type ValueListListParams = Stripe.Radar.ValueListListParams;
1715
+ type ValueListDeleteParams = Stripe.Radar.ValueListDeleteParams;
1716
+ type ValueListResource = Stripe.Radar.ValueListResource;
1717
+ type ValueListItem = Stripe.Radar.ValueListItem;
1718
+ type DeletedValueListItem = Stripe.Radar.DeletedValueListItem;
1719
+ type ValueListItemCreateParams = Stripe.Radar.ValueListItemCreateParams;
1720
+ type ValueListItemRetrieveParams = Stripe.Radar.ValueListItemRetrieveParams;
1721
+ type ValueListItemListParams = Stripe.Radar.ValueListItemListParams;
1722
+ type ValueListItemDeleteParams = Stripe.Radar.ValueListItemDeleteParams;
1723
+ type ValueListItemResource = Stripe.Radar.ValueListItemResource;
1724
+ namespace PaymentEvaluationCreateParams {
1725
+ type CustomerDetails = Stripe.Radar.PaymentEvaluationCreateParams.CustomerDetails;
1726
+ type PaymentDetails = Stripe.Radar.PaymentEvaluationCreateParams.PaymentDetails;
1727
+ type ClientDeviceMetadataDetails = Stripe.Radar.PaymentEvaluationCreateParams.ClientDeviceMetadataDetails;
1728
+ }
1729
+ namespace ValueListCreateParams {
1730
+ type ItemType = Stripe.Radar.ValueListCreateParams.ItemType;
1731
+ }
1732
+ }
1733
+ namespace Reporting {
1734
+ type ReportRun = Stripe.Reporting.ReportRun;
1735
+ type ReportRunCreateParams = Stripe.Reporting.ReportRunCreateParams;
1736
+ type ReportRunRetrieveParams = Stripe.Reporting.ReportRunRetrieveParams;
1737
+ type ReportRunListParams = Stripe.Reporting.ReportRunListParams;
1738
+ type ReportRunResource = Stripe.Reporting.ReportRunResource;
1739
+ type ReportType = Stripe.Reporting.ReportType;
1740
+ type ReportTypeRetrieveParams = Stripe.Reporting.ReportTypeRetrieveParams;
1741
+ type ReportTypeListParams = Stripe.Reporting.ReportTypeListParams;
1742
+ type ReportTypeResource = Stripe.Reporting.ReportTypeResource;
1743
+ namespace ReportRunCreateParams {
1744
+ type Parameters = Stripe.Reporting.ReportRunCreateParams.Parameters;
1745
+ }
1746
+ }
1747
+ namespace Sigma {
1748
+ type ScheduledQueryRun = Stripe.Sigma.ScheduledQueryRun;
1749
+ type ScheduledQueryRunRetrieveParams = Stripe.Sigma.ScheduledQueryRunRetrieveParams;
1750
+ type ScheduledQueryRunListParams = Stripe.Sigma.ScheduledQueryRunListParams;
1751
+ type ScheduledQueryRunResource = Stripe.Sigma.ScheduledQueryRunResource;
1752
+ }
1753
+ namespace Tax {
1754
+ type Association = Stripe.Tax.Association;
1755
+ type AssociationFindParams = Stripe.Tax.AssociationFindParams;
1756
+ type AssociationResource = Stripe.Tax.AssociationResource;
1757
+ type Calculation = Stripe.Tax.Calculation;
1758
+ type CalculationCreateParams = Stripe.Tax.CalculationCreateParams;
1759
+ type CalculationRetrieveParams = Stripe.Tax.CalculationRetrieveParams;
1760
+ type CalculationListLineItemsParams = Stripe.Tax.CalculationListLineItemsParams;
1761
+ type CalculationResource = Stripe.Tax.CalculationResource;
1762
+ type Registration = Stripe.Tax.Registration;
1763
+ type RegistrationCreateParams = Stripe.Tax.RegistrationCreateParams;
1764
+ type RegistrationRetrieveParams = Stripe.Tax.RegistrationRetrieveParams;
1765
+ type RegistrationUpdateParams = Stripe.Tax.RegistrationUpdateParams;
1766
+ type RegistrationListParams = Stripe.Tax.RegistrationListParams;
1767
+ type RegistrationResource = Stripe.Tax.RegistrationResource;
1768
+ type Settings = Stripe.Tax.Settings;
1769
+ type SettingsRetrieveParams = Stripe.Tax.SettingsRetrieveParams;
1770
+ type SettingsUpdateParams = Stripe.Tax.SettingsUpdateParams;
1771
+ type SettingResource = Stripe.Tax.SettingResource;
1772
+ type Transaction = Stripe.Tax.Transaction;
1773
+ type TransactionRetrieveParams = Stripe.Tax.TransactionRetrieveParams;
1774
+ type TransactionCreateFromCalculationParams = Stripe.Tax.TransactionCreateFromCalculationParams;
1775
+ type TransactionCreateReversalParams = Stripe.Tax.TransactionCreateReversalParams;
1776
+ type TransactionListLineItemsParams = Stripe.Tax.TransactionListLineItemsParams;
1777
+ type TransactionResource = Stripe.Tax.TransactionResource;
1778
+ type CalculationLineItem = Stripe.Tax.CalculationLineItem;
1779
+ type TransactionLineItem = Stripe.Tax.TransactionLineItem;
1780
+ namespace CalculationCreateParams {
1781
+ type LineItem = Stripe.Tax.CalculationCreateParams.LineItem;
1782
+ type CustomerDetails = Stripe.Tax.CalculationCreateParams.CustomerDetails;
1783
+ type ShipFromDetails = Stripe.Tax.CalculationCreateParams.ShipFromDetails;
1784
+ type ShippingCost = Stripe.Tax.CalculationCreateParams.ShippingCost;
1785
+ }
1786
+ namespace RegistrationCreateParams {
1787
+ type CountryOptions = Stripe.Tax.RegistrationCreateParams.CountryOptions;
1788
+ }
1789
+ namespace RegistrationListParams {
1790
+ type Status = Stripe.Tax.RegistrationListParams.Status;
1791
+ }
1792
+ namespace SettingsUpdateParams {
1793
+ type Defaults = Stripe.Tax.SettingsUpdateParams.Defaults;
1794
+ type HeadOffice = Stripe.Tax.SettingsUpdateParams.HeadOffice;
1795
+ }
1796
+ namespace TransactionCreateReversalParams {
1797
+ type Mode = Stripe.Tax.TransactionCreateReversalParams.Mode;
1798
+ type LineItem = Stripe.Tax.TransactionCreateReversalParams.LineItem;
1799
+ type ShippingCost = Stripe.Tax.TransactionCreateReversalParams.ShippingCost;
1800
+ }
1801
+ }
1802
+ namespace Terminal {
1803
+ type Configuration = Stripe.Terminal.Configuration;
1804
+ type DeletedConfiguration = Stripe.Terminal.DeletedConfiguration;
1805
+ type ConfigurationCreateParams = Stripe.Terminal.ConfigurationCreateParams;
1806
+ type ConfigurationRetrieveParams = Stripe.Terminal.ConfigurationRetrieveParams;
1807
+ type ConfigurationUpdateParams = Stripe.Terminal.ConfigurationUpdateParams;
1808
+ type ConfigurationListParams = Stripe.Terminal.ConfigurationListParams;
1809
+ type ConfigurationDeleteParams = Stripe.Terminal.ConfigurationDeleteParams;
1810
+ type ConfigurationResource = Stripe.Terminal.ConfigurationResource;
1811
+ type ConnectionToken = Stripe.Terminal.ConnectionToken;
1812
+ type ConnectionTokenCreateParams = Stripe.Terminal.ConnectionTokenCreateParams;
1813
+ type ConnectionTokenResource = Stripe.Terminal.ConnectionTokenResource;
1814
+ type Location = Stripe.Terminal.Location;
1815
+ type DeletedLocation = Stripe.Terminal.DeletedLocation;
1816
+ type LocationCreateParams = Stripe.Terminal.LocationCreateParams;
1817
+ type LocationRetrieveParams = Stripe.Terminal.LocationRetrieveParams;
1818
+ type LocationUpdateParams = Stripe.Terminal.LocationUpdateParams;
1819
+ type LocationListParams = Stripe.Terminal.LocationListParams;
1820
+ type LocationDeleteParams = Stripe.Terminal.LocationDeleteParams;
1821
+ type LocationResource = Stripe.Terminal.LocationResource;
1822
+ type OnboardingLink = Stripe.Terminal.OnboardingLink;
1823
+ type OnboardingLinkCreateParams = Stripe.Terminal.OnboardingLinkCreateParams;
1824
+ type OnboardingLinkResource = Stripe.Terminal.OnboardingLinkResource;
1825
+ type Reader = Stripe.Terminal.Reader;
1826
+ type DeletedReader = Stripe.Terminal.DeletedReader;
1827
+ type ReaderCreateParams = Stripe.Terminal.ReaderCreateParams;
1828
+ type ReaderRetrieveParams = Stripe.Terminal.ReaderRetrieveParams;
1829
+ type ReaderUpdateParams = Stripe.Terminal.ReaderUpdateParams;
1830
+ type ReaderListParams = Stripe.Terminal.ReaderListParams;
1831
+ type ReaderDeleteParams = Stripe.Terminal.ReaderDeleteParams;
1832
+ type ReaderCancelActionParams = Stripe.Terminal.ReaderCancelActionParams;
1833
+ type ReaderCollectInputsParams = Stripe.Terminal.ReaderCollectInputsParams;
1834
+ type ReaderCollectPaymentMethodParams = Stripe.Terminal.ReaderCollectPaymentMethodParams;
1835
+ type ReaderConfirmPaymentIntentParams = Stripe.Terminal.ReaderConfirmPaymentIntentParams;
1836
+ type ReaderProcessPaymentIntentParams = Stripe.Terminal.ReaderProcessPaymentIntentParams;
1837
+ type ReaderProcessSetupIntentParams = Stripe.Terminal.ReaderProcessSetupIntentParams;
1838
+ type ReaderRefundPaymentParams = Stripe.Terminal.ReaderRefundPaymentParams;
1839
+ type ReaderSetReaderDisplayParams = Stripe.Terminal.ReaderSetReaderDisplayParams;
1840
+ type ReaderResource = Stripe.Terminal.ReaderResource;
1841
+ namespace ConfigurationCreateParams {
1842
+ type BbposWisepad3 = Stripe.Terminal.ConfigurationCreateParams.BbposWisepad3;
1843
+ type BbposWiseposE = Stripe.Terminal.ConfigurationCreateParams.BbposWiseposE;
1844
+ type Cellular = Stripe.Terminal.ConfigurationCreateParams.Cellular;
1845
+ type Offline = Stripe.Terminal.ConfigurationCreateParams.Offline;
1846
+ type RebootWindow = Stripe.Terminal.ConfigurationCreateParams.RebootWindow;
1847
+ type StripeS700 = Stripe.Terminal.ConfigurationCreateParams.StripeS700;
1848
+ type StripeS710 = Stripe.Terminal.ConfigurationCreateParams.StripeS710;
1849
+ type Tipping = Stripe.Terminal.ConfigurationCreateParams.Tipping;
1850
+ type VerifoneM425 = Stripe.Terminal.ConfigurationCreateParams.VerifoneM425;
1851
+ type VerifoneP400 = Stripe.Terminal.ConfigurationCreateParams.VerifoneP400;
1852
+ type VerifoneP630 = Stripe.Terminal.ConfigurationCreateParams.VerifoneP630;
1853
+ type VerifoneUx700 = Stripe.Terminal.ConfigurationCreateParams.VerifoneUx700;
1854
+ type VerifoneV660p = Stripe.Terminal.ConfigurationCreateParams.VerifoneV660p;
1855
+ type Wifi = Stripe.Terminal.ConfigurationCreateParams.Wifi;
1856
+ }
1857
+ namespace ConfigurationUpdateParams {
1858
+ type BbposWisepad3 = Stripe.Terminal.ConfigurationUpdateParams.BbposWisepad3;
1859
+ type BbposWiseposE = Stripe.Terminal.ConfigurationUpdateParams.BbposWiseposE;
1860
+ type Cellular = Stripe.Terminal.ConfigurationUpdateParams.Cellular;
1861
+ type Offline = Stripe.Terminal.ConfigurationUpdateParams.Offline;
1862
+ type RebootWindow = Stripe.Terminal.ConfigurationUpdateParams.RebootWindow;
1863
+ type StripeS700 = Stripe.Terminal.ConfigurationUpdateParams.StripeS700;
1864
+ type StripeS710 = Stripe.Terminal.ConfigurationUpdateParams.StripeS710;
1865
+ type Tipping = Stripe.Terminal.ConfigurationUpdateParams.Tipping;
1866
+ type VerifoneM425 = Stripe.Terminal.ConfigurationUpdateParams.VerifoneM425;
1867
+ type VerifoneP400 = Stripe.Terminal.ConfigurationUpdateParams.VerifoneP400;
1868
+ type VerifoneP630 = Stripe.Terminal.ConfigurationUpdateParams.VerifoneP630;
1869
+ type VerifoneUx700 = Stripe.Terminal.ConfigurationUpdateParams.VerifoneUx700;
1870
+ type VerifoneV660p = Stripe.Terminal.ConfigurationUpdateParams.VerifoneV660p;
1871
+ type Wifi = Stripe.Terminal.ConfigurationUpdateParams.Wifi;
1872
+ }
1873
+ namespace LocationCreateParams {
1874
+ type Address = Stripe.Terminal.LocationCreateParams.Address;
1875
+ }
1876
+ namespace OnboardingLinkCreateParams {
1877
+ type LinkOptions = Stripe.Terminal.OnboardingLinkCreateParams.LinkOptions;
1878
+ }
1879
+ namespace ReaderListParams {
1880
+ type DeviceType = Stripe.Terminal.ReaderListParams.DeviceType;
1881
+ type Status = Stripe.Terminal.ReaderListParams.Status;
1882
+ }
1883
+ namespace ReaderCollectInputsParams {
1884
+ type Input = Stripe.Terminal.ReaderCollectInputsParams.Input;
1885
+ }
1886
+ namespace ReaderCollectPaymentMethodParams {
1887
+ type CollectConfig = Stripe.Terminal.ReaderCollectPaymentMethodParams.CollectConfig;
1888
+ }
1889
+ namespace ReaderConfirmPaymentIntentParams {
1890
+ type ConfirmConfig = Stripe.Terminal.ReaderConfirmPaymentIntentParams.ConfirmConfig;
1891
+ }
1892
+ namespace ReaderProcessPaymentIntentParams {
1893
+ type ProcessConfig = Stripe.Terminal.ReaderProcessPaymentIntentParams.ProcessConfig;
1894
+ }
1895
+ namespace ReaderProcessSetupIntentParams {
1896
+ type AllowRedisplay = Stripe.Terminal.ReaderProcessSetupIntentParams.AllowRedisplay;
1897
+ type ProcessConfig = Stripe.Terminal.ReaderProcessSetupIntentParams.ProcessConfig;
1898
+ }
1899
+ namespace ReaderRefundPaymentParams {
1900
+ type RefundPaymentConfig = Stripe.Terminal.ReaderRefundPaymentParams.RefundPaymentConfig;
1901
+ }
1902
+ namespace ReaderSetReaderDisplayParams {
1903
+ type Cart = Stripe.Terminal.ReaderSetReaderDisplayParams.Cart;
1904
+ }
1905
+ }
1906
+ namespace TestHelpers {
1907
+ type TestClock = Stripe.TestHelpers.TestClock;
1908
+ type DeletedTestClock = Stripe.TestHelpers.DeletedTestClock;
1909
+ type TestClockCreateParams = Stripe.TestHelpers.TestClockCreateParams;
1910
+ type TestClockRetrieveParams = Stripe.TestHelpers.TestClockRetrieveParams;
1911
+ type TestClockListParams = Stripe.TestHelpers.TestClockListParams;
1912
+ type TestClockDeleteParams = Stripe.TestHelpers.TestClockDeleteParams;
1913
+ type TestClockAdvanceParams = Stripe.TestHelpers.TestClockAdvanceParams;
1914
+ type TestClockResource = Stripe.TestHelpers.TestClockResource;
1915
+ }
1916
+ namespace Treasury {
1917
+ type CreditReversal = Stripe.Treasury.CreditReversal;
1918
+ type CreditReversalCreateParams = Stripe.Treasury.CreditReversalCreateParams;
1919
+ type CreditReversalRetrieveParams = Stripe.Treasury.CreditReversalRetrieveParams;
1920
+ type CreditReversalListParams = Stripe.Treasury.CreditReversalListParams;
1921
+ type CreditReversalResource = Stripe.Treasury.CreditReversalResource;
1922
+ type DebitReversal = Stripe.Treasury.DebitReversal;
1923
+ type DebitReversalCreateParams = Stripe.Treasury.DebitReversalCreateParams;
1924
+ type DebitReversalRetrieveParams = Stripe.Treasury.DebitReversalRetrieveParams;
1925
+ type DebitReversalListParams = Stripe.Treasury.DebitReversalListParams;
1926
+ type DebitReversalResource = Stripe.Treasury.DebitReversalResource;
1927
+ type FinancialAccount = Stripe.Treasury.FinancialAccount;
1928
+ type FinancialAccountCreateParams = Stripe.Treasury.FinancialAccountCreateParams;
1929
+ type FinancialAccountRetrieveParams = Stripe.Treasury.FinancialAccountRetrieveParams;
1930
+ type FinancialAccountUpdateParams = Stripe.Treasury.FinancialAccountUpdateParams;
1931
+ type FinancialAccountListParams = Stripe.Treasury.FinancialAccountListParams;
1932
+ type FinancialAccountCloseParams = Stripe.Treasury.FinancialAccountCloseParams;
1933
+ type FinancialAccountRetrieveFeaturesParams = Stripe.Treasury.FinancialAccountRetrieveFeaturesParams;
1934
+ type FinancialAccountUpdateFeaturesParams = Stripe.Treasury.FinancialAccountUpdateFeaturesParams;
1935
+ type FinancialAccountResource = Stripe.Treasury.FinancialAccountResource;
1936
+ type InboundTransfer = Stripe.Treasury.InboundTransfer;
1937
+ type InboundTransferCreateParams = Stripe.Treasury.InboundTransferCreateParams;
1938
+ type InboundTransferRetrieveParams = Stripe.Treasury.InboundTransferRetrieveParams;
1939
+ type InboundTransferListParams = Stripe.Treasury.InboundTransferListParams;
1940
+ type InboundTransferCancelParams = Stripe.Treasury.InboundTransferCancelParams;
1941
+ type InboundTransferResource = Stripe.Treasury.InboundTransferResource;
1942
+ type OutboundPayment = Stripe.Treasury.OutboundPayment;
1943
+ type OutboundPaymentCreateParams = Stripe.Treasury.OutboundPaymentCreateParams;
1944
+ type OutboundPaymentRetrieveParams = Stripe.Treasury.OutboundPaymentRetrieveParams;
1945
+ type OutboundPaymentListParams = Stripe.Treasury.OutboundPaymentListParams;
1946
+ type OutboundPaymentCancelParams = Stripe.Treasury.OutboundPaymentCancelParams;
1947
+ type OutboundPaymentResource = Stripe.Treasury.OutboundPaymentResource;
1948
+ type OutboundTransfer = Stripe.Treasury.OutboundTransfer;
1949
+ type OutboundTransferCreateParams = Stripe.Treasury.OutboundTransferCreateParams;
1950
+ type OutboundTransferRetrieveParams = Stripe.Treasury.OutboundTransferRetrieveParams;
1951
+ type OutboundTransferListParams = Stripe.Treasury.OutboundTransferListParams;
1952
+ type OutboundTransferCancelParams = Stripe.Treasury.OutboundTransferCancelParams;
1953
+ type OutboundTransferResource = Stripe.Treasury.OutboundTransferResource;
1954
+ type ReceivedCredit = Stripe.Treasury.ReceivedCredit;
1955
+ type ReceivedCreditRetrieveParams = Stripe.Treasury.ReceivedCreditRetrieveParams;
1956
+ type ReceivedCreditListParams = Stripe.Treasury.ReceivedCreditListParams;
1957
+ type ReceivedCreditResource = Stripe.Treasury.ReceivedCreditResource;
1958
+ type ReceivedDebit = Stripe.Treasury.ReceivedDebit;
1959
+ type ReceivedDebitRetrieveParams = Stripe.Treasury.ReceivedDebitRetrieveParams;
1960
+ type ReceivedDebitListParams = Stripe.Treasury.ReceivedDebitListParams;
1961
+ type ReceivedDebitResource = Stripe.Treasury.ReceivedDebitResource;
1962
+ type Transaction = Stripe.Treasury.Transaction;
1963
+ type TransactionRetrieveParams = Stripe.Treasury.TransactionRetrieveParams;
1964
+ type TransactionListParams = Stripe.Treasury.TransactionListParams;
1965
+ type TransactionResource = Stripe.Treasury.TransactionResource;
1966
+ type TransactionEntry = Stripe.Treasury.TransactionEntry;
1967
+ type TransactionEntryRetrieveParams = Stripe.Treasury.TransactionEntryRetrieveParams;
1968
+ type TransactionEntryListParams = Stripe.Treasury.TransactionEntryListParams;
1969
+ type TransactionEntryResource = Stripe.Treasury.TransactionEntryResource;
1970
+ type FinancialAccountFeatures = Stripe.Treasury.FinancialAccountFeatures;
1971
+ namespace CreditReversalListParams {
1972
+ type Status = Stripe.Treasury.CreditReversalListParams.Status;
1973
+ }
1974
+ namespace DebitReversalListParams {
1975
+ type Resolution = Stripe.Treasury.DebitReversalListParams.Resolution;
1976
+ type Status = Stripe.Treasury.DebitReversalListParams.Status;
1977
+ }
1978
+ namespace FinancialAccountCreateParams {
1979
+ type Features = Stripe.Treasury.FinancialAccountCreateParams.Features;
1980
+ type PlatformRestrictions = Stripe.Treasury.FinancialAccountCreateParams.PlatformRestrictions;
1981
+ }
1982
+ namespace FinancialAccountUpdateParams {
1983
+ type Features = Stripe.Treasury.FinancialAccountUpdateParams.Features;
1984
+ type ForwardingSettings = Stripe.Treasury.FinancialAccountUpdateParams.ForwardingSettings;
1985
+ type PlatformRestrictions = Stripe.Treasury.FinancialAccountUpdateParams.PlatformRestrictions;
1986
+ }
1987
+ namespace FinancialAccountListParams {
1988
+ type Status = Stripe.Treasury.FinancialAccountListParams.Status;
1989
+ }
1990
+ namespace FinancialAccountCloseParams {
1991
+ type ForwardingSettings = Stripe.Treasury.FinancialAccountCloseParams.ForwardingSettings;
1992
+ }
1993
+ namespace FinancialAccountUpdateFeaturesParams {
1994
+ type CardIssuing = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.CardIssuing;
1995
+ type DepositInsurance = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.DepositInsurance;
1996
+ type FinancialAddresses = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.FinancialAddresses;
1997
+ type InboundTransfers = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.InboundTransfers;
1998
+ type IntraStripeFlows = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.IntraStripeFlows;
1999
+ type OutboundPayments = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.OutboundPayments;
2000
+ type OutboundTransfers = Stripe.Treasury.FinancialAccountUpdateFeaturesParams.OutboundTransfers;
2001
+ }
2002
+ namespace InboundTransferListParams {
2003
+ type Status = Stripe.Treasury.InboundTransferListParams.Status;
2004
+ }
2005
+ namespace OutboundPaymentCreateParams {
2006
+ type DestinationPaymentMethodData = Stripe.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodData;
2007
+ type DestinationPaymentMethodOptions = Stripe.Treasury.OutboundPaymentCreateParams.DestinationPaymentMethodOptions;
2008
+ type EndUserDetails = Stripe.Treasury.OutboundPaymentCreateParams.EndUserDetails;
2009
+ }
2010
+ namespace OutboundPaymentListParams {
2011
+ type Status = Stripe.Treasury.OutboundPaymentListParams.Status;
2012
+ }
2013
+ namespace OutboundTransferCreateParams {
2014
+ type DestinationPaymentMethodData = Stripe.Treasury.OutboundTransferCreateParams.DestinationPaymentMethodData;
2015
+ type DestinationPaymentMethodOptions = Stripe.Treasury.OutboundTransferCreateParams.DestinationPaymentMethodOptions;
2016
+ }
2017
+ namespace OutboundTransferListParams {
2018
+ type Status = Stripe.Treasury.OutboundTransferListParams.Status;
2019
+ }
2020
+ namespace ReceivedCreditListParams {
2021
+ type LinkedFlows = Stripe.Treasury.ReceivedCreditListParams.LinkedFlows;
2022
+ type Status = Stripe.Treasury.ReceivedCreditListParams.Status;
2023
+ }
2024
+ namespace ReceivedDebitListParams {
2025
+ type Status = Stripe.Treasury.ReceivedDebitListParams.Status;
2026
+ }
2027
+ namespace TransactionListParams {
2028
+ type OrderBy = Stripe.Treasury.TransactionListParams.OrderBy;
2029
+ type Status = Stripe.Treasury.TransactionListParams.Status;
2030
+ type StatusTransitions = Stripe.Treasury.TransactionListParams.StatusTransitions;
2031
+ }
2032
+ namespace TransactionEntryListParams {
2033
+ type OrderBy = Stripe.Treasury.TransactionEntryListParams.OrderBy;
2034
+ }
2035
+ }
2036
+ namespace V2 {
2037
+ type DeletedObject = Stripe.V2.DeletedObject;
2038
+ namespace Billing {
2039
+ type MeterEvent = Stripe.V2.Billing.MeterEvent;
2040
+ type MeterEventCreateParams = Stripe.V2.Billing.MeterEventCreateParams;
2041
+ type MeterEventResource = Stripe.V2.Billing.MeterEventResource;
2042
+ type MeterEventAdjustment = Stripe.V2.Billing.MeterEventAdjustment;
2043
+ type MeterEventAdjustmentCreateParams = Stripe.V2.Billing.MeterEventAdjustmentCreateParams;
2044
+ type MeterEventAdjustmentResource = Stripe.V2.Billing.MeterEventAdjustmentResource;
2045
+ type MeterEventSession = Stripe.V2.Billing.MeterEventSession;
2046
+ type MeterEventSessionCreateParams = Stripe.V2.Billing.MeterEventSessionCreateParams;
2047
+ type MeterEventSessionResource = Stripe.V2.Billing.MeterEventSessionResource;
2048
+ namespace MeterEventAdjustmentCreateParams {
2049
+ type Cancel = Stripe.V2.Billing.MeterEventAdjustmentCreateParams.Cancel;
2050
+ }
2051
+ }
2052
+ namespace Core {
2053
+ type Account = Stripe.V2.Core.Account;
2054
+ type AccountCreateParams = Stripe.V2.Core.AccountCreateParams;
2055
+ type AccountRetrieveParams = Stripe.V2.Core.AccountRetrieveParams;
2056
+ type AccountUpdateParams = Stripe.V2.Core.AccountUpdateParams;
2057
+ type AccountListParams = Stripe.V2.Core.AccountListParams;
2058
+ type AccountCloseParams = Stripe.V2.Core.AccountCloseParams;
2059
+ type AccountResource = Stripe.V2.Core.AccountResource;
2060
+ type AccountLink = Stripe.V2.Core.AccountLink;
2061
+ type AccountLinkCreateParams = Stripe.V2.Core.AccountLinkCreateParams;
2062
+ type AccountLinkResource = Stripe.V2.Core.AccountLinkResource;
2063
+ type AccountToken = Stripe.V2.Core.AccountToken;
2064
+ type AccountTokenCreateParams = Stripe.V2.Core.AccountTokenCreateParams;
2065
+ type AccountTokenRetrieveParams = Stripe.V2.Core.AccountTokenRetrieveParams;
2066
+ type AccountTokenResource = Stripe.V2.Core.AccountTokenResource;
2067
+ type Event = Stripe.V2.Core.Event;
2068
+ type EventBase = Stripe.V2.Core.EventBase;
2069
+ type EventNotification = Stripe.V2.Core.EventNotification;
2070
+ type EventRetrieveParams = Stripe.V2.Core.EventRetrieveParams;
2071
+ type EventListParams = Stripe.V2.Core.EventListParams;
2072
+ type EventResource = Stripe.V2.Core.EventResource;
2073
+ type EventDestination = Stripe.V2.Core.EventDestination;
2074
+ type EventDestinationCreateParams = Stripe.V2.Core.EventDestinationCreateParams;
2075
+ type EventDestinationRetrieveParams = Stripe.V2.Core.EventDestinationRetrieveParams;
2076
+ type EventDestinationUpdateParams = Stripe.V2.Core.EventDestinationUpdateParams;
2077
+ type EventDestinationListParams = Stripe.V2.Core.EventDestinationListParams;
2078
+ type EventDestinationDeleteParams = Stripe.V2.Core.EventDestinationDeleteParams;
2079
+ type EventDestinationDisableParams = Stripe.V2.Core.EventDestinationDisableParams;
2080
+ type EventDestinationEnableParams = Stripe.V2.Core.EventDestinationEnableParams;
2081
+ type EventDestinationPingParams = Stripe.V2.Core.EventDestinationPingParams;
2082
+ type EventDestinationResource = Stripe.V2.Core.EventDestinationResource;
2083
+ type AccountPersonToken = Stripe.V2.Core.AccountPersonToken;
2084
+ type AccountPerson = Stripe.V2.Core.AccountPerson;
2085
+ namespace AccountCreateParams {
2086
+ type Configuration = Stripe.V2.Core.AccountCreateParams.Configuration;
2087
+ type Dashboard = Stripe.V2.Core.AccountCreateParams.Dashboard;
2088
+ type Defaults = Stripe.V2.Core.AccountCreateParams.Defaults;
2089
+ type Identity = Stripe.V2.Core.AccountCreateParams.Identity;
2090
+ type Include = Stripe.V2.Core.AccountCreateParams.Include;
2091
+ }
2092
+ namespace AccountRetrieveParams {
2093
+ type Include = Stripe.V2.Core.AccountRetrieveParams.Include;
2094
+ }
2095
+ namespace AccountUpdateParams {
2096
+ type Configuration = Stripe.V2.Core.AccountUpdateParams.Configuration;
2097
+ type Dashboard = Stripe.V2.Core.AccountUpdateParams.Dashboard;
2098
+ type Defaults = Stripe.V2.Core.AccountUpdateParams.Defaults;
2099
+ type Identity = Stripe.V2.Core.AccountUpdateParams.Identity;
2100
+ type Include = Stripe.V2.Core.AccountUpdateParams.Include;
2101
+ }
2102
+ namespace AccountListParams {
2103
+ type AppliedConfiguration = Stripe.V2.Core.AccountListParams.AppliedConfiguration;
2104
+ }
2105
+ namespace AccountCloseParams {
2106
+ type AppliedConfiguration = Stripe.V2.Core.AccountCloseParams.AppliedConfiguration;
2107
+ }
2108
+ namespace AccountLinkCreateParams {
2109
+ type UseCase = Stripe.V2.Core.AccountLinkCreateParams.UseCase;
2110
+ }
2111
+ namespace AccountTokenCreateParams {
2112
+ type Identity = Stripe.V2.Core.AccountTokenCreateParams.Identity;
2113
+ }
2114
+ namespace EventDestinationCreateParams {
2115
+ type EventPayload = Stripe.V2.Core.EventDestinationCreateParams.EventPayload;
2116
+ type Type = Stripe.V2.Core.EventDestinationCreateParams.Type;
2117
+ type AmazonEventbridge = Stripe.V2.Core.EventDestinationCreateParams.AmazonEventbridge;
2118
+ type AzureEventGrid = Stripe.V2.Core.EventDestinationCreateParams.AzureEventGrid;
2119
+ type Include = Stripe.V2.Core.EventDestinationCreateParams.Include;
2120
+ type WebhookEndpoint = Stripe.V2.Core.EventDestinationCreateParams.WebhookEndpoint;
2121
+ }
2122
+ namespace EventDestinationUpdateParams {
2123
+ type WebhookEndpoint = Stripe.V2.Core.EventDestinationUpdateParams.WebhookEndpoint;
2124
+ }
2125
+ }
2126
+ namespace Commerce {
2127
+ type ProductCatalogImport = Stripe.V2.Commerce.ProductCatalogImport;
2128
+ }
2129
+ }
2130
+ namespace Reserve {
2131
+ type Hold = Stripe.Reserve.Hold;
2132
+ type Plan = Stripe.Reserve.Plan;
2133
+ type Release = Stripe.Reserve.Release;
2134
+ }
2135
+ namespace Events {
2136
+ type UnknownEventNotification = Stripe.V2.Core.Events.UnknownEventNotification;
2137
+ type V1BillingMeterErrorReportTriggeredEvent = Stripe.V2.Core.Events.V1BillingMeterErrorReportTriggeredEvent;
2138
+ type V1BillingMeterErrorReportTriggeredEventNotification = Stripe.V2.Core.Events.V1BillingMeterErrorReportTriggeredEventNotification;
2139
+ type V1BillingMeterNoMeterFoundEvent = Stripe.V2.Core.Events.V1BillingMeterNoMeterFoundEvent;
2140
+ type V1BillingMeterNoMeterFoundEventNotification = Stripe.V2.Core.Events.V1BillingMeterNoMeterFoundEventNotification;
2141
+ type V2CommerceProductCatalogImportsFailedEvent = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsFailedEvent;
2142
+ type V2CommerceProductCatalogImportsFailedEventNotification = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsFailedEventNotification;
2143
+ type V2CommerceProductCatalogImportsProcessingEvent = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsProcessingEvent;
2144
+ type V2CommerceProductCatalogImportsProcessingEventNotification = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsProcessingEventNotification;
2145
+ type V2CommerceProductCatalogImportsSucceededEvent = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsSucceededEvent;
2146
+ type V2CommerceProductCatalogImportsSucceededEventNotification = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsSucceededEventNotification;
2147
+ type V2CommerceProductCatalogImportsSucceededWithErrorsEvent = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsSucceededWithErrorsEvent;
2148
+ type V2CommerceProductCatalogImportsSucceededWithErrorsEventNotification = Stripe.V2.Core.Events.V2CommerceProductCatalogImportsSucceededWithErrorsEventNotification;
2149
+ type V2CoreAccountClosedEvent = Stripe.V2.Core.Events.V2CoreAccountClosedEvent;
2150
+ type V2CoreAccountClosedEventNotification = Stripe.V2.Core.Events.V2CoreAccountClosedEventNotification;
2151
+ type V2CoreAccountCreatedEvent = Stripe.V2.Core.Events.V2CoreAccountCreatedEvent;
2152
+ type V2CoreAccountCreatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountCreatedEventNotification;
2153
+ type V2CoreAccountUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountUpdatedEvent;
2154
+ type V2CoreAccountUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountUpdatedEventNotification;
2155
+ type V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent;
2156
+ type V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEventNotification;
2157
+ type V2CoreAccountIncludingConfigurationCustomerUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationCustomerUpdatedEvent;
2158
+ type V2CoreAccountIncludingConfigurationCustomerUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationCustomerUpdatedEventNotification;
2159
+ type V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent;
2160
+ type V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEventNotification;
2161
+ type V2CoreAccountIncludingConfigurationMerchantUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationMerchantUpdatedEvent;
2162
+ type V2CoreAccountIncludingConfigurationMerchantUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationMerchantUpdatedEventNotification;
2163
+ type V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent;
2164
+ type V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEventNotification;
2165
+ type V2CoreAccountIncludingConfigurationRecipientUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationRecipientUpdatedEvent;
2166
+ type V2CoreAccountIncludingConfigurationRecipientUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationRecipientUpdatedEventNotification;
2167
+ type V2CoreAccountIncludingDefaultsUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingDefaultsUpdatedEvent;
2168
+ type V2CoreAccountIncludingDefaultsUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingDefaultsUpdatedEventNotification;
2169
+ type V2CoreAccountIncludingFutureRequirementsUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingFutureRequirementsUpdatedEvent;
2170
+ type V2CoreAccountIncludingFutureRequirementsUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingFutureRequirementsUpdatedEventNotification;
2171
+ type V2CoreAccountIncludingIdentityUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingIdentityUpdatedEvent;
2172
+ type V2CoreAccountIncludingIdentityUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingIdentityUpdatedEventNotification;
2173
+ type V2CoreAccountIncludingRequirementsUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountIncludingRequirementsUpdatedEvent;
2174
+ type V2CoreAccountIncludingRequirementsUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountIncludingRequirementsUpdatedEventNotification;
2175
+ type V2CoreAccountLinkReturnedEvent = Stripe.V2.Core.Events.V2CoreAccountLinkReturnedEvent;
2176
+ type V2CoreAccountLinkReturnedEventNotification = Stripe.V2.Core.Events.V2CoreAccountLinkReturnedEventNotification;
2177
+ type V2CoreAccountPersonCreatedEvent = Stripe.V2.Core.Events.V2CoreAccountPersonCreatedEvent;
2178
+ type V2CoreAccountPersonCreatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountPersonCreatedEventNotification;
2179
+ type V2CoreAccountPersonDeletedEvent = Stripe.V2.Core.Events.V2CoreAccountPersonDeletedEvent;
2180
+ type V2CoreAccountPersonDeletedEventNotification = Stripe.V2.Core.Events.V2CoreAccountPersonDeletedEventNotification;
2181
+ type V2CoreAccountPersonUpdatedEvent = Stripe.V2.Core.Events.V2CoreAccountPersonUpdatedEvent;
2182
+ type V2CoreAccountPersonUpdatedEventNotification = Stripe.V2.Core.Events.V2CoreAccountPersonUpdatedEventNotification;
2183
+ type V2CoreEventDestinationPingEvent = Stripe.V2.Core.Events.V2CoreEventDestinationPingEvent;
2184
+ type V2CoreEventDestinationPingEventNotification = Stripe.V2.Core.Events.V2CoreEventDestinationPingEventNotification;
2185
+ namespace V1BillingMeterErrorReportTriggeredEvent {
2186
+ type Data = Stripe.V2.Core.Events.V1BillingMeterErrorReportTriggeredEvent.Data;
2187
+ }
2188
+ namespace V1BillingMeterNoMeterFoundEvent {
2189
+ type Data = Stripe.V2.Core.Events.V1BillingMeterNoMeterFoundEvent.Data;
2190
+ }
2191
+ namespace V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent {
2192
+ type Data = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationCustomerCapabilityStatusUpdatedEvent.Data;
2193
+ }
2194
+ namespace V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent {
2195
+ type Data = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationMerchantCapabilityStatusUpdatedEvent.Data;
2196
+ }
2197
+ namespace V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent {
2198
+ type Data = Stripe.V2.Core.Events.V2CoreAccountIncludingConfigurationRecipientCapabilityStatusUpdatedEvent.Data;
2199
+ }
2200
+ namespace V2CoreAccountLinkReturnedEvent {
2201
+ type Data = Stripe.V2.Core.Events.V2CoreAccountLinkReturnedEvent.Data;
2202
+ }
2203
+ namespace V2CoreAccountPersonCreatedEvent {
2204
+ type Data = Stripe.V2.Core.Events.V2CoreAccountPersonCreatedEvent.Data;
2205
+ }
2206
+ namespace V2CoreAccountPersonDeletedEvent {
2207
+ type Data = Stripe.V2.Core.Events.V2CoreAccountPersonDeletedEvent.Data;
2208
+ }
2209
+ namespace V2CoreAccountPersonUpdatedEvent {
2210
+ type Data = Stripe.V2.Core.Events.V2CoreAccountPersonUpdatedEvent.Data;
2211
+ }
2212
+ }
2213
+ type AccountApplicationAuthorizedEvent = Stripe.AccountApplicationAuthorizedEvent;
2214
+ type AccountApplicationDeauthorizedEvent = Stripe.AccountApplicationDeauthorizedEvent;
2215
+ type AccountExternalAccountCreatedEvent = Stripe.AccountExternalAccountCreatedEvent;
2216
+ type AccountExternalAccountDeletedEvent = Stripe.AccountExternalAccountDeletedEvent;
2217
+ type AccountExternalAccountUpdatedEvent = Stripe.AccountExternalAccountUpdatedEvent;
2218
+ type AccountUpdatedEvent = Stripe.AccountUpdatedEvent;
2219
+ type ApplicationFeeCreatedEvent = Stripe.ApplicationFeeCreatedEvent;
2220
+ type ApplicationFeeRefundUpdatedEvent = Stripe.ApplicationFeeRefundUpdatedEvent;
2221
+ type ApplicationFeeRefundedEvent = Stripe.ApplicationFeeRefundedEvent;
2222
+ type BalanceAvailableEvent = Stripe.BalanceAvailableEvent;
2223
+ type BalanceSettingsUpdatedEvent = Stripe.BalanceSettingsUpdatedEvent;
2224
+ type BillingAlertTriggeredEvent = Stripe.BillingAlertTriggeredEvent;
2225
+ type BillingCreditBalanceTransactionCreatedEvent = Stripe.BillingCreditBalanceTransactionCreatedEvent;
2226
+ type BillingCreditGrantCreatedEvent = Stripe.BillingCreditGrantCreatedEvent;
2227
+ type BillingCreditGrantUpdatedEvent = Stripe.BillingCreditGrantUpdatedEvent;
2228
+ type BillingMeterCreatedEvent = Stripe.BillingMeterCreatedEvent;
2229
+ type BillingMeterDeactivatedEvent = Stripe.BillingMeterDeactivatedEvent;
2230
+ type BillingMeterReactivatedEvent = Stripe.BillingMeterReactivatedEvent;
2231
+ type BillingMeterUpdatedEvent = Stripe.BillingMeterUpdatedEvent;
2232
+ type BillingPortalConfigurationCreatedEvent = Stripe.BillingPortalConfigurationCreatedEvent;
2233
+ type BillingPortalConfigurationUpdatedEvent = Stripe.BillingPortalConfigurationUpdatedEvent;
2234
+ type BillingPortalSessionCreatedEvent = Stripe.BillingPortalSessionCreatedEvent;
2235
+ type CapabilityUpdatedEvent = Stripe.CapabilityUpdatedEvent;
2236
+ type CashBalanceFundsAvailableEvent = Stripe.CashBalanceFundsAvailableEvent;
2237
+ type ChargeCapturedEvent = Stripe.ChargeCapturedEvent;
2238
+ type ChargeDisputeClosedEvent = Stripe.ChargeDisputeClosedEvent;
2239
+ type ChargeDisputeCreatedEvent = Stripe.ChargeDisputeCreatedEvent;
2240
+ type ChargeDisputeFundsReinstatedEvent = Stripe.ChargeDisputeFundsReinstatedEvent;
2241
+ type ChargeDisputeFundsWithdrawnEvent = Stripe.ChargeDisputeFundsWithdrawnEvent;
2242
+ type ChargeDisputeUpdatedEvent = Stripe.ChargeDisputeUpdatedEvent;
2243
+ type ChargeExpiredEvent = Stripe.ChargeExpiredEvent;
2244
+ type ChargeFailedEvent = Stripe.ChargeFailedEvent;
2245
+ type ChargePendingEvent = Stripe.ChargePendingEvent;
2246
+ type ChargeRefundUpdatedEvent = Stripe.ChargeRefundUpdatedEvent;
2247
+ type ChargeRefundedEvent = Stripe.ChargeRefundedEvent;
2248
+ type ChargeSucceededEvent = Stripe.ChargeSucceededEvent;
2249
+ type ChargeUpdatedEvent = Stripe.ChargeUpdatedEvent;
2250
+ type CheckoutSessionAsyncPaymentFailedEvent = Stripe.CheckoutSessionAsyncPaymentFailedEvent;
2251
+ type CheckoutSessionAsyncPaymentSucceededEvent = Stripe.CheckoutSessionAsyncPaymentSucceededEvent;
2252
+ type CheckoutSessionCompletedEvent = Stripe.CheckoutSessionCompletedEvent;
2253
+ type CheckoutSessionExpiredEvent = Stripe.CheckoutSessionExpiredEvent;
2254
+ type ClimateOrderCanceledEvent = Stripe.ClimateOrderCanceledEvent;
2255
+ type ClimateOrderCreatedEvent = Stripe.ClimateOrderCreatedEvent;
2256
+ type ClimateOrderDelayedEvent = Stripe.ClimateOrderDelayedEvent;
2257
+ type ClimateOrderDeliveredEvent = Stripe.ClimateOrderDeliveredEvent;
2258
+ type ClimateOrderProductSubstitutedEvent = Stripe.ClimateOrderProductSubstitutedEvent;
2259
+ type ClimateProductCreatedEvent = Stripe.ClimateProductCreatedEvent;
2260
+ type ClimateProductPricingUpdatedEvent = Stripe.ClimateProductPricingUpdatedEvent;
2261
+ type CouponCreatedEvent = Stripe.CouponCreatedEvent;
2262
+ type CouponDeletedEvent = Stripe.CouponDeletedEvent;
2263
+ type CouponUpdatedEvent = Stripe.CouponUpdatedEvent;
2264
+ type CreditNoteCreatedEvent = Stripe.CreditNoteCreatedEvent;
2265
+ type CreditNoteUpdatedEvent = Stripe.CreditNoteUpdatedEvent;
2266
+ type CreditNoteVoidedEvent = Stripe.CreditNoteVoidedEvent;
2267
+ type CustomerCreatedEvent = Stripe.CustomerCreatedEvent;
2268
+ type CustomerDeletedEvent = Stripe.CustomerDeletedEvent;
2269
+ type CustomerDiscountCreatedEvent = Stripe.CustomerDiscountCreatedEvent;
2270
+ type CustomerDiscountDeletedEvent = Stripe.CustomerDiscountDeletedEvent;
2271
+ type CustomerDiscountUpdatedEvent = Stripe.CustomerDiscountUpdatedEvent;
2272
+ type CustomerSourceCreatedEvent = Stripe.CustomerSourceCreatedEvent;
2273
+ type CustomerSourceDeletedEvent = Stripe.CustomerSourceDeletedEvent;
2274
+ type CustomerSourceExpiringEvent = Stripe.CustomerSourceExpiringEvent;
2275
+ type CustomerSourceUpdatedEvent = Stripe.CustomerSourceUpdatedEvent;
2276
+ type CustomerSubscriptionCreatedEvent = Stripe.CustomerSubscriptionCreatedEvent;
2277
+ type CustomerSubscriptionDeletedEvent = Stripe.CustomerSubscriptionDeletedEvent;
2278
+ type CustomerSubscriptionPausedEvent = Stripe.CustomerSubscriptionPausedEvent;
2279
+ type CustomerSubscriptionPendingUpdateAppliedEvent = Stripe.CustomerSubscriptionPendingUpdateAppliedEvent;
2280
+ type CustomerSubscriptionPendingUpdateExpiredEvent = Stripe.CustomerSubscriptionPendingUpdateExpiredEvent;
2281
+ type CustomerSubscriptionResumedEvent = Stripe.CustomerSubscriptionResumedEvent;
2282
+ type CustomerSubscriptionTrialWillEndEvent = Stripe.CustomerSubscriptionTrialWillEndEvent;
2283
+ type CustomerSubscriptionUpdatedEvent = Stripe.CustomerSubscriptionUpdatedEvent;
2284
+ type CustomerTaxIdCreatedEvent = Stripe.CustomerTaxIdCreatedEvent;
2285
+ type CustomerTaxIdDeletedEvent = Stripe.CustomerTaxIdDeletedEvent;
2286
+ type CustomerTaxIdUpdatedEvent = Stripe.CustomerTaxIdUpdatedEvent;
2287
+ type CustomerUpdatedEvent = Stripe.CustomerUpdatedEvent;
2288
+ type CustomerCashBalanceTransactionCreatedEvent = Stripe.CustomerCashBalanceTransactionCreatedEvent;
2289
+ type EntitlementsActiveEntitlementSummaryUpdatedEvent = Stripe.EntitlementsActiveEntitlementSummaryUpdatedEvent;
2290
+ type FileCreatedEvent = Stripe.FileCreatedEvent;
2291
+ type FinancialConnectionsAccountAccountNumbersUpdatedEvent = Stripe.FinancialConnectionsAccountAccountNumbersUpdatedEvent;
2292
+ type FinancialConnectionsAccountCreatedEvent = Stripe.FinancialConnectionsAccountCreatedEvent;
2293
+ type FinancialConnectionsAccountDeactivatedEvent = Stripe.FinancialConnectionsAccountDeactivatedEvent;
2294
+ type FinancialConnectionsAccountDisconnectedEvent = Stripe.FinancialConnectionsAccountDisconnectedEvent;
2295
+ type FinancialConnectionsAccountReactivatedEvent = Stripe.FinancialConnectionsAccountReactivatedEvent;
2296
+ type FinancialConnectionsAccountRefreshedBalanceEvent = Stripe.FinancialConnectionsAccountRefreshedBalanceEvent;
2297
+ type FinancialConnectionsAccountRefreshedOwnershipEvent = Stripe.FinancialConnectionsAccountRefreshedOwnershipEvent;
2298
+ type FinancialConnectionsAccountRefreshedTransactionsEvent = Stripe.FinancialConnectionsAccountRefreshedTransactionsEvent;
2299
+ type FinancialConnectionsAccountUpcomingAccountNumberExpiryEvent = Stripe.FinancialConnectionsAccountUpcomingAccountNumberExpiryEvent;
2300
+ type IdentityVerificationSessionCanceledEvent = Stripe.IdentityVerificationSessionCanceledEvent;
2301
+ type IdentityVerificationSessionCreatedEvent = Stripe.IdentityVerificationSessionCreatedEvent;
2302
+ type IdentityVerificationSessionProcessingEvent = Stripe.IdentityVerificationSessionProcessingEvent;
2303
+ type IdentityVerificationSessionRedactedEvent = Stripe.IdentityVerificationSessionRedactedEvent;
2304
+ type IdentityVerificationSessionRequiresInputEvent = Stripe.IdentityVerificationSessionRequiresInputEvent;
2305
+ type IdentityVerificationSessionVerifiedEvent = Stripe.IdentityVerificationSessionVerifiedEvent;
2306
+ type InvoiceCreatedEvent = Stripe.InvoiceCreatedEvent;
2307
+ type InvoiceDeletedEvent = Stripe.InvoiceDeletedEvent;
2308
+ type InvoiceFinalizationFailedEvent = Stripe.InvoiceFinalizationFailedEvent;
2309
+ type InvoiceFinalizedEvent = Stripe.InvoiceFinalizedEvent;
2310
+ type InvoiceMarkedUncollectibleEvent = Stripe.InvoiceMarkedUncollectibleEvent;
2311
+ type InvoiceOverdueEvent = Stripe.InvoiceOverdueEvent;
2312
+ type InvoiceOverpaidEvent = Stripe.InvoiceOverpaidEvent;
2313
+ type InvoicePaidEvent = Stripe.InvoicePaidEvent;
2314
+ type InvoicePaymentActionRequiredEvent = Stripe.InvoicePaymentActionRequiredEvent;
2315
+ type InvoicePaymentAttemptRequiredEvent = Stripe.InvoicePaymentAttemptRequiredEvent;
2316
+ type InvoicePaymentFailedEvent = Stripe.InvoicePaymentFailedEvent;
2317
+ type InvoicePaymentSucceededEvent = Stripe.InvoicePaymentSucceededEvent;
2318
+ type InvoiceSentEvent = Stripe.InvoiceSentEvent;
2319
+ type InvoiceUpcomingEvent = Stripe.InvoiceUpcomingEvent;
2320
+ type InvoiceUpdatedEvent = Stripe.InvoiceUpdatedEvent;
2321
+ type InvoiceVoidedEvent = Stripe.InvoiceVoidedEvent;
2322
+ type InvoiceWillBeDueEvent = Stripe.InvoiceWillBeDueEvent;
2323
+ type InvoicePaymentPaidEvent = Stripe.InvoicePaymentPaidEvent;
2324
+ type InvoiceItemCreatedEvent = Stripe.InvoiceItemCreatedEvent;
2325
+ type InvoiceItemDeletedEvent = Stripe.InvoiceItemDeletedEvent;
2326
+ type IssuingAuthorizationCreatedEvent = Stripe.IssuingAuthorizationCreatedEvent;
2327
+ type IssuingAuthorizationRequestEvent = Stripe.IssuingAuthorizationRequestEvent;
2328
+ type IssuingAuthorizationUpdatedEvent = Stripe.IssuingAuthorizationUpdatedEvent;
2329
+ type IssuingCardCreatedEvent = Stripe.IssuingCardCreatedEvent;
2330
+ type IssuingCardUpdatedEvent = Stripe.IssuingCardUpdatedEvent;
2331
+ type IssuingCardholderCreatedEvent = Stripe.IssuingCardholderCreatedEvent;
2332
+ type IssuingCardholderUpdatedEvent = Stripe.IssuingCardholderUpdatedEvent;
2333
+ type IssuingDisputeClosedEvent = Stripe.IssuingDisputeClosedEvent;
2334
+ type IssuingDisputeCreatedEvent = Stripe.IssuingDisputeCreatedEvent;
2335
+ type IssuingDisputeFundsReinstatedEvent = Stripe.IssuingDisputeFundsReinstatedEvent;
2336
+ type IssuingDisputeFundsRescindedEvent = Stripe.IssuingDisputeFundsRescindedEvent;
2337
+ type IssuingDisputeSubmittedEvent = Stripe.IssuingDisputeSubmittedEvent;
2338
+ type IssuingDisputeUpdatedEvent = Stripe.IssuingDisputeUpdatedEvent;
2339
+ type IssuingPersonalizationDesignActivatedEvent = Stripe.IssuingPersonalizationDesignActivatedEvent;
2340
+ type IssuingPersonalizationDesignDeactivatedEvent = Stripe.IssuingPersonalizationDesignDeactivatedEvent;
2341
+ type IssuingPersonalizationDesignRejectedEvent = Stripe.IssuingPersonalizationDesignRejectedEvent;
2342
+ type IssuingPersonalizationDesignUpdatedEvent = Stripe.IssuingPersonalizationDesignUpdatedEvent;
2343
+ type IssuingTokenCreatedEvent = Stripe.IssuingTokenCreatedEvent;
2344
+ type IssuingTokenUpdatedEvent = Stripe.IssuingTokenUpdatedEvent;
2345
+ type IssuingTransactionCreatedEvent = Stripe.IssuingTransactionCreatedEvent;
2346
+ type IssuingTransactionPurchaseDetailsReceiptUpdatedEvent = Stripe.IssuingTransactionPurchaseDetailsReceiptUpdatedEvent;
2347
+ type IssuingTransactionUpdatedEvent = Stripe.IssuingTransactionUpdatedEvent;
2348
+ type MandateUpdatedEvent = Stripe.MandateUpdatedEvent;
2349
+ type PaymentIntentAmountCapturableUpdatedEvent = Stripe.PaymentIntentAmountCapturableUpdatedEvent;
2350
+ type PaymentIntentCanceledEvent = Stripe.PaymentIntentCanceledEvent;
2351
+ type PaymentIntentCreatedEvent = Stripe.PaymentIntentCreatedEvent;
2352
+ type PaymentIntentPartiallyFundedEvent = Stripe.PaymentIntentPartiallyFundedEvent;
2353
+ type PaymentIntentPaymentFailedEvent = Stripe.PaymentIntentPaymentFailedEvent;
2354
+ type PaymentIntentProcessingEvent = Stripe.PaymentIntentProcessingEvent;
2355
+ type PaymentIntentRequiresActionEvent = Stripe.PaymentIntentRequiresActionEvent;
2356
+ type PaymentIntentSucceededEvent = Stripe.PaymentIntentSucceededEvent;
2357
+ type PaymentLinkCreatedEvent = Stripe.PaymentLinkCreatedEvent;
2358
+ type PaymentLinkUpdatedEvent = Stripe.PaymentLinkUpdatedEvent;
2359
+ type PaymentMethodAttachedEvent = Stripe.PaymentMethodAttachedEvent;
2360
+ type PaymentMethodAutomaticallyUpdatedEvent = Stripe.PaymentMethodAutomaticallyUpdatedEvent;
2361
+ type PaymentMethodDetachedEvent = Stripe.PaymentMethodDetachedEvent;
2362
+ type PaymentMethodUpdatedEvent = Stripe.PaymentMethodUpdatedEvent;
2363
+ type PayoutCanceledEvent = Stripe.PayoutCanceledEvent;
2364
+ type PayoutCreatedEvent = Stripe.PayoutCreatedEvent;
2365
+ type PayoutFailedEvent = Stripe.PayoutFailedEvent;
2366
+ type PayoutPaidEvent = Stripe.PayoutPaidEvent;
2367
+ type PayoutReconciliationCompletedEvent = Stripe.PayoutReconciliationCompletedEvent;
2368
+ type PayoutUpdatedEvent = Stripe.PayoutUpdatedEvent;
2369
+ type PersonCreatedEvent = Stripe.PersonCreatedEvent;
2370
+ type PersonDeletedEvent = Stripe.PersonDeletedEvent;
2371
+ type PersonUpdatedEvent = Stripe.PersonUpdatedEvent;
2372
+ type PlanCreatedEvent = Stripe.PlanCreatedEvent;
2373
+ type PlanDeletedEvent = Stripe.PlanDeletedEvent;
2374
+ type PlanUpdatedEvent = Stripe.PlanUpdatedEvent;
2375
+ type PriceCreatedEvent = Stripe.PriceCreatedEvent;
2376
+ type PriceDeletedEvent = Stripe.PriceDeletedEvent;
2377
+ type PriceUpdatedEvent = Stripe.PriceUpdatedEvent;
2378
+ type ProductCreatedEvent = Stripe.ProductCreatedEvent;
2379
+ type ProductDeletedEvent = Stripe.ProductDeletedEvent;
2380
+ type ProductUpdatedEvent = Stripe.ProductUpdatedEvent;
2381
+ type PromotionCodeCreatedEvent = Stripe.PromotionCodeCreatedEvent;
2382
+ type PromotionCodeUpdatedEvent = Stripe.PromotionCodeUpdatedEvent;
2383
+ type QuoteAcceptedEvent = Stripe.QuoteAcceptedEvent;
2384
+ type QuoteCanceledEvent = Stripe.QuoteCanceledEvent;
2385
+ type QuoteCreatedEvent = Stripe.QuoteCreatedEvent;
2386
+ type QuoteFinalizedEvent = Stripe.QuoteFinalizedEvent;
2387
+ type RadarEarlyFraudWarningCreatedEvent = Stripe.RadarEarlyFraudWarningCreatedEvent;
2388
+ type RadarEarlyFraudWarningUpdatedEvent = Stripe.RadarEarlyFraudWarningUpdatedEvent;
2389
+ type RefundCreatedEvent = Stripe.RefundCreatedEvent;
2390
+ type RefundFailedEvent = Stripe.RefundFailedEvent;
2391
+ type RefundUpdatedEvent = Stripe.RefundUpdatedEvent;
2392
+ type ReportingReportRunFailedEvent = Stripe.ReportingReportRunFailedEvent;
2393
+ type ReportingReportRunSucceededEvent = Stripe.ReportingReportRunSucceededEvent;
2394
+ type ReportingReportTypeUpdatedEvent = Stripe.ReportingReportTypeUpdatedEvent;
2395
+ type ReserveHoldCreatedEvent = Stripe.ReserveHoldCreatedEvent;
2396
+ type ReserveHoldUpdatedEvent = Stripe.ReserveHoldUpdatedEvent;
2397
+ type ReservePlanCreatedEvent = Stripe.ReservePlanCreatedEvent;
2398
+ type ReservePlanDisabledEvent = Stripe.ReservePlanDisabledEvent;
2399
+ type ReservePlanExpiredEvent = Stripe.ReservePlanExpiredEvent;
2400
+ type ReservePlanUpdatedEvent = Stripe.ReservePlanUpdatedEvent;
2401
+ type ReserveReleaseCreatedEvent = Stripe.ReserveReleaseCreatedEvent;
2402
+ type ReviewClosedEvent = Stripe.ReviewClosedEvent;
2403
+ type ReviewOpenedEvent = Stripe.ReviewOpenedEvent;
2404
+ type SetupIntentCanceledEvent = Stripe.SetupIntentCanceledEvent;
2405
+ type SetupIntentCreatedEvent = Stripe.SetupIntentCreatedEvent;
2406
+ type SetupIntentRequiresActionEvent = Stripe.SetupIntentRequiresActionEvent;
2407
+ type SetupIntentSetupFailedEvent = Stripe.SetupIntentSetupFailedEvent;
2408
+ type SetupIntentSucceededEvent = Stripe.SetupIntentSucceededEvent;
2409
+ type SigmaScheduledQueryRunCreatedEvent = Stripe.SigmaScheduledQueryRunCreatedEvent;
2410
+ type SourceCanceledEvent = Stripe.SourceCanceledEvent;
2411
+ type SourceChargeableEvent = Stripe.SourceChargeableEvent;
2412
+ type SourceFailedEvent = Stripe.SourceFailedEvent;
2413
+ type SourceMandateNotificationEvent = Stripe.SourceMandateNotificationEvent;
2414
+ type SourceRefundAttributesRequiredEvent = Stripe.SourceRefundAttributesRequiredEvent;
2415
+ type SourceTransactionCreatedEvent = Stripe.SourceTransactionCreatedEvent;
2416
+ type SourceTransactionUpdatedEvent = Stripe.SourceTransactionUpdatedEvent;
2417
+ type SubscriptionScheduleAbortedEvent = Stripe.SubscriptionScheduleAbortedEvent;
2418
+ type SubscriptionScheduleCanceledEvent = Stripe.SubscriptionScheduleCanceledEvent;
2419
+ type SubscriptionScheduleCompletedEvent = Stripe.SubscriptionScheduleCompletedEvent;
2420
+ type SubscriptionScheduleCreatedEvent = Stripe.SubscriptionScheduleCreatedEvent;
2421
+ type SubscriptionScheduleExpiringEvent = Stripe.SubscriptionScheduleExpiringEvent;
2422
+ type SubscriptionScheduleReleasedEvent = Stripe.SubscriptionScheduleReleasedEvent;
2423
+ type SubscriptionScheduleUpdatedEvent = Stripe.SubscriptionScheduleUpdatedEvent;
2424
+ type TaxSettingsUpdatedEvent = Stripe.TaxSettingsUpdatedEvent;
2425
+ type TaxRateCreatedEvent = Stripe.TaxRateCreatedEvent;
2426
+ type TaxRateUpdatedEvent = Stripe.TaxRateUpdatedEvent;
2427
+ type TerminalReaderActionFailedEvent = Stripe.TerminalReaderActionFailedEvent;
2428
+ type TerminalReaderActionSucceededEvent = Stripe.TerminalReaderActionSucceededEvent;
2429
+ type TerminalReaderActionUpdatedEvent = Stripe.TerminalReaderActionUpdatedEvent;
2430
+ type TestHelpersTestClockAdvancingEvent = Stripe.TestHelpersTestClockAdvancingEvent;
2431
+ type TestHelpersTestClockCreatedEvent = Stripe.TestHelpersTestClockCreatedEvent;
2432
+ type TestHelpersTestClockDeletedEvent = Stripe.TestHelpersTestClockDeletedEvent;
2433
+ type TestHelpersTestClockInternalFailureEvent = Stripe.TestHelpersTestClockInternalFailureEvent;
2434
+ type TestHelpersTestClockReadyEvent = Stripe.TestHelpersTestClockReadyEvent;
2435
+ type TopupCanceledEvent = Stripe.TopupCanceledEvent;
2436
+ type TopupCreatedEvent = Stripe.TopupCreatedEvent;
2437
+ type TopupFailedEvent = Stripe.TopupFailedEvent;
2438
+ type TopupReversedEvent = Stripe.TopupReversedEvent;
2439
+ type TopupSucceededEvent = Stripe.TopupSucceededEvent;
2440
+ type TransferCreatedEvent = Stripe.TransferCreatedEvent;
2441
+ type TransferReversedEvent = Stripe.TransferReversedEvent;
2442
+ type TransferUpdatedEvent = Stripe.TransferUpdatedEvent;
2443
+ type TreasuryCreditReversalCreatedEvent = Stripe.TreasuryCreditReversalCreatedEvent;
2444
+ type TreasuryCreditReversalPostedEvent = Stripe.TreasuryCreditReversalPostedEvent;
2445
+ type TreasuryDebitReversalCompletedEvent = Stripe.TreasuryDebitReversalCompletedEvent;
2446
+ type TreasuryDebitReversalCreatedEvent = Stripe.TreasuryDebitReversalCreatedEvent;
2447
+ type TreasuryDebitReversalInitialCreditGrantedEvent = Stripe.TreasuryDebitReversalInitialCreditGrantedEvent;
2448
+ type TreasuryFinancialAccountClosedEvent = Stripe.TreasuryFinancialAccountClosedEvent;
2449
+ type TreasuryFinancialAccountCreatedEvent = Stripe.TreasuryFinancialAccountCreatedEvent;
2450
+ type TreasuryFinancialAccountFeaturesStatusUpdatedEvent = Stripe.TreasuryFinancialAccountFeaturesStatusUpdatedEvent;
2451
+ type TreasuryInboundTransferCanceledEvent = Stripe.TreasuryInboundTransferCanceledEvent;
2452
+ type TreasuryInboundTransferCreatedEvent = Stripe.TreasuryInboundTransferCreatedEvent;
2453
+ type TreasuryInboundTransferFailedEvent = Stripe.TreasuryInboundTransferFailedEvent;
2454
+ type TreasuryInboundTransferSucceededEvent = Stripe.TreasuryInboundTransferSucceededEvent;
2455
+ type TreasuryOutboundPaymentCanceledEvent = Stripe.TreasuryOutboundPaymentCanceledEvent;
2456
+ type TreasuryOutboundPaymentCreatedEvent = Stripe.TreasuryOutboundPaymentCreatedEvent;
2457
+ type TreasuryOutboundPaymentExpectedArrivalDateUpdatedEvent = Stripe.TreasuryOutboundPaymentExpectedArrivalDateUpdatedEvent;
2458
+ type TreasuryOutboundPaymentFailedEvent = Stripe.TreasuryOutboundPaymentFailedEvent;
2459
+ type TreasuryOutboundPaymentPostedEvent = Stripe.TreasuryOutboundPaymentPostedEvent;
2460
+ type TreasuryOutboundPaymentReturnedEvent = Stripe.TreasuryOutboundPaymentReturnedEvent;
2461
+ type TreasuryOutboundPaymentTrackingDetailsUpdatedEvent = Stripe.TreasuryOutboundPaymentTrackingDetailsUpdatedEvent;
2462
+ type TreasuryOutboundTransferCanceledEvent = Stripe.TreasuryOutboundTransferCanceledEvent;
2463
+ type TreasuryOutboundTransferCreatedEvent = Stripe.TreasuryOutboundTransferCreatedEvent;
2464
+ type TreasuryOutboundTransferExpectedArrivalDateUpdatedEvent = Stripe.TreasuryOutboundTransferExpectedArrivalDateUpdatedEvent;
2465
+ type TreasuryOutboundTransferFailedEvent = Stripe.TreasuryOutboundTransferFailedEvent;
2466
+ type TreasuryOutboundTransferPostedEvent = Stripe.TreasuryOutboundTransferPostedEvent;
2467
+ type TreasuryOutboundTransferReturnedEvent = Stripe.TreasuryOutboundTransferReturnedEvent;
2468
+ type TreasuryOutboundTransferTrackingDetailsUpdatedEvent = Stripe.TreasuryOutboundTransferTrackingDetailsUpdatedEvent;
2469
+ type TreasuryReceivedCreditCreatedEvent = Stripe.TreasuryReceivedCreditCreatedEvent;
2470
+ type TreasuryReceivedCreditFailedEvent = Stripe.TreasuryReceivedCreditFailedEvent;
2471
+ type TreasuryReceivedCreditSucceededEvent = Stripe.TreasuryReceivedCreditSucceededEvent;
2472
+ type TreasuryReceivedDebitCreatedEvent = Stripe.TreasuryReceivedDebitCreatedEvent;
2473
+ type V2List<T> = Stripe.V2List<T>;
2474
+ type V2ListPromise<T> = Stripe.V2ListPromise<T>;
2475
+ type Response<T> = Stripe.Response<T>;
2476
+ type RequestOptions = Stripe.RequestOptions;
2477
+ type RawRequestOptions = Stripe.RawRequestOptions;
2478
+ type ApiList<T> = Stripe.ApiList<T>;
2479
+ type ApiListPromise<T> = Stripe.ApiListPromise<T>;
2480
+ type ApiSearchResultPromise<T> = Stripe.ApiSearchResultPromise<T>;
2481
+ type ApiSearchResult<T> = Stripe.ApiSearchResult<T>;
2482
+ type StripeStreamResponse = Stripe.StripeStreamResponse;
2483
+ type RequestEvent = Stripe.RequestEvent;
2484
+ type ResponseEvent = Stripe.ResponseEvent;
2485
+ type AppInfo = Stripe.AppInfo;
2486
+ type FileData = Stripe.FileData;
2487
+ type Metadata = Stripe.Metadata;
2488
+ type MetadataParam = Stripe.MetadataParam;
2489
+ type Address = Stripe.Address;
2490
+ type JapanAddress = Stripe.JapanAddress;
2491
+ type AddressParam = Stripe.AddressParam;
2492
+ type ShippingAddressParam = Stripe.ShippingAddressParam;
2493
+ type JapanAddressParam = Stripe.JapanAddressParam;
2494
+ type RangeQueryParam = Stripe.RangeQueryParam;
2495
+ type PaginationParams = Stripe.PaginationParams;
2496
+ type Emptyable<T> = Stripe.Emptyable<T>;
2497
+ type OAuthResource = Stripe.OAuthResource;
2498
+ type OAuthToken = Stripe.OAuthToken;
2499
+ type OAuthTokenParams = Stripe.OAuthTokenParams;
2500
+ type OAuthAuthorizeUrlOptions = Stripe.OAuthAuthorizeUrlOptions;
2501
+ type OAuthAuthorizeUrlParams = Stripe.OAuthAuthorizeUrlParams;
2502
+ type OAuthDeauthorization = Stripe.OAuthDeauthorization;
2503
+ type OAuthDeauthorizeParams = Stripe.OAuthDeauthorizeParams;
2504
+ type StripeContextType = Stripe.StripeContextType;
2505
+ type StripeRawError = Stripe.StripeRawError;
2506
+ type Decimal = Stripe.Decimal;
2507
+ namespace errors {
2508
+ type StripeError = InstanceType<typeof Stripe.errors.StripeError>;
2509
+ type StripeCardError = InstanceType<typeof Stripe.errors.StripeCardError>;
2510
+ type StripeInvalidRequestError = InstanceType<typeof Stripe.errors.StripeInvalidRequestError>;
2511
+ type StripeAPIError = InstanceType<typeof Stripe.errors.StripeAPIError>;
2512
+ type StripeAuthenticationError = InstanceType<typeof Stripe.errors.StripeAuthenticationError>;
2513
+ type StripePermissionError = InstanceType<typeof Stripe.errors.StripePermissionError>;
2514
+ type StripeRateLimitError = InstanceType<typeof Stripe.errors.StripeRateLimitError>;
2515
+ type StripeConnectionError = InstanceType<typeof Stripe.errors.StripeConnectionError>;
2516
+ type StripeSignatureVerificationError = InstanceType<typeof Stripe.errors.StripeSignatureVerificationError>;
2517
+ type StripeIdempotencyError = InstanceType<typeof Stripe.errors.StripeIdempotencyError>;
2518
+ type StripeInvalidGrantError = InstanceType<typeof Stripe.errors.StripeInvalidGrantError>;
2519
+ }
8
2520
  }
9
2521
  export = StripeConstructor;