Class: NBA::FantasyProfileStat
- Inherits:
-
Shale::Mapper
- Object
- Shale::Mapper
- NBA::FantasyProfileStat
- Defined in:
- lib/nba/fantasy_profile_stat.rb
Overview
Represents a player’s fantasy profile statistics
Instance Attribute Summary collapse
-
#ast ⇒ Float?
Returns assists per game.
-
#blk ⇒ Float?
Returns blocks per game.
-
#fan_duel_pts ⇒ Float?
Returns FanDuel fantasy points.
-
#fg3m ⇒ Float?
Returns 3-point field goals made.
-
#fg_pct ⇒ Float?
Returns field goal percentage.
-
#ft_pct ⇒ Float?
Returns free throw percentage.
-
#nba_fantasy_pts ⇒ Float?
Returns NBA Fantasy points.
-
#player_id ⇒ Integer?
Returns the player ID.
-
#player_name ⇒ String?
Returns the player name.
-
#pts ⇒ Float?
Returns points per game.
-
#reb ⇒ Float?
Returns rebounds per game.
-
#stl ⇒ Float?
Returns steals per game.
-
#team_abbreviation ⇒ String?
Returns the team abbreviation.
-
#team_id ⇒ Integer?
Returns the team ID.
-
#tov ⇒ Float?
Returns turnovers per game.
Instance Method Summary collapse
-
#player ⇒ Player?
Returns the player.
Instance Attribute Details
#ast ⇒ Float?
Returns assists per game
82 |
# File 'lib/nba/fantasy_profile_stat.rb', line 82 attribute :ast, Shale::Type::Float |
#blk ⇒ Float?
Returns blocks per game
122 |
# File 'lib/nba/fantasy_profile_stat.rb', line 122 attribute :blk, Shale::Type::Float |
#fan_duel_pts ⇒ Float?
Returns FanDuel fantasy points
50 |
# File 'lib/nba/fantasy_profile_stat.rb', line 50 attribute :fan_duel_pts, Shale::Type::Float |
#fg3m ⇒ Float?
Returns 3-point field goals made
90 |
# File 'lib/nba/fantasy_profile_stat.rb', line 90 attribute :fg3m, Shale::Type::Float |
#fg_pct ⇒ Float?
Returns field goal percentage
98 |
# File 'lib/nba/fantasy_profile_stat.rb', line 98 attribute :fg_pct, Shale::Type::Float |
#ft_pct ⇒ Float?
Returns free throw percentage
106 |
# File 'lib/nba/fantasy_profile_stat.rb', line 106 attribute :ft_pct, Shale::Type::Float |
#nba_fantasy_pts ⇒ Float?
Returns NBA Fantasy points
58 |
# File 'lib/nba/fantasy_profile_stat.rb', line 58 attribute :nba_fantasy_pts, Shale::Type::Float |
#player_id ⇒ Integer?
Returns the player ID
18 |
# File 'lib/nba/fantasy_profile_stat.rb', line 18 attribute :player_id, Shale::Type::Integer |
#player_name ⇒ String?
Returns the player name
26 |
# File 'lib/nba/fantasy_profile_stat.rb', line 26 attribute :player_name, Shale::Type::String |
#pts ⇒ Float?
Returns points per game
66 |
# File 'lib/nba/fantasy_profile_stat.rb', line 66 attribute :pts, Shale::Type::Float |
#reb ⇒ Float?
Returns rebounds per game
74 |
# File 'lib/nba/fantasy_profile_stat.rb', line 74 attribute :reb, Shale::Type::Float |
#stl ⇒ Float?
Returns steals per game
114 |
# File 'lib/nba/fantasy_profile_stat.rb', line 114 attribute :stl, Shale::Type::Float |
#team_abbreviation ⇒ String?
Returns the team abbreviation
42 |
# File 'lib/nba/fantasy_profile_stat.rb', line 42 attribute :team_abbreviation, Shale::Type::String |
#team_id ⇒ Integer?
Returns the team ID
34 |
# File 'lib/nba/fantasy_profile_stat.rb', line 34 attribute :team_id, Shale::Type::Integer |
#tov ⇒ Float?
Returns turnovers per game
130 |
# File 'lib/nba/fantasy_profile_stat.rb', line 130 attribute :tov, Shale::Type::Float |