Class: Stripe::AccountUpdateParams::Settings::Treasury
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::AccountUpdateParams::Settings::Treasury
- Defined in:
- lib/stripe/params/account_update_params.rb
Defined Under Namespace
Classes: TosAcceptance
Instance Attribute Summary collapse
-
#tos_acceptance ⇒ Object
Details on the account’s acceptance of the Stripe Treasury Services Agreement.
Instance Method Summary collapse
-
#initialize(tos_acceptance: nil) ⇒ Treasury
constructor
A new instance of Treasury.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(tos_acceptance: nil) ⇒ Treasury
Returns a new instance of Treasury.
2304 2305 2306 |
# File 'lib/stripe/params/account_update_params.rb', line 2304 def initialize(tos_acceptance: nil) @tos_acceptance = tos_acceptance end |
Instance Attribute Details
#tos_acceptance ⇒ Object
Details on the account’s acceptance of the Stripe Treasury Services Agreement.
2302 2303 2304 |
# File 'lib/stripe/params/account_update_params.rb', line 2302 def tos_acceptance @tos_acceptance end |