ENUM

TwoFactorMethod

Two Factor Methods the user can have enabled.

link GraphQL Schema definition

1enum TwoFactorMethod {
2
3# The user has 2fa enabled but does not have the authy app installed. Only way for
4# the user to receive the 2fa verification code is SMS.
5AUTHY_SMS
6
7# The user has 2fa enabled and has the authy app installed. The 2fa verification
8# code can be retreived from the authy app OR SMS.
9AUTHY_APP
10
11# The user has 2fa enabled and has gone through the totp onboarding process
12# successfully. The 2fa verification code can be retreived from the authenticator
13# app the user chose during onboarding.
14AUTHY_TOTP
15
16# unknown 2fa method.
17UNKNOWN
18}