mirror of
https://github.com/appwrite/sdk-for-swift.git
synced 2026-06-06 19:27:57 +00:00
16 lines
330 B
Swift
16 lines
330 B
Swift
import Foundation
|
|
|
|
public enum ExecutionMethod: String, Codable, CustomStringConvertible {
|
|
case gET = "GET"
|
|
case pOST = "POST"
|
|
case pUT = "PUT"
|
|
case pATCH = "PATCH"
|
|
case dELETE = "DELETE"
|
|
case oPTIONS = "OPTIONS"
|
|
case hEAD = "HEAD"
|
|
|
|
public var description: String {
|
|
return rawValue
|
|
}
|
|
}
|