Sha256: acfab72c002d92bd2d6bbaaa7aea7749cb3c8254b162439d32df347004832cdb
Contents?: true
Size: 740 Bytes
Versions: 112
Compression:
Stored size: 740 Bytes
Contents
module Sportradar module Api class Football::StatPack::Rushing < Football::StatPack attr_accessor :avg_yards, :yards, :touchdowns, :longest, :longest_touchdown, :attempts, :tlost, :tlost_yards, :redzone_attempts def set_stats @avg_yards = response["avg_yards"] @yards = response["yards"] @touchdowns = response["touchdowns"] @longest = response["longest"] @longest_touchdown = response["longest_touchdown"] @attempts = response["attempts"] @tlost = response["tlost"] @tlost_yards = response["tlost_yards"] @redzone_attempts = response["redzone_attempts"] end end end end
Version data entries
112 entries across 112 versions & 1 rubygems