HTTPMethod

public enum HTTPMethod : String

HTTP methods supported by RequestBuilder.

  • get

    HTTP GET method.

    Declaration

    Swift

    case get = "GET"
  • HTTP POST method.

    Declaration

    Swift

    case post = "POST"
  • put

    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"