Module: Fantasydata::API::BoxScore
Constant Summary
Constants included from Utils
Utils::API_KEY_CANNOT_CALL_THIS_METHOD, Utils::INVALID_PARAMETER, Utils::MISSING_OR_INVALID_KEY, Utils::MISSING_PARAMETER, Utils::RATE_LIMIT_EXCEEDED, Utils::SUCCESS
Instance Method Summary collapse
-
#box_score_individual_game(season, week, hometeam) ⇒ Fantasydata::BoxScore
This method returns individual box scores for a given season, week and home team.
-
#box_scores_active ⇒ Array<Fantasydata::BoxScore>
This method returns box scores for all games that are either in-progress or have been updated within the last 30 minutes.
-
#box_scores_delta(season, week, minutes) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for a given season and week, but only returns player stats that have changed in the last X minutes.
-
#box_scores_delta_current_week(minutes) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for the current week, but only returns player stats that have changed in the last X minutes.
- #box_scores_final ⇒ Array<Fantasydata::BoxScore>
- #box_scores_live ⇒ Array<Fantasydata::BoxScore>
-
#box_scores_week(season, week) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for a given season and week.
Instance Method Details
#box_score_individual_game(season, week, hometeam) ⇒ Fantasydata::BoxScore
This method returns individual box scores for a given season, week and home team.
20 21 |
# File 'lib/fantasydata/api/box_score.rb', line 20 def box_score_individual_game(season, week, hometeam) end |
#box_scores_active ⇒ Array<Fantasydata::BoxScore>
This method returns box scores for all games that are either in-progress or have been updated within the last 30 minutes.
47 48 |
# File 'lib/fantasydata/api/box_score.rb', line 47 def box_scores_active end |
#box_scores_delta(season, week, minutes) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for a given season and week, but only returns player stats that have changed in the last X minutes.
62 63 |
# File 'lib/fantasydata/api/box_score.rb', line 62 def box_scores_delta(season, week, minutes) end |
#box_scores_delta_current_week(minutes) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for the current week, but only returns player stats that have changed in the last X minutes.
75 76 |
# File 'lib/fantasydata/api/box_score.rb', line 75 def box_scores_delta_current_week(minutes) end |
#box_scores_final ⇒ Array<Fantasydata::BoxScore>
87 88 |
# File 'lib/fantasydata/api/box_score.rb', line 87 def box_scores_final end |
#box_scores_live ⇒ Array<Fantasydata::BoxScore>
99 100 |
# File 'lib/fantasydata/api/box_score.rb', line 99 def box_scores_live end |
#box_scores_week(season, week) ⇒ Array<Fantasydata::BoxScore>
This method returns all box scores for a given season and week.
35 36 |
# File 'lib/fantasydata/api/box_score.rb', line 35 def box_scores_week(season, week) end |