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

#to_h

Constructor Details

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

Returns a new instance of TermsOfService.



2124
2125
2126
2127
2128
2129
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2124

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



2116
2117
2118
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2116

def 
  @account
end

#card_creatorObject

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



2118
2119
2120
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2118

def card_creator
  @card_creator
end

#crypto_storerObject

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



2120
2121
2122
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2120

def crypto_storer
  @crypto_storer
end

#storerObject

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



2122
2123
2124
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2122

def storer
  @storer
end