mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
16 lines
379 B
Swift
16 lines
379 B
Swift
import Foundation
|
|
|
|
public enum ProjectAuthMethodId: String, Codable, CustomStringConvertible {
|
|
case emailPassword = "email-password"
|
|
case magicUrl = "magic-url"
|
|
case emailOtp = "email-otp"
|
|
case anonymous = "anonymous"
|
|
case invites = "invites"
|
|
case jwt = "jwt"
|
|
case phone = "phone"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|