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

com.pulumi.gitlab.kotlin.outputs.GetProjectMembershipMember.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.String
import kotlin.Suppress

/**
 *
 * @property accessLevel The level of access to the group.
 * @property avatarUrl The avatar URL of the user.
 * @property expiresAt Expiration date for the group membership.
 * @property id The unique id assigned to the user by the gitlab server.
 * @property name The name of the user.
 * @property state Whether the user is active or blocked.
 * @property username The username of the user.
 * @property webUrl User's website URL.
 */
public data class GetProjectMembershipMember(
    public val accessLevel: String,
    public val avatarUrl: String,
    public val expiresAt: String,
    public val id: Int,
    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.GetProjectMembershipMember): GetProjectMembershipMember = GetProjectMembershipMember(
            accessLevel = javaType.accessLevel(),
            avatarUrl = javaType.avatarUrl(),
            expiresAt = javaType.expiresAt(),
            id = javaType.id(),
            name = javaType.name(),
            state = javaType.state(),
            username = javaType.username(),
            webUrl = javaType.webUrl(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy