Sha256: 920202bb85de29f61714d00aa8300e2269c56eaa890208434f5375c067c394e1
Contents?: true
Size: 627 Bytes
Versions: 184
Compression:
Stored size: 627 Bytes
Contents
module Sportradar module Api module Basketball class ShotMade < Play::Base attr_reader :shot_type, :shot_type_desc, :assist 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'] @assist = Assist.new(data, quarter: @quarter, half: @half) if @statistics.detect { |hash| hash['type'] == 'assist' } end def made? true end end end end end
Version data entries
184 entries across 184 versions & 1 rubygems