stripe 17.2.0.pre.alpha.1 → 17.2.0.pre.alpha.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.
data/rbi/stripe.rbi CHANGED
@@ -17857,6 +17857,9 @@ module Stripe
17857
17857
  # The URL to the order status.
17858
17858
  sig { returns(T.nilable(String)) }
17859
17859
  def order_status_url; end
17860
+ # The seller's order identifier.
17861
+ sig { returns(T.nilable(String)) }
17862
+ def order_id; end
17860
17863
  def self.inner_class_types
17861
17864
  @inner_class_types = {}
17862
17865
  end
@@ -17889,6 +17892,86 @@ module Stripe
17889
17892
  @field_remappings = {}
17890
17893
  end
17891
17894
  end
17895
+ class PaymentMethodPreview < ::Stripe::StripeObject
17896
+ class BillingDetails < ::Stripe::StripeObject
17897
+ class Address < ::Stripe::StripeObject
17898
+ # City, district, suburb, town, or village.
17899
+ sig { returns(String) }
17900
+ def city; end
17901
+ # Two-letter country code ([ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2)).
17902
+ sig { returns(String) }
17903
+ def country; end
17904
+ # Address line 1, such as the street, PO Box, or company name.
17905
+ sig { returns(String) }
17906
+ def line1; end
17907
+ # Address line 2, such as the apartment, suite, unit, or building.
17908
+ sig { returns(T.nilable(String)) }
17909
+ def line2; end
17910
+ # ZIP or postal code.
17911
+ sig { returns(String) }
17912
+ def postal_code; end
17913
+ # State, county, province, or region.
17914
+ sig { returns(String) }
17915
+ def state; end
17916
+ def self.inner_class_types
17917
+ @inner_class_types = {}
17918
+ end
17919
+ def self.field_remappings
17920
+ @field_remappings = {}
17921
+ end
17922
+ end
17923
+ # The billing address.
17924
+ sig { returns(T.nilable(Address)) }
17925
+ def address; end
17926
+ # The email address for the billing details.
17927
+ sig { returns(T.nilable(String)) }
17928
+ def email; end
17929
+ # The name for the billing details.
17930
+ sig { returns(T.nilable(String)) }
17931
+ def name; end
17932
+ # The phone number for the billing details.
17933
+ sig { returns(T.nilable(String)) }
17934
+ def phone; end
17935
+ def self.inner_class_types
17936
+ @inner_class_types = {address: Address}
17937
+ end
17938
+ def self.field_remappings
17939
+ @field_remappings = {}
17940
+ end
17941
+ end
17942
+ class Card < ::Stripe::StripeObject
17943
+ # The expiry month of the card.
17944
+ sig { returns(Integer) }
17945
+ def exp_month; end
17946
+ # The expiry year of the card.
17947
+ sig { returns(Integer) }
17948
+ def exp_year; end
17949
+ # The last 4 digits of the card number.
17950
+ sig { returns(String) }
17951
+ def last4; end
17952
+ def self.inner_class_types
17953
+ @inner_class_types = {}
17954
+ end
17955
+ def self.field_remappings
17956
+ @field_remappings = {}
17957
+ end
17958
+ end
17959
+ # The billing details of the payment method.
17960
+ sig { returns(T.nilable(BillingDetails)) }
17961
+ def billing_details; end
17962
+ # The card details of the payment method.
17963
+ sig { returns(T.nilable(Card)) }
17964
+ def card; end
17965
+ # The type of the payment method.
17966
+ sig { returns(String) }
17967
+ def type; end
17968
+ def self.inner_class_types
17969
+ @inner_class_types = {billing_details: BillingDetails, card: Card}
17970
+ end
17971
+ def self.field_remappings
17972
+ @field_remappings = {}
17973
+ end
17974
+ end
17892
17975
  # The subtotal amount of the requested session.
17893
17976
  sig { returns(Integer) }
17894
17977
  def amount_subtotal; end
@@ -17952,6 +18035,9 @@ module Stripe
17952
18035
  # Time at which the object was last updated. Measured in seconds since the Unix epoch.
17953
18036
  sig { returns(Integer) }
17954
18037
  def updated_at; end
18038
+ # The preview of the payment method to be created when the requested session is confirmed.
18039
+ sig { returns(T.nilable(PaymentMethodPreview)) }
18040
+ def payment_method_preview; end
17955
18041
  # Confirms a requested session
