module MLBStatsAPI::Conferences
Only the Pacific Coast League uses conferences @see statsapi.mlb.com/docs/#tag/conference
Public Instance Methods
conference(conference_id, options = {})
click to toggle source
View PCL conferences by conferenceId. @see statsapi.mlb.com/docs/#operation/conferences
# File lib/mlb_stats_api/conferences.rb, line 15 def conference(conference_id, options = {}) get "/conferences/#{conference_id}", options end
conferences(options = {})
click to toggle source
View all PCL conferences. @see statsapi.mlb.com/docs/#operation/conferences
# File lib/mlb_stats_api/conferences.rb, line 9 def conferences(options = {}) get '/conferences', options end