Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 902 Bytes

fetch load money options.md

File metadata and controls

20 lines (16 loc) · 902 Bytes

Payment Options for Load Money

Note:

  • This method is only required when you are implementing Load Money into Wallet feature.
  • Load Money payment options differes from normal PG Payment.
  • These are the payment options enabled/available for you by Citrus while loading money
  • Following method should be used to fetch Load Money Payment Options

        citrusClient.getInstance(getActivity()).getLoadMoneyPaymentOptions(new Callback<MerchantPaymentOption>() {
                @Override
                public void success(MerchantPaymentOption loadMoneyPaymentOptions) {
                   ArrayList<NetbankingOption> mNetbankingOptionsList = mMerchantPaymentOption.getNetbankingOptionList();//this will give you only bank list
                }
    
                @Override
                public void error(CitrusError error) {
    
                }
            });