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

pro.zackpollard.telegrambot.api.conversations.prompt.StickerPrompt Maven / Gradle / Ivy

There is a newer version: 1.6.5
Show newest version
package pro.zackpollard.telegrambot.api.conversations.prompt;

import pro.zackpollard.telegrambot.api.chat.message.content.ContentType;
import pro.zackpollard.telegrambot.api.chat.message.content.StickerContent;
import pro.zackpollard.telegrambot.api.conversations.ConversationPrompt;

/**
 * Prompt which accepts a sticker as input
 * @author Mazen Kotb
 * @see StickerContent
 */
public abstract class StickerPrompt implements ConversationPrompt {
    @Override
    public ContentType type() {
        return ContentType.STICKER;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy