class SportsDataApi::Ncaafb::Quarter

Attributes

number[R]
play_by_plays[R]

Public Class Methods

new(quarter_hash) click to toggle source
# File lib/sports_data_api/ncaafb/quarter.rb, line 6
def initialize(quarter_hash)
  @number = quarter_hash["number"]
  @play_by_plays = PlayByPlays.new(quarter_hash["pbp"])
end