Package com.incode.welcome_sdk.listeners
Interface OnboardingSessionListener
-
- All Implemented Interfaces:
-
com.incode.welcome_sdk.listeners.BaseListener,com.incode.welcome_sdk.listeners.ErrorListener,com.incode.welcome_sdk.listeners.UserCancelledListener
public interface OnboardingSessionListener implements BaseListener
Interface for getting onboarding result after call createNewOnboardingSession()
-
-
Method Summary
Modifier and Type Method Description abstract voidonOnboardingSessionCreated(@Nullable() String token, @Nullable() String interviewId, @Deprecated() String region)Called when onboarding session is created successfully -
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
-
onOnboardingSessionCreated
abstract void onOnboardingSessionCreated(@Nullable() String token, @Nullable() String interviewId, @Deprecated() String region)
Called when onboarding session is created successfully
- Parameters:
token- Incode's token for this sessioninterviewId- Id of the onboarding application interviewregion- Deprecated; Do not use.
-
-
-
-