NIMSDK-AOS  9.16.0
QChatRemoveMemberRoleParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
9 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final Long channelId;
23  @NonNull
24  private final String accid;
25 
32  public QChatRemoveMemberRoleParam(long serverId, long channelId, @NonNull String accid) {
33  this.serverId = serverId;
34  this.channelId = channelId;
35  this.accid = accid;
36  }
37 
42  @NonNull
43  public Long getServerId() {
44  return serverId;
45  }
46 
51  @NonNull
52  public Long getChannelId() {
53  return channelId;
54  }
55 
60  @NonNull
61  public String getAccid() {
62  return accid;
63  }
64 }
QChatRemoveMemberRoleParam(long serverId, long channelId, @NonNull String accid)
"删除频道下某人的定制权限"接口入参