module NbaStats::DraftCombineNonStationaryShooting
Constants
- DRAFT_COMBINE_NON_STATIONARY_SHOOTING_PATH
The path of the draftcombinenonstationaryshooting API
Public Instance Methods
draft_combine_non_stationary_shooting( season_year, league_id=NbaStats::Constants::LEAGUE_ID_NBA )
click to toggle source
Calls the draftcombinenonstationaryshooting API and returns a DraftCombineNonStationaryShooting
resource.
@param season_year [String] @param league_id [String] @return [NbaStats::Resources::DraftCombineNonStationaryShooting]
# File lib/nba_stats/stats/draft_combine_non_stationary_shooting.rb, line 15 def draft_combine_non_stationary_shooting( season_year, league_id=NbaStats::Constants::LEAGUE_ID_NBA ) NbaStats::Resources::DraftCombineNonStationaryShooting.new( get(DRAFT_COMBINE_NON_STATIONARY_SHOOTING_PATH, { :LeagueID => league_id, :SeasonYear => season_year }) ) end