Tip Integration
This page contains the requirements for integrating the tip enhancements. Please implement below items in your application.
1. Sale
Intent IntentCard = new Intent();
IntentCard.setPackage(tag);
IntentCard.setAction(getResources().getString(R.string.Sale_Action)); //Sale_Action="Sale_Action"
Bundle bundle_card = new Bundle();
bundle_card.putInt("Amount",amount);
bundle_card.putInt("CardReadType",cardReadType);
bundle_card.putString("CardData",cardData);
bundle_card.putString("UUID",uuid);
bundle_card.putInt("allowedCardType",allowedCardType);
bundle_card.putInt("isGIBTerminal",isGIBTerminal);
bundle.putBoolean("isDovizPOS", isDovizPOS)
bundle.putInt("currenyRate", currencyRate)
bundle.putInt("currenyUnit", currencyUnit)
bundle.putString("currencyCode", currencyCode)
bundle.putInt("currenyAmount", currencyAmount)
bundle.putLong("tipAmount")
IntentCard.setType("text/plain");
IntentCard.putExtras(bundle_card);
startActivityForResult(IntentCard, getResources().getInteger(R.integer.Sale_Request_Code)); //Sale_Request_Code=11.1 Sale Response
2 Parameter
Last updated

