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

com.payneteasy.telegram.bot.client.model.replykeyboard.ReplyKeyboardMarkup Maven / Gradle / Ivy

The newest version!
package com.payneteasy.telegram.bot.client.model.replykeyboard;

import com.google.gson.annotations.SerializedName;
import lombok.Builder;

import java.util.List;

@Builder
public class ReplyKeyboardMarkup implements ReplyKeyboard {

    @SerializedName("keyboard")
    private final List> keyboard;

    @SerializedName("resize_keyboard")
    private final boolean resizeKeyboard;

    @SerializedName("one_time_keyboard")
    private final boolean oneTimeKeyboard;

    @SerializedName("selective")
    private final boolean selective;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy