class NerdTown::Guild::MemberCollectionParser::GuildMember

Attributes

class[R]
name[R]
race[R]
rank[R]
realm[R]
thumbnail[R]

Public Class Methods

new(options) click to toggle source
# File lib/nerd_town/guild.rb, line 64
def initialize(options)
  @name      = options.fetch(:name)
  @realm     = options.fetch(:realm)
  @thumbnail = options.fetch(:thumbnail)
  @class     = options.fetch(:class)
  @rank      = options.fetch(:rank)
  @race      = options.fetch(:race)
end