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: library/src/main/java/io/appwrite/models/Membership.kt
+5-5
Original file line number
Diff line number
Diff line change
@@ -32,13 +32,13 @@ data class Membership(
32
32
valuserId:String,
33
33
34
34
/**
35
-
* User name.
35
+
* User name. Hide this attribute by toggling membership privacy in the Console.
36
36
*/
37
37
@SerializedName("userName")
38
38
valuserName:String,
39
39
40
40
/**
41
-
* User email address.
41
+
* User email address. Hide this attribute by toggling membership privacy in the Console.
42
42
*/
43
43
@SerializedName("userEmail")
44
44
valuserEmail:String,
@@ -74,7 +74,7 @@ data class Membership(
74
74
valconfirm:Boolean,
75
75
76
76
/**
77
-
* Multi factor authentication status, true if the user has MFA enabled or false otherwise.
77
+
* Multi factor authentication status, true if the user has MFA enabled or false otherwise. Hide this attribute by toggling membership privacy in the Console.
Copy file name to clipboardexpand all lines: library/src/main/java/io/appwrite/services/Account.kt
+17-13
Original file line number
Diff line number
Diff line change
@@ -190,7 +190,7 @@ class Account(client: Client) : Service(client) {
190
190
)
191
191
192
192
/**
193
-
* List Identities
193
+
* List identities
194
194
*
195
195
* Get the list of identities for the currently logged in user.
196
196
*
@@ -370,7 +370,7 @@ class Account(client: Client) : Service(client) {
370
370
)
371
371
372
372
/**
373
-
* Create Authenticator
373
+
* Create authenticator
374
374
*
375
375
* Add an authenticator app to be used as an MFA factor. Verify the authenticator using the [verify authenticator](/docs/references/cloud/client-web/account#updateMfaAuthenticator) method.
376
376
*
@@ -404,7 +404,7 @@ class Account(client: Client) : Service(client) {
404
404
405
405
406
406
/**
407
-
* Verify Authenticator
407
+
* Verify authenticator
408
408
*
409
409
* Verify an authenticator app after adding it using the [add authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator) method.
410
410
*
@@ -441,7 +441,7 @@ class Account(client: Client) : Service(client) {
441
441
}
442
442
443
443
/**
444
-
* Verify Authenticator
444
+
* Verify authenticator
445
445
*
446
446
* Verify an authenticator app after adding it using the [add authenticator](/docs/references/cloud/client-web/account#createMfaAuthenticator) method.
447
447
*
@@ -460,7 +460,7 @@ class Account(client: Client) : Service(client) {
460
460
)
461
461
462
462
/**
463
-
* Delete Authenticator
463
+
* Delete authenticator
464
464
*
465
465
* Delete an authenticator for a user by ID.
466
466
*
@@ -489,7 +489,7 @@ class Account(client: Client) : Service(client) {
489
489
490
490
491
491
/**
492
-
* Create MFA Challenge
492
+
* Create MFA challenge
493
493
*
494
494
* Begin the process of MFA verification after sign-in. Finish the flow with [updateMfaChallenge](/docs/references/cloud/client-web/account#updateMfaChallenge) method.
495
495
*
@@ -523,7 +523,7 @@ class Account(client: Client) : Service(client) {
523
523
524
524
525
525
/**
526
-
* Create MFA Challenge (confirmation)
526
+
* Create MFA challenge (confirmation)
527
527
*
528
528
* Complete the MFA challenge by providing the one-time password. Finish the process of MFA verification by providing the one-time password. To begin the flow, use [createMfaChallenge](/docs/references/cloud/client-web/account#createMfaChallenge) method.
529
529
*
@@ -555,7 +555,7 @@ class Account(client: Client) : Service(client) {
555
555
556
556
557
557
/**
558
-
* List Factors
558
+
* List factors
559
559
*
560
560
* List the factors available on the account to be used as a MFA challange.
561
561
*
@@ -586,7 +586,7 @@ class Account(client: Client) : Service(client) {
586
586
587
587
588
588
/**
589
-
* Get MFA Recovery Codes
589
+
* Get MFA recovery codes
590
590
*
591
591
* Get recovery codes that can be used as backup for MFA flow. Before getting codes, they must be generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method. An OTP challenge is required to read recovery codes.
592
592
*
@@ -617,7 +617,7 @@ class Account(client: Client) : Service(client) {
617
617
618
618
619
619
/**
620
-
* Create MFA Recovery Codes
620
+
* Create MFA recovery codes
621
621
*
622
622
* Generate recovery codes as backup for MFA flow. It's recommended to generate and show then immediately after user successfully adds their authehticator. Recovery codes can be used as a MFA verification type in [createMfaChallenge](/docs/references/cloud/client-web/account#createMfaChallenge) method.
623
623
*
@@ -648,7 +648,7 @@ class Account(client: Client) : Service(client) {
648
648
649
649
650
650
/**
651
-
* Regenerate MFA Recovery Codes
651
+
* Regenerate MFA recovery codes
652
652
*
653
653
* Regenerate recovery codes that can be used as backup for MFA flow. Before regenerating codes, they must be first generated using [createMfaRecoveryCodes](/docs/references/cloud/client-web/account#createMfaRecoveryCodes) method. An OTP challenge is required to regenreate recovery codes.
654
654
*
@@ -1209,7 +1209,9 @@ class Account(client: Client) : Service(client) {
0 commit comments