GetUserPlainArgs

data class GetUserPlainArgs(val email: String? = null, val namespaceId: Int? = null, val userId: Int? = null, val username: String? = null) : ConvertibleToJava<GetUserPlainArgs>

A collection of arguments for invoking getUser.

Constructors

Link copied to clipboard
constructor(email: String? = null, namespaceId: Int? = null, userId: Int? = null, username: String? = null)

Properties

Link copied to clipboard
val email: String? = null

The public email address of the user. Note: before GitLab 14.8 the lookup was based on the users primary email address.

Link copied to clipboard
val namespaceId: Int? = null

The ID of the user's namespace. Requires admin token to access this field. Available since GitLab 14.10.

Link copied to clipboard
val userId: Int? = null

The ID of the user.

Link copied to clipboard
val username: String? = null

The username of the user.

Functions

Link copied to clipboard
open override fun toJava(): GetUserPlainArgs