QueryThreadsResult

@Immutable
data class QueryThreadsResult(val threads: List<Thread>, val prev: String?, val next: String?)

Model representing the result of a 'Query Threads' operation.

Parameters

threads

: The list of threads.

prev

: The identifier for the previous page of threads.

next

: The identifier for the next page of threads.

Constructors

Link copied to clipboard
constructor(threads: List<Thread>, prev: String?, next: String?)

Properties

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