Transactions
fun Transactions( title: String, accounts: List<String>? = emptyList(), categories: List<String>? = emptyList(), dateInterval: DateInterval? = null, query: String? = null, includeUpcoming: Boolean = false, sort: SearchQuery.SortEnum? = SearchQuery.SortEnum.DATE, order: SearchQuery.OrderEnum? = SearchQuery.OrderEnum.DESC, limit: Int? = null)
Content copied to clipboard
Parameters
title
The title of the page.
accounts
A list of account IDs to filter transactions from. Pass an empty list to include transactions from all accounts.
categories
A list of category IDs to filter transactions from. Pass an empty list to include transactions from all categories.
date Interval
A date interval DateInterval for which transactions should be included.
query
Additional transaction query parameters.
include Upcoming
Determines whether to include upcoming transactions. Defaults to false.
sort
SearchQuery.SortEnum Specifies the sorting criteria for transactions.
order
SearchQuery.OrderEnum Specifies the order in which transactions will be presented.
limit
The maximum number of transactions to retrieve.