GroupUserListItem

Detailed information about a group to which a user belongs.

Structure
{   
     unsigned int uid; 
     unsigned int gid;
     string name;
     string description;
     boolean isMember;
     boolean isAdmin;
};
Fields
  • uid   Unique ID of user.

  • gid   Unique ID of group.

  • name   Unique group name.

  • description   Group description.

  • isMember   Is user a member of group?

  • isAdmin   Is user an admin of group?

Remarks

GroupUserListItemArray is an array of GroupUserListItem structures.