module Soccerama::Client::Match
Public Instance Methods
events_in_match(match_id, options: nil)
click to toggle source
# File lib/soccerama/client/match.rb, line 9 def events_in_match(match_id, options: nil) get("/events/match/#{match_id}", { include: options }) end
match_by_id(match_id, options: nil)
click to toggle source
# File lib/soccerama/client/match.rb, line 5 def match_by_id(match_id, options: nil) get("/matches/#{match_id}", { include: options }) end