Class: Stripe::FinancialConnections::AccountService::ListParams::AccountHolder

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/financial_connections/account_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(account: nil, customer: nil) ⇒ AccountHolder

Returns a new instance of AccountHolder.



21
22
23
24
# File 'lib/stripe/services/financial_connections/account_service.rb', line 21

def initialize(account: nil, customer: nil)
  @account = 
  @customer = customer
end

Instance Attribute Details

#accountObject

The ID of the Stripe account whose accounts will be retrieved.



17
18
19
# File 'lib/stripe/services/financial_connections/account_service.rb', line 17

def 
  @account
end

#customerObject

The ID of the Stripe customer whose accounts will be retrieved.



19
20
21
# File 'lib/stripe/services/financial_connections/account_service.rb', line 19

def customer
  @customer
end