com.pulumi.gitlab.kotlin.outputs.ProjectIssueTaskCompletionStatus.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gitlab-kotlin Show documentation
Show all versions of pulumi-gitlab-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.gitlab.kotlin.outputs
import kotlin.Int
import kotlin.Suppress
/**
*
* @property completedCount The number of tasks that are completed.
* @property count The number of tasks.
*/
public data class ProjectIssueTaskCompletionStatus(
public val completedCount: Int? = null,
public val count: Int? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.ProjectIssueTaskCompletionStatus): ProjectIssueTaskCompletionStatus = ProjectIssueTaskCompletionStatus(
completedCount = javaType.completedCount().map({ args0 -> args0 }).orElse(null),
count = javaType.count().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy