![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.media.kotlin.outputs.LiveEventTrackEventResponse.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.media.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* The live event track event.
* @property data Event data.
* @property eventTime The time event raised.
* @property eventType The type of the track event.
*/
public data class LiveEventTrackEventResponse(
public val `data`: LiveEventTrackEventDataResponse? = null,
public val eventTime: String? = null,
public val eventType: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.media.outputs.LiveEventTrackEventResponse): LiveEventTrackEventResponse = LiveEventTrackEventResponse(
`data` = javaType.`data`().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.media.kotlin.outputs.LiveEventTrackEventDataResponse.Companion.toKotlin(args0)
})
}).orElse(null),
eventTime = javaType.eventTime().map({ args0 -> args0 }).orElse(null),
eventType = javaType.eventType().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy