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, CryptoMoneyManager, MoneyManager
Instance Attribute Summary collapse
-
#account ⇒ Object
Details on the Account's acceptance of the Stripe Services Agreement.
-
#crypto_money_manager ⇒ Object
Details on the Account's acceptance of Crypto-specific terms of service.
-
#money_manager ⇒ Object
Details on the Account's acceptance of Treasury-specific terms of service.
Instance Method Summary collapse
-
#initialize(account: nil, crypto_money_manager: nil, money_manager: 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, crypto_money_manager: nil, money_manager: nil) ⇒ TermsOfService
Returns a new instance of TermsOfService.
1209 1210 1211 1212 1213 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1209 def initialize(account: nil, crypto_money_manager: nil, money_manager: nil) @account = account @crypto_money_manager = crypto_money_manager @money_manager = money_manager end |
Instance Attribute Details
#account ⇒ Object
Details on the Account's acceptance of the Stripe Services Agreement.
1203 1204 1205 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1203 def account @account end |
#crypto_money_manager ⇒ Object
Details on the Account's acceptance of Crypto-specific terms of service.
1205 1206 1207 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1205 def crypto_money_manager @crypto_money_manager end |
#money_manager ⇒ Object
Details on the Account's acceptance of Treasury-specific terms of service.
1207 1208 1209 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1207 def money_manager @money_manager end |