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

#to_h

Constructor Details

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

Returns a new instance of TermsOfService.



2092
2093
2094
2095
2096
2097
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2092

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



2084
2085
2086
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2084

def 
  @account
end

#card_creatorObject

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



2086
2087
2088
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2086

def card_creator
  @card_creator
end

#crypto_storerObject

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



2088
2089
2090
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2088

def crypto_storer
  @crypto_storer
end

#storerObject

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



2090
2091
2092
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2090

def storer
  @storer
end