Sha256: 6486b7e03ac921e99e4414d472bfcc673d397fe83009d77a8b065483417e0fed
Contents?: true
Size: 418 Bytes
Versions: 190
Compression:
Stored size: 418 Bytes
Contents
module Sportradar module Api class Soccer::Boxscore < Data attr_accessor :response, :matches def initialize(data) @response = data @matches = parse_into_array(selector: response["boxscore"]["matches"]["match"], klass: Sportradar::Api::Soccer::Match) if response['boxscore'] && response['boxscore']['matches'] && response["boxscore"]["matches"]["match"] end end end end
Version data entries
190 entries across 190 versions & 1 rubygems