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