GroupedChannelsGroupQuery

data class GroupedChannelsGroupQuery(val limit: Int? = null, val next: String? = null, val prev: String? = null)

Per-group request options for ChatClient.queryGroupedChannels.

Parameters

limit

Max channels for this group. null falls back to the request-level limit (which, in turn, falls back to the server default when also null).

next

Cursor for the next page of this group. Mutually exclusive with prev.

prev

Cursor for the previous page of this group. Mutually exclusive with next.

Constructors

Link copied to clipboard
constructor(limit: Int? = null, next: String? = null, prev: String? = null)

Properties

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