We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca77426 commit 04ce156Copy full SHA for 04ce156
1 file changed
openapi-processor-core-parser-api/src/main/kotlin/io/openapiprocessor/core/parser/HttpMethod.kt
@@ -9,6 +9,11 @@ package io.openapiprocessor.core.parser
9
* http methods.
10
*/
11
class HttpMethod private constructor(val method: String) {
12
+
13
+ override fun toString(): String {
14
+ return method
15
+ }
16
17
companion object {
18
val DELETE = HttpMethod("delete")
19
val GET = HttpMethod("get")
0 commit comments