commonMain.entity.channel.GuildMessageChannel.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.channel
import dev.kord.core.behavior.channel.GuildMessageChannelBehavior
import dev.kord.core.supplier.EntitySupplyStrategy
public interface GuildMessageChannel : GuildChannel, MessageChannel, GuildMessageChannelBehavior {
/**
* Returns a new [GuildMessageChannel] with the given [strategy].
*/
override fun withStrategy(strategy: EntitySupplyStrategy<*>): GuildMessageChannel
}