Class: Lol::Team
Instance Attribute Summary collapse
-
#create_date ⇒ Time
readonly
Create Date.
-
#full_id ⇒ String
readonly
Full Team ID.
-
#last_game_date ⇒ Time
readonly
Last Game Date.
-
#last_join_date ⇒ Time
readonly
Last Join Date.
-
#last_joined_ranked_team_queue_date ⇒ Time
readonly
Last Joined Ranked Team Queue Date.
-
#match_history ⇒ Array
readonly
List of played matches.
-
#modify_date ⇒ Time
readonly
Modified Date.
-
#name ⇒ String
readonly
Team name.
-
#roster ⇒ Roster
readonly
Roster.
-
#second_last_join_date ⇒ Time
readonly
Second Last Join Date.
-
#status ⇒ String
readonly
Status.
-
#tag ⇒ String
readonly
Team Tag.
-
#team_stat_details ⇒ Array
readonly
List of Team Statistics.
-
#third_last_join_date ⇒ Time
readonly
Third Last Join Date.
Attributes inherited from Model
Method Summary
Methods inherited from Model
Constructor Details
This class inherits a constructor from Lol::Model
Instance Attribute Details
#create_date ⇒ Time
Returns Create Date.
7 8 9 |
# File 'lib/lol/team.rb', line 7 def create_date @create_date end |
#full_id ⇒ String
Returns Full Team ID.
11 12 13 |
# File 'lib/lol/team.rb', line 11 def full_id @full_id end |
#last_game_date ⇒ Time
Returns Last Game Date.
15 16 17 |
# File 'lib/lol/team.rb', line 15 def last_game_date @last_game_date end |
#last_join_date ⇒ Time
Returns Last Join Date.
19 20 21 |
# File 'lib/lol/team.rb', line 19 def last_join_date @last_join_date end |
#last_joined_ranked_team_queue_date ⇒ Time
Returns Last Joined Ranked Team Queue Date.
23 24 25 |
# File 'lib/lol/team.rb', line 23 def last_joined_ranked_team_queue_date @last_joined_ranked_team_queue_date end |
#match_history ⇒ Array
Returns List of played matches.
27 28 29 |
# File 'lib/lol/team.rb', line 27 def match_history @match_history end |
#modify_date ⇒ Time
Returns Modified Date.
31 32 33 |
# File 'lib/lol/team.rb', line 31 def modify_date @modify_date end |
#name ⇒ String
Returns Team name.
35 36 37 |
# File 'lib/lol/team.rb', line 35 def name @name end |
#second_last_join_date ⇒ Time
Returns Second Last Join Date.
43 44 45 |
# File 'lib/lol/team.rb', line 43 def second_last_join_date @second_last_join_date end |
#status ⇒ String
Returns Status.
47 48 49 |
# File 'lib/lol/team.rb', line 47 def status @status end |
#tag ⇒ String
Returns Team Tag.
51 52 53 |
# File 'lib/lol/team.rb', line 51 def tag @tag end |
#team_stat_details ⇒ Array
Returns List of Team Statistics.
55 56 57 |
# File 'lib/lol/team.rb', line 55 def team_stat_details @team_stat_details end |
#third_last_join_date ⇒ Time
Returns Third Last Join Date.
59 60 61 |
# File 'lib/lol/team.rb', line 59 def third_last_join_date @third_last_join_date end |