diff --git a/pybis/src/python/pybis/attribute.py b/pybis/src/python/pybis/attribute.py
index 0c947fe5a9c8f7251db708bdb82ae6591453bf85..2b15c31b44ffa69b5bf2437b09e1bfd622a7de1f 100644
--- a/pybis/src/python/pybis/attribute.py
+++ b/pybis/src/python/pybis/attribute.py
@@ -385,6 +385,8 @@ class AttrHolder():
                     return self.__dict__[int_name]['identifier']
                 elif "code" in self.__dict__[int_name]:
                     return self.__dict__[int_name]['code']
+                elif "name" in self.__dict__[int_name]:
+                    return self.__dict__[int_name]['name']
                 elif "userId" in self.__dict__[int_name]:
                     return self.__dict__[int_name]['userId']
                 elif "permId" in self.__dict__[int_name]:
@@ -786,8 +788,6 @@ class AttrHolder():
                 "permId": userId,
                 "@type": "as.dto.person.id.PersonPermId"
             })
-    set_members = set_users  # Alias
-
         
     def add_users(self, userIds):
         if userIds is None: