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

eu.vendeli.tgbot.api.Dice.kt Maven / Gradle / Ivy

There is a newer version: 6.6.0
Show newest version
@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