module OwApi::Client::Profile

Public Instance Methods

profile(platform:, region:, battletag:) click to toggle source
# File lib/ow_api/client/profile.rb, line 6
def profile(platform:, region:, battletag:)
  response = get("stats/#{platform}/#{region}/#{battletag}/profile")
  handle_response(response, Response::Profile)
end