TypeInfo

data class TypeInfo(val type: KClass<*>, val reifiedType: Type, val kotlinType: KType? = null)

Ktor type information.

Constructors

Link copied to clipboard
constructor(type: KClass<*>, reifiedType: Type, kotlinType: KType? = null)

Properties

Link copied to clipboard
val kotlinType: KType? = null

: kotlin reified type with all generic type parameters.

Link copied to clipboard

: type with substituted generics

Link copied to clipboard
val type: KClass<*>

: source KClass<*>