Class: Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountUpdateParams::Identity::Attestations::TermsOfService
- 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
-
#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.
2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2839 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).
2827 2828 2829 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2827 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
2829 2830 2831 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2829 def card_creator @card_creator end |
#consumer_privacy_disclosures ⇒ Object
Details on the Account’s acceptance of Consumer-privacy-disclosures-specific terms of service.
2831 2832 2833 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2831 def consumer_privacy_disclosures @consumer_privacy_disclosures end |
#consumer_storer ⇒ Object
Details on the Account’s acceptance of Consumer-storer-specific terms of service.
2833 2834 2835 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2833 def consumer_storer @consumer_storer end |
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
2835 2836 2837 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2835 def crypto_storer @crypto_storer end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
2837 2838 2839 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2837 def storer @storer end |