mirror of
https://github.com/appwrite/sdk-for-apple.git
synced 2026-04-07 19:17:50 +00:00
14 lines
309 B
Swift
14 lines
309 B
Swift
import Foundation
|
|
|
|
public enum ExecutionStatus: String, CustomStringConvertible {
|
|
case waiting = "waiting"
|
|
case processing = "processing"
|
|
case completed = "completed"
|
|
case failed = "failed"
|
|
case scheduled = "scheduled"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|