ListConvosRequest

data class ListConvosRequest(val cursor: String? = null, val kind: String? = null, val limit: Long? = null, val readState: String? = null, val status: String? = null)

Returns a page of conversations (direct or group) for the user.

Constructors

Link copied to clipboard
constructor(cursor: String? = null, kind: String? = null, limit: Long? = null, readState: String? = null, status: String? = null)

Properties

Link copied to clipboard
val cursor: String? = null
Link copied to clipboard
val kind: String? = null

Filter by conversation kind.

Link copied to clipboard
val limit: Long? = null
Link copied to clipboard
val readState: String? = null
Link copied to clipboard
val status: String? = null

Filter convos by their status. It is discouraged to call with "request" and preferred to call chat.bsky.convo.listConvoRequests, which also includes group join requests made by the user.