I can easily return OrderID using:
String orderId = intent.getStringExtra(Intents.EXTRA_ORDER_ID);
and I see there an Extra used on ACTIONMERCHANTTENDER that stores the Order itself (EXTRAORDER), as documented here: https://clover.github.io/clover-andro...ORDER
Order order = intent.getStringExtra(Intents.EXTRA_ORDER);
I can't understand how to load this into an Order object. Obviously there is no "getOrderExtra" method, so I seem to be limited to returning standard object types. Casting didn't work for me, so I thought I would ask here!