Class: Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/core/account_create_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.



2142
2143
2144
2145
2146
2147
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2142

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



2134
2135
2136
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2134

def 
  @account
end

#card_creatorObject

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



2136
2137
2138
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2136

def card_creator
  @card_creator
end

#crypto_storerObject

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



2138
2139
2140
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2138

def crypto_storer
  @crypto_storer
end

#storerObject

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



2140
2141
2142
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2140

def storer
  @storer
end