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

com.pulumi.gitlab.kotlin.outputs.GroupEpicBoardList.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.4.2.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gitlab.kotlin.outputs

import kotlin.Int
import kotlin.Suppress

/**
 *
 * @property id The ID of the list.
 * @property labelId The ID of the label the list should be scoped to.
 * @property position The position of the list within the board. The position for the list is sed on the its position in the `lists` array.
 */
public data class GroupEpicBoardList(
    public val id: Int? = null,
    public val labelId: Int? = null,
    public val position: Int? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GroupEpicBoardList): GroupEpicBoardList = GroupEpicBoardList(
            id = javaType.id().map({ args0 -> args0 }).orElse(null),
            labelId = javaType.labelId().map({ args0 -> args0 }).orElse(null),
            position = javaType.position().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy