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

commonMain.event.guild.GuildAuditLogEntryCreateEvent.kt Maven / Gradle / Ivy

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