AuthenticateParameters

data class AuthenticateParameters(    val context: FragmentActivity,     val sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES,     val promptData: Biometrics.PromptData? = null)

Data class used for wrapping parameters used with Biometrics authentication flow

Constructors

Link copied to clipboard
fun AuthenticateParameters(    context: FragmentActivity,     sessionDurationMinutes: UInt = Constants.DEFAULT_SESSION_TIME_MINUTES,     promptData: Biometrics.PromptData? = null)

Properties

Link copied to clipboard
val context: FragmentActivity

is the calling FragmentActivity

Link copied to clipboard
val promptData: Biometrics.PromptData? = null

is an optional biometric prompt configuration. If one is not provided a default will be created

Link copied to clipboard
val sessionDurationMinutes: UInt

indicates how long the session should last before it expires