17956
18042
  sig {
17957
18043
  params(params: T.any(::Stripe::DelegatedCheckout::RequestedSessionConfirmParams, T::Hash[T.untyped, T.untyped]), opts: T.untyped).returns(::Stripe::DelegatedCheckout::RequestedSession)
@@ -61703,6 +61789,48 @@ module Stripe
61703
61789
  @field_remappings = {}
61704
61790
  end
61705
61791
  end
61792
+ class Lead < ::Stripe::StripeObject
61793
+ class PrepaidCard < ::Stripe::StripeObject
61794
+ class StatusDetail < ::Stripe::StripeObject
61795
+ # Machine-readable code explaining the reason for the Capability to be in its current status.
61796
+ sig { returns(String) }
61797
+ def code; end
61798
+ # Machine-readable code explaining how to make the Capability active.
61799
+ sig { returns(String) }
61800
+ def resolution; end
61801
+ def self.inner_class_types
61802
+ @inner_class_types = {}
61803
+ end
61804
+ def self.field_remappings
61805
+ @field_remappings = {}
61806
+ end
61807
+ end
61808
+ # Whether the Capability has been requested.
61809
+ sig { returns(T::Boolean) }
61810
+ def requested; end
61811
+ # The status of the Capability.
61812
+ sig { returns(String) }
61813
+ def status; end
61814
+ # Additional details regarding the status of the Capability. `status_details` will be empty if the Capability's status is `active`.
61815
+ sig { returns(T::Array[StatusDetail]) }
61816
+ def status_details; end
61817
+ def self.inner_class_types
61818
+ @inner_class_types = {status_details: StatusDetail}
61819
+ end
61820
+ def self.field_remappings
61821
+ @field_remappings = {}
61822
+ end
61823
+ end
61824
+ # Can create commercial Global(cross border) issuing prepaid cards with Lead as BIN sponsor.
61825
+ sig { returns(T.nilable(PrepaidCard)) }
61826
+ def prepaid_card; end
61827
+ def self.inner_class_types
61828
+ @inner_class_types = {prepaid_card: PrepaidCard}
61829
+ end
61830
+ def self.field_remappings
61831
+ @field_remappings = {}
61832
+ end
61833
+ end
61706
61834
  class Stripe < ::Stripe::StripeObject
61707
61835
  class ChargeCard < ::Stripe::StripeObject
61708
61836
  class StatusDetail < ::Stripe::StripeObject
@@ -61785,6 +61913,9 @@ module Stripe
61785
61913
  # Can create commercial issuing cards with Cross River Bank as BIN sponsor.
61786
61914
  sig { returns(T.nilable(CrossRiverBank)) }
61787
61915
  def cross_river_bank; end
61916
+ # Can create commercial issuing cards with Lead as a BIN sponsor.
61917
+ sig { returns(T.nilable(Lead)) }
61918
+ def lead; end
61788
61919
  # Can create commercial issuing cards with Stripe as a BIN sponsor.
61789
61920
  sig { returns(T.nilable(Stripe)) }
61790
61921
  def stripe; end
@@ -61792,6 +61923,7 @@ module Stripe
61792
61923
  @inner_class_types = {
61793
61924
  celtic: Celtic,
61794
61925
  cross_river_bank: CrossRiverBank,
61926
+ lead: Lead,
61795
61927
  stripe: Stripe,
61796
61928
  }
61797
61929
  end
@@ -65215,6 +65347,114 @@ module Stripe
65215
65347
  @field_remappings = {}
65216
65348
  end
65217
65349
  end
65350
+ class GlobalAccountHolder < ::Stripe::StripeObject
65351
+ # 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.
65352
+ sig { returns(T.nilable(String)) }
65353
+ def date; end
65354
+ # The IP address from which the Account's representative accepted the terms of service.
65355
+ sig { returns(T.nilable(String)) }
65356
+ def ip; end
65357
+ # The URL to the service agreement the Account's representative accepted.
65358
+ sig { returns(T.nilable(String)) }
65359
+ def url; end
65360
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
65361
+ sig { returns(T.nilable(String)) }
65362
+ def user_agent; end
65363
+ def self.inner_class_types
65364
+ @inner_class_types = {}
65365
+ end
65366
+ def self.field_remappings
65367
+ @field_remappings = {}
65368
+ end
65369
+ end
65370
+ class Lead < ::Stripe::StripeObject
65371
+ class ApplePay < ::Stripe::StripeObject
65372
+ # 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.
65373
+ sig { returns(T.nilable(String)) }
65374
+ def date; end
65375
+ # The IP address from which the Account's representative accepted the terms of service.
65376
+ sig { returns(T.nilable(String)) }
65377
+ def ip; end
65378
+ # The URL to the service agreement the Account's representative accepted.
65379
+ sig { returns(T.nilable(String)) }
65380
+ def url; end
65381
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
65382
+ sig { returns(T.nilable(String)) }
65383
+ def user_agent; end
65384
+ def self.inner_class_types
65385
+ @inner_class_types = {}
65386
+ end
65387
+ def self.field_remappings
65388
+ @field_remappings = {}
65389
+ end
65390
+ end
65391
+ class PrepaidCard < ::Stripe::StripeObject
65392
+ class BankTerms < ::Stripe::StripeObject
65393
+ # 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.
65394
+ sig { returns(T.nilable(String)) }
65395
+ def date; end
65396
+ # The IP address from which the Account's representative accepted the terms of service.
65397
+ sig { returns(T.nilable(String)) }
65398
+ def ip; end
65399
+ # The URL to the service agreement the Account's representative accepted.
65400
+ sig { returns(T.nilable(String)) }
65401
+ def url; end
65402
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
65403
+ sig { returns(T.nilable(String)) }
65404
+ def user_agent; end
65405
+ def self.inner_class_types
65406
+ @inner_class_types = {}
65407
+ end
65408
+ def self.field_remappings
65409
+ @field_remappings = {}
65410
+ end
65411
+ end
65412
+ class Platform < ::Stripe::StripeObject
65413
+ # 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.
65414
+ sig { returns(T.nilable(String)) }
65415
+ def date; end
65416
+ # The IP address from which the Account's representative accepted the terms of service.
65417
+ sig { returns(T.nilable(String)) }
65418
+ def ip; end
65419
+ # The URL to the service agreement the Account's representative accepted.
65420
+ sig { returns(T.nilable(String)) }
65421
+ def url; end
65422
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
65423
+ sig { returns(T.nilable(String)) }
65424
+ def user_agent; end
65425
+ def self.inner_class_types
65426
+ @inner_class_types = {}
65427
+ end
65428
+ def self.field_remappings
65429
+ @field_remappings = {}
65430
+ end
65431
+ end
65432
+ # Bank terms of service acceptance for commercial Global issuing prepaid cards with Lead as BIN sponsor.
65433
+ sig { returns(T.nilable(BankTerms)) }
65434
+ def bank_terms; end
65435
+ # Platform terms of service acceptance for commercial Global issuing prepaid cards with Lead as BIN sponsor.
65436
+ sig { returns(T.nilable(Platform)) }
65437
+ def platform; end
65438
+ def self.inner_class_types
65439
+ @inner_class_types = {bank_terms: BankTerms, platform: Platform}
65440
+ end
65441
+ def self.field_remappings
65442
+ @field_remappings = {}
65443
+ end
65444
+ end
65445
+ # Terms of service acceptances for commercial issuing Apple Pay cards with Celtic as BIN sponsor.
65446
+ sig { returns(T.nilable(ApplePay)) }
65447
+ def apple_pay; end
65448
+ # Terms of service acceptances for commercial issuing Global prepaid cards with Lead as BIN sponsor.
65449
+ sig { returns(T.nilable(PrepaidCard)) }
65450
+ def prepaid_card; end
65451
+ def self.inner_class_types
65452
+ @inner_class_types = {apple_pay: ApplePay, prepaid_card: PrepaidCard}
65453
+ end
65454
+ def self.field_remappings
65455
+ @field_remappings = {}
65456
+ end
65457
+ end
65218
65458
  # Terms of service acceptances for Stripe commercial card issuing.
65219
65459
  sig { returns(T.nilable(AccountHolder)) }
65220
65460
  def account_holder; end
@@ -65224,11 +65464,19 @@ module Stripe
65224
65464
  # Terms of service acceptances for commercial issuing cards with Cross River Bank as BIN sponsor.
65225
65465
  sig { returns(T.nilable(CrossRiverBank)) }
65226
65466
  def cross_river_bank; end
65467
+ # Terms of service acceptances for Stripe commercial card Global issuing.
65468
+ sig { returns(T.nilable(GlobalAccountHolder)) }
65469
+ def global_account_holder; end
65470
+ # Terms of service acceptances for commercial issuing cards with Lead as BIN sponsor.
65471
+ sig { returns(T.nilable(Lead)) }
65472
+ def lead; end
65227
65473
  def self.inner_class_types
65228
65474
  @inner_class_types = {
65229
65475
  account_holder: AccountHolder,
65230
65476
  celtic: Celtic,
65231
65477
  cross_river_bank: CrossRiverBank,
65478
+ global_account_holder: GlobalAccountHolder,
65479
+ lead: Lead,
65232
65480
  }
65233
65481
  end
65234
65482
  def self.field_remappings
@@ -99480,11 +99728,11 @@ module Stripe
99480
99728
  sig { params(_key: String).returns(String) }
99481
99729
  def key=(_key); end
99482
99730
  # The quantity of the line item.
99483
- sig { returns(T.nilable(Integer)) }
99731
+ sig { returns(Integer) }
99484
99732
  def quantity; end
99485
- sig { params(_quantity: T.nilable(Integer)).returns(T.nilable(Integer)) }
99733
+ sig { params(_quantity: Integer).returns(Integer) }
99486
99734
  def quantity=(_quantity); end
99487
- sig { params(key: String, quantity: T.nilable(Integer)).void }
99735
+ sig { params(key: String, quantity: Integer).void }
99488
99736
  def initialize(key: nil, quantity: nil); end
99489
99737
  end
99490
99738
  class PaymentMethodData < ::Stripe::RequestParams
@@ -197636,6 +197884,30 @@ module Stripe
197636
197884
  }
197637
197885
  def initialize(charge_card: nil, spend_card: nil); end
197638
197886
  end
197887
+ class Lead < ::Stripe::RequestParams
197888
+ class PrepaidCard < ::Stripe::RequestParams
197889
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
197890
+ sig { returns(T::Boolean) }
197891
+ def requested; end
197892
+ sig { params(_requested: T::Boolean).returns(T::Boolean) }
197893
+ def requested=(_requested); end
197894
+ sig { params(requested: T::Boolean).void }
197895
+ def initialize(requested: nil); end
197896
+ end
197897
+ # Can create commercial issuing prepaid cards with Lead as BIN sponsor.
197898
+ sig {
197899
+ returns(T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard))
197900
+ }
197901
+ def prepaid_card; end
197902
+ sig {
197903
+ params(_prepaid_card: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard)).returns(T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard))
197904
+ }
197905
+ def prepaid_card=(_prepaid_card); end
197906
+ sig {
197907
+ params(prepaid_card: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard)).void
197908
+ }
197909
+ def initialize(prepaid_card: nil); end
197910
+ end
197639
197911
  class Stripe < ::Stripe::RequestParams
197640
197912
  class ChargeCard < ::Stripe::RequestParams
197641
197913
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
@@ -197697,6 +197969,15 @@ module Stripe
197697
197969
  }
