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

commonMain.event.interaction.ApplicationCommandUpdate.kt Maven / Gradle / Ivy

The newest version!
package dev.kord.core.event.interaction

import dev.kord.core.Kord
import dev.kord.core.entity.application.*
import dev.kord.core.event.Event


@Deprecated(
    "This event is not supposed to be sent to bots. See https://github.com/discord/discord-api-docs/issues/3690 for " +
        "details. The deprecation level will be raised to HIDDEN in 0.16.0 and this declaration will be removed in " +
        "0.17.0.",
    level = DeprecationLevel.ERROR,
)
public sealed interface ApplicationCommandUpdateEvent : Event {
    public val command: GuildApplicationCommand
}

@Suppress("DEPRECATION_ERROR")
@Deprecated(
    "This event is not supposed to be sent to bots. See https://github.com/discord/discord-api-docs/issues/3690 for " +
        "details. The deprecation level will be raised to HIDDEN in 0.16.0 and this declaration will be removed in " +
        "0.17.0.",
    level = DeprecationLevel.ERROR,
)
public class ChatInputCommandUpdateEvent(
    override val command: GuildChatInputCommand,
    override val kord: Kord,
    override val shard: Int,
    override val customContext: Any?,
) : ApplicationCommandUpdateEvent


@Suppress("DEPRECATION_ERROR")
@Deprecated(
    "This event is not supposed to be sent to bots. See https://github.com/discord/discord-api-docs/issues/3690 for " +
        "details. The deprecation level will be raised to HIDDEN in 0.16.0 and this declaration will be removed in " +
        "0.17.0.",
    level = DeprecationLevel.ERROR,
)
public class UserCommandUpdateEvent(
    override val command: GuildUserCommand,
    override val kord: Kord,
    override val shard: Int,
    override val customContext: Any?,
) : ApplicationCommandUpdateEvent


@Suppress("DEPRECATION_ERROR")
@Deprecated(
    "This event is not supposed to be sent to bots. See https://github.com/discord/discord-api-docs/issues/3690 for " +
        "details. The deprecation level will be raised to HIDDEN in 0.16.0 and this declaration will be removed in " +
        "0.17.0.",
    level = DeprecationLevel.ERROR,
)
public class MessageCommandUpdateEvent(
    override val command: GuildMessageCommand,
    override val kord: Kord,
    override val shard: Int,
    override val customContext: Any?,
) : ApplicationCommandUpdateEvent

@Suppress("DEPRECATION_ERROR")
@Deprecated(
    "This event is not supposed to be sent to bots. See https://github.com/discord/discord-api-docs/issues/3690 for " +
        "details. The deprecation level will be raised to HIDDEN in 0.16.0 and this declaration will be removed in " +
        "0.17.0.",
    level = DeprecationLevel.ERROR,
)
public class UnknownApplicationCommandUpdateEvent(
    override val command: UnknownGuildApplicationCommand,
    override val kord: Kord,
    override val shard: Int,
    override val customContext: Any?,
) : ApplicationCommandUpdateEvent




© 2015 - 2024 Weber Informatics LLC | Privacy Policy