stripe 19.2.0.pre.alpha.2 → 19.2.0.pre.alpha.3

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2972dbc5bb1450dc0cb3a1799657738b017edadc861dd338feb46a87f031c237
4
- data.tar.gz: 19fe85021de82abcd36baba74e9b192567d02370d2edc3209fe09f3d24f14b77
3
+ metadata.gz: 5349d2d0729ac1d614be1a7b34108eaaca143d1388ab68eac21bcf6a163d3ef8
4
+ data.tar.gz: b37d3f8023e4e59dd2866ee615eedca097bba3b5723ec6a0c00fbe7299011919
5
5
  SHA512:
6
- metadata.gz: 2f8894aa9596d34fae67f0a5037d01f16f1ec1f51e9f6b7d9ee8c428c1a29fbbf6fa94650d4f78e8fa611f182438da6e3d0deb543b0243bd74deb63fba1e677a
7
- data.tar.gz: 2d45f80604e7cbc3ba24a044d31ac4621525711b14fa4026d1d29106c1b2cd6410e898eeef7bb3e581cc7cc57007cb4b4e48c6479d1842b9b29dafd7c7393a5c
6
+ metadata.gz: 834fc33b1f6572b7568b3d01841d7e9a12e0ddf149e8540fdf1ae9246e901a133bf2af1b7060e327e4f5384dc92563e3786cb54cafdba42291800f12d73d96f5
7
+ data.tar.gz: a6357e18486ae8f2093d3a5fefd9989b204b98fa557dffbc80da500e5af149354629ab153e2da4cb170dc9fa0953ada76132b10a8f0679ac9672e881ddfd2b56
@@ -203,6 +203,15 @@ module Stripe
203
203
  end
204
204
 
205
205
  class Lead < ::Stripe::RequestParams
206
+ class DebitCard < ::Stripe::RequestParams
207
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
208
+ attr_accessor :requested
209
+
210
+ def initialize(requested: nil)
211
+ @requested = requested
212
+ end
213
+ end
214
+
206
215
  class PrepaidCard < ::Stripe::RequestParams
207
216
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
208
217
  attr_accessor :requested
@@ -211,10 +220,13 @@ module Stripe
211
220
  @requested = requested
212
221
  end
213
222
  end
223
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
224
+ attr_accessor :debit_card
214
225
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
215
226
  attr_accessor :prepaid_card
216
227
 
217
- def initialize(prepaid_card: nil)
228
+ def initialize(debit_card: nil, prepaid_card: nil)
229
+ @debit_card = debit_card
218
230
  @prepaid_card = prepaid_card
219
231
  end
220
232
  end
@@ -2557,6 +2569,65 @@ module Stripe
2557
2569
  end
2558
2570
 
2559
2571
  class Lead < ::Stripe::RequestParams
2572
+ class DebitCard < ::Stripe::RequestParams
2573
+ class BankTerms < ::Stripe::RequestParams
2574
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2575
+ attr_accessor :date
2576
+ # The IP address from which the Account's representative accepted the terms of service.
2577
+ attr_accessor :ip
2578
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2579
+ attr_accessor :user_agent
2580
+
2581
+ def initialize(date: nil, ip: nil, user_agent: nil)
2582
+ @date = date
2583
+ @ip = ip
2584
+ @user_agent = user_agent
2585
+ end
2586
+ end
2587
+
2588
+ class FinancingDisclosures < ::Stripe::RequestParams
2589
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2590
+ attr_accessor :date
2591
+ # The IP address from which the Account's representative accepted the terms of service.
2592
+ attr_accessor :ip
2593
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2594
+ attr_accessor :user_agent
2595
+
2596
+ def initialize(date: nil, ip: nil, user_agent: nil)
2597
+ @date = date
2598
+ @ip = ip
2599
+ @user_agent = user_agent
2600
+ end
2601
+ end
2602
+
2603
+ class Platform < ::Stripe::RequestParams
2604
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2605
+ attr_accessor :date
2606
+ # The IP address from which the Account's representative accepted the terms of service.
2607
+ attr_accessor :ip
2608
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2609
+ attr_accessor :user_agent
2610
+
2611
+ def initialize(date: nil, ip: nil, user_agent: nil)
2612
+ @date = date
2613
+ @ip = ip
2614
+ @user_agent = user_agent
2615
+ end
2616
+ end
2617
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2618
+ attr_accessor :bank_terms
2619
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2620
+ attr_accessor :financing_disclosures
2621
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2622
+ attr_accessor :platform
2623
+
2624
+ def initialize(bank_terms: nil, financing_disclosures: nil, platform: nil)
2625
+ @bank_terms = bank_terms
2626
+ @financing_disclosures = financing_disclosures
2627
+ @platform = platform
2628
+ end
2629
+ end
2630
+
2560
2631
  class PrepaidCard < ::Stripe::RequestParams
2561
2632
  class BankTerms < ::Stripe::RequestParams
2562
2633
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -2615,10 +2686,13 @@ module Stripe
2615
2686
  @platform = platform
2616
2687
  end
2617
2688
  end
2689
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
2690
+ attr_accessor :debit_card
2618
2691
  # Terms of service acceptances for consumer issuing prepaid cards with Lead as BIN sponsor.
2619
2692
  attr_accessor :prepaid_card
2620
2693
 
2621
- def initialize(prepaid_card: nil)
2694
+ def initialize(debit_card: nil, prepaid_card: nil)
2695
+ @debit_card = debit_card
2622
2696
  @prepaid_card = prepaid_card
2623
2697
  end
2624
2698
  end
@@ -203,6 +203,15 @@ module Stripe
203
203
  end
204
204
 
205
205
  class Lead < ::Stripe::RequestParams
206
+ class DebitCard < ::Stripe::RequestParams
207
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
208
+ attr_accessor :requested
209
+
210
+ def initialize(requested: nil)
211
+ @requested = requested
212
+ end
213
+ end
214
+
206
215
  class PrepaidCard < ::Stripe::RequestParams
207
216
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
208
217
  attr_accessor :requested
@@ -211,10 +220,13 @@ module Stripe
211
220
  @requested = requested
212
221
  end
213
222
  end
223
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
224
+ attr_accessor :debit_card
214
225
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
215
226
  attr_accessor :prepaid_card
216
227
 
217
- def initialize(prepaid_card: nil)
228
+ def initialize(debit_card: nil, prepaid_card: nil)
229
+ @debit_card = debit_card
218
230
  @prepaid_card = prepaid_card
219
231
  end
220
232
  end
@@ -2586,6 +2598,65 @@ module Stripe
2586
2598
  end
2587
2599
  end
2588
2600
 
2601
+ class DebitCard < ::Stripe::RequestParams
2602
+ class BankTerms < ::Stripe::RequestParams
2603
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2604
+ attr_accessor :date
2605
+ # The IP address from which the Account's representative accepted the terms of service.
2606
+ attr_accessor :ip
2607
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2608
+ attr_accessor :user_agent
2609
+
2610
+ def initialize(date: nil, ip: nil, user_agent: nil)
2611
+ @date = date
2612
+ @ip = ip
2613
+ @user_agent = user_agent
2614
+ end
2615
+ end
2616
+
2617
+ class FinancingDisclosures < ::Stripe::RequestParams
2618
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2619
+ attr_accessor :date
2620
+ # The IP address from which the Account's representative accepted the terms of service.
2621
+ attr_accessor :ip
2622
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2623
+ attr_accessor :user_agent
2624
+
2625
+ def initialize(date: nil, ip: nil, user_agent: nil)
2626
+ @date = date
2627
+ @ip = ip
2628
+ @user_agent = user_agent
2629
+ end
2630
+ end
2631
+
2632
+ class Platform < ::Stripe::RequestParams
2633
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
2634
+ attr_accessor :date
2635
+ # The IP address from which the Account's representative accepted the terms of service.
2636
+ attr_accessor :ip
2637
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
2638
+ attr_accessor :user_agent
2639
+
2640
+ def initialize(date: nil, ip: nil, user_agent: nil)
2641
+ @date = date
2642
+ @ip = ip
2643
+ @user_agent = user_agent
2644
+ end
2645
+ end
2646
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2647
+ attr_accessor :bank_terms
2648
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2649
+ attr_accessor :financing_disclosures
2650
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
2651
+ attr_accessor :platform
2652
+
2653
+ def initialize(bank_terms: nil, financing_disclosures: nil, platform: nil)
2654
+ @bank_terms = bank_terms
2655
+ @financing_disclosures = financing_disclosures
2656
+ @platform = platform
2657
+ end
2658
+ end
2659
+
2589
2660
  class PrepaidCard < ::Stripe::RequestParams
2590
2661
  class BankTerms < ::Stripe::RequestParams
2591
2662
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -2646,11 +2717,14 @@ module Stripe
2646
2717
  end
2647
2718
  # Terms of service acceptances for consumer issuing Apple Pay cards with Lead as BIN sponsor.
2648
2719
  attr_accessor :apple_pay
2720
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
2721
+ attr_accessor :debit_card
2649
2722
  # Terms of service acceptances for consumer issuing prepaid cards with Lead as BIN sponsor.
2650
2723
  attr_accessor :prepaid_card
2651
2724
 
2652
- def initialize(apple_pay: nil, prepaid_card: nil)
2725
+ def initialize(apple_pay: nil, debit_card: nil, prepaid_card: nil)
2653
2726
  @apple_pay = apple_pay
2727
+ @debit_card = debit_card
2654
2728
  @prepaid_card = prepaid_card
2655
2729
  end
2656
2730
  end
@@ -458,6 +458,35 @@ module Stripe
458
458
  end
459
459
 
460
460
  class Lead < ::Stripe::StripeObject
461
+ class DebitCard < ::Stripe::StripeObject
462
+ class StatusDetail < ::Stripe::StripeObject
463
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
464
+ attr_reader :code
465
+ # Machine-readable code explaining how to make the Capability active.
466
+ attr_reader :resolution
467
+
468
+ def self.inner_class_types
469
+ @inner_class_types = {}
470
+ end
471
+
472
+ def self.field_remappings
473
+ @field_remappings = {}
474
+ end
475
+ end
476
+ # The status of the Capability.
477
+ attr_reader :status
478
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
479
+ attr_reader :status_details
480
+
481
+ def self.inner_class_types
482
+ @inner_class_types = { status_details: StatusDetail }
483
+ end
484
+
485
+ def self.field_remappings
486
+ @field_remappings = {}
487
+ end
488
+ end
489
+
461
490
  class PrepaidCard < ::Stripe::StripeObject
462
491
  class StatusDetail < ::Stripe::StripeObject
463
492
  # Machine-readable code explaining the reason for the Capability to be in its current status.
@@ -486,11 +515,13 @@ module Stripe
486
515
  @field_remappings = {}
487
516
  end
488
517
  end
518
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
519
+ attr_reader :debit_card
489
520
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
490
521
  attr_reader :prepaid_card
491
522
 
492
523
  def self.inner_class_types
493
- @inner_class_types = { prepaid_card: PrepaidCard }
524
+ @inner_class_types = { debit_card: DebitCard, prepaid_card: PrepaidCard }
494
525
  end
495
526
 
496
527
  def self.field_remappings
@@ -4688,6 +4719,83 @@ module Stripe
4688
4719
  end
4689
4720
  end
4690
4721
 
4722
+ class DebitCard < ::Stripe::StripeObject
4723
+ class BankTerms < ::Stripe::StripeObject
4724
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
4725
+ attr_reader :date
4726
+ # The IP address from which the Account's representative accepted the terms of service.
4727
+ attr_reader :ip
4728
+ # The URL to the service agreement the Account's representative accepted.
4729
+ attr_reader :url
4730
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
4731
+ attr_reader :user_agent
4732
+
4733
+ def self.inner_class_types
4734
+ @inner_class_types = {}
4735
+ end
4736
+
4737
+ def self.field_remappings
4738
+ @field_remappings = {}
4739
+ end
4740
+ end
4741
+
4742
+ class FinancingDisclosures < ::Stripe::StripeObject
4743
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
4744
+ attr_reader :date
4745
+ # The IP address from which the Account's representative accepted the terms of service.
4746
+ attr_reader :ip
4747
+ # The URL to the service agreement the Account's representative accepted.
4748
+ attr_reader :url
4749
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
4750
+ attr_reader :user_agent
4751
+
4752
+ def self.inner_class_types
4753
+ @inner_class_types = {}
4754
+ end
4755
+
4756
+ def self.field_remappings
4757
+ @field_remappings = {}
4758
+ end
4759
+ end
4760
+
4761
+ class Platform < ::Stripe::StripeObject
4762
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
4763
+ attr_reader :date
4764
+ # The IP address from which the Account's representative accepted the terms of service.
4765
+ attr_reader :ip
4766
+ # The URL to the service agreement the Account's representative accepted.
4767
+ attr_reader :url
4768
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
4769
+ attr_reader :user_agent
4770
+
4771
+ def self.inner_class_types
4772
+ @inner_class_types = {}
4773
+ end
4774
+
4775
+ def self.field_remappings
4776
+ @field_remappings = {}
4777
+ end
4778
+ end
4779
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
4780
+ attr_reader :bank_terms
4781
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
4782
+ attr_reader :financing_disclosures
4783
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
4784
+ attr_reader :platform
4785
+
4786
+ def self.inner_class_types
4787
+ @inner_class_types = {
4788
+ bank_terms: BankTerms,
4789
+ financing_disclosures: FinancingDisclosures,
4790
+ platform: Platform,
4791
+ }
4792
+ end
4793
+
4794
+ def self.field_remappings
4795
+ @field_remappings = {}
4796
+ end
4797
+ end
4798
+
4691
4799
  class PrepaidCard < ::Stripe::StripeObject
