QueueView

data class QueueView(val id: Long, val name: String, val subjectTypes: List<QueueViewSubjectTypes>, val collection: Nsid? = null, val reportTypes: List<String>, val description: String? = null, val createdBy: Did, val createdAt: Timestamp, val updatedAt: Timestamp, val enabled: Boolean, val deletedAt: Timestamp? = null, val stats: QueueStats)

Parameters

id

Queue ID

name

Display name of the queue

subjectTypes

Subject types this queue accepts.

collection

Collection name for record subjects (e.g., 'app.bsky.feed.post')

reportTypes

Report reason types this queue accepts (fully qualified NSIDs)

description

Optional description of the queue

createdBy

DID of moderator who created this queue

enabled

Whether this queue is currently active

deletedAt

When the queue was deleted, if applicable

stats

Statistics about this queue

Constructors

Link copied to clipboard
constructor(id: Long, name: String, subjectTypes: List<QueueViewSubjectTypes>, collection: Nsid? = null, reportTypes: List<String>, description: String? = null, createdBy: Did, createdAt: Timestamp, updatedAt: Timestamp, enabled: Boolean, deletedAt: Timestamp? = null, stats: QueueStats)

Properties

Link copied to clipboard

Collection name for record subjects (e.g., 'app.bsky.feed.post')

Link copied to clipboard
Link copied to clipboard

DID of moderator who created this queue

Link copied to clipboard

When the queue was deleted, if applicable

Link copied to clipboard

Optional description of the queue

Link copied to clipboard

Whether this queue is currently active

Link copied to clipboard
val id: Long

Queue ID

Link copied to clipboard

Display name of the queue

Link copied to clipboard

Report reason types this queue accepts (fully qualified NSIDs)

Link copied to clipboard

Statistics about this queue

Link copied to clipboard

Subject types this queue accepts.

Link copied to clipboard