atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ReactionCount < Base
        attribute :type, ReactionType
        attribute :total_count, Types::Integer
      end
    end
  end
end