atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class MessageReactionCountUpdated < Base
        attribute :chat, Chat
        attribute :message_id, Types::Integer
        attribute :date, Types::Integer
        attribute :reactions, Types::Array.of(ReactionCount)
      end
    end
  end
end