Sha256: 076f39cf4c5affba0ab32c4612b032f3ff5bcf818e9bfbb4dbff00170c230e05
Contents?: true
Size: 823 Bytes
Versions: 119
Compression:
Stored size: 823 Bytes
Contents
module Sportradar module Api class Football::StatPack::Receiving < Football::StatPack attr_accessor :avg_yards, :yards, :touchdowns, :longest, :longest_touchdown, :targets, :receptions, :yards_after_catch, :redzone_targets, :air_yards def set_stats @avg_yards = response["avg_yards"] @yards = response["yards"] @touchdowns = response["touchdowns"] @longest = response["longest"] @longest_touchdown = response["longest_touchdown"] @targets = response["targets"] @receptions = response["receptions"] @yards_after_catch = response["yards_after_catch"] @redzone_targets = response["redzone_targets"] @air_yards = response["air_yards"] end end end end
Version data entries
119 entries across 119 versions & 1 rubygems