commonMain.app.bsky.actor.ThreadViewPref.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.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.actor
import kotlin.Boolean
import kotlin.Suppress
import kotlinx.serialization.Serializable
/**
* @param sort Sorting mode for threads.
* @param prioritizeFollowedUsers Show followed users at the top of all replies.
*/
@Serializable
public data class ThreadViewPref(
/**
* Sorting mode for threads.
*/
public val sort: Sort? = null,
/**
* Show followed users at the top of all replies.
*/
public val prioritizeFollowedUsers: Boolean? = null,
)