Sha256: 4fb1a7e097de2f7d706af00b21400daa00e2f08697b91102c0ac2459b1b9a953
Contents?: true
Size: 745 Bytes
Versions: 119
Compression:
Stored size: 745 Bytes
Contents
module Sportradar module Api class Football::StatPack::Punts < Football::StatPack attr_accessor :avg_yards, :yards, :attempts, :blocked, :longest, :touchbacks, :inside_20, :avg_net_yards, :return_yards, :net_yards def set_stats @avg_yards = response["avg_yards"] @yards = response["yards"] @attempts = response["attempts"] @blocked = response["blocked"] @longest = response["longest"] @touchbacks = response["touchbacks"] @inside_20 = response["inside_20"] @avg_net_yards = response["avg_net_yards"] @return_yards = response["return_yards"] @net_yards = response["net_yards"] end end end end
Version data entries
119 entries across 119 versions & 1 rubygems