com.pulumi.gcp.diagflow.kotlin.inputs.CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.diagflow.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.diagflow.inputs.CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property digits The dtmf digits.
* @property finishDigit The finish digit (if any).
*/
public data class CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs(
public val digits: Output? = null,
public val finishDigit: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.diagflow.inputs.CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs =
com.pulumi.gcp.diagflow.inputs.CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs.builder()
.digits(digits?.applyValue({ args0 -> args0 }))
.finishDigit(finishDigit?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs].
*/
@PulumiTagMarker
public class CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgsBuilder internal constructor() {
private var digits: Output? = null
private var finishDigit: Output? = null
/**
* @param value The dtmf digits.
*/
@JvmName("ktrqgmkwmqnjnhqo")
public suspend fun digits(`value`: Output) {
this.digits = value
}
/**
* @param value The finish digit (if any).
*/
@JvmName("gbtamflrwtuksogc")
public suspend fun finishDigit(`value`: Output) {
this.finishDigit = value
}
/**
* @param value The dtmf digits.
*/
@JvmName("jwdwkmlwceobjpwk")
public suspend fun digits(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.digits = mapped
}
/**
* @param value The finish digit (if any).
*/
@JvmName("kddppqgofynolnup")
public suspend fun finishDigit(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.finishDigit = mapped
}
internal fun build(): CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs =
CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs(
digits = digits,
finishDigit = finishDigit,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy