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, 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.
-
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
Instance Method Summary collapse
-
#initialize(account: nil, card_creator: nil, storer: nil) ⇒ TermsOfService
constructor
A new instance of TermsOfService.
Methods inherited from RequestParams
Constructor Details
#initialize(account: nil, card_creator: nil, storer: nil) ⇒ TermsOfService
Returns a new instance of TermsOfService.
1773 1774 1775 1776 1777 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1773 def initialize(account: nil, card_creator: nil, storer: nil) @account = account @card_creator = card_creator @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).
1767 1768 1769 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1767 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
1769 1770 1771 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1769 def card_creator @card_creator end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
1771 1772 1773 |
# File 'lib/stripe/params/v2/core/account_update_params.rb', line 1771 def storer @storer end |