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

com.pulumi.gcp.diagflow.kotlin.inputs.CxTestCaseTestCaseConversationTurnUserInputInputDtmfArgs.kt Maven / Gradle / Ivy

@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("wrhwfshmjtpwawhe")
    public suspend fun digits(`value`: Output) {
        this.digits = value
    }

    /**
     * @param value The finish digit (if any).
     */
    @JvmName("jpjghmtbesxcotwe")
    public suspend fun finishDigit(`value`: Output) {
        this.finishDigit = value
    }

    /**
     * @param value The dtmf digits.
     */
    @JvmName("xmlpxpwdyjxolgqh")
    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("wwjhpiqqgrcquiyi")
    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 - 2025 Weber Informatics LLC | Privacy Policy