All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.de.jensklingenberg.ktorfit.reqBuilderExtension.MethodCodeGeneration.kt Maven / Gradle / Ivy

There is a newer version: 2.2.0-1.0.28
Show newest version
package de.jensklingenberg.ktorfit.reqBuilderExtension

import de.jensklingenberg.ktorfit.model.annotations.CustomHttp
import de.jensklingenberg.ktorfit.model.annotations.HttpMethodAnnotation

fun getMethodCode(httpMethod: HttpMethodAnnotation): String {
    val httpMethodValue =
        if (httpMethod is CustomHttp) {
            httpMethod.customValue
        } else {
            httpMethod.httpMethod.keyword
        }
    return "method = HttpMethod.parse(\"${httpMethodValue}\")"
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy