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, 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.
2080 2081 2082 2083 2084 2085 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2080 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).
2072 2073 2074 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2072 def account @account end |
#card_creator ⇒ Object
Details on the Account’s acceptance of Issuing-specific terms of service.
2074 2075 2076 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2074 def card_creator @card_creator end |
#crypto_storer ⇒ Object
Details on the Account’s acceptance of Crypto-storer-specific terms of service.
2076 2077 2078 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2076 def crypto_storer @crypto_storer end |
#storer ⇒ Object
Details on the Account’s acceptance of Treasury-specific terms of service.
2078 2079 2080 |
# File 'lib/stripe/params/v2/core/account_create_params.rb', line 2078 def storer @storer end |