ScheduledTransactionService
public class ScheduledTransactionService
Provides access to scheduled transaction operations
-
getScheduledTransaction(budgetId:AsynchronoustransactionId: ) Returns a single scheduled transaction for a budget.
Declaration
Swift
public func getScheduledTransaction( budgetId: String, transactionId: String ) async throws -> ScheduledTransactionDetailParameters
budgetIdThe id of the budget (last_used can also be used to specify the last used budget).
transactionIdId of the transaction.
Return Value
A single scheduled transaction
-
getScheduledTransactions(budgetId:Asynchronous) Returns all scheduled transactions for a budget.
Declaration
Swift
public func getScheduledTransactions(budgetId: String) async throws -> [ScheduledTransactionDetail]Parameters
budgetIdThe id of the budget (last_used can also be used to specify the last used budget).
Return Value
A list of scheduled transactions
View on GitHub
ScheduledTransactionService Class Reference