![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.logic.kotlin.outputs.PartnerContentResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.logic.kotlin.outputs
import kotlin.Suppress
/**
* The integration account partner content.
* @property b2b The B2B partner content.
*/
public data class PartnerContentResponse(
public val b2b: B2BPartnerContentResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.logic.outputs.PartnerContentResponse): PartnerContentResponse = PartnerContentResponse(
b2b = javaType.b2b().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.logic.kotlin.outputs.B2BPartnerContentResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy