Class used to call the Income product.

Sections
Methods
G
Public
Instance Public methods
get(access_token)

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.

# File lib/plaid/products/income.rb, line 12
def get(access_token)
  post_with_auth 'income/get',
                 IncomeResponse,
                 access_token: access_token
end