commonMain.app.bsky.actor.MutedWord.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bluesky-jvm Show documentation
Show all versions of bluesky-jvm Show documentation
Bluesky Social API bindings for Kotlin.
The newest version!
@file:Suppress("DEPRECATION")
package app.bsky.actor
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.model.ReadOnlyList
import sh.christian.ozone.api.model.Timestamp
/**
* A word that the account owner has muted.
*
* @param value The muted word itself.
* @param targets The intended targets of the muted word.
* @param actorTarget Groups of users to apply the muted word to. If undefined, applies to all
* users.
* @param expiresAt The date and time at which the muted word will expire and no longer be applied.
*/
@Serializable
public data class MutedWord(
public val id: String? = null,
/**
* The muted word itself.
*/
public val `value`: String,
/**
* The intended targets of the muted word.
*/
public val targets: ReadOnlyList,
/**
* Groups of users to apply the muted word to. If undefined, applies to all users.
*/
public val actorTarget: ActorTarget? = ActorTarget.All,
/**
* The date and time at which the muted word will expire and no longer be applied.
*/
public val expiresAt: Timestamp? = null,
) {
init {
require(`value`.count() <= 10_000) {
"value.count() must be <= 10_000, but was ${`value`.count()}"
}
}
}