Class: Telegram::Bot::Types::ReplyKeyboardMarkup
- Defined in:
- lib/telegram/bot/types/reply_keyboard_markup.rb
Instance Method Summary collapse
Methods included from PatternMatching
Methods included from Compactable
Instance Method Details
#to_compact_hash ⇒ Object
14 15 16 17 18 19 20 21 22 23 |
# File 'lib/telegram/bot/types/reply_keyboard_markup.rb', line 14 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 |