197698
197970
  def cross_river_bank=(_cross_river_bank); end
197699
197971
  # Can create commercial issuing cards with Stripe as BIN sponsor.
197972
+ sig {
197973
+ returns(T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead))
197974
+ }
197975
+ def lead; end
197976
+ sig {
197977
+ params(_lead: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead)).returns(T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead))
197978
+ }
197979
+ def lead=(_lead); end
197980
+ # Can create commercial issuing cards with Stripe as BIN sponsor.
197700
197981
  sig {
197701
197982
  returns(T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe))
197702
197983
  }
@@ -197706,9 +197987,9 @@ module Stripe
197706
197987
  }
197707
197988
  def stripe=(_stripe); end
197708
197989
  sig {
197709
- params(celtic: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank), stripe: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe)).void
197990
+ params(celtic: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank), lead: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Lead), stripe: T.nilable(V2::Core::AccountCreateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe)).void
197710
197991
  }
197711
- def initialize(celtic: nil, cross_river_bank: nil, stripe: nil); end
197992
+ def initialize(celtic: nil, cross_river_bank: nil, lead: nil, stripe: nil); end
197712
197993
  end
197713
197994
  # Can create cards for commercial issuing use cases.
197714
197995
  sig {
@@ -200341,6 +200622,130 @@ module Stripe
200341
200622
  }
