Sha256: 5fa87a2071a3781b3c7d7b4b520d214f693fae7066e53bd26c3afe84e0547026
Contents?: true
Size: 527 Bytes
Versions: 2
Compression:
Stored size: 527 Bytes
Contents
require 'lol/model' module Lol class Statistic < Lol::Model # @!attribute [r] raw # @return [Hash] raw version of options Hash used to initialize Statistic attr_reader :raw # @!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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
ruby-lol-0.0.2 | lib/lol/statistic.rb |
ruby-lol-0.0.1 | lib/lol/statistic.rb |