Interface IDVSession
-
public interface IDVSessionIDVSessionis used to get the available IDV methods, submit the user's selection and then validate the OTP to complete IDV flow.- Since:
- 3.0.0
- Version:
- 3.0.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IDVMethod>getIdvMethods()Gets the list ofIDVMethod.voidselectIDVMethod(IDVMethod idvMethod)Based on selectedIDVMethod, the corresponding verification flow will be triggered.voidvalidateOTP(String otp)Completes the IDV flow with OTP validation.
-
-
-
Method Detail
-
getIdvMethods
@NonNull List<IDVMethod> getIdvMethods()
Gets the list ofIDVMethod.- Returns:
- The list of
IDVMethodthat is available.
-
selectIDVMethod
void selectIDVMethod(@NonNull IDVMethod idvMethod)
Based on selectedIDVMethod, the corresponding verification flow will be triggered.- Parameters:
idvMethod- TheIDVMethodselected. This is a mandatory input.
-
-