200342
200623
  def initialize(apple_pay: nil, charge_card: nil, spend_card: nil); end
200343
200624
  end
200625
+ class GlobalAccountHolder < ::Stripe::RequestParams
200626
+ # 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.
200627
+ sig { returns(String) }
200628
+ def date; end
200629
+ sig { params(_date: String).returns(String) }
200630
+ def date=(_date); end
200631
+ # The IP address from which the Account's representative accepted the terms of service.
200632
+ sig { returns(String) }
200633
+ def ip; end
200634
+ sig { params(_ip: String).returns(String) }
200635
+ def ip=(_ip); end
200636
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
200637
+ sig { returns(T.nilable(String)) }
200638
+ def user_agent; end
200639
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
200640
+ def user_agent=(_user_agent); end
200641
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
200642
+ def initialize(date: nil, ip: nil, user_agent: nil); end
200643
+ end
200644
+ class Lead < ::Stripe::RequestParams
200645
+ class ApplePay < ::Stripe::RequestParams
200646
+ # 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.
200647
+ sig { returns(String) }
200648
+ def date; end
200649
+ sig { params(_date: String).returns(String) }
200650
+ def date=(_date); end
200651
+ # The IP address from which the Account's representative accepted the terms of service.
200652
+ sig { returns(String) }
200653
+ def ip; end
200654
+ sig { params(_ip: String).returns(String) }
200655
+ def ip=(_ip); end
200656
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
200657
+ sig { returns(T.nilable(String)) }
200658
+ def user_agent; end
200659
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
200660
+ def user_agent=(_user_agent); end
200661
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
200662
+ def initialize(date: nil, ip: nil, user_agent: nil); end
200663
+ end
200664
+ class PrepaidCard < ::Stripe::RequestParams
200665
+ class BankTerms < ::Stripe::RequestParams
200666
+ # 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.
200667
+ sig { returns(String) }
200668
+ def date; end
200669
+ sig { params(_date: String).returns(String) }
200670
+ def date=(_date); end
200671
+ # The IP address from which the Account's representative accepted the terms of service.
200672
+ sig { returns(String) }
200673
+ def ip; end
200674
+ sig { params(_ip: String).returns(String) }
200675
+ def ip=(_ip); end
200676
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
200677
+ sig { returns(T.nilable(String)) }
200678
+ def user_agent; end
200679
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
200680
+ def user_agent=(_user_agent); end
200681
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
200682
+ def initialize(date: nil, ip: nil, user_agent: nil); end
200683
+ end
200684
+ class Platform < ::Stripe::RequestParams
200685
+ # 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.
200686
+ sig { returns(String) }
200687
+ def date; end
200688
+ sig { params(_date: String).returns(String) }
200689
+ def date=(_date); end
200690
+ # The IP address from which the Account's representative accepted the terms of service.
200691
+ sig { returns(String) }
200692
+ def ip; end
200693
+ sig { params(_ip: String).returns(String) }
200694
+ def ip=(_ip); end
200695
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
200696
+ sig { returns(T.nilable(String)) }
200697
+ def user_agent; end
200698
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
200699
+ def user_agent=(_user_agent); end
200700
+ sig { params(date: String, ip: String, user_agent: T.nilable(String)).void }
200701
+ def initialize(date: nil, ip: nil, user_agent: nil); end
200702
+ end
200703
+ # Bank terms of service acceptance for commercial issuing prepaid cards with Lead as BIN sponsor.
200704
+ sig {
200705
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms))
200706
+ }
200707
+ def bank_terms; end
200708
+ sig {
200709
+ params(_bank_terms: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms))
200710
+ }
200711
+ def bank_terms=(_bank_terms); end
200712
+ # Platform terms of service acceptance for commercial issuing prepaid cards with Lead as BIN sponsor.
200713
+ sig {
200714
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform))
200715
+ }
200716
+ def platform; end
200717
+ sig {
200718
+ params(_platform: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform))
200719
+ }
200720
+ def platform=(_platform); end
200721
+ sig {
200722
+ params(bank_terms: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms), platform: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform)).void
200723
+ }
200724
+ def initialize(bank_terms: nil, platform: nil); end
200725
+ end
200726
+ # Terms of service acceptances for commercial issuing Apple Pay cards with Lead as BIN sponsor.
200727
+ sig {
200728
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay))
200729
+ }
200730
+ def apple_pay; end
200731
+ sig {
200732
+ params(_apple_pay: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay))
200733
+ }
200734
+ def apple_pay=(_apple_pay); end
200735
+ # Terms of service acceptances for commercial issuing prepaid cards with Lead as BIN sponsor.
200736
+ sig {
200737
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard))
200738
+ }
200739
+ def prepaid_card; end
200740
+ sig {
200741
+ params(_prepaid_card: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard))
200742
+ }
200743
+ def prepaid_card=(_prepaid_card); end
200744
+ sig {
200745
+ params(apple_pay: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay), prepaid_card: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard)).void
200746
+ }
200747
+ def initialize(apple_pay: nil, prepaid_card: nil); end
200748
+ end
200344
200749
  # Terms of service acceptances for Stripe commercial card issuing.
