Sha256: ebfa7ccfa1c7f670210ce6b708bccf495ec18ac9c3800410a707ec4b2b06db11

Contents?: true

Size: 549 Bytes

Versions: 3

Compression:

Stored size: 549 Bytes

Contents

module TD::Types
  # A new high score was achieved in a game.
  #
  # @attr game_message_id [Integer] Identifier of the message with the game, can be an identifier of a deleted message.
  # @attr game_id [Integer] Identifier of the game; may be different from the games presented in the message with the
  #   game.
  # @attr score [Integer] New score.
  class MessageContent::GameScore < MessageContent
    attribute :game_message_id, TD::Types::Integer
    attribute :game_id, TD::Types::Integer
    attribute :score, TD::Types::Integer
  end
end

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
tdlib-schema-1.7.0.1 lib/tdlib/types/message_content/game_score.rb
tdlib-ruby-2.2.0 lib/tdlib/types/message_content/game_score.rb
tdlib-ruby-2.1.0 lib/tdlib/types/message_content/game_score.rb