Class: Sportradar::Api::Basketball::Turnover

Inherits:
Play::Base show all
Defined in:
lib/sportradar/api/basketball/plays/turnover.rb

Instance Attribute Summary collapse

Attributes inherited from Play::Base

#clock, #description, #event_type, #game_seconds, #half, #id, #identifier, #location, #on_court, #on_court_ids, #player_id, #possession, #quarter, #response, #score, #statistics, #team_id, #updated

Instance Method Summary collapse

Methods inherited from Play::Base

#==, #clock_seconds, #end_of_ot?, #end_of_period?, #end_of_regulation?, #halftime?, #handle_on_court, #handle_time, #initialize, #media_timeout?, #nba_game_seconds, #period, #points, #quarter_break?, #scoring_play?, #timeout?, #update

Methods inherited from Data

#all_attributes, #attributes, #create_data, #parse_into_array, #parse_into_array_with_options, #parse_out_hashes, #structure_links, #update_data

Constructor Details

This class inherits a constructor from Sportradar::Api::Basketball::Play::Base

Instance Attribute Details

#stealObject (readonly)

Returns the value of attribute steal.



5
6
7
# File 'lib/sportradar/api/basketball/plays/turnover.rb', line 5

def steal
  @steal
end

Instance Method Details

#base_keyObject



6
7
8
# File 'lib/sportradar/api/basketball/plays/turnover.rb', line 6

def base_key
  'turnover'
end

#display_typeObject



9
10
11
# File 'lib/sportradar/api/basketball/plays/turnover.rb', line 9

def display_type
  'Turnover'
end

#parse_statistics(data) ⇒ Object



12
13
14
15
# File 'lib/sportradar/api/basketball/plays/turnover.rb', line 12

def parse_statistics(data)
  super
  @steal = Steal.new(data, quarter: @quarter, half: @half) if @statistics.detect { |hash|  hash['type'] == 'steal' }
end