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, MoneyManager
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).
-
#money_manager ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
Instance Method Summary collapse
-
#initialize(account: 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, money_manager: nil) ⇒ TermsOfService
Returns a new instance of TermsOfService.
1555 1556 1557 1558 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1555 def initialize(account: nil, money_manager: nil) @account = account @money_manager = money_manager 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).
1551 1552 1553 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1551 def account @account end |
#money_manager ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
1553 1554 1555 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1553 def money_manager @money_manager end |