LoginComplete

data class LoginComplete(val postLoginUrl: String?, val shouldPromptForBiometric: Boolean, val loginMethod: String?, val loginTime: Date)

LoginComplete is used to indicate that the login flow has completed.

Constructors

Link copied to clipboard
constructor(postLoginUrl: String?, shouldPromptForBiometric: Boolean, loginMethod: String?, loginTime: Date)

Properties

Link copied to clipboard

is used to indicate which login method was used to login.

Link copied to clipboard
Link copied to clipboard

is used to indicate which url the user should be redirected to after login. If the postLoginUrl is null, no post login redirect should be performed. The postLogin should always be shown before prompting for biometric login is triggered.

Link copied to clipboard

is used to indicate if the user should be prompted to setup biometric login. If the shouldPromptForBiometric is true, the user should be prompted to setup biometric login. The shouldPromptForBiometric will be false, the device does not support biometric login or the user has already set up biometric login. The shouldPromptForBiometric will also be false, the user has dismissed the biometric prompt before and the prompt interval from the server is not matching.