Class: Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_update_params.rb

Defined Under Namespace

Classes: Account, CryptoMoneyManager, MoneyManager

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(account: nil, crypto_money_manager: nil, money_manager: nil) ⇒ TermsOfService

Returns a new instance of TermsOfService.



1209
1210
1211
1212
1213
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1209

def initialize(account: nil, crypto_money_manager: nil, money_manager: nil)
  @account = 
  @crypto_money_manager = crypto_money_manager
  @money_manager = money_manager
end

Instance Attribute Details

#accountObject

Details on the Account's acceptance of the Stripe Services Agreement.



1203
1204
1205
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1203

def 
  @account
end

#crypto_money_managerObject

Details on the Account's acceptance of Crypto-specific terms of service.



1205
1206
1207
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1205

def crypto_money_manager
  @crypto_money_manager
end

#money_managerObject

Details on the Account's acceptance of Treasury-specific terms of service.



1207
1208
1209
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1207

def money_manager
  @money_manager
end