Sha256: 5bec072c4d85c2fd558c7fb7dee43272d062a22f78b968b7e5432e3b17d94990

Contents?: true

Size: 578 Bytes

Versions: 3

Compression:

Stored size: 578 Bytes

Contents

require 'lol/model'

module Lol
  class ChampionStatistic < Lol::Model
    # @!attribute [r] c
    #   @return [Fixnum] Count of samples (games) that make up the aggregated value, where relevant.
    attr_reader :c

    # @!attribute [r] id
    #   @return [Fixnum] Aggregated stat type Id
    attr_reader :id

    # @!attribute [r] name
    #   @return [String] Aggregated stat type Name
    attr_reader :name

    # @!attribute [r] value
    #   @return [Fixnum] Aggregated stat type Value
    attr_reader :value

    private

    attr_writer :id, :name, :c, :value
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-lol-0.9.1 lib/lol/champion_statistic.rb
ruby-lol-0.0.7 lib/lol/champion_statistic.rb
ruby-lol-0.0.6 lib/lol/champion_statistic.rb