RESTOperationType
public enum RESTOperationType : String
The type of API operation
-
GET operation
Declaration
Swift
case get = "GET"
-
PUT operation
Declaration
Swift
case put = "PUT"
-
POST operation
Declaration
Swift
case post = "POST"
-
PATCH operation
Declaration
Swift
case patch = "PATCH"
-
DELETE operation
Declaration
Swift
case delete = "DELETE"
-
HEAD operation
Declaration
Swift
case head = "HEAD"
-
Hub event name for this operation type.
Declaration
Swift
public var hubEventName: String { get }