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.



2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2765

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



2753
2754
2755
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2753

def 
  @account
end

#card_creatorObject

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



2755
2756
2757
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2755

def card_creator
  @card_creator
end

#consumer_privacy_disclosuresObject

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



2757
2758
2759
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2757

def consumer_privacy_disclosures
  @consumer_privacy_disclosures
end

#consumer_storerObject

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



2759
2760
2761
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2759

def consumer_storer
  @consumer_storer
end

#crypto_storerObject

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



2761
2762
2763
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2761

def crypto_storer
  @crypto_storer
end

#storerObject

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



2763
2764
2765
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2763

def storer
  @storer
end