HTTPMethod

public enum HTTPMethod : String

Represents HTTP methods used in network requests.

  • get

    Declaration

    Swift

    case get = "GET"
  • put

    Declaration

    Swift

    case put = "PUT"
  • Declaration

    Swift

    case post = "POST"
  • Declaration

    Swift

    case delete = "DELETE"