Multi tender payments

Hi,
Is there a sample app that shows how to use the multi tender payment fragments?
We followed the below link but it didn’t have much info on that:

https://poynt.github.io/developer/doc/onterminal-apps.html
https://poynt.github.io/developer/tut/poynt-payment-fragments.html

Hi Prasad,

to enable a multi-tender payment you need to do this:

    Payment payment = new Payment();
    String referenceId = UUID.randomUUID().toString();
    payment.setReferenceId(referenceId);
    payment.setAmount(3000l);
    payment.setCurrency(currencyCode);
    // enables multi-tender
    payment.setMultiTender(true);