NIMSDK-AOS  9.16.0
QChatGetChannelCategoryRolesResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 import java.util.List;
6 
10 public class QChatGetChannelCategoryRolesResult implements Serializable {
11 
15  private final List<QChatChannelCategoryRole> roleList;
16 
17  public QChatGetChannelCategoryRolesResult(List<QChatChannelCategoryRole> roleList) {
18  this.roleList = roleList;
19  }
20 
25  public List<QChatChannelCategoryRole> getRoleList() {
26  return roleList;
27  }
28 
29  @Override
30  public String toString() {
31  return "QChatGetChannelCategoryRolesResult{" +
32  "roleList=" + roleList +
33  '}';
34  }
35 }
List< QChatChannelCategoryRole > getRoleList()
获取查询到的频道身份组列表