Class: Stripe::AccountCreateParams::Settings::Treasury

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) ⇒ Treasury

Returns a new instance of Treasury.



2382
2383
2384
# File 'lib/stripe/params/account_create_params.rb', line 2382

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

Instance Attribute Details

#tos_acceptanceObject

Details on the account’s acceptance of the Stripe Treasury Services Agreement.



2380
2381
2382
# File 'lib/stripe/params/account_create_params.rb', line 2380

def tos_acceptance
  @tos_acceptance
end