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

main.de.jensklingenberg.ktorfit.poetspec.ParameterSpec.kt Maven / Gradle / Ivy

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

import com.squareup.kotlinpoet.ParameterSpec
import de.jensklingenberg.ktorfit.model.ParameterData

fun ParameterData.parameterSpec(filePath: String): ParameterSpec {
    val parameterType = findTypeName(this.type.parameterType, filePath)
    return ParameterSpec(this.name, parameterType)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy