历史消息分页结果。

interface MessageHistoryPage {
    items: readonly Message[];
    cursor: string;
    hasMore: boolean;
}

Properties

Properties

items: readonly Message[]

当前页的消息列表。

cursor: string

下一页游标。为空时表示没有后续数据。

hasMore: boolean

是否还有更多历史消息。