You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/biometric/src/models.rs
+7-6Lines changed: 7 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,16 +7,17 @@ use serde::{Deserialize, Serialize};
7
7
#[derive(Debug,Default,Serialize)]
8
8
#[serde(rename_all = "camelCase")]
9
9
pubstructAuthOptions{
10
+
/// Enables authentication using the device's password. This feature is available on both Android and iOS.
10
11
puballow_device_credential:bool,
11
-
/// iOS only.
12
-
pubfallback_title:Option<String>,
13
-
/// iOS only.
12
+
/// Label for the Cancel button. This feature is available on both Android and iOS.
14
13
pubcancel_title:Option<String>,
15
-
/// Android only.
14
+
/// Specifies the text displayed on the fallback button if biometric authentication fails. This feature is available iOS only.
15
+
pubfallback_title:Option<String>,
16
+
/// Title indicating the purpose of biometric verification. This feature is available Android only.
16
17
pubtitle:Option<String>,
17
-
/// Android only.
18
+
/// SubTitle providing contextual information of biometric verification. This feature is available Android only.
18
19
pubsubtitle:Option<String>,
19
-
/// Android only.
20
+
/// Specifies whether additional user confirmation is required, such as pressing a button after successful biometric authentication. This feature is available Android only.
0 commit comments