4692
4800
  class BankTerms < ::Stripe::StripeObject
4693
4801
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -4766,11 +4874,17 @@ module Stripe
4766
4874
  end
4767
4875
  # Terms of service acceptances for commercial issuing Apple Pay cards with Lead as BIN sponsor.
4768
4876
  attr_reader :apple_pay
4877
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
4878
+ attr_reader :debit_card
4769
4879
  # Terms of service acceptances for commercial issuing revolving credit cards with Lead as BIN sponsor.
4770
4880
  attr_reader :prepaid_card
4771
4881
 
4772
4882
  def self.inner_class_types
4773
- @inner_class_types = { apple_pay: ApplePay, prepaid_card: PrepaidCard }
4883
+ @inner_class_types = {
4884
+ apple_pay: ApplePay,
4885
+ debit_card: DebitCard,
4886
+ prepaid_card: PrepaidCard,
4887
+ }
4774
4888
  end
4775
4889
 
4776
4890
  def self.field_remappings
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stripe
4
- VERSION = "19.2.0-alpha.2"
4
+ VERSION = "19.2.0-alpha.3"
5
5
  end
data/rbi/stripe.rbi CHANGED
@@ -74986,6 +74986,34 @@ module Stripe
74986
74986
  end
74987
74987
  end
74988
74988
  class Lead < ::Stripe::StripeObject
74989
+ class DebitCard < ::Stripe::StripeObject
74990
+ class StatusDetail < ::Stripe::StripeObject
74991
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
74992
+ sig { returns(String) }
74993
+ def code; end
74994
+ # Machine-readable code explaining how to make the Capability active.
74995
+ sig { returns(String) }
74996
+ def resolution; end
74997
+ def self.inner_class_types
74998
+ @inner_class_types = {}
74999
+ end
75000
+ def self.field_remappings
75001
+ @field_remappings = {}
75002
+ end
75003
+ end
75004
+ # The status of the Capability.
75005
+ sig { returns(String) }
75006
+ def status; end
75007
+ # Additional details about the capability's status. This value is empty when `status` is `active`.
75008
+ sig { returns(T::Array[StatusDetail]) }
75009
+ def status_details; end
75010
+ def self.inner_class_types
75011
+ @inner_class_types = {status_details: StatusDetail}
75012
+ end
75013
+ def self.field_remappings
75014
+ @field_remappings = {}
75015
+ end
75016
+ end
74989
75017
  class PrepaidCard < ::Stripe::StripeObject
74990
75018
  class StatusDetail < ::Stripe::StripeObject
74991
75019
  # Machine-readable code explaining the reason for the Capability to be in its current status.
@@ -75014,11 +75042,14 @@ module Stripe
75014
75042
  @field_remappings = {}
75015
75043
  end
75016
75044
  end
75045
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
75046
+ sig { returns(T.nilable(DebitCard)) }
75047
+ def debit_card; end
75017
75048
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
75018
75049
  sig { returns(T.nilable(PrepaidCard)) }
75019
75050
  def prepaid_card; end
75020
75051
  def self.inner_class_types
75021
- @inner_class_types = {prepaid_card: PrepaidCard}
75052
+ @inner_class_types = {debit_card: DebitCard, prepaid_card: PrepaidCard}
75022
75053
  end
75023
75054
  def self.field_remappings
75024
75055
  @field_remappings = {}
@@ -79269,6 +79300,87 @@ module Stripe
79269
79300
  @field_remappings = {}
79270
79301
  end
79271
79302
  end
79303
+ class DebitCard < ::Stripe::StripeObject
79304
+ class BankTerms < ::Stripe::StripeObject
79305
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
79306
+ sig { returns(T.nilable(String)) }
79307
+ def date; end
79308
+ # The IP address from which the Account's representative accepted the terms of service.
79309
+ sig { returns(T.nilable(String)) }
79310
+ def ip; end
79311
+ # The URL to the service agreement the Account's representative accepted.
79312
+ sig { returns(T.nilable(String)) }
79313
+ def url; end
79314
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
79315
+ sig { returns(T.nilable(String)) }
79316
+ def user_agent; end
79317
+ def self.inner_class_types
79318
+ @inner_class_types = {}
79319
+ end
79320
+ def self.field_remappings
79321
+ @field_remappings = {}
79322
+ end
79323
+ end
79324
+ class FinancingDisclosures < ::Stripe::StripeObject
79325
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
79326
+ sig { returns(T.nilable(String)) }
79327
+ def date; end
79328
+ # The IP address from which the Account's representative accepted the terms of service.
79329
+ sig { returns(T.nilable(String)) }
79330
+ def ip; end
79331
+ # The URL to the service agreement the Account's representative accepted.
79332
+ sig { returns(T.nilable(String)) }
79333
+ def url; end
79334
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
79335
+ sig { returns(T.nilable(String)) }
79336
+ def user_agent; end
79337
+ def self.inner_class_types
79338
+ @inner_class_types = {}
79339
+ end
79340
+ def self.field_remappings
79341
+ @field_remappings = {}
79342
+ end
79343
+ end
79344
+ class Platform < ::Stripe::StripeObject
79345
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
79346
+ sig { returns(T.nilable(String)) }
79347
+ def date; end
79348
+ # The IP address from which the Account's representative accepted the terms of service.
79349
+ sig { returns(T.nilable(String)) }
79350
+ def ip; end
79351
+ # The URL to the service agreement the Account's representative accepted.
79352
+ sig { returns(T.nilable(String)) }
79353
+ def url; end
79354
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
79355
+ sig { returns(T.nilable(String)) }
79356
+ def user_agent; end
79357
+ def self.inner_class_types
79358
+ @inner_class_types = {}
79359
+ end
79360
+ def self.field_remappings
79361
+ @field_remappings = {}
79362
+ end
79363
+ end
79364
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
79365
+ sig { returns(T.nilable(BankTerms)) }
79366
+ def bank_terms; end
79367
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
79368
+ sig { returns(T.nilable(FinancingDisclosures)) }
79369
+ def financing_disclosures; end
79370
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
79371
+ sig { returns(T.nilable(Platform)) }
79372
+ def platform; end
79373
+ def self.inner_class_types
79374
+ @inner_class_types = {
79375
+ bank_terms: BankTerms,
79376
+ financing_disclosures: FinancingDisclosures,
79377
+ platform: Platform,
79378
+ }
79379
+ end
79380
+ def self.field_remappings
79381
+ @field_remappings = {}
79382
+ end
79383
+ end
79272
79384
  class PrepaidCard < ::Stripe::StripeObject
79273
79385
  class BankTerms < ::Stripe::StripeObject
79274
79386
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -79353,11 +79465,18 @@ module Stripe
79353
79465
  # Terms of service acceptances for commercial issuing Apple Pay cards with Lead as BIN sponsor.
79354
79466
  sig { returns(T.nilable(ApplePay)) }
79355
79467
  def apple_pay; end
79468
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
79469
+ sig { returns(T.nilable(DebitCard)) }
79470
+ def debit_card; end
79356
79471
  # Terms of service acceptances for commercial issuing revolving credit cards with Lead as BIN sponsor.
79357
79472
  sig { returns(T.nilable(PrepaidCard)) }
79358
79473
  def prepaid_card; end
79359
79474
  def self.inner_class_types
79360
- @inner_class_types = {apple_pay: ApplePay, prepaid_card: PrepaidCard}
79475
+ @inner_class_types = {
79476
+ apple_pay: ApplePay,
79477
+ debit_card: DebitCard,
79478
+ prepaid_card: PrepaidCard,
79479
+ }
79361
79480
  end
79362
79481
  def self.field_remappings
79363
79482
  @field_remappings = {}
@@ -254421,6 +254540,15 @@ module Stripe
254421
254540
  def initialize(prepaid_card: nil); end
254422
254541
  end
254423
254542
  class Lead < ::Stripe::RequestParams
254543
+ class DebitCard < ::Stripe::RequestParams
254544
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
254545
+ sig { returns(T::Boolean) }
254546
+ def requested; end
254547
+ sig { params(_requested: T::Boolean).returns(T::Boolean) }
254548
+ def requested=(_requested); end
254549
+ sig { params(requested: T::Boolean).void }
254550
+ def initialize(requested: nil); end
254551
+ end
254424
254552
  class PrepaidCard < ::Stripe::RequestParams
254425
254553
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
254426
254554
  sig { returns(T::Boolean) }
@@ -254430,6 +254558,15 @@ module Stripe
254430
254558
  sig { params(requested: T::Boolean).void }
254431
254559
  def initialize(requested: nil); end
254432
254560
  end
254561
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
254562
+ sig {
254563
+ returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard))
254564
+ }
254565
+ def debit_card; end
254566
+ sig {
254567
+ params(_debit_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard)).returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard))
254568
+ }
254569
+ def debit_card=(_debit_card); end
254433
254570
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
254434
254571
  sig {
254435
254572
  returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard))
@@ -254440,9 +254577,9 @@ module Stripe
254440
254577
  }
254441
254578
  def prepaid_card=(_prepaid_card); end
254442
254579
  sig {
254443
- params(prepaid_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard)).void
254580
+ params(debit_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard), prepaid_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard)).void
254444
254581
  }
254445
- def initialize(prepaid_card: nil); end
254582
+ def initialize(debit_card: nil, prepaid_card: nil); end
254446
254583
  end
254447
254584
  # Can create consumer issuing cards with Celtic as BIN sponsor.
254448
254585
  sig {
@@ -258109,6 +258246,100 @@ module Stripe
258109
258246
  def initialize(date: nil, ip: nil, user_agent: nil); end
258110
258247
  end
258111
258248
  class Lead < ::Stripe::RequestParams
258249
+ class DebitCard < ::Stripe::RequestParams
258250
+ class BankTerms < ::Stripe::RequestParams
258251
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
258252
+ sig { returns(String) }
258253
+ def date; end
258254
+ sig { params(_date: String).returns(String) }
258255
+ def date=(_date); end
258256
+ # The IP address from which the Account's representative accepted the terms of service.
258257
+ sig { returns(String) }
258258
+ def ip; end
258259
+ sig { params(_ip: String).returns(String) }
258260
+ def ip=(_ip); end
258261
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
258262
+ sig { returns(T.nilable(String)) }
258263
+ def user_agent; end
258264
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
258265
+ def user_agent=(_user_agent); end
258266
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
258267
+ def initialize(date: nil, ip: nil, user_agent: nil); end
258268
+ end
258269
+ class FinancingDisclosures < ::Stripe::RequestParams
258270
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
258271
+ sig { returns(String) }
258272
+ def date; end
258273
+ sig { params(_date: String).returns(String) }
258274
+ def date=(_date); end
258275
+ # The IP address from which the Account's representative accepted the terms of service.
258276
+ sig { returns(String) }
258277
+ def ip; end
258278
+ sig { params(_ip: String).returns(String) }
258279
+ def ip=(_ip); end
258280
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
258281
+ sig { returns(T.nilable(String)) }
258282
+ def user_agent; end
258283
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
258284
+ def user_agent=(_user_agent); end
258285
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
258286
+ def initialize(date: nil, ip: nil, user_agent: nil); end
258287
+ end
258288
+ class Platform < ::Stripe::RequestParams
258289
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
258290
+ sig { returns(String) }
258291
+ def date; end
258292
+ sig { params(_date: String).returns(String) }
258293
+ def date=(_date); end
258294
+ # The IP address from which the Account's representative accepted the terms of service.
258295
+ sig { returns(String) }
258296
+ def ip; end
258297
+ sig { params(_ip: String).returns(String) }
258298
+ def ip=(_ip); end
258299
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
258300
+ sig { returns(T.nilable(String)) }
258301
+ def user_agent; end
258302
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
258303
+ def user_agent=(_user_agent); end
258304
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
258305
+ def initialize(date: nil, ip: nil, user_agent: nil); end
258306
+ end
258307
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
258308
+ sig {
258309
+ returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms))
258310
+ }
258311
+ def bank_terms; end
258312
+ sig {
258313
+ params(_bank_terms: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms)).returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms))
258314
+ }
258315
+ def bank_terms=(_bank_terms); end
258316
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
258317
+ sig {
258318
+ returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures))
258319
+ }
258320
+ def financing_disclosures; end
258321
+ sig {
258322
+ params(_financing_disclosures: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures)).returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures))
258323
+ }
258324
+ def financing_disclosures=(_financing_disclosures); end
258325
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
258326
+ sig {
258327
+ returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform))
258328
+ }
258329
+ def platform; end
258330
+ sig {
258331
+ params(_platform: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform)).returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform))
258332
+ }
258333
+ def platform=(_platform); end
258334
+ sig {
258335
+ params(bank_terms: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms), financing_disclosures: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures), platform: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform)).void
258336
+ }
258337
+ def initialize(
258338
+ bank_terms: nil,
258339
+ financing_disclosures: nil,
258340
+ platform: nil
258341
+ ); end
258342
+ end
258112
258343
  class PrepaidCard < ::Stripe::RequestParams
258113
258344
  class BankTerms < ::Stripe::RequestParams