200345
200750
  sig {
200346
200751
  returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder))
@@ -200368,10 +200773,34 @@ module Stripe
200368
200773
  params(_cross_river_bank: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank))
200369
200774
  }
200370
200775
  def cross_river_bank=(_cross_river_bank); end
200776
+ # Terms of service acceptances for Stripe commercial card Global issuing.
200777
+ sig {
200778
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder))
200779
+ }
200780
+ def global_account_holder; end
200781
+ sig {
200782
+ params(_global_account_holder: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder))
200783
+ }
200784
+ def global_account_holder=(_global_account_holder); end
200785
+ # Terms of service acceptances for commercial issuing cards with Lead as BIN sponsor.
200786
+ sig {
200787
+ returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead))
200788
+ }
200789
+ def lead; end
200371
200790
  sig {
200372
- params(account_holder: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder), celtic: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank)).void
200791
+ params(_lead: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead)).returns(T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead))
200373
200792
  }
200374
- def initialize(account_holder: nil, celtic: nil, cross_river_bank: nil); end
200793
+ def lead=(_lead); end
200794
+ sig {
200795
+ params(account_holder: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder), celtic: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank), global_account_holder: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder), lead: T.nilable(V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead)).void
200796
+ }
200797
+ def initialize(
200798
+ account_holder: nil,
200799
+ celtic: nil,
200800
+ cross_river_bank: nil,
200801
+ global_account_holder: nil,
200802
+ lead: nil
200803
+ ); end
200375
200804
  end
200376
200805
  # Terms of service acceptances to create cards for commercial issuing use cases.
200377
200806
  sig {
@@ -202065,6 +202494,30 @@ module Stripe
202065
202494
  }
202066
202495
  def initialize(charge_card: nil, spend_card: nil); end
202067
202496
  end
202497
+ class Lead < ::Stripe::RequestParams
202498
+ class PrepaidCard < ::Stripe::RequestParams
202499
+ # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
202500
+ sig { returns(T.nilable(T::Boolean)) }
202501
+ def requested; end
202502
+ sig { params(_requested: T.nilable(T::Boolean)).returns(T.nilable(T::Boolean)) }
202503
+ def requested=(_requested); end
202504
+ sig { params(requested: T.nilable(T::Boolean)).void }
202505
+ def initialize(requested: nil); end
202506
+ end
202507
+ # Can create commercial issuing prepaid cards with Lead as BIN sponsor.
202508
+ sig {
202509
+ returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard))
202510
+ }
202511
+ def prepaid_card; end
202512
+ sig {
202513
+ params(_prepaid_card: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard)).returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard))
202514
+ }
202515
+ def prepaid_card=(_prepaid_card); end
202516
+ sig {
202517
+ params(prepaid_card: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead::PrepaidCard)).void
202518
+ }
202519
+ def initialize(prepaid_card: nil); end
202520
+ end
202068
202521
  class Stripe < ::Stripe::RequestParams
202069
202522
  class ChargeCard < ::Stripe::RequestParams
202070
202523
  # To request a new Capability for an account, pass true. There can be a delay before the requested Capability becomes active.
@@ -202125,6 +202578,15 @@ module Stripe
202125
202578
  params(_cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank)).returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank))
202126
202579
  }
202127
202580
  def cross_river_bank=(_cross_river_bank); end
202581
+ # Can create commercial issuing cards with Lead as BIN sponsor.
202582
+ sig {
202583
+ returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead))
202584
+ }
202585
+ def lead; end
202586
+ sig {
202587
+ params(_lead: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead)).returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead))
202588
+ }
202589
+ def lead=(_lead); end
202128
202590
  # Can create commercial issuing cards with Stripe as BIN sponsor.
202129
202591
  sig {
202130
202592
  returns(T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe))
@@ -202135,9 +202597,9 @@ module Stripe
202135
202597
  }
202136
202598
  def stripe=(_stripe); end
202137
202599
  sig {
202138
- params(celtic: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank), stripe: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe)).void
202600
+ params(celtic: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::CrossRiverBank), lead: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Lead), stripe: T.nilable(V2::Core::AccountUpdateParams::Configuration::CardCreator::Capabilities::Commercial::Stripe)).void
202139
202601
  }
202140
- def initialize(celtic: nil, cross_river_bank: nil, stripe: nil); end
202602
+ def initialize(celtic: nil, cross_river_bank: nil, lead: nil, stripe: nil); end
202141
202603
  end
202142
202604
  # Can create cards for commercial issuing use cases.
202143
202605
  sig {
@@ -204848,6 +205310,138 @@ module Stripe
204848
205310
  }
204849
205311
  def initialize(apple_pay: nil, charge_card: nil, spend_card: nil); end
204850
205312
  end
205313
+ class GlobalAccountHolder < ::Stripe::RequestParams
205314
+ # 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.
205315
+ sig { returns(T.nilable(String)) }
205316
+ def date; end
205317
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
205318
+ def date=(_date); end
205319
+ # The IP address from which the Account's representative accepted the terms of service.
205320
+ sig { returns(T.nilable(String)) }
205321
+ def ip; end
205322
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
205323
+ def ip=(_ip); end
205324
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
205325
+ sig { returns(T.nilable(String)) }
205326
+ def user_agent; end
205327
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
205328
+ def user_agent=(_user_agent); end
205329
+ sig {
205330
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
205331
+ }
205332
+ def initialize(date: nil, ip: nil, user_agent: nil); end
205333
+ end
205334
+ class Lead < ::Stripe::RequestParams
205335
+ class ApplePay < ::Stripe::RequestParams
205336
+ # 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.
205337
+ sig { returns(T.nilable(String)) }
205338
+ def date; end
205339
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
205340
+ def date=(_date); end
205341
+ # The IP address from which the Account's representative accepted the terms of service.
205342
+ sig { returns(T.nilable(String)) }
205343
+ def ip; end
205344
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
205345
+ def ip=(_ip); end
205346
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
205347
+ sig { returns(T.nilable(String)) }
205348
+ def user_agent; end
205349
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
205350
+ def user_agent=(_user_agent); end
205351
+ sig {
205352
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
205353
+ }
205354
+ def initialize(date: nil, ip: nil, user_agent: nil); end
205355
+ end
205356
+ class PrepaidCard < ::Stripe::RequestParams
205357
+ class BankTerms < ::Stripe::RequestParams
205358
+ # 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.
205359
+ sig { returns(T.nilable(String)) }
205360
+ def date; end
205361
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
205362
+ def date=(_date); end
205363
+ # The IP address from which the Account's representative accepted the terms of service.
205364
+ sig { returns(T.nilable(String)) }
205365
+ def ip; end
205366
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
205367
+ def ip=(_ip); end
205368
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
205369
+ sig { returns(T.nilable(String)) }
205370
+ def user_agent; end
205371
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
205372
+ def user_agent=(_user_agent); end
205373
+ sig {
205374
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
205375
+ }
205376
+ def initialize(date: nil, ip: nil, user_agent: nil); end
205377
+ end
205378
+ class Platform < ::Stripe::RequestParams
205379
+ # 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.
205380
+ sig { returns(T.nilable(String)) }
205381
+ def date; end
205382
+ sig { params(_date: T.nilable(String)).returns(T.nilable(String)) }
205383
+ def date=(_date); end
205384
+ # The IP address from which the Account's representative accepted the terms of service.
205385
+ sig { returns(T.nilable(String)) }
205386
+ def ip; end
205387
+ sig { params(_ip: T.nilable(String)).returns(T.nilable(String)) }
205388
+ def ip=(_ip); end
205389
+ # The user agent of the browser from which the Account's representative accepted the terms of service.
205390
+ sig { returns(T.nilable(String)) }
205391
+ def user_agent; end
205392
+ sig { params(_user_agent: T.nilable(String)).returns(T.nilable(String)) }
205393
+ def user_agent=(_user_agent); end
205394
+ sig {
205395
+ params(date: T.nilable(String), ip: T.nilable(String), user_agent: T.nilable(String)).void
205396
+ }
205397
+ def initialize(date: nil, ip: nil, user_agent: nil); end
205398
+ end
205399
+ # Bank terms of service acceptance for commercial issuing prepaid cards with Lead as BIN sponsor.
205400
+ sig {
205401
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms))
205402
+ }
205403
+ def bank_terms; end
205404
+ sig {
205405
+ params(_bank_terms: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms))
205406
+ }
205407
+ def bank_terms=(_bank_terms); end
205408
+ # Platform terms of service acceptance for commercial issuing prepaid cards with Lead as BIN sponsor.
205409
+ sig {
205410
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform))
205411
+ }
205412
+ def platform; end
205413
+ sig {
205414
+ params(_platform: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform))
205415
+ }
205416
+ def platform=(_platform); end
205417
+ sig {
205418
+ params(bank_terms: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::BankTerms), platform: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard::Platform)).void
205419
+ }
205420
+ def initialize(bank_terms: nil, platform: nil); end
205421
+ end
205422
+ # Terms of service acceptances for commercial issuing Apple Pay cards with Lead as BIN sponsor.
205423
+ sig {
205424
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay))
205425
+ }
205426
+ def apple_pay; end
205427
+ sig {
205428
+ params(_apple_pay: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay))
205429
+ }
205430
+ def apple_pay=(_apple_pay); end
205431
+ # Terms of service acceptances for commercial issuing prepaid cards with Lead as BIN sponsor.
205432
+ sig {
205433
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard))
205434
+ }
205435
+ def prepaid_card; end
205436
+ sig {
205437
+ params(_prepaid_card: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard))
205438
+ }
205439
+ def prepaid_card=(_prepaid_card); end
205440
+ sig {
205441
+ params(apple_pay: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::ApplePay), prepaid_card: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead::PrepaidCard)).void
205442
+ }
205443
+ def initialize(apple_pay: nil, prepaid_card: nil); end
205444
+ end
204851
205445
  # Terms of service acceptances for Stripe commercial card issuing.
