Class: Stripe::V2::MoneyManagement::FinancialAddressListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAddressListParams
- Defined in:
- lib/stripe/params/v2/money_management/financial_address_list_params.rb
Instance Attribute Summary collapse
-
#financial_account ⇒ Object
The ID of the FinancialAccount for which FinancialAddresses are to be returned.
-
#include ⇒ Object
Open Enum.
-
#limit ⇒ Object
The page limit.
Instance Method Summary collapse
-
#initialize(financial_account: nil, include: nil, limit: nil) ⇒ FinancialAddressListParams
constructor
A new instance of FinancialAddressListParams.
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 = financial_account @include = include @limit = limit end |
Instance Attribute Details
#financial_account ⇒ Object
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 @financial_account end |
#include ⇒ Object
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 |
#limit ⇒ Object
The page limit.
13 14 15 |
# File 'lib/stripe/params/v2/money_management/financial_address_list_params.rb', line 13 def limit @limit end |