GetGroupMembershipResult

data class GetGroupMembershipResult(val accessLevel: String, val fullPath: String, val groupId: Int, val id: String, val inherited: Boolean? = null, val members: List<GetGroupMembershipMember>)

A collection of values returned by getGroupMembership.

Constructors

Link copied to clipboard
constructor(accessLevel: String, fullPath: String, groupId: Int, id: String, inherited: Boolean? = null, members: List<GetGroupMembershipMember>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Only return members with the desired access level. Acceptable values are: guest, reporter, developer, maintainer, owner.

Link copied to clipboard

The full path of the group.

Link copied to clipboard

The ID of the group.

Link copied to clipboard
val id: String

The ID of the group membership. In the format of <group-id:access-level>.

Link copied to clipboard
val inherited: Boolean? = null

Return all project members including members through ancestor groups.

Link copied to clipboard

The list of group members.