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.



2696
2697
2698
2699
2700
2701
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2696

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



2688
2689
2690
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2688

def 
  @account
end

#card_creatorObject

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



2690
2691
2692
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2690

def card_creator
  @card_creator
end

#crypto_storerObject

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



2692
2693
2694
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2692

def crypto_storer
  @crypto_storer
end

#storerObject

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



2694
2695
2696
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2694

def storer
  @storer
end