消息表情回应。

interface MessageReaction {
    reaction: string;
    count: number;
    op?: readonly { operator: string; reactionType: "create" | "delete" }[];
    userList: string[];
    isAddedBySelf?: boolean;
}

Properties

reaction: string

表情标识。

count: number

该表情的回应人数。

op?: readonly { operator: string; reactionType: "create" | "delete" }[]

Reaction 更新操作列表。

userList: string[]

回应的用户 ID 列表。

isAddedBySelf?: boolean

当前用户是否已添加该表情。