聊天室成员列表的返回结果。

interface ChatRoomMemberListResult {
    items: readonly ChatRoomMemberEntry[];
    cursor?: string;
    hasMore?: boolean;
}

Properties

items: readonly ChatRoomMemberEntry[]

成员条目列表。

cursor?: string

下一页游标。若为空,表示服务端未返回游标。

hasMore?: boolean

是否还有下一页数据。