Contents

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 HistoryToken that defines the starting date and time to return records from.

  • isMonitoring:

    A Boolean value that indicates whether the framework should return a History sequence that indicates the changes to the accounts over time. Defaults to true.

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.

See Also

Balances