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

com.github.unafraid.telegrambot.handlers.inline.events.InlineMessageEvent Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2017 Rumen Nikiforov 
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.github.unafraid.telegrambot.handlers.inline.events;

import com.github.unafraid.telegrambot.handlers.inline.InlineButton;
import com.github.unafraid.telegrambot.handlers.inline.InlineContext;
import org.telegram.telegrambots.meta.api.objects.Update;
import org.telegram.telegrambots.meta.api.objects.message.Message;
import org.telegram.telegrambots.meta.generics.TelegramClient;

/**
 * @author UnAfraid
 */
public class InlineMessageEvent {
    private final InlineContext context;
    private final InlineButton button;
    private final TelegramClient telegramClient;
    private final Update update;
    private final Message message;

    /**
     * @param context        the context
     * @param button         the button
     * @param telegramClient the telegramClient
     * @param update         the update received
     * @param message        the message
     */
    public InlineMessageEvent(InlineContext context, InlineButton button, TelegramClient telegramClient, Update update, Message message) {
        this.context = context;
        this.button = button;
        this.telegramClient = telegramClient;
        this.update = update;
        this.message = message;
    }

    /**
     * @return the context
     */
    public InlineContext getContext() {
        return context;
    }

    /**
     * @return the button
     */
    public InlineButton getButton() {
        return button;
    }

    /**
     * @return the bot
     */
    public TelegramClient getTelegramClient() {
        return telegramClient;
    }

    /**
     * @return the update
     */
    public Update getUpdate() {
        return update;
    }

    /**
     * @return the query
     */
    public Message getMessage() {
        return message;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy