com.pulumi.gitlab.kotlin.outputs.GetProjectMergeRequestAssignee.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.Double
import kotlin.String
import kotlin.Suppress
/**
*
* @property avatarUrl A link to the user's avatar image.
* @property id The internal ID number of the user.
* @property name The name of the user.
* @property state The state of the user account.
* @property username The username of the user.
* @property webUrl A link to the user's profile page.
*/
public data class GetProjectMergeRequestAssignee(
public val avatarUrl: String,
public val id: Double,
public val name: String,
public val state: String,
public val username: String,
public val webUrl: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gitlab.outputs.GetProjectMergeRequestAssignee): GetProjectMergeRequestAssignee = GetProjectMergeRequestAssignee(
avatarUrl = javaType.avatarUrl(),
id = javaType.id(),
name = javaType.name(),
state = javaType.state(),
username = javaType.username(),
webUrl = javaType.webUrl(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy