Sha256: a0c13337333dca0b114aa49ba62a5d2fa2e1fd5eca79108200eab718c7b5e4e8
Contents?: true
Size: 397 Bytes
Versions: 1
Compression:
Stored size: 397 Bytes
Contents
require 'lol/model' module Lol class RawStatistic < Lol::Model # @!attribute [r] id # @return [Fixnum] Raw Statistic Id attr_reader :id # @!attribute [r] name # @return [String] Raw Statistic name attr_reader :name # @!attribute [r] value # @return [Fixnum] Raw Statistic value attr_reader :value private attr_writer :id, :name, :value end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ruby-lol-0.9.5 | lib/lol/raw_statistic.rb |