commonMain.entity.component.UnknownComponent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-core Show documentation
Show all versions of kord-core Show documentation
Idiomatic Kotlin Wrapper for The Discord API
package dev.kord.core.entity.component
import dev.kord.core.cache.data.ComponentData
/**
* A component type unknown to Kord.
*/
public class UnknownComponent(override val data: ComponentData) : Component {
override fun toString(): String = "UnknownComponent(data=$data)"
}