Sha256: 63b66328629af822aee85ab7c391603a44963043e541a8b8c06a9f7fcf0bccf9
Contents?: true
Size: 1.39 KB
Versions: 4
Compression:
Stored size: 1.39 KB
Contents
# Plaid::HistoricalBalance ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **date** | **String** | The date of the calculated historical balance, in an ISO 8601 format (YYYY-MM-DD) | | | **current** | **Float** | The total amount of funds in the account, calculated from the `current` balance in the `balance` object by subtracting inflows and adding back outflows according to the posted date of each transaction. If the account has any pending transactions, historical balance amounts on or after the date of the earliest pending transaction may differ if retrieved in subsequent Asset Reports as a result of those pending transactions posting. | | | **iso_currency_code** | **String** | The ISO-4217 currency code of the balance. Always `null` if `unofficial_currency_code` is non-`null`. | [optional] | | **unofficial_currency_code** | **String** | The unofficial currency code associated with the balance. Always `null` if `iso_currency_code` is non-`null`. See the [currency code schema](/docs/api/accounts#currency-code-schema) for a full listing of supported `iso_currency_code`s. | [optional] | ## Example ```ruby require 'plaid' instance = Plaid::HistoricalBalance.new( date: null, current: null, iso_currency_code: null, unofficial_currency_code: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
plaid-14.0.0.beta.4 | docs/HistoricalBalance.md |
plaid-14.0.0.beta.3 | docs/HistoricalBalance.md |
plaid-14.0.0.beta.2 | docs/HistoricalBalance.md |
plaid-14.0.0.beta.1 | docs/HistoricalBalance.md |