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
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).
-
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
Instance Method Summary collapse
-
#initialize(account: nil, storer: nil) ⇒ TermsOfService
constructor
A new instance of TermsOfService.
Methods inherited from RequestParams
Constructor Details
#initialize(account: nil, storer: nil) ⇒ TermsOfService
Returns a new instance of TermsOfService.
1292 1293 1294 1295 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1292 def initialize(account: nil, storer: nil) @account = account @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).
1288 1289 1290 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1288 def account @account end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
1290 1291 1292 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 1290 def storer @storer end |