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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, new, #to_h

Constructor Details

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

Returns a new instance of TermsOfService.



2174
2175
2176
2177
2178
2179
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2174

def initialize(account: nil, card_creator: nil, crypto_storer: nil, storer: nil)
  @account = 
  @card_creator = card_creator
  @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).



2166
2167
2168
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2166

def 
  @account
end

#card_creatorObject

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



2168
2169
2170
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2168

def card_creator
  @card_creator
end

#crypto_storerObject

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



2170
2171
2172
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2170

def crypto_storer
  @crypto_storer
end

#storerObject

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



2172
2173
2174
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2172

def storer
  @storer
end