atipugin/telegram-bot-ruby

View on GitHub
lib/telegram/bot/types/reply_keyboard_remove.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ReplyKeyboardRemove < Base
        attribute :remove_keyboard, Types::True
        attribute? :selective, Types::Bool.default(false)
      end
    end
  end
end