Hello,
referring to this discussion:
https://discuss.poynt.net/t/is-refund-functionality-available-in-poynt/141/5
and in particular to this code snippet:
Payment payment = data.getParcelableExtra(Intents.INTENT_EXTRAS_PAYMENT);
for (Transaction t : payment.getTransactions()) {
Log.d(TAG, "transaction id: " + t.getId());
}
I can’t find in documentation (javadoc) the structure of Transaction class.
It should be co.poynt.api.model.Transaction, and getTransactions method of Payment class returns a list of this objects, but where is the documentation about it ?
Thanks