258114
258345
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -258203,6 +258434,15 @@ module Stripe
258203
258434
  platform: nil
258204
258435
  ); end
258205
258436
  end
258437
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
258438
+ sig {
258439
+ returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard))
258440
+ }
258441
+ def debit_card; end
258442
+ sig {
258443
+ params(_debit_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard)).returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard))
258444
+ }
258445
+ def debit_card=(_debit_card); end
258206
258446
  # Terms of service acceptances for consumer issuing prepaid cards with Lead as BIN sponsor.
258207
258447
  sig {
258208
258448
  returns(T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard))
@@ -258213,9 +258453,9 @@ module Stripe
258213
258453
  }
258214
258454
  def prepaid_card=(_prepaid_card); end
258215
258455
  sig {
258216
- params(prepaid_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard)).void
258456
+ params(debit_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard), prepaid_card: T.nilable(::Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard)).void
258217
258457
  }
258218
- def initialize(prepaid_card: nil); end
258458
+ def initialize(debit_card: nil, prepaid_card: nil); end
258219
258459
  end
258220
258460
  # Terms of service acceptances for Stripe consumer card issuing.
258221
258461
  sig {
@@ -260333,6 +260573,15 @@ module Stripe
260333
260573
  def initialize(prepaid_card: nil); end
260334
260574
  end
260335
260575
  class Lead < ::Stripe::RequestParams
260576
+ class DebitCard < ::Stripe::RequestParams
260577
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
260578
+ sig { returns(T.nilable(T::Boolean)) }
260579
+ def requested; end
260580
+ sig { params(_requested: T.nilable(T::Boolean)).returns(T.nilable(T::Boolean)) }
260581
+ def requested=(_requested); end
260582
+ sig { params(requested: T.nilable(T::Boolean)).void }
260583
+ def initialize(requested: nil); end
260584
+ end
260336
260585
  class PrepaidCard < ::Stripe::RequestParams
260337
260586
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
260338
260587
  sig { returns(T.nilable(T::Boolean)) }
@@ -260342,6 +260591,15 @@ module Stripe
260342
260591
  sig { params(requested: T.nilable(T::Boolean)).void }
260343
260592
  def initialize(requested: nil); end
260344
260593
  end
260594
+ # Can create consumer issuing debit cards with Lead as BIN sponsor.
260595
+ sig {
260596
+ returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard))
260597
+ }
260598
+ def debit_card; end
260599
+ sig {
260600
+ params(_debit_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard))
260601
+ }
260602
+ def debit_card=(_debit_card); end
260345
260603
  # Can create consumer issuing prepaid cards with Lead as BIN sponsor.
260346
260604
  sig {
260347
260605
  returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard))
@@ -260352,9 +260610,9 @@ module Stripe
260352
260610
  }
260353
260611
  def prepaid_card=(_prepaid_card); end
260354
260612
  sig {
260355
- params(prepaid_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard)).void
260613
+ params(debit_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::DebitCard), prepaid_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Consumer::Lead::PrepaidCard)).void
260356
260614
  }
260357
- def initialize(prepaid_card: nil); end
260615
+ def initialize(debit_card: nil, prepaid_card: nil); end
260358
260616
  end
260359
260617
  # Can create consumer issuing cards with Celtic as BIN sponsor.
260360
260618
  sig {
@@ -264124,6 +264382,106 @@ module Stripe
264124
264382
  }
264125
264383
  def initialize(date: nil, ip: nil, user_agent: nil); end
264126
264384
  end
