accountBalanceHistory(forAccountID:since:isMonitoring:)
Returns the account balance history since a time specified by the provided financial history token.
Declaration
func accountBalanceHistory(forAccountID accountID: UUID, since token: FinanceStore.HistoryToken? = nil, isMonitoring: Bool = true) -> FinanceStore.History<AccountBalance>Parameters
- accountID:
A Uuid that identifies a specific account a person has added to the finance store.
- token:
An optional
HistoryTokenthat defines the starting date and time to return records from. - isMonitoring:
A Boolean value that indicates whether the framework should return a
Historysequence that indicates the changes to the accounts over time. Defaults totrue.
Return Value
A History that describes the account balances.
Discussion
Use this method to monitor the balance of a specific account. Provide a historyToken to specify a starting data and time.