Class: Stripe::V2::MoneyManagement::FinancialAccounts::StatementListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAccounts::StatementListParams
- Defined in:
- lib/stripe/params/v2/money_management/financial_accounts/statement_list_params.rb
Instance Attribute Summary collapse
-
#limit ⇒ Object
The maximum number of results to return.
-
#order_by ⇒ Object
The field by which to sort results.
Instance Method Summary collapse
-
#initialize(limit: nil, order_by: nil) ⇒ StatementListParams
constructor
A new instance of StatementListParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(limit: nil, order_by: nil) ⇒ StatementListParams
Returns a new instance of StatementListParams.
14 15 16 17 |
# File 'lib/stripe/params/v2/money_management/financial_accounts/statement_list_params.rb', line 14 def initialize(limit: nil, order_by: nil) @limit = limit @order_by = order_by end |
Instance Attribute Details
#limit ⇒ Object
The maximum number of results to return.
10 11 12 |
# File 'lib/stripe/params/v2/money_management/financial_accounts/statement_list_params.rb', line 10 def limit @limit end |
#order_by ⇒ Object
The field by which to sort results. Defaults to “created”.
12 13 14 |
# File 'lib/stripe/params/v2/money_management/financial_accounts/statement_list_params.rb', line 12 def order_by @order_by end |