Exemplo n.º 1
0
 def get_guild_name(self):
     return deep_get(self.character_profile, 'guild', 'name')
Exemplo n.º 2
0
 def get_guild_id(self):
     return deep_get(self.character_profile, 'guild', 'id')
Exemplo n.º 3
0
 def get_realm(self):
     return deep_get(self.character_profile, 'realm', 'name')
Exemplo n.º 4
0
 def get_realm_slug(self):
     return deep_get(self.character_profile, 'realm', 'slug')
Exemplo n.º 5
0
 def get_active_spec(self):
     return deep_get(self.character_profile, 'active_spec', 'name')
Exemplo n.º 6
0
 def get_class(self):
     return deep_get(self.character_profile, 'character_class', 'name')
Exemplo n.º 7
0
 def get_race(self):
     return deep_get(self.character_profile, 'race', 'name')
Exemplo n.º 8
0
 def get_faction(self):
     return deep_get(self.character_profile, 'faction', 'name')
Exemplo n.º 9
0
 def get_gender(self):
     return deep_get(self.character_profile, 'gender', 'name')