io.github.freya022.botcommands.internal.components.data.ActionComponentData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BotCommands Show documentation
Show all versions of BotCommands Show documentation
A Kotlin-first (and Java) framework that makes creating Discord bots a piece of cake, using the JDA library.
package io.github.freya022.botcommands.internal.components.data
import io.github.freya022.botcommands.api.components.ComponentInteractionFilter
import io.github.freya022.botcommands.api.components.data.InteractionConstraints
import io.github.freya022.botcommands.api.components.ratelimit.ComponentRateLimitReference
import io.github.freya022.botcommands.internal.components.handler.ComponentHandler
internal sealed interface ActionComponentData : ComponentData {
val constraints: InteractionConstraints
val singleUse: Boolean
val filters: List>
val rateLimitReference: ComponentRateLimitReference?
val handler: ComponentHandler?
val group: ComponentGroupData?
}