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.



1600
1601
1602
1603
1604
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1600

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](docs.stripe.com/connect/updating-accounts#tos-acceptance).



1594
1595
1596
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1594

def 
  @account
end

#crypto_money_managerObject

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



1596
1597
1598
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1596

def crypto_money_manager
  @crypto_money_manager
end

#money_managerObject

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



1598
1599
1600
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1598

def money_manager
  @money_manager
end