mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
14 lines
293 B
Swift
14 lines
293 B
Swift
import Foundation
|
|
|
|
public enum MessageStatus: String, CustomStringConvertible {
|
|
case draft = "draft"
|
|
case processing = "processing"
|
|
case scheduled = "scheduled"
|
|
case sent = "sent"
|
|
case failed = "failed"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|