mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
13 lines
283 B
Swift
13 lines
283 B
Swift
import Foundation
|
|
|
|
public enum StatusCode: String, Codable, CustomStringConvertible {
|
|
case movedPermanently = "301"
|
|
case found = "302"
|
|
case temporaryRedirect = "307"
|
|
case permanentRedirect = "308"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|