Sha256: 14e83d9556c09d9c68d194133e023bb1eb37e45e9eb1b8894ebf230f1f265c9c
Contents?: true
Size: 906 Bytes
Versions: 128
Compression:
Stored size: 906 Bytes
Contents
module Sportradar module Api class Football::StatPack::KickReturns < Football::StatPack attr_accessor :returns, :yards, :avg_yards, :touchdowns, :longest, :faircatches, :longest_touchdown def set_stats @returns = response["returns"] || response['number'] @yards = response["yards"] || response['yds'] @avg_yards = response["avg_yards"] || response['avg'] @touchdowns = response["touchdowns"] || response['td'] @longest = response["longest"] || response['lg'] @faircatches = response["faircatches"] || response['fc'] @longest_touchdown = response["longest_touchdown"] # unknown ncaafb end end end end # ncaafb = {"returns"=>4, "yds"=>125, "fc"=>0, "lg"=>47, "td"=>0, "avg"=>31.25, "yds_10_pls"=>0, "yds_20_pls"=>1, "yds_30_pls"=>0, "yds_40_pls"=>2, "yds_50_pls"=>0}
Version data entries
128 entries across 128 versions & 1 rubygems