mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-04-07 19:17:48 +00:00
15 lines
331 B
Swift
15 lines
331 B
Swift
import Foundation
|
|
|
|
public enum DeploymentStatus: String, CustomStringConvertible {
|
|
case waiting = "waiting"
|
|
case processing = "processing"
|
|
case building = "building"
|
|
case ready = "ready"
|
|
case canceled = "canceled"
|
|
case failed = "failed"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|