264385
+ class DebitCard < ::Stripe::RequestParams
264386
+ class BankTerms < ::Stripe::RequestParams
264387
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
264388
+ sig { returns(T.nilable(String)) }
264389
+ def date; end
264390
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
264391
+ def date=(_date); end
264392
+ # The IP address from which the Account's representative accepted the terms of service.
264393
+ sig { returns(T.nilable(String)) }
264394
+ def ip; end
264395
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
264396
+ def ip=(_ip); end
264397
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
264398
+ sig { returns(T.nilable(String)) }
264399
+ def user_agent; end
264400
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
264401
+ def user_agent=(_user_agent); end
264402
+ sig {
264403
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
264404
+ }
264405
+ def initialize(date: nil, ip: nil, user_agent: nil); end
264406
+ end
264407
+ class FinancingDisclosures < ::Stripe::RequestParams
264408
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
264409
+ sig { returns(T.nilable(String)) }
264410
+ def date; end
264411
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
264412
+ def date=(_date); end
264413
+ # The IP address from which the Account's representative accepted the terms of service.
264414
+ sig { returns(T.nilable(String)) }
264415
+ def ip; end
264416
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
264417
+ def ip=(_ip); end
264418
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
264419
+ sig { returns(T.nilable(String)) }
264420
+ def user_agent; end
264421
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
264422
+ def user_agent=(_user_agent); end
264423
+ sig {
264424
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
264425
+ }
264426
+ def initialize(date: nil, ip: nil, user_agent: nil); end
264427
+ end
264428
+ class Platform < ::Stripe::RequestParams
264429
+ # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
264430
+ sig { returns(T.nilable(String)) }
264431
+ def date; end
264432
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
264433
+ def date=(_date); end
264434
+ # The IP address from which the Account's representative accepted the terms of service.
264435
+ sig { returns(T.nilable(String)) }
264436
+ def ip; end
264437
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
264438
+ def ip=(_ip); end
264439
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
264440
+ sig { returns(T.nilable(String)) }
264441
+ def user_agent; end
264442
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
264443
+ def user_agent=(_user_agent); end
264444
+ sig {
264445
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
264446
+ }
264447
+ def initialize(date: nil, ip: nil, user_agent: nil); end
264448
+ end
264449
+ # Bank terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
264450
+ sig {
264451
+ returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms))
264452
+ }
264453
+ def bank_terms; end
264454
+ sig {
264455
+ params(_bank_terms: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms))
264456
+ }
264457
+ def bank_terms=(_bank_terms); end
264458
+ # Financial disclosures terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
264459
+ sig {
264460
+ returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures))
264461
+ }
264462
+ def financing_disclosures; end
264463
+ sig {
264464
+ params(_financing_disclosures: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures))
264465
+ }
264466
+ def financing_disclosures=(_financing_disclosures); end
264467
+ # Platform terms of service acceptance for consumer issuing debit cards with Lead as BIN sponsor.
264468
+ sig {
264469
+ returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform))
264470
+ }
264471
+ def platform; end
264472
+ sig {
264473
+ params(_platform: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform))
264474
+ }
264475
+ def platform=(_platform); end
264476
+ sig {
264477
+ params(bank_terms: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::BankTerms), financing_disclosures: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::FinancingDisclosures), platform: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard::Platform)).void
264478
+ }
264479
+ def initialize(
264480
+ bank_terms: nil,
264481
+ financing_disclosures: nil,
264482
+ platform: nil
264483
+ ); end
264484
+ end
264127
264485
  class PrepaidCard < ::Stripe::RequestParams
264128
264486
  class BankTerms < ::Stripe::RequestParams
264129
264487
  # The time when the Account's representative accepted the terms of service. Represented as a RFC 3339 date & time UTC value in millisecond precision, for example: 2022-09-18T13:22:18.123Z.
@@ -264233,6 +264591,15 @@ module Stripe
264233
264591
  params(_apple_pay: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::ApplePay)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::ApplePay))
264234
264592
  }
264235
264593
  def apple_pay=(_apple_pay); end
264594
+ # Terms of service acceptances for consumer issuing debit cards with Lead as BIN sponsor.
264595
+ sig {
264596
+ returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard))
264597
+ }
264598
+ def debit_card; end
264599
+ sig {
264600
+ params(_debit_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard)).returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard))
264601
+ }
264602
+ def debit_card=(_debit_card); end
264236
264603
  # Terms of service acceptances for consumer issuing prepaid cards with Lead as BIN sponsor.
264237
264604
  sig {
264238
264605
  returns(T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard))
@@ -264243,9 +264610,9 @@ module Stripe
264243
264610
  }
264244
264611
  def prepaid_card=(_prepaid_card); end
264245
264612
  sig {
264246
- params(apple_pay: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::ApplePay), prepaid_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard)).void
264613
+ params(apple_pay: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::ApplePay), debit_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::DebitCard), prepaid_card: T.nilable(::Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Consumer::Lead::PrepaidCard)).void
264247
264614
  }
264248
- def initialize(apple_pay: nil, prepaid_card: nil); end
264615
+ def initialize(apple_pay: nil, debit_card: nil, prepaid_card: nil); end
264249
264616
  end
264250
264617
  # Terms of service acceptances for Stripe consumer card issuing.
264251
264618
  sig {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stripe
3
3
  version: !ruby/object:Gem::Version
4
- version: 19.2.0.pre.alpha.2
4
+ version: 19.2.0.pre.alpha.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-04-28 00:00:00.000000000 Z
11
+ date: 2026-04-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bigdecimal