ThreadList

@Serializable
data class ThreadList(val count: Int, val limit: Int? = null, val nextPageToken: String? = null, val threads: List<Thread>)

Paginated list of threads.

Constructors

Link copied to clipboard
constructor(count: Int, limit: Int? = null, nextPageToken: String? = null, threads: List<Thread>)

Properties

Link copied to clipboard
val count: Int
Link copied to clipboard
val limit: Int?
Link copied to clipboard
@SerialName(value = "next_page_token")
val nextPageToken: String?
Link copied to clipboard