
commonMain.app.bsky.notification.listNotifications.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky Show documentation
Show all versions of bluesky Show documentation
Bluesky Social API bindings for Kotlin.
@file:Suppress("DEPRECATION")
package app.bsky.notification
import kotlin.Any
import kotlin.Boolean
import kotlin.Long
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlinx.collections.immutable.toImmutableList
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.model.ReadOnlyList
import sh.christian.ozone.api.model.Timestamp
@Serializable
public data class ListNotificationsQueryParams(
public val limit: Long? = 50,
public val priority: Boolean? = null,
public val cursor: String? = null,
public val seenAt: Timestamp? = null,
) {
init {
require(limit == null || limit >= 1) {
"limit must be >= 1, but was $limit"
}
require(limit == null || limit <= 100) {
"limit must be <= 100, but was $limit"
}
}
public fun asList(): ReadOnlyList> = buildList {
add("limit" to limit)
add("priority" to priority)
add("cursor" to cursor)
add("seenAt" to seenAt)
}.toImmutableList()
}
@Serializable
public data class ListNotificationsResponse(
public val cursor: String? = null,
public val notifications: ReadOnlyList,
public val priority: Boolean? = null,
public val seenAt: Timestamp? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy