class BlizzardApi::Wow::MythicRaidLeaderboard

This class allows access to World of Warcraft mythic raid leaderboard

@see develop.battle.net/documentation/api-reference/world-of-warcraft-game-data-api

You can get an instance of this class using the default region as follows:

api_instance = BlizzardApi::Wow.mythic_raid_leaderboard

Public Instance Methods

get(raid, faction, **options) click to toggle source

Fetch leaderboard data for given raid and faction

@param raid [String] Raid slug @param faction [String] Faction slug

@!macro request_options

@!macro response

# File lib/blizzard_api/wow/game_data/mythic_raid_leaderboard.rb, line 22
def get(raid, faction, **options)
  opts = options.merge(namespace: :dynamic, ttl: CACHE_DAY)
  api_request "#{base_url(:game_data)}/leaderboard/hall-of-fame/#{raid}/#{faction}", **opts
end