class AhlScraper::Games::Coach

Public Instance Methods

first_name() click to toggle source
# File lib/ahl_scraper/resources/games/coach.rb, line 6
def first_name
  @first_name ||= @raw_data[:firstName]
end
last_name() click to toggle source
# File lib/ahl_scraper/resources/games/coach.rb, line 10
def last_name
  @last_name ||= @raw_data[:lastName]
end
position() click to toggle source
# File lib/ahl_scraper/resources/games/coach.rb, line 14
def position
  @position ||= @raw_data[:role]
end
team_id() click to toggle source
# File lib/ahl_scraper/resources/games/coach.rb, line 18
def team_id
  @team_id ||= @opts[:team_id]
end