commonMain.tools.ozone.set.deleteSet.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 tools.ozone.`set`
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable
/**
* @param name Name of the set to delete
*/
@Serializable
public data class DeleteSetRequest(
/**
* Name of the set to delete
*/
public val name: String,
)
@Serializable
public object DeleteSetResponse