HTTPMethod

public enum HTTPMethod

Encodings of the most common HTTP methods. These are passed by the Service to it’s HTTPAdapter.

  • GET

    A GET request.

    Declaration

    Swift

    case GET
  • A POST request.

    Declaration

    Swift

    case POST
  • PUT

    A PUT request.

    Declaration

    Swift

    case PUT
  • A PATCH request.

    Declaration

    Swift

    case PATCH
  • A DELETE request.

    Declaration

    Swift

    case DELETE