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, ConsumerPrivacyDisclosures, ConsumerStorer, CryptoStorer, Storer

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

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

Returns a new instance of TermsOfService.



2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2739

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



2727
2728
2729
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2727

def 
  @account
end

#card_creatorObject

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



2729
2730
2731
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2729

def card_creator
  @card_creator
end

#consumer_privacy_disclosuresObject

Details on the Account’s acceptance of Consumer-privacy-disclosures-specific terms of service.



2731
2732
2733
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2731

def consumer_privacy_disclosures
  @consumer_privacy_disclosures
end

#consumer_storerObject

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



2733
2734
2735
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2733

def consumer_storer
  @consumer_storer
end

#crypto_storerObject

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



2735
2736
2737
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2735

def crypto_storer
  @crypto_storer
end

#storerObject

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



2737
2738
2739
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2737

def storer
  @storer
end