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

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

The newest version!
package de.jensklingenberg.ktorfit.poetspec

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

fun ParameterData.parameterSpec(): ParameterSpec {
    val parameterType = this.type.typeName ?: throw IllegalStateException("Type ${this.name} not found")
    return ParameterSpec(this.name, parameterType)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy