Skip to main content
Version: 1.0.6

User Credit Info (optional)

This is used in merchant check out screen (listing BharatX as an option) to display to the user how much credit they have obtained till now, and the total amount of credit they have access to:

Your Android App
CreditAccessManager.getUserCreditInfo(this, new CreditAccessManager.OnCreditInfoCompleteListener {  void onComplete(CreditInfo creditInfo) {    // amounts in paise    long creditTaken = creditInfo.getCreditTaken();    long creditLimit = creditInfo.getCreditLimit();  }});