File: SOURCES.txt

package info (click to toggle)
python-stripe 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,864 kB
  • sloc: python: 157,573; makefile: 13; sh: 9
file content (719 lines) | stat: -rw-r--r-- 25,799 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
.flake8
CHANGELOG.md
LICENSE
LONG_DESCRIPTION.rst
MANIFEST.in
README.md
VERSION
justfile
pyproject.toml
setup.cfg
setup.py
examples/charge.py
examples/example_template.py
examples/meter_event_stream.py
examples/oauth.py
examples/proxy.py
examples/raw_request.py
examples/thinevent_webhook_handler.py
examples/webhooks.py
stripe/__init__.py
stripe/_account.py
stripe/_account_capability_service.py
stripe/_account_external_account_service.py
stripe/_account_link.py
stripe/_account_link_service.py
stripe/_account_login_link_service.py
stripe/_account_person_service.py
stripe/_account_service.py
stripe/_account_session.py
stripe/_account_session_service.py
stripe/_any_iterator.py
stripe/_api_mode.py
stripe/_api_requestor.py
stripe/_api_resource.py
stripe/_api_version.py
stripe/_app_info.py
stripe/_apple_pay_domain.py
stripe/_apple_pay_domain_service.py
stripe/_application.py
stripe/_application_fee.py
stripe/_application_fee_refund.py
stripe/_application_fee_refund_service.py
stripe/_application_fee_service.py
stripe/_apps_service.py
stripe/_balance.py
stripe/_balance_service.py
stripe/_balance_transaction.py
stripe/_balance_transaction_service.py
stripe/_bank_account.py
stripe/_base_address.py
stripe/_billing_portal_service.py
stripe/_billing_service.py
stripe/_capability.py
stripe/_card.py
stripe/_cash_balance.py
stripe/_charge.py
stripe/_charge_service.py
stripe/_checkout_service.py
stripe/_client_options.py
stripe/_climate_service.py
stripe/_confirmation_token.py
stripe/_confirmation_token_service.py
stripe/_connect_collection_transfer.py
stripe/_country_spec.py
stripe/_country_spec_service.py
stripe/_coupon.py
stripe/_coupon_service.py
stripe/_createable_api_resource.py
stripe/_credit_note.py
stripe/_credit_note_line_item.py
stripe/_credit_note_line_item_service.py
stripe/_credit_note_preview_lines_service.py
stripe/_credit_note_service.py
stripe/_custom_method.py
stripe/_customer.py
stripe/_customer_balance_transaction.py
stripe/_customer_balance_transaction_service.py
stripe/_customer_cash_balance_service.py
stripe/_customer_cash_balance_transaction.py
stripe/_customer_cash_balance_transaction_service.py
stripe/_customer_funding_instructions_service.py
stripe/_customer_payment_method_service.py
stripe/_customer_payment_source_service.py
stripe/_customer_service.py
stripe/_customer_session.py
stripe/_customer_session_service.py
stripe/_customer_tax_id_service.py
stripe/_deletable_api_resource.py
stripe/_discount.py
stripe/_dispute.py
stripe/_dispute_service.py
stripe/_encode.py
stripe/_entitlements_service.py
stripe/_ephemeral_key.py
stripe/_ephemeral_key_service.py
stripe/_error.py
stripe/_error_object.py
stripe/_event.py
stripe/_event_service.py
stripe/_exchange_rate.py
stripe/_exchange_rate_service.py
stripe/_expandable_field.py
stripe/_file.py
stripe/_file_link.py
stripe/_file_link_service.py
stripe/_file_service.py
stripe/_financial_connections_service.py
stripe/_forwarding_service.py
stripe/_funding_instructions.py
stripe/_http_client.py
stripe/_identity_service.py
stripe/_invoice.py
stripe/_invoice_item.py
stripe/_invoice_item_service.py
stripe/_invoice_line_item.py
stripe/_invoice_line_item_service.py
stripe/_invoice_payment.py
stripe/_invoice_payment_service.py
stripe/_invoice_rendering_template.py
stripe/_invoice_rendering_template_service.py
stripe/_invoice_service.py
stripe/_issuing_service.py
stripe/_line_item.py
stripe/_list_object.py
stripe/_listable_api_resource.py
stripe/_login_link.py
stripe/_mandate.py
stripe/_mandate_service.py
stripe/_multipart_data_generator.py
stripe/_nested_resource_class_methods.py
stripe/_oauth.py
stripe/_oauth_service.py
stripe/_object_classes.py
stripe/_payment_intent.py
stripe/_payment_intent_service.py
stripe/_payment_link.py
stripe/_payment_link_line_item_service.py
stripe/_payment_link_service.py
stripe/_payment_method.py
stripe/_payment_method_configuration.py
stripe/_payment_method_configuration_service.py
stripe/_payment_method_domain.py
stripe/_payment_method_domain_service.py
stripe/_payment_method_service.py
stripe/_payout.py
stripe/_payout_service.py
stripe/_person.py
stripe/_plan.py
stripe/_plan_service.py
stripe/_price.py
stripe/_price_service.py
stripe/_product.py
stripe/_product_feature.py
stripe/_product_feature_service.py
stripe/_product_service.py
stripe/_promotion_code.py
stripe/_promotion_code_service.py
stripe/_quote.py
stripe/_quote_computed_upfront_line_items_service.py
stripe/_quote_line_item_service.py
stripe/_quote_service.py
stripe/_radar_service.py
stripe/_refund.py
stripe/_refund_service.py
stripe/_reporting_service.py
stripe/_request_metrics.py
stripe/_request_options.py
stripe/_requestor_options.py
stripe/_reserve_transaction.py
stripe/_reversal.py
stripe/_review.py
stripe/_review_service.py
stripe/_search_result_object.py
stripe/_searchable_api_resource.py
stripe/_setup_attempt.py
stripe/_setup_attempt_service.py
stripe/_setup_intent.py
stripe/_setup_intent_service.py
stripe/_shipping_rate.py
stripe/_shipping_rate_service.py
stripe/_sigma_service.py
stripe/_singleton_api_resource.py
stripe/_source.py
stripe/_source_mandate_notification.py
stripe/_source_service.py
stripe/_source_transaction.py
stripe/_source_transaction_service.py
stripe/_stripe_client.py
stripe/_stripe_object.py
stripe/_stripe_response.py
stripe/_stripe_service.py
stripe/_subscription.py
stripe/_subscription_item.py
stripe/_subscription_item_service.py
stripe/_subscription_schedule.py
stripe/_subscription_schedule_service.py
stripe/_subscription_service.py
stripe/_tax_code.py
stripe/_tax_code_service.py
stripe/_tax_deducted_at_source.py
stripe/_tax_id.py
stripe/_tax_id_service.py
stripe/_tax_rate.py
stripe/_tax_rate_service.py
stripe/_tax_service.py
stripe/_terminal_service.py
stripe/_test_helpers.py
stripe/_test_helpers_service.py
stripe/_token.py
stripe/_token_service.py
stripe/_topup.py
stripe/_topup_service.py
stripe/_transfer.py
stripe/_transfer_reversal_service.py
stripe/_transfer_service.py
stripe/_treasury_service.py
stripe/_updateable_api_resource.py
stripe/_util.py
stripe/_v2_services.py
stripe/_verify_mixin.py
stripe/_version.py
stripe/_webhook.py
stripe/_webhook_endpoint.py
stripe/_webhook_endpoint_service.py
stripe/api_version.py
stripe/app_info.py
stripe/error.py
stripe/http_client.py
stripe/multipart_data_generator.py
stripe/oauth.py
stripe/oauth_error.py
stripe/py.typed
stripe/request_metrics.py
stripe/request_options.py
stripe/stripe_object.py
stripe/stripe_response.py
stripe/util.py
stripe/version.py
stripe/webhook.py
stripe.egg-info/PKG-INFO
stripe.egg-info/SOURCES.txt
stripe.egg-info/dependency_links.txt
stripe.egg-info/not-zip-safe
stripe.egg-info/requires.txt
stripe.egg-info/top_level.txt
stripe/api_resources/__init__.py
stripe/api_resources/account.py
stripe/api_resources/account_link.py
stripe/api_resources/account_session.py
stripe/api_resources/apple_pay_domain.py
stripe/api_resources/application.py
stripe/api_resources/application_fee.py
stripe/api_resources/application_fee_refund.py
stripe/api_resources/balance.py
stripe/api_resources/balance_transaction.py
stripe/api_resources/bank_account.py
stripe/api_resources/capability.py
stripe/api_resources/card.py
stripe/api_resources/cash_balance.py
stripe/api_resources/charge.py
stripe/api_resources/confirmation_token.py
stripe/api_resources/connect_collection_transfer.py
stripe/api_resources/country_spec.py
stripe/api_resources/coupon.py
stripe/api_resources/credit_note.py
stripe/api_resources/credit_note_line_item.py
stripe/api_resources/customer.py
stripe/api_resources/customer_balance_transaction.py
stripe/api_resources/customer_cash_balance_transaction.py
stripe/api_resources/customer_session.py
stripe/api_resources/discount.py
stripe/api_resources/dispute.py
stripe/api_resources/ephemeral_key.py
stripe/api_resources/error_object.py
stripe/api_resources/event.py
stripe/api_resources/exchange_rate.py
stripe/api_resources/file.py
stripe/api_resources/file_link.py
stripe/api_resources/funding_instructions.py
stripe/api_resources/invoice.py
stripe/api_resources/invoice_item.py
stripe/api_resources/invoice_line_item.py
stripe/api_resources/invoice_payment.py
stripe/api_resources/invoice_rendering_template.py
stripe/api_resources/line_item.py
stripe/api_resources/list_object.py
stripe/api_resources/login_link.py
stripe/api_resources/mandate.py
stripe/api_resources/payment_intent.py
stripe/api_resources/payment_link.py
stripe/api_resources/payment_method.py
stripe/api_resources/payment_method_configuration.py
stripe/api_resources/payment_method_domain.py
stripe/api_resources/payout.py
stripe/api_resources/person.py
stripe/api_resources/plan.py
stripe/api_resources/price.py
stripe/api_resources/product.py
stripe/api_resources/product_feature.py
stripe/api_resources/promotion_code.py
stripe/api_resources/quote.py
stripe/api_resources/recipient_transfer.py
stripe/api_resources/refund.py
stripe/api_resources/reserve_transaction.py
stripe/api_resources/reversal.py
stripe/api_resources/review.py
stripe/api_resources/search_result_object.py
stripe/api_resources/setup_attempt.py
stripe/api_resources/setup_intent.py
stripe/api_resources/shipping_rate.py
stripe/api_resources/source.py
stripe/api_resources/source_mandate_notification.py
stripe/api_resources/source_transaction.py
stripe/api_resources/subscription.py
stripe/api_resources/subscription_item.py
stripe/api_resources/subscription_schedule.py
stripe/api_resources/tax_code.py
stripe/api_resources/tax_deducted_at_source.py
stripe/api_resources/tax_id.py
stripe/api_resources/tax_rate.py
stripe/api_resources/token.py
stripe/api_resources/topup.py
stripe/api_resources/transfer.py
stripe/api_resources/webhook_endpoint.py
stripe/api_resources/abstract/__init__.py
stripe/api_resources/abstract/api_resource.py
stripe/api_resources/abstract/createable_api_resource.py
stripe/api_resources/abstract/custom_method.py
stripe/api_resources/abstract/deletable_api_resource.py
stripe/api_resources/abstract/listable_api_resource.py
stripe/api_resources/abstract/nested_resource_class_methods.py
stripe/api_resources/abstract/searchable_api_resource.py
stripe/api_resources/abstract/singleton_api_resource.py
stripe/api_resources/abstract/test_helpers.py
stripe/api_resources/abstract/updateable_api_resource.py
stripe/api_resources/abstract/verify_mixin.py
stripe/api_resources/apps/__init__.py
stripe/api_resources/apps/secret.py
stripe/api_resources/billing/__init__.py
stripe/api_resources/billing/alert.py
stripe/api_resources/billing/alert_triggered.py
stripe/api_resources/billing/credit_balance_summary.py
stripe/api_resources/billing/credit_balance_transaction.py
stripe/api_resources/billing/credit_grant.py
stripe/api_resources/billing/meter.py
stripe/api_resources/billing/meter_event.py
stripe/api_resources/billing/meter_event_adjustment.py
stripe/api_resources/billing/meter_event_summary.py
stripe/api_resources/billing_portal/__init__.py
stripe/api_resources/billing_portal/configuration.py
stripe/api_resources/billing_portal/session.py
stripe/api_resources/checkout/__init__.py
stripe/api_resources/checkout/session.py
stripe/api_resources/climate/__init__.py
stripe/api_resources/climate/order.py
stripe/api_resources/climate/product.py
stripe/api_resources/climate/supplier.py
stripe/api_resources/entitlements/__init__.py
stripe/api_resources/entitlements/active_entitlement.py
stripe/api_resources/entitlements/active_entitlement_summary.py
stripe/api_resources/entitlements/feature.py
stripe/api_resources/financial_connections/__init__.py
stripe/api_resources/financial_connections/account.py
stripe/api_resources/financial_connections/account_owner.py
stripe/api_resources/financial_connections/account_ownership.py
stripe/api_resources/financial_connections/session.py
stripe/api_resources/financial_connections/transaction.py
stripe/api_resources/forwarding/__init__.py
stripe/api_resources/forwarding/request.py
stripe/api_resources/identity/__init__.py
stripe/api_resources/identity/verification_report.py
stripe/api_resources/identity/verification_session.py
stripe/api_resources/issuing/__init__.py
stripe/api_resources/issuing/authorization.py
stripe/api_resources/issuing/card.py
stripe/api_resources/issuing/cardholder.py
stripe/api_resources/issuing/dispute.py
stripe/api_resources/issuing/personalization_design.py
stripe/api_resources/issuing/physical_bundle.py
stripe/api_resources/issuing/token.py
stripe/api_resources/issuing/transaction.py
stripe/api_resources/radar/__init__.py
stripe/api_resources/radar/early_fraud_warning.py
stripe/api_resources/radar/value_list.py
stripe/api_resources/radar/value_list_item.py
stripe/api_resources/reporting/__init__.py
stripe/api_resources/reporting/report_run.py
stripe/api_resources/reporting/report_type.py
stripe/api_resources/sigma/__init__.py
stripe/api_resources/sigma/scheduled_query_run.py
stripe/api_resources/tax/__init__.py
stripe/api_resources/tax/calculation.py
stripe/api_resources/tax/calculation_line_item.py
stripe/api_resources/tax/registration.py
stripe/api_resources/tax/settings.py
stripe/api_resources/tax/transaction.py
stripe/api_resources/tax/transaction_line_item.py
stripe/api_resources/terminal/__init__.py
stripe/api_resources/terminal/configuration.py
stripe/api_resources/terminal/connection_token.py
stripe/api_resources/terminal/location.py
stripe/api_resources/terminal/reader.py
stripe/api_resources/test_helpers/__init__.py
stripe/api_resources/test_helpers/test_clock.py
stripe/api_resources/treasury/__init__.py
stripe/api_resources/treasury/credit_reversal.py
stripe/api_resources/treasury/debit_reversal.py
stripe/api_resources/treasury/financial_account.py
stripe/api_resources/treasury/financial_account_features.py
stripe/api_resources/treasury/inbound_transfer.py
stripe/api_resources/treasury/outbound_payment.py
stripe/api_resources/treasury/outbound_transfer.py
stripe/api_resources/treasury/received_credit.py
stripe/api_resources/treasury/received_debit.py
stripe/api_resources/treasury/transaction.py
stripe/api_resources/treasury/transaction_entry.py
stripe/apps/__init__.py
stripe/apps/_secret.py
stripe/apps/_secret_service.py
stripe/billing/__init__.py
stripe/billing/_alert.py
stripe/billing/_alert_service.py
stripe/billing/_alert_triggered.py
stripe/billing/_credit_balance_summary.py
stripe/billing/_credit_balance_summary_service.py
stripe/billing/_credit_balance_transaction.py
stripe/billing/_credit_balance_transaction_service.py
stripe/billing/_credit_grant.py
stripe/billing/_credit_grant_service.py
stripe/billing/_meter.py
stripe/billing/_meter_event.py
stripe/billing/_meter_event_adjustment.py
stripe/billing/_meter_event_adjustment_service.py
stripe/billing/_meter_event_service.py
stripe/billing/_meter_event_summary.py
stripe/billing/_meter_event_summary_service.py
stripe/billing/_meter_service.py
stripe/billing_portal/__init__.py
stripe/billing_portal/_configuration.py
stripe/billing_portal/_configuration_service.py
stripe/billing_portal/_session.py
stripe/billing_portal/_session_service.py
stripe/checkout/__init__.py
stripe/checkout/_session.py
stripe/checkout/_session_line_item_service.py
stripe/checkout/_session_service.py
stripe/climate/__init__.py
stripe/climate/_order.py
stripe/climate/_order_service.py
stripe/climate/_product.py
stripe/climate/_product_service.py
stripe/climate/_supplier.py
stripe/climate/_supplier_service.py
stripe/data/ca-certificates.crt
stripe/entitlements/__init__.py
stripe/entitlements/_active_entitlement.py
stripe/entitlements/_active_entitlement_service.py
stripe/entitlements/_active_entitlement_summary.py
stripe/entitlements/_feature.py
stripe/entitlements/_feature_service.py
stripe/events/__init__.py
stripe/events/_event_classes.py
stripe/events/_v1_billing_meter_error_report_triggered_event.py
stripe/events/_v1_billing_meter_no_meter_found_event.py
stripe/financial_connections/__init__.py
stripe/financial_connections/_account.py
stripe/financial_connections/_account_owner.py
stripe/financial_connections/_account_owner_service.py
stripe/financial_connections/_account_ownership.py
stripe/financial_connections/_account_service.py
stripe/financial_connections/_session.py
stripe/financial_connections/_session_service.py
stripe/financial_connections/_transaction.py
stripe/financial_connections/_transaction_service.py
stripe/forwarding/__init__.py
stripe/forwarding/_request.py
stripe/forwarding/_request_service.py
stripe/identity/__init__.py
stripe/identity/_verification_report.py
stripe/identity/_verification_report_service.py
stripe/identity/_verification_session.py
stripe/identity/_verification_session_service.py
stripe/issuing/__init__.py
stripe/issuing/_authorization.py
stripe/issuing/_authorization_service.py
stripe/issuing/_card.py
stripe/issuing/_card_service.py
stripe/issuing/_cardholder.py
stripe/issuing/_cardholder_service.py
stripe/issuing/_dispute.py
stripe/issuing/_dispute_service.py
stripe/issuing/_personalization_design.py
stripe/issuing/_personalization_design_service.py
stripe/issuing/_physical_bundle.py
stripe/issuing/_physical_bundle_service.py
stripe/issuing/_token.py
stripe/issuing/_token_service.py
stripe/issuing/_transaction.py
stripe/issuing/_transaction_service.py
stripe/radar/__init__.py
stripe/radar/_early_fraud_warning.py
stripe/radar/_early_fraud_warning_service.py
stripe/radar/_value_list.py
stripe/radar/_value_list_item.py
stripe/radar/_value_list_item_service.py
stripe/radar/_value_list_service.py
stripe/reporting/__init__.py
stripe/reporting/_report_run.py
stripe/reporting/_report_run_service.py
stripe/reporting/_report_type.py
stripe/reporting/_report_type_service.py
stripe/sigma/__init__.py
stripe/sigma/_scheduled_query_run.py
stripe/sigma/_scheduled_query_run_service.py
stripe/tax/__init__.py
stripe/tax/_calculation.py
stripe/tax/_calculation_line_item.py
stripe/tax/_calculation_line_item_service.py
stripe/tax/_calculation_service.py
stripe/tax/_registration.py
stripe/tax/_registration_service.py
stripe/tax/_settings.py
stripe/tax/_settings_service.py
stripe/tax/_transaction.py
stripe/tax/_transaction_line_item.py
stripe/tax/_transaction_line_item_service.py
stripe/tax/_transaction_service.py
stripe/terminal/__init__.py
stripe/terminal/_configuration.py
stripe/terminal/_configuration_service.py
stripe/terminal/_connection_token.py
stripe/terminal/_connection_token_service.py
stripe/terminal/_location.py
stripe/terminal/_location_service.py
stripe/terminal/_reader.py
stripe/terminal/_reader_service.py
stripe/test_helpers/__init__.py
stripe/test_helpers/_confirmation_token_service.py
stripe/test_helpers/_customer_service.py
stripe/test_helpers/_issuing_service.py
stripe/test_helpers/_refund_service.py
stripe/test_helpers/_terminal_service.py
stripe/test_helpers/_test_clock.py
stripe/test_helpers/_test_clock_service.py
stripe/test_helpers/_treasury_service.py
stripe/test_helpers/issuing/__init__.py
stripe/test_helpers/issuing/_authorization_service.py
stripe/test_helpers/issuing/_card_service.py
stripe/test_helpers/issuing/_personalization_design_service.py
stripe/test_helpers/issuing/_transaction_service.py
stripe/test_helpers/terminal/__init__.py
stripe/test_helpers/terminal/_reader_service.py
stripe/test_helpers/treasury/__init__.py
stripe/test_helpers/treasury/_inbound_transfer_service.py
stripe/test_helpers/treasury/_outbound_payment_service.py
stripe/test_helpers/treasury/_outbound_transfer_service.py
stripe/test_helpers/treasury/_received_credit_service.py
stripe/test_helpers/treasury/_received_debit_service.py
stripe/treasury/__init__.py
stripe/treasury/_credit_reversal.py
stripe/treasury/_credit_reversal_service.py
stripe/treasury/_debit_reversal.py
stripe/treasury/_debit_reversal_service.py
stripe/treasury/_financial_account.py
stripe/treasury/_financial_account_features.py
stripe/treasury/_financial_account_features_service.py
stripe/treasury/_financial_account_service.py
stripe/treasury/_inbound_transfer.py
stripe/treasury/_inbound_transfer_service.py
stripe/treasury/_outbound_payment.py
stripe/treasury/_outbound_payment_service.py
stripe/treasury/_outbound_transfer.py
stripe/treasury/_outbound_transfer_service.py
stripe/treasury/_received_credit.py
stripe/treasury/_received_credit_service.py
stripe/treasury/_received_debit.py
stripe/treasury/_received_debit_service.py
stripe/treasury/_transaction.py
stripe/treasury/_transaction_entry.py
stripe/treasury/_transaction_entry_service.py
stripe/treasury/_transaction_service.py
stripe/v2/__init__.py
stripe/v2/_amount.py
stripe/v2/_billing_service.py
stripe/v2/_core_service.py
stripe/v2/_event.py
stripe/v2/_event_destination.py
stripe/v2/_list_object.py
stripe/v2/billing/__init__.py
stripe/v2/billing/_meter_event.py
stripe/v2/billing/_meter_event_adjustment.py
stripe/v2/billing/_meter_event_adjustment_service.py
stripe/v2/billing/_meter_event_service.py
stripe/v2/billing/_meter_event_session.py
stripe/v2/billing/_meter_event_session_service.py
stripe/v2/billing/_meter_event_stream_service.py
stripe/v2/core/__init__.py
stripe/v2/core/_event_destination_service.py
stripe/v2/core/_event_service.py
tests/__init__.py
tests/conftest.py
tests/http_client_mock.py
tests/request_mock.py
tests/stripe_mock.py
tests/test_api_requestor.py
tests/test_error.py
tests/test_exports.py
tests/test_generated_examples.py
tests/test_http_client.py
tests/test_integration.py
tests/test_multipart_data_generator.py
tests/test_oauth.py
tests/test_oauth_error.py
tests/test_raw_request.py
tests/test_request_options.py
tests/test_requestor_options.py
tests/test_stripe_client.py
tests/test_stripe_object.py
tests/test_stripe_response.py
tests/test_util.py
tests/test_v2_error.py
tests/test_v2_event.py
tests/test_webhook.py
tests/api_resources/__init__.py
tests/api_resources/test_account.py
tests/api_resources/test_account_link.py
tests/api_resources/test_apple_pay_domain.py
tests/api_resources/test_application_fee.py
tests/api_resources/test_application_fee_refund.py
tests/api_resources/test_balance.py
tests/api_resources/test_balance_transaction.py
tests/api_resources/test_bank_account.py
tests/api_resources/test_capability.py
tests/api_resources/test_card.py
tests/api_resources/test_charge.py
tests/api_resources/test_country_spec.py
tests/api_resources/test_coupon.py
tests/api_resources/test_credit_note.py
tests/api_resources/test_customer.py
tests/api_resources/test_customer_balance_transaction.py
tests/api_resources/test_dispute.py
tests/api_resources/test_ephemeral_key.py
tests/api_resources/test_event.py
tests/api_resources/test_exchange_rate.py
tests/api_resources/test_file.py
tests/api_resources/test_file_link.py
tests/api_resources/test_file_upload.py
tests/api_resources/test_invoice.py
tests/api_resources/test_invoice_item.py
tests/api_resources/test_invoice_line_item.py
tests/api_resources/test_list_object.py
tests/api_resources/test_list_object_v2.py
tests/api_resources/test_mandate.py
tests/api_resources/test_payment_intent.py
tests/api_resources/test_payment_method.py
tests/api_resources/test_payout.py
tests/api_resources/test_person.py
tests/api_resources/test_plan.py
tests/api_resources/test_price.py
tests/api_resources/test_product.py
tests/api_resources/test_promotion_code.py
tests/api_resources/test_quote.py
tests/api_resources/test_refund.py
tests/api_resources/test_reversal.py
tests/api_resources/test_review.py
tests/api_resources/test_search_result_object.py
tests/api_resources/test_setup_attempt.py
tests/api_resources/test_setup_intent.py
tests/api_resources/test_source.py
tests/api_resources/test_source_transaction.py
tests/api_resources/test_subscription.py
tests/api_resources/test_subscription_item.py
tests/api_resources/test_subscription_schedule.py
tests/api_resources/test_tax_code.py
tests/api_resources/test_tax_id.py
tests/api_resources/test_tax_rate.py
tests/api_resources/test_topup.py
tests/api_resources/test_transfer.py
tests/api_resources/test_webhook_endpoint.py
tests/api_resources/abstract/__init__.py
tests/api_resources/abstract/test_api_resource.py
tests/api_resources/abstract/test_createable_api_resource.py
tests/api_resources/abstract/test_custom_method.py
tests/api_resources/abstract/test_deletable_api_resource.py
tests/api_resources/abstract/test_listable_api_resource.py
tests/api_resources/abstract/test_nested_resource_class_methods.py
tests/api_resources/abstract/test_searchable_api_resource.py
tests/api_resources/abstract/test_singleton_api_resource.py
tests/api_resources/abstract/test_test_helpers_api_resource.py
tests/api_resources/abstract/test_updateable_api_resource.py
tests/api_resources/billing_portal/__init__.py
tests/api_resources/billing_portal/test_configuration.py
tests/api_resources/billing_portal/test_session.py
tests/api_resources/checkout/__init__.py
tests/api_resources/checkout/test_session.py
tests/api_resources/identity/test_verification_report.py
tests/api_resources/identity/test_verification_session.py
tests/api_resources/issuing/__init__.py
tests/api_resources/issuing/test_authorization.py
tests/api_resources/issuing/test_card.py
tests/api_resources/issuing/test_cardholder.py
tests/api_resources/issuing/test_dispute.py
tests/api_resources/issuing/test_transaction.py
tests/api_resources/radar/__init__.py
tests/api_resources/radar/test_early_fraud_warning.py
tests/api_resources/radar/test_value_list.py
tests/api_resources/radar/test_value_list_item.py
tests/api_resources/reporting/__init__.py
tests/api_resources/reporting/test_report_run.py
tests/api_resources/reporting/test_report_type.py
tests/api_resources/sigma/__init__.py
tests/api_resources/sigma/test_scheduled_query_run.py
tests/api_resources/terminal/__init__.py
tests/api_resources/terminal/test_connection_token.py
tests/api_resources/terminal/test_location.py
tests/api_resources/terminal/test_reader.py
tests/services/test_file_upload.py
tests/services/test_oauth.py
tests/services/test_quote.py