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.
2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2733 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).
2721 2722 2723 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2721 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
2723 2724 2725 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2723 def card_creator @card_creator end |
#consumer_privacy_disclosures ⇒ Object
Details on the Account’s acceptance of Consumer-privacy-disclosures-specific terms of service.
2725 2726 2727 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2725 def consumer_privacy_disclosures @consumer_privacy_disclosures end |
#consumer_storer ⇒ Object
Details on the Account’s acceptance of Consumer-storer-specific terms of service.
2727 2728 2729 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2727 def consumer_storer @consumer_storer end |
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
2729 2730 2731 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2729 def crypto_storer @crypto_storer end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
2731 2732 2733 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2731 def storer @storer end |