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

commonMain.tools.ozone.moderation.ModEventComment.kt Maven / Gradle / Ivy

The newest version!
@file:Suppress("DEPRECATION")

package tools.ozone.moderation

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlinx.serialization.Serializable

/**
 * Add a comment to a subject
 *
 * @param sticky Make the comment persistent on the subject
 */
@Serializable
public data class ModEventComment(
  public val comment: String,
  /**
   * Make the comment persistent on the subject
   */
  public val sticky: Boolean? = null,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy