NIMSDK-AOS  9.16.0
QChatAddChannelRoleResult.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.result;
2 
4 import java.io.Serializable;
5 
9 public class QChatAddChannelRoleResult implements Serializable {
10 
14  private final QChatChannelRole role;
15 
17  this.role = role;
18  }
19 
25  return role;
26  }
27 
28  @Override
29  public String toString() {
30  return "QChatAddChannelRoleResult{" +
31  "role=" + role +
32  '}';
33  }
34 }