class Warcraft::Account::Profile
@!method id @return [Integer] Blizzard Battle.net Account
ID
Public Instance Methods
all_characters()
click to toggle source
# File lib/warcraft/account/profile.rb, line 16 def all_characters @response[:wow_accounts].map(:characters).flatten.map do |c| Fragments::AccountCharacterFragment.new(@client, c) end end
collections()
click to toggle source
# File lib/warcraft/account/profile.rb, line 8 def collections link end
wow_accounts()
click to toggle source
# File lib/warcraft/account/profile.rb, line 12 def wow_accounts @wow_accounts ||= WowAccount.new(@client, @response[:wow_accounts]) end