消息话题类多设备事件。

interface MultiDeviceThreadEvent {
    deviceId?: string;
    timestamp?: number;
    raw?: Readonly<Record<string, unknown>>;
    category: "thread";
    operation: MultiDeviceThreadOperation;
    threadId: string;
    parentId?: string;
    userIds?: readonly string[];
    operatorId?: string;
    threadName?: string;
}

Hierarchy (View Summary)

Properties

deviceId?: string

来源设备 ID。

timestamp?: number

事件时间戳。

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

原始调试数据。

category: "thread"

固定为消息话题事件分类。

消息话题操作。

threadId: string

消息话题 ID。

parentId?: string

父消息 ID。

userIds?: readonly string[]

相关用户 ID 列表。

operatorId?: string

操作者用户 ID。

threadName?: string

消息话题名称。