TypeInfo

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

Ktor type information.

Constructors

Link copied to clipboard
fun TypeInfo(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
val reifiedType: Type

: type with substituted generics

Link copied to clipboard
val type: KClass<*>

: source KClass<*>