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



2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2807

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



2795
2796
2797
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2795

def 
  @account
end

#card_creatorObject

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



2797
2798
2799
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2797

def card_creator
  @card_creator
end

#consumer_privacy_disclosuresObject

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



2799
2800
2801
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2799

def consumer_privacy_disclosures
  @consumer_privacy_disclosures
end

#consumer_storerObject

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



2801
2802
2803
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2801

def consumer_storer
  @consumer_storer
end

#crypto_storerObject

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



2803
2804
2805
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2803

def crypto_storer
  @crypto_storer
end

#storerObject

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



2805
2806
2807
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2805

def storer
  @storer
end