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

ai.tock.bot.mongo.NextStateLookup_.kt Maven / Gradle / Ivy

package ai.tock.bot.mongo

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 __NextState: KProperty1
    get() = NextStateLookup::nextState
internal class NextStateLookup_(previous: KPropertyPath?, property: KProperty1<*,
        NextStateLookup?>) : KPropertyPath(previous,property) {
    val nextState: DialogFlowStateCol_
        get() = DialogFlowStateCol_(this,NextStateLookup::nextState)

    companion object {
        val NextState: DialogFlowStateCol_
            get() = DialogFlowStateCol_(null,__NextState)}
}

internal class NextStateLookup_Col(previous: KPropertyPath?, property: KProperty1<*,
        Collection?>) : KCollectionPropertyPath>(previous,property) {
    val nextState: DialogFlowStateCol_
        get() = DialogFlowStateCol_(this,NextStateLookup::nextState)

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

internal class NextStateLookup_Map(previous: KPropertyPath?, property: KProperty1<*,
        Map?>) : KMapPropertyPath>(previous,property) {
    val nextState: DialogFlowStateCol_
        get() = DialogFlowStateCol_(this,NextStateLookup::nextState)

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy