View Source Appwrite.Types.MfaFactors (appwrite v0.2.1)

Represents the MFA factors available for a user.

Fields

  • totp (boolean()): Whether TOTP (authenticator app) is available.
  • phone (boolean()): Whether phone (SMS) is available.
  • email (boolean()): Whether email OTP is available.
  • recovery_code (boolean()): Whether recovery codes are available.

Summary

Types

t()

@type t() :: %Appwrite.Types.MfaFactors{
  email: boolean(),
  phone: boolean(),
  recovery_code: boolean(),
  totp: boolean()
}