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, CryptoStorer, Storer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account: nil, crypto_storer: nil, storer: nil) ⇒ TermsOfService

Returns a new instance of TermsOfService.



1436
1437
1438
1439
1440
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1436

def initialize(account: nil, crypto_storer: nil, storer: nil)
  @account = 
  @crypto_storer = crypto_storer
  @storer = storer
end

Instance Attribute Details

#accountObject

Details on the Account’s acceptance of the [Stripe Services Agreement](docs.stripe.com/connect/updating-accounts#tos-acceptance).



1430
1431
1432
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1430

def 
  @account
end

#crypto_storerObject

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



1432
1433
1434
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1432

def crypto_storer
  @crypto_storer
end

#storerObject

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



1434
1435
1436
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1434

def storer
  @storer
end