NIMSDK-AOS  9.16.0
QChatGetServerRolesByAccidResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 
5 import java.io.Serializable;
6 import java.util.List;
7 
8 public class QChatGetServerRolesByAccidResult implements Serializable {
9 
13  private final List<QChatServerRole> roleList;
14 
15  public QChatGetServerRolesByAccidResult(List<QChatServerRole> roleList) {
16  this.roleList = roleList;
17  }
18 
23  public List<QChatServerRole> getRoleList() {
24  return roleList;
25  }
26 
27  @Override
28  public String toString() {
29  return "QChatGetServerRolesByAccidResult{" +
30  "roleList=" + roleList +
31  '}';
32  }
33 }
List< QChatServerRole > getRoleList()
获取用户自定义身份组列表