GroupedChannelsGroup
data class GroupedChannelsGroup(val groupKey: String, val channels: List<Channel>, val unreadChannels: Int = 0, val next: String? = null, val prev: String? = null)
A channel group returned by ChatClient.queryGroupedChannels.
Parameters
groupKey
The name of the group.
channels
The channels that belong to this group.
unreadChannels
The total unread channel count in the group.
next
Cursor for the next page of this group, or null if there is no further page.
prev
Cursor for the previous page of this group, or null if there is none.