Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 562 Bytes

Pay using Citrus Cash.md

File metadata and controls

21 lines (16 loc) · 562 Bytes

Pay using Citrus Cash

  • You can perform a transaction using Citrus cash.
  •  try {
              mCitrusClient.prepaidPay(new PaymentType.CitrusCash(new Amount("5"),"BILL_URL"),new Callback<PaymentResponse>() {
                  @Override
                  public void success(PaymentResponse paymentResponse) {
                      
                  }
    
                  @Override
                  public void error(CitrusError citrusError) {
    
                  }
              });
            } catch (CitrusException e) {
                e.printStackTrace();
            }