Class: Stripe::V2::Core::AccountCloseParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Core::AccountCloseParams
- Defined in:
- lib/stripe/params/v2/core/account_close_params.rb
Instance Attribute Summary collapse
-
#applied_configurations ⇒ Object
Configurations on the Account to be closed.
Instance Method Summary collapse
-
#initialize(applied_configurations: nil) ⇒ AccountCloseParams
constructor
A new instance of AccountCloseParams.
Methods inherited from RequestParams
Constructor Details
#initialize(applied_configurations: nil) ⇒ AccountCloseParams
Returns a new instance of AccountCloseParams.
11 12 13 |
# File 'lib/stripe/params/v2/core/account_close_params.rb', line 11 def initialize(applied_configurations: nil) @applied_configurations = applied_configurations end |
Instance Attribute Details
#applied_configurations ⇒ Object
Configurations on the Account to be closed. All configurations on the Account must be passed in for this request to succeed.
9 10 11 |
# File 'lib/stripe/params/v2/core/account_close_params.rb', line 9 def applied_configurations @applied_configurations end |