mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
16 lines
425 B
Swift
16 lines
425 B
Swift
import Foundation
|
|
|
|
public enum ProjectEmailTemplateId: String, Codable, CustomStringConvertible {
|
|
case verification = "verification"
|
|
case magicSession = "magicSession"
|
|
case recovery = "recovery"
|
|
case invitation = "invitation"
|
|
case mfaChallenge = "mfaChallenge"
|
|
case sessionAlert = "sessionAlert"
|
|
case otpSession = "otpSession"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|