Class: Stripe::V2::MoneyManagement::ReceivedDebitMandateListParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/received_debit_mandate_list_params.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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 = 
  @limit = limit
  @statuses = statuses
  @type = type
end

Instance Attribute Details

#financial_accountObject

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
end

#limitObject

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

#statusesObject

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

#typeObject

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