Class: Telegram::Bot::Types::ReplyKeyboardMarkup

Inherits:
Base
  • Object
show all
Defined in:
lib/telegram/bot/types/reply_keyboard_markup.rb

Instance Method Summary collapse

Instance Method Details

#to_compact_hashObject



10
11
12
13
14
15
16
17
18
19
# File 'lib/telegram/bot/types/reply_keyboard_markup.rb', line 10

def to_compact_hash
  hsh = super
  hsh[:keyboard].map! do |arr|
    arr.map do |item|
      item.is_a?(KeyboardButton) ? item.to_compact_hash : item
    end
  end

  hsh
end