NIMSDK-AOS  9.16.0
QChatKickServerMembersParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 import java.util.List;
6 
11 
15  @NonNull
16  private final Long serverId;
20  @NonNull
21  private final List<String> accids;
22 
28  public QChatKickServerMembersParam(long serverId, @NonNull List<String> accids) {
29  this.serverId = serverId;
30  this.accids = accids;
31  }
32 
37  @NonNull
38  public Long getServerId() {
39  return serverId;
40  }
41 
46  @NonNull
47  public List<String> getAccids() {
48  return accids;
49  }
50 }
QChatKickServerMembersParam(long serverId, @NonNull List< String > accids)