All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.app.bsky.actor.ThreadViewPref.kt Maven / Gradle / Ivy

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,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy