atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class MenuButtonCommands < Base
        attribute :type, Types::String.constrained(eql: 'commands').default('commands')
      end
    end
  end
end