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