Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. // Obtain the current Merchant User Cashier detail (linked Cashier)
  2. accept.cash().getActiveCashiers()
  3. .subscribe(merchantCashiers -> {
  4. /**
  5. * 1. Initialise SDK with merchant credentials
  6. * 2. If the Merchant User has Cashier linked
  7. * 2.1 Present the Cashier details for PIN capture
  8. * 2.2 Capture the Cashiers PIN
  9. * 2.3 Validate PIN [sdk.cashManager validatePin:cashierId:completion]
  10. * 2.4 If PIN NOT valid disallow application access otherwise
  11. * 3. Allow application access
  12. **/
  13. }, throwable -> {
  14. // handle error
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement