Class used to call the Income product.
Sections
Methods
- G
Public
Instance Public methods
get(access_token)
Link
Get information about user incomes.
Does a POST /income/get call which returns income info for an access_token's item.
- access_token
-
access_token whose item to fetch income for.
Returns
Returns the IncomeResponse object with Income info.
Source: show
# File lib/plaid/products/income.rb, line 12 def get(access_token) post_with_auth 'income/get', IncomeResponse, access_token: access_token end