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

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

Properties

userId: string

成员用户 ID。

memberAttributes: Readonly<Record<string, string>>

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