atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

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