NIMSDK-AOS  9.16.0
QChatGetExistingChannelRolesByServerRoleIdsResult.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 QChatGetExistingChannelRolesByServerRoleIdsResult implements Serializable {
12  private final List<QChatChannelRole> roleList;
13 
14  public QChatGetExistingChannelRolesByServerRoleIdsResult(List<QChatChannelRole> roleList) {
15  this.roleList = roleList;
16  }
17 
22  public List<QChatChannelRole> getRoleList() {
23  return roleList;
24  }
25 
26  @Override
27  public String toString() {
28  return "QChatGetExistingChannelRolesByServerRoleIdsResult{" +
29  "roleList=" + roleList +
30  '}';
31  }
32 }