I just created a transacion on my account and I am trying to list this transaction. I am trying to get all transactions within the last 30 days, but I am also putting the range as 1 day after, to make sure recent charges are included. Its not working
Transaction.Filter f = Transaction.createFilter();
Transaction.Order o = Transaction.createOrder();
PaymillList<Transaction> list = transactionService.list(f.byCreatedAt(DateUtils.getDayInPast(30), DateUtils.getDayInPast(-1)),
o.asc().byCreatedAt());