
com.pulumi.azurenative.portal.kotlin.outputs.DashboardPartsPositionResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.portal.kotlin.outputs
import kotlin.Any
import kotlin.Int
import kotlin.Suppress
/**
* The dashboard's part position.
* @property colSpan The dashboard's part column span.
* @property metadata The dashboard part's metadata.
* @property rowSpan The dashboard's part row span.
* @property x The dashboard's part x coordinate.
* @property y The dashboard's part y coordinate.
*/
public data class DashboardPartsPositionResponse(
public val colSpan: Int,
public val metadata: Any? = null,
public val rowSpan: Int,
public val x: Int,
public val y: Int,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.portal.outputs.DashboardPartsPositionResponse): DashboardPartsPositionResponse = DashboardPartsPositionResponse(
colSpan = javaType.colSpan(),
metadata = javaType.metadata().map({ args0 -> args0 }).orElse(null),
rowSpan = javaType.rowSpan(),
x = javaType.x(),
y = javaType.y(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy