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.



1196
1197
1198
1199
1200
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1196

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).



1190
1191
1192
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1190

def 
  @account
end

#crypto_storerObject

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



1192
1193
1194
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1192

def crypto_storer
  @crypto_storer
end

#storerObject

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



1194
1195
1196
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1194

def storer
  @storer
end