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

com.pengrad.telegrambot.model.request.ReplyKeyboardRemove Maven / Gradle / Ivy

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

import java.io.Serializable;

/**
 * Stas Parshin
 * 23 November 2016
 */
public class ReplyKeyboardRemove extends Keyboard implements Serializable {
    private final static long serialVersionUID = 0L;

    private final boolean remove_keyboard = true;
    private final boolean selective;

    public ReplyKeyboardRemove() {
        this(false);
    }

    public ReplyKeyboardRemove(boolean selective) {
        this.selective = selective;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy