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

ai.tock.bot.definition.IntentWithoutNamespace_.kt Maven / Gradle / Ivy

package ai.tock.bot.definition

import kotlin.String
import kotlin.Suppress
import kotlin.collections.Collection
import kotlin.collections.Map
import kotlin.reflect.KProperty1
import org.litote.kmongo.property.KCollectionPropertyPath
import org.litote.kmongo.property.KMapPropertyPath
import org.litote.kmongo.property.KPropertyPath

private val __Name: KProperty1
    get() = IntentWithoutNamespace::name
class IntentWithoutNamespace_(previous: KPropertyPath?, property: KProperty1<*,
        IntentWithoutNamespace?>) : KPropertyPath(previous,property) {
    val name_: KPropertyPath
        get() = KPropertyPath(this,__Name)

    companion object {
        val Name: KProperty1
            get() = __Name}
}

class IntentWithoutNamespace_Col(previous: KPropertyPath?, property: KProperty1<*,
        Collection?>) : KCollectionPropertyPath>(previous,property) {
    val name_: KPropertyPath
        get() = KPropertyPath(this,__Name)

    @Suppress("UNCHECKED_CAST")
    override fun memberWithAdditionalPath(additionalPath: String): IntentWithoutNamespace_ =
            IntentWithoutNamespace_(this, customProperty(this, additionalPath))}

class IntentWithoutNamespace_Map(previous: KPropertyPath?, property: KProperty1<*,
        Map?>) : KMapPropertyPath>(previous,property) {
    val name_: KPropertyPath
        get() = KPropertyPath(this,__Name)

    @Suppress("UNCHECKED_CAST")
    override fun memberWithAdditionalPath(additionalPath: String): IntentWithoutNamespace_ =
            IntentWithoutNamespace_(this, customProperty(this, additionalPath))}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy