commonMain.event.guild.GuildAuditLogEntryCreateEvent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kord-core-jvm Show documentation
Show all versions of kord-core-jvm Show documentation
Idiomatic Kotlin Wrapper for The Discord API
The newest version!
package dev.kord.core.event.guild
import dev.kord.core.Kord
import dev.kord.core.entity.AuditLogEntry
import dev.kord.core.event.Event
public class GuildAuditLogEntryCreateEvent(
public val auditLogEntry: AuditLogEntry,
override val kord: Kord,
override val shard: Int,
override val customContext: Any?
) : Event {
override fun toString(): String = "GuildAuditLogEntryCreateEvent(auditLogEntry=$auditLogEntry, kord=$kord, " +
"shard=$shard, customContext=$customContext)"
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy