transactions
fun transactions(ticket: Ticket.Transactions, connectionData: ConnectionData, session: Session? = null): CompletableFuture<NonInteractiveResponse<List<Transaction>?>>
Refresh booked-and-pending transactions for connectionData.
refresh
.transactions(ticket, connectionData)
.thenAccept(
response -> {
List<Transaction> txs = response.getResult();
// null when the provider returned no transactions for the period.
});Content copied to clipboard