群组摘要信息。

interface GroupSummary {
    groupId: string;
    name: string;
    description?: string;
    memberCount?: number;
    public?: boolean;
    joinApprovalRequired?: boolean;
    allowInvites?: boolean;
    maxMembers?: number;
    role?: GroupRole;
    disabled?: boolean;
}

Hierarchy (View Summary)

Properties

groupId: string

群组 ID。

name: string

群组名称。

description?: string

群组描述。

memberCount?: number

当前群组成员数量。

public?: boolean

群组是否为公开群。

joinApprovalRequired?: boolean

用户加入群组时是否需要管理员审批。

allowInvites?: boolean

是否允许普通成员邀请其他用户加入群组。

maxMembers?: number

群组最大成员数。

role?: GroupRole

当前用户在群组中的角色。

disabled?: boolean

群组是否已被禁用。