We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0742b92 + 327a8c8 commit 6a0aae4Copy full SHA for 6a0aae4
core/src/main/java/com/web3auth/core/types/LoginParams.kt
@@ -9,5 +9,6 @@ data class LoginParams (
9
val dappShare: String? = null,
10
val extraLoginOptions: ExtraLoginOptions? = null,
11
val redirectUrl: Uri? = null,
12
- val appState: String? = null
+ val appState: String? = null,
13
+ val mfaLevel: MFALevel? = null
14
)
core/src/main/java/com/web3auth/core/types/MFALevel.kt
@@ -0,0 +1,14 @@
1
+package com.web3auth.core.types
2
+
3
+import com.google.gson.annotations.SerializedName
4
5
+enum class MFALevel {
6
+ @SerializedName("default")
7
+ DEFAULT,
8
+ @SerializedName("optional")
+ OPTIONAL,
+ @SerializedName("mandatory")
+ MANDATORY,
+ @SerializedName("none")
+ NONE
+}
0 commit comments