com.pulumi.azurenative.healthbot.kotlin.outputs.SkuResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.healthbot.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The resource model definition representing SKU
* @property name The name of the Azure Health Bot SKU
*/
public data class SkuResponse(
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.healthbot.outputs.SkuResponse): SkuResponse = SkuResponse(
name = javaType.name(),
)
}
}