群组共享文件分页列表结果。

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

Properties

items: readonly GroupSharedFile[]

当前页的共享文件列表。

pageNum?: number

当前页码,从 1 开始。

pageSize?: number

当前页返回的文件数量。

cursor?: string

下一页的分页游标。如果当前页为最后一页,返回结果中的 cursor 为空字符串。

hasMore?: boolean

是否还有下一页数据。