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

com.pengrad.telegrambot.request.SendDice Maven / Gradle / Ivy

There is a newer version: 7.2.1
Show newest version
package com.pengrad.telegrambot.request;

/**
 * Stas Parshin
 * 31 March 2020
 */
public class SendDice extends AbstractSendRequest {

    public SendDice(Object chatId) {
        super(chatId);
    }

    public SendDice emoji(String emoji) {
        return add("emoji", emoji);
    }

    public SendDice darts() {
        return emoji("🎯");
    }

    public SendDice basketball() {
        return emoji("🏀");
    }

    public SendDice football() {
        return emoji("⚽");
    }

    public SendDice slotMachine() {
        return emoji("🎰");
    }

    public SendDice bowling() {
        return emoji("🎳");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy