Sha256: fece2a839ce4c690e7d14fc42d4eeb27304e06094edb288eaabeebcccfffe94b
Contents?: true
Size: 442 Bytes
Versions: 184
Compression:
Stored size: 442 Bytes
Contents
module Sportradar module Api module Basketball class Turnover < Play::Base attr_reader :steal def base_key 'turnover' end def display_type 'Turnover' end def parse_statistics(data) super @steal = Steal.new(data, quarter: @quarter, half: @half) if @statistics.detect { |hash| hash['type'] == 'steal' } end end end end end
Version data entries
184 entries across 184 versions & 1 rubygems