NIMSDK-AOS  9.16.0
QChatAddMemberRoleParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
8 public class QChatAddMemberRoleParam {
9 
13  @NonNull
14  private final Long serverId;
15 
19  @NonNull
20  private final Long channelId;
21 
25  @NonNull
26  private final String accid;
27 
34  public QChatAddMemberRoleParam(long serverId, long channelId, @NonNull String accid) {
35  this.serverId = serverId;
36  this.channelId = channelId;
37  this.accid = accid;
38  }
39 
44  @NonNull
45  public Long getServerId() {
46  return serverId;
47  }
48 
53  @NonNull
54  public Long getChannelId() {
55  return channelId;
56  }
57 
62  @NonNull
63  public String getAccid() {
64  return accid;
65  }
66 }
QChatAddMemberRoleParam(long serverId, long channelId, @NonNull String accid)
"为某个人定制某频道的权限"接口入参