mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-04-07 19:17:50 +00:00
13 lines
269 B
Swift
13 lines
269 B
Swift
import Foundation
|
|
|
|
public enum AuthenticationFactor: String, CustomStringConvertible {
|
|
case email = "email"
|
|
case phone = "phone"
|
|
case totp = "totp"
|
|
case recoverycode = "recoverycode"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|