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, 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.
-
#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, crypto_storer: nil, storer: nil) ⇒ TermsOfService
constructor
A new instance of TermsOfService.
Methods inherited from RequestParams
Constructor Details
#initialize(account: nil, card_creator: nil, crypto_storer: nil, storer: nil) ⇒ TermsOfService
Returns a new instance of TermsOfService.
2112 2113 2114 2115 2116 2117 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2112 def initialize(account: nil, card_creator: nil, crypto_storer: nil, storer: nil) @account = account @card_creator = card_creator @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).
2104 2105 2106 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2104 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
2106 2107 2108 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2106 def card_creator @card_creator end |
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
2108 2109 2110 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2108 def crypto_storer @crypto_storer end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
2110 2111 2112 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 2110 def storer @storer end |