Class: Lol::Champion
Instance Attribute Summary collapse
Attributes inherited from Model
#raw
Method Summary
Methods inherited from Model
#initialize, #inspect
Constructor Details
This class inherits a constructor from Lol::Model
Instance Attribute Details
#active ⇒ true, false
10
11
12
|
# File 'lib/lol/champion.rb', line 10
def active
@active
end
|
#bot_enabled ⇒ true, false
15
16
17
|
# File 'lib/lol/champion.rb', line 15
def bot_enabled
@bot_enabled
end
|
#bot_mm_enabled ⇒ true, false
25
26
27
|
# File 'lib/lol/champion.rb', line 25
def bot_mm_enabled
@bot_mm_enabled
end
|
#free_to_play ⇒ true, false
20
21
22
|
# File 'lib/lol/champion.rb', line 20
def free_to_play
@free_to_play
end
|
#id ⇒ Fixnum
5
6
7
|
# File 'lib/lol/champion.rb', line 5
def id
@id
end
|
#ranked_play_enabled ⇒ true, false
30
31
32
|
# File 'lib/lol/champion.rb', line 30
def ranked_play_enabled
@ranked_play_enabled
end
|