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