commonMain.app.bsky.actor.ContentLabelPref.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.String
import kotlin.Suppress
import kotlinx.serialization.Serializable
import sh.christian.ozone.api.Did
/**
* @param labelerDid Which labeler does this preference apply to? If undefined, applies globally.
*/
@Serializable
public data class ContentLabelPref(
/**
* Which labeler does this preference apply to? If undefined, applies globally.
*/
public val labelerDid: Did? = null,
public val label: String,
public val visibility: Visibility,
)