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

com.pulumi.googlenative.dialogflow.v2.kotlin.outputs.GoogleCloudDialogflowV2IntentMessageSelectItemInfoResponse.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dialogflow.v2.kotlin.outputs

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * Additional info about the select item for when it is triggered in a dialog.
 * @property key A unique key that will be sent back to the agent if this response is given.
 * @property synonyms Optional. A list of synonyms that can also be used to trigger this item in dialog.
 */
public data class GoogleCloudDialogflowV2IntentMessageSelectItemInfoResponse(
    public val key: String,
    public val synonyms: List,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v2.outputs.GoogleCloudDialogflowV2IntentMessageSelectItemInfoResponse): GoogleCloudDialogflowV2IntentMessageSelectItemInfoResponse =
            GoogleCloudDialogflowV2IntentMessageSelectItemInfoResponse(
                key = javaType.key(),
                synonyms = javaType.synonyms().map({ args0 -> args0 }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy