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.

Constructors

Link copied to clipboard
constructor(groupKey: String, channels: List<Channel>, unreadChannels: Int = 0, next: String? = null, prev: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val next: String?
Link copied to clipboard
val prev: String?
Link copied to clipboard