The class encapsulating an income stream.
Sections
Methods
Public
Attributes
[R] | confidence | The Float representation of Plaid's confidence in the income data associated with this particular income stream, with 0 being the lowest confidence and 1 being the highest. E.g. 0.9. |
[R] | days | The Integer extent of data found for this income stream. E.g. 314. |
[R] | monthly_income | The Float monthly income associated with the income stream. E.g. 5700. |
[R] | name | The String name of the entity associated with this income stream. E.g. “APPLE INC”. |
Instance Public methods
inspect()
Link
Also aliased as: to_s
Source: show
# File lib/plaid/income.rb, line 36 def inspect "#<Plaid::Income::Stream name=#{name.inspect}, " "monthly_income=#{monthly_income.inspect}, " "confidence=#{confidence.inspect}, " "days=#{days.inspect}>" end
Internal
Class Public methods