Class: Stripe::AccountCreateParams::Settings::CardIssuing

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/account_create_params.rb

Defined Under Namespace

Classes: TosAcceptance

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(tos_acceptance: nil) ⇒ CardIssuing

Returns a new instance of CardIssuing.



2168
2169
2170
# File 'lib/stripe/params/account_create_params.rb', line 2168

def initialize(tos_acceptance: nil)
  @tos_acceptance = tos_acceptance
end

Instance Attribute Details

#tos_acceptanceObject

Details on the account’s acceptance of the [Stripe Issuing Terms and Disclosures](/issuing/connect/tos_acceptance).



2166
2167
2168
# File 'lib/stripe/params/account_create_params.rb', line 2166

def tos_acceptance
  @tos_acceptance
end