其他设备清空所有会话未读数事件。

interface MultiDeviceAllConversationsUnreadClearedEvent {
    deviceId?: string;
    timestamp?: number;
    raw?: Readonly<Record<string, unknown>>;
    category: "conversation";
    mark?: number;
    remindType?: string;
    silentMode?: Readonly<Record<string, unknown>>;
    operatorId?: string;
    operation: "ALL_CONVERSATIONS_UNREAD_MESSAGE_COUNT_CLEARED";
}

Hierarchy

  • MultiDeviceConversationEventBase
    • MultiDeviceAllConversationsUnreadClearedEvent

Properties

deviceId?: string

来源设备 ID。

timestamp?: number

事件时间戳。

raw?: Readonly<Record<string, unknown>>

原始调试数据。

category: "conversation"

固定为会话事件分类。

mark?: number

会话标记槽位。

remindType?: string

消息提醒类型。

silentMode?: Readonly<Record<string, unknown>>

免打扰配置快照。

operatorId?: string

操作者用户 ID。

operation: "ALL_CONVERSATIONS_UNREAD_MESSAGE_COUNT_CLEARED"

固定为清空全部会话未读数操作。