RegisteredType

data class RegisteredType(val kClass: KClass<*>, val name: String)

A class the scan registered, and the name it was registered under.

Constructors

Link copied to clipboard
constructor(kClass: KClass<*>, name: String)

Properties

Link copied to clipboard
val kClass: KClass<*>

The Kotlin class.

Link copied to clipboard

What the database calls it - a type name for an enum or composite, a discriminator for a dynamic_dto class.

Functions

Link copied to clipboard
open override fun toString(): String