Class: Stripe::FinancialConnections::AccountListParams::AccountHolder
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FinancialConnections::AccountListParams::AccountHolder
- Defined in:
- lib/stripe/params/financial_connections/account_list_params.rb
Instance Attribute Summary collapse
-
#account ⇒ Object
The ID of the Stripe account whose accounts will be retrieved.
-
#customer ⇒ Object
The ID of the Stripe customer whose accounts will be retrieved.
Instance Method Summary collapse
-
#initialize(account: nil, customer: nil) ⇒ AccountHolder
constructor
A new instance of AccountHolder.
Methods inherited from RequestParams
Constructor Details
#initialize(account: nil, customer: nil) ⇒ AccountHolder
Returns a new instance of AccountHolder.
13 14 15 16 |
# File 'lib/stripe/params/financial_connections/account_list_params.rb', line 13 def initialize(account: nil, customer: nil) @account = account @customer = customer end |
Instance Attribute Details
#account ⇒ Object
The ID of the Stripe account whose accounts will be retrieved.
9 10 11 |
# File 'lib/stripe/params/financial_connections/account_list_params.rb', line 9 def account @account end |
#customer ⇒ Object
The ID of the Stripe customer whose accounts will be retrieved.
11 12 13 |
# File 'lib/stripe/params/financial_connections/account_list_params.rb', line 11 def customer @customer end |