Sha256: a0a97d5e9b986d9c10b1a80a115bf007e633f75e321fcadb46a6392ab5035554
Contents?: true
Size: 1.97 KB
Versions: 5
Compression:
Stored size: 1.97 KB
Contents
module Sportradar module Api module Mma class Score < Data attr_accessor :response, :id, :first_name, :last_name, :winner_score, :loser_score # @all_hash = {} # def self.new(data, **opts) # existing = @all_hash[data['id']] # if existing # existing.update(data, **opts) # existing.add_fight(opts[:fight]) # existing # else # @all_hash[data['id']] = super # end # end # def self.all # @all_hash.values # end def initialize(data, **opts) @response = data @api = opts[:api] @result = opts[:result] @id = data['id'] update(data) end def fights @fights_hash.values end def add_fight(fight) @fights_hash[fight.id] = fight if fight end def update(data, **opts) @first_name = data['first_name'] if data['first_name'] @last_name = data['last_name'] if data['last_name'] @winner_score = data['winner_score'] if data['winner_score'] @loser_score = data['loser_score'] if data['loser_score'] self end # def path_base # "participants/#{ id }" # end # def path_profile # "#{ path_base }/profile" # end # def get_profile # data = api.get_data(path_profile)['profile'].dig('fighters', 'fighter') # update(data) # self # end def api @api ||= Sportradar::Api::Mma.new end end end end end __END__ m = Sportradar::Api::Mma.new sr = m.participants; f = sr.fighters.sample; m = Sportradar::Api::Mma.new sc = m.schedule; e = sc.events.sample; e.fights.first.fighters.first.born fighter_hash = {'id' => "259117dc-c443-4086-8c1d-abd082e3d4b9" } # => Conor McGregor f = Sportradar::Api::Mma::Fighter.new(fighter_hash)
Version data entries
5 entries across 5 versions & 1 rubygems