HTTPMethod
public enum HTTPMethod : String
HTTP methods supported by RequestBuilder.
-
HTTP GET method.
Declaration
Swift
case get = "GET" -
HTTP POST method.
Declaration
Swift
case post = "POST" -
HTTP PUT method.
Declaration
Swift
case put = "PUT" -
HTTP PATCH method.
Declaration
Swift
case patch = "PATCH" -
HTTP DELETE method.
Declaration
Swift
case delete = "DELETE" -
HTTP HEAD method.
Declaration
Swift
case head = "HEAD" -
HTTP OPTIONS method.
Declaration
Swift
case options = "OPTIONS"
View on GitHub