Interface GetGroupsForCurrentUserResponse

interface GetGroupsForCurrentUserResponse {
    groups: Pick<Group,
        | "name"
        | "id"
        | "isProjectGroup"
        | "isSystemGroup">[];
}

Properties

Properties

groups: Pick<Group,
    | "name"
    | "id"
    | "isProjectGroup"
    | "isSystemGroup">[]

An array of group information objects.