eu.vendeli.tgbot.api.Dice.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegram-bot Show documentation
Show all versions of telegram-bot Show documentation
Telegram Bot API wrapper, with handy Kotlin DSL.
@file:Suppress("MatchingDeclarationName")
package eu.vendeli.tgbot.api
import eu.vendeli.tgbot.interfaces.Action
import eu.vendeli.tgbot.interfaces.ActionState
import eu.vendeli.tgbot.interfaces.TgAction
import eu.vendeli.tgbot.interfaces.features.MarkupFeature
import eu.vendeli.tgbot.interfaces.features.OptionsFeature
import eu.vendeli.tgbot.types.Message
import eu.vendeli.tgbot.types.internal.TgMethod
import eu.vendeli.tgbot.types.internal.options.DiceOptions
import eu.vendeli.tgbot.utils.getReturnType
class SendDiceAction(emoji: String? = null) :
Action,
ActionState(),
OptionsFeature,
MarkupFeature {
override val TgAction.method: TgMethod
get() = TgMethod("sendDice")
override val TgAction.returnType: Class
get() = getReturnType()
override val OptionsFeature.options: DiceOptions
get() = DiceOptions()
init {
if (emoji != null) parameters["emoji"] = emoji
}
}
fun dice(emoji: String? = null) = SendDiceAction(emoji)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy