
com.pulumi.googlenative.dialogflow.v2.kotlin.outputs.GoogleCloudDialogflowV2IntentFollowupIntentInfoResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
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
/**
* Represents a single followup intent in the chain.
* @property followupIntentName The unique identifier of the followup intent. Format: `projects//agent/intents/`.
* @property parentFollowupIntentName The unique identifier of the followup intent's parent. Format: `projects//agent/intents/`.
*/
public data class GoogleCloudDialogflowV2IntentFollowupIntentInfoResponse(
public val followupIntentName: String,
public val parentFollowupIntentName: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.dialogflow.v2.outputs.GoogleCloudDialogflowV2IntentFollowupIntentInfoResponse): GoogleCloudDialogflowV2IntentFollowupIntentInfoResponse =
GoogleCloudDialogflowV2IntentFollowupIntentInfoResponse(
followupIntentName = javaType.followupIntentName(),
parentFollowupIntentName = javaType.parentFollowupIntentName(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy