class TelegramBot::ReplyKeyboardMarkup

Defined in:

telegram_bot/types/reply_keyboard_markup.cr

Constant Summary

FIELDS = {keyboard: Array(Array(KeyboardButton)), resize_keyboard: {type: Bool, nilable: true}, one_time_keyboard: {type: Bool, nilable: true}, selective: {type: Bool, nilable: true}}

Constructors

Constructor Detail

def self.new(keyboard : Array(Array(KeyboardButton)), resize_keyboard : Bool | Nil = nil, one_time_keyboard : Bool | Nil = nil, selective : Bool | Nil = nil) #

[View source]
def self.new(keyboard : Array(Array(String)), resize_keyboard : Bool | Nil = nil, one_time_keyboard : Bool | Nil = nil, selective : Bool | Nil = nil) #

Alternative constructor that allows to build markup object with text-only buttons


[View source]