聊天室共享文件列表的返回结果。

interface ChatRoomSharedFileListResult {
    items: readonly ChatRoomSharedFile[];
    pageNum?: number;
    pageSize?: number;
    cursor?: string;
    hasMore?: boolean;
}

Properties

items: readonly ChatRoomSharedFile[]

当前页的共享文件列表。

pageNum?: number

当前页码。

pageSize?: number

当前页大小。

cursor?: string

下一页游标。

hasMore?: boolean

是否还有下一页数据。