import Foundation public enum ExecutionMethod: String, Codable, CustomStringConvertible { case gET = "GET" case pOST = "POST" case pUT = "PUT" case pATCH = "PATCH" case dELETE = "DELETE" case oPTIONS = "OPTIONS" case hEAD = "HEAD" public var description: String { return rawValue } }