ACMBaseMethod
public enum ACMBaseMethod : String
ACMBaseMethod
Enumeration for holding network methods
-
Request type for GET
Declaration
Swift
case get = "GET"
-
Request type for POST
Declaration
Swift
case post = "POST"
-
Request type for PATCH
Declaration
Swift
case patch = "PATCH"
-
Request type for DELETE
Declaration
Swift
case delete = "DELETE"
-
Request type for PUT
Declaration
Swift
case put = "PUT"
-
Request type for HEAD
Declaration
Swift
case head = "HEAD"
-
Request type for OPTIONS
Declaration
Swift
case options = "OPTIONS"