Class: Stripe::V2::MoneyManagement::FinancialAccountListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccountListParams
- Defined in:
- lib/stripe/params/v2/money_management/financial_account_list_params.rb
Instance Attribute Summary collapse
-
#include ⇒ Object
Additional fields to include in the response.
-
#limit ⇒ Object
The page limit.
-
#status ⇒ Object
The status of the FinancialAccount to filter by.
-
#types ⇒ Object
Filter for FinancialAccount ‘type`.
Instance Method Summary collapse
-
#initialize(include: nil, limit: nil, status: nil, types: nil) ⇒ FinancialAccountListParams
constructor
A new instance of FinancialAccountListParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(include: nil, limit: nil, status: nil, types: nil) ⇒ FinancialAccountListParams
Returns a new instance of FinancialAccountListParams.
17 18 19 20 21 22 |
# File 'lib/stripe/params/v2/money_management/financial_account_list_params.rb', line 17 def initialize(include: nil, limit: nil, status: nil, types: nil) @include = include @limit = limit @status = status @types = types end |
Instance Attribute Details
#include ⇒ Object
Additional fields to include in the response.
9 10 11 |
# File 'lib/stripe/params/v2/money_management/financial_account_list_params.rb', line 9 def include @include end |
#limit ⇒ Object
The page limit.
11 12 13 |
# File 'lib/stripe/params/v2/money_management/financial_account_list_params.rb', line 11 def limit @limit end |
#status ⇒ Object
The status of the FinancialAccount to filter by. By default, closed FinancialAccounts are not returned.
13 14 15 |
# File 'lib/stripe/params/v2/money_management/financial_account_list_params.rb', line 13 def status @status end |
#types ⇒ Object
Filter for FinancialAccount ‘type`. By default, FinancialAccounts of any `type` are returned.
15 16 17 |
# File 'lib/stripe/params/v2/money_management/financial_account_list_params.rb', line 15 def types @types end |