204852
205446
  sig {
204853
205447
  returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder))
@@ -204875,10 +205469,34 @@ module Stripe
204875
205469
  params(_cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank))
204876
205470
  }
204877
205471
  def cross_river_bank=(_cross_river_bank); end
205472
+ # Terms of service acceptances for Stripe commercial card Global issuing.
205473
+ sig {
205474
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder))
205475
+ }
205476
+ def global_account_holder; end
205477
+ sig {
205478
+ params(_global_account_holder: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder))
205479
+ }
205480
+ def global_account_holder=(_global_account_holder); end
205481
+ # Terms of service acceptances for commercial issuing cards with Lead as BIN sponsor.
205482
+ sig {
205483
+ returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead))
205484
+ }
205485
+ def lead; end
205486
+ sig {
205487
+ params(_lead: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead)).returns(T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead))
205488
+ }
205489
+ def lead=(_lead); end
204878
205490
  sig {
204879
- params(account_holder: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder), celtic: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank)).void
205491
+ params(account_holder: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::AccountHolder), celtic: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Celtic), cross_river_bank: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::CrossRiverBank), global_account_holder: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::GlobalAccountHolder), lead: T.nilable(V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService::CardCreator::Commercial::Lead)).void
204880
205492
  }
204881
- def initialize(account_holder: nil, celtic: nil, cross_river_bank: nil); end
205493
+ def initialize(
205494
+ account_holder: nil,
205495
+ celtic: nil,
205496
+ cross_river_bank: nil,
205497
+ global_account_holder: nil,
205498
+ lead: nil
205499
+ ); end
204882
205500
  end
204883
205501
  # Terms of service acceptances to create cards for commercial issuing use cases.
204884
205502
  sig {