Sha256: e1f0eeced684be40a624e8522ed9ba39b94b919e2a3d1e69f599c71c5e8765e1
Contents?: true
Size: 408 Bytes
Versions: 3
Compression:
Stored size: 408 Bytes
Contents
require 'lol/model' module Lol class AggregatedStatistic < Lol::Model # @!attribute [r] id # @return [Fixnum] Statistic Type Id attr_reader :id # @!attribute [r] name # @return [String] Statistic Type name attr_reader :name # @!attribute [r] count # @return [Fixnum] Statistic value attr_reader :count private attr_writer :id, :name, :count end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-lol-0.9.1 | lib/lol/aggregated_statistic.rb |
ruby-lol-0.0.7 | lib/lol/aggregated_statistic.rb |
ruby-lol-0.0.6 | lib/lol/aggregated_statistic.rb |