Package com.incode.welcome_sdk.listeners
Interface IdScanListener
-
- All Implemented Interfaces:
-
com.incode.welcome_sdk.listeners.BaseListener
,com.incode.welcome_sdk.listeners.ErrorListener
,com.incode.welcome_sdk.listeners.UserCancelledListener
public interface IdScanListener implements BaseListener
-
-
Method Summary
Modifier and Type Method Description abstract Unit
onIdFrontCompleted(IdScanResult frontIdScanResult)
Called when the front of an ID or a Passport Photo page scan is completed. abstract Unit
onIdBackCompleted(IdScanResult backIdScanResult)
Called when the back of an ID scan is completed. -
Methods inherited from class com.incode.welcome_sdk.listeners.ErrorListener
onError
-
Methods inherited from class com.incode.welcome_sdk.listeners.UserCancelledListener
onUserCancelled
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
onIdFrontCompleted
abstract Unit onIdFrontCompleted(IdScanResult frontIdScanResult)
Called when the front of an ID or a Passport Photo page scan is completed.
- Parameters:
frontIdScanResult
- Result from ID scan step
-
onIdBackCompleted
abstract Unit onIdBackCompleted(IdScanResult backIdScanResult)
Called when the back of an ID scan is completed.
- Parameters:
backIdScanResult
- Result from ID scan step
-
-
-
-