Class: Stripe::V2::MoneyManagement::ReceivedDebitMandateListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::ReceivedDebitMandateListParams
- Defined in:
- lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb
Instance Attribute Summary collapse
-
#financial_account ⇒ Object
The ID of the FinancialAccount to filter by.
-
#limit ⇒ Object
The page limit.
-
#statuses ⇒ Object
Filter by mandate status.
-
#type ⇒ Object
The type of ReceivedDebitMandate to filter by.
Instance Method Summary collapse
-
#initialize(financial_account: nil, limit: nil, statuses: nil, type: nil) ⇒ ReceivedDebitMandateListParams
constructor
A new instance of ReceivedDebitMandateListParams.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(financial_account: nil, limit: nil, statuses: nil, type: nil) ⇒ ReceivedDebitMandateListParams
Returns a new instance of ReceivedDebitMandateListParams.
17 18 19 20 21 22 |
# File 'lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb', line 17 def initialize(financial_account: nil, limit: nil, statuses: nil, type: nil) @financial_account = financial_account @limit = limit @statuses = statuses @type = type end |
Instance Attribute Details
#financial_account ⇒ Object
The ID of the FinancialAccount to filter by.
9 10 11 |
# File 'lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb', line 9 def financial_account @financial_account end |
#limit ⇒ Object
The page limit.
11 12 13 |
# File 'lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb', line 11 def limit @limit end |
#statuses ⇒ Object
Filter by mandate status.
13 14 15 |
# File 'lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb', line 13 def statuses @statuses end |
#type ⇒ Object
The type of ReceivedDebitMandate to filter by.
15 16 17 |
# File 'lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb', line 15 def type @type end |