HTTPMethod

public enum HTTPMethod : String

Enumeration for HTTP methods

  • GET: GET
  • PUT: PUT
  • POST: POST
  • DELETE: DELETE
  • GET

    Declaration

    Swift

    case GET = "GET"
  • PUT

    Declaration

    Swift

    case PUT = "PUT"
  • Declaration

    Swift

    case POST = "POST"
  • Declaration

    Swift

    case DELETE = "DELETE"