Sha256: 94c8a54163262ef8bba7a3f46adc01ebcbaadc4dc5cb55c030ac57516eb80a2c
Contents?: true
Size: 629 Bytes
Versions: 184
Compression:
Stored size: 629 Bytes
Contents
module Sportradar module Api module Basketball class ShotMiss < Play::Base attr_reader :shot_type, :shot_type_desc, :block def base_key "fieldgoal" end def parse_statistics(data) super stat = @statistics.detect { |hash| hash['type'] == base_key } @shot_type = stat['shot_type'] @shot_type_desc = stat['shot_type_desc'] @block = Block.new(data, quarter: @quarter, half: @half) if @statistics.detect { |hash| hash['type'] == 'block' } end def made? false end end end end end
Version data entries
184 entries across 184 versions & 1 rubygems