Class: Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCreateParams::Identity::Attestations::TermsOfService
- 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
-
#account ⇒ Object
Details on the Account’s acceptance of the [Stripe Services Agreement](docs.stripe.com/connect/updating-accounts#tos-acceptance).
-
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
-
#consumer_privacy_disclosures ⇒ Object
Details on the Account’s acceptance of Consumer-privacy-disclosures-specific terms of service.
-
#consumer_storer ⇒ Object
Details on the Account’s acceptance of Consumer-storer-specific terms of service.
-
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
-
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
Instance Method Summary collapse
-
#initialize(account: nil, card_creator: nil, consumer_privacy_disclosures: nil, consumer_storer: nil, crypto_storer: nil, storer: nil) ⇒ TermsOfService
constructor
A new instance of TermsOfService.
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.
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2810 def initialize( account: nil, card_creator: nil, consumer_privacy_disclosures: nil, consumer_storer: nil, crypto_storer: nil, storer: nil ) @account = 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
#account ⇒ Object
Details on the Account’s acceptance of the [Stripe Services Agreement](docs.stripe.com/connect/updating-accounts#tos-acceptance).
2798 2799 2800 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2798 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
2800 2801 2802 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2800 def card_creator @card_creator end |
#consumer_privacy_disclosures ⇒ Object
Details on the Account’s acceptance of Consumer-privacy-disclosures-specific terms of service.
2802 2803 2804 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2802 def consumer_privacy_disclosures @consumer_privacy_disclosures end |
#consumer_storer ⇒ Object
Details on the Account’s acceptance of Consumer-storer-specific terms of service.
2804 2805 2806 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2804 def consumer_storer @consumer_storer end |
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
2806 2807 2808 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2806 def crypto_storer @crypto_storer end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
2808 2809 2810 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2808 def storer @storer end |