QueryThreadsRequest

data class QueryThreadsRequest @JvmOverloads constructor(val watch: Boolean = true, val replyLimit: Int = 2, val participantLimit: Int = 100, val memberLimit: Int = 100, val limit: Int = 10, val next: String? = null)

Query threads request.

Constructors

Link copied to clipboard
constructor(watch: Boolean = true, replyLimit: Int = 2, participantLimit: Int = 100, memberLimit: Int = 100, limit: Int = 10, next: String? = null)

Properties

Link copied to clipboard
val limit: Int = 10

The number of threads to return. Defaults to 10.

Link copied to clipboard
val memberLimit: Int = 100

The number of members to request per thread. Defaults to 100.

Link copied to clipboard
val next: String? = null
Link copied to clipboard

The number of thread participants to request per thread. Defaults to 100.

Link copied to clipboard
val replyLimit: Int = 2

The number of latest replies to fetch per thread. Defaults to 2.

Link copied to clipboard
val watch: Boolean = true

If true, all the channels corresponding to threads returned in response will be watched. Defaults to true.