群组分页列表结果。

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

Properties

items: readonly GroupSummary[]

当前页的群组摘要列表。

pageNum?: number

当前页码,从 1 开始。

pageSize?: number

当前页返回的数据条数。

cursor?: string

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

hasMore?: boolean

是否还有下一页数据。