设置群成员属性时的参数。

interface SetGroupMemberAttributesParams {
    groupId: string;
    userId: string;
    memberAttributes: Readonly<Record<string, string>>;
}

Hierarchy (View Summary)

Properties

groupId: string

群组 ID。

userId: string

成员用户 ID。

memberAttributes: Readonly<Record<string, string>>

待设置的成员属性键值对。键和值均为字符串。