Sha256: 31d031a3090dcdcb901363fad262be51b9965d6bc980a7f4e3d99c39f1c5eb87
Contents?: true
Size: 930 Bytes
Versions: 119
Compression:
Stored size: 930 Bytes
Contents
module Sportradar module Api class Football::StatPack::Fumbles < Football::StatPack attr_accessor :response, :fumbles, :lost_fumbles, :own_rec, :own_rec_yards, :opp_rec, :opp_rec_yards, :out_of_bounds, :forced_fumbles, :own_rec_tds, :opp_rec_tds, :ez_rec_tds def set_stats @response = response[1] if response.is_a? Array @fumbles = response["fumbles"] @lost_fumbles = response["lost_fumbles"] @own_rec = response["own_rec"] @own_rec_yards = response["own_rec_yards"] @opp_rec = response["opp_rec"] @opp_rec_yards = response["opp_rec_yards"] @out_of_bounds = response["out_of_bounds"] @forced_fumbles = response["forced_fumbles"] @own_rec_tds = response["own_rec_tds"] @opp_rec_tds = response["opp_rec_tds"] @ez_rec_tds = response["ez_rec_tds"] end end end end
Version data entries
119 entries across 119 versions & 1 rubygems