Class: Stripe::V2::MoneyManagement::FinancialAddressService::ListParams
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::MoneyManagement::FinancialAddressService::ListParams
- Defined in:
- lib/stripe/services/v2/money_management/financial_address_service.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) ⇒ ListParams
constructor
A new instance of ListParams.
Methods inherited from RequestParams
Constructor Details
#initialize(financial_account: nil, include: nil, limit: nil) ⇒ ListParams
Returns a new instance of ListParams.
28 29 30 31 32 |
# File 'lib/stripe/services/v2/money_management/financial_address_service.rb', line 28 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.
22 23 24 |
# File 'lib/stripe/services/v2/money_management/financial_address_service.rb', line 22 def financial_account @financial_account end |
#include ⇒ Object
Open Enum. A list of fields to reveal in the FinancialAddresses returned.
24 25 26 |
# File 'lib/stripe/services/v2/money_management/financial_address_service.rb', line 24 def include @include end |
#limit ⇒ Object
The page limit.
26 27 28 |
# File 'lib/stripe/services/v2/money_management/financial_address_service.rb', line 26 def limit @limit end |