accountHistory(since:isMonitoring:)
Returns a list of accounts a person added since a time specified by the provided financial history token.
Declaration
func accountHistory(since token: FinanceStore.HistoryToken? = nil, isMonitoring: Bool = true) -> FinanceStore.History<Account>Parameters
- token:
An optional
HistoryToken. - isMonitoring:
A Boolean value that indicates if the framework should return a
Historythat indicates the changes to the accounts over time. Defaults totrue.
Return Value
A History that describes the accounts.
Discussion
Use this method to list and monitor accounts present in a person’s Wallet. If provided, the framework uses the since history token as a starting point to evaluate which accounts to return.