Sha256: ba4637717932fdfdce9aa9379a0e564ea0f69788eaaf5b62f9d5ebf47ece05ee
Contents?: true
Size: 490 Bytes
Versions: 27
Compression:
Stored size: 490 Bytes
Contents
require 'lol/model' module Lol class Player < Lol::Model # @!attribute [r] champion_id # @return [Fixnum] Champion Id associated with player attr_reader :champion_id # @!attribute [r] summoner_id # @return [Fixnum] Summoner Id associated with player attr_reader :summoner_id # @!attribute [r] team_id # @return [Fixnum] Team Id associated with player attr_reader :team_id private attr_writer :champion_id, :summoner_id, :team_id end end
Version data entries
27 entries across 27 versions & 1 rubygems