Class: Stripe::V2::MoneyManagement::FinancialAddressListParams

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/financial_address_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, include: nil, limit: nil) ⇒ FinancialAddressListParams

Returns a new instance of FinancialAddressListParams.



15
16
17
18
19
# File 'lib/stripe/params/v2/money_management/financial_address_list_params.rb', line 15

def initialize(financial_account: nil, include: nil, limit: nil)
  @financial_account = 
  @include = include
  @limit = limit
end

Instance Attribute Details

#financial_accountObject

The ID of the FinancialAccount for which FinancialAddresses are to be returned.



9
10
11
# File 'lib/stripe/params/v2/money_management/financial_address_list_params.rb', line 9

def 
  @financial_account
end

#includeObject

Open Enum. A list of fields to reveal in the FinancialAddresses returned.



11
12
13
# File 'lib/stripe/params/v2/money_management/financial_address_list_params.rb', line 11

def include
  @include
end

#limitObject

The page limit.



13
14
15
# File 'lib/stripe/params/v2/money_management/financial_address_list_params.rb', line 13

def limit
  @limit
end