NIMSDK-AOS  9.16.0
QChatGetExistingChannelBlackWhiteMembersParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
6 
7 import java.util.List;
8 
13 
17  @NonNull
18  private final Long serverId;
22  @NonNull
23  private final Long channelId;
27  @NonNull
28  private final QChatChannelBlackWhiteType type;
32  @NonNull
33  private final List<String> accids;
34 
42  public QChatGetExistingChannelBlackWhiteMembersParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull List<String> accids) {
43  this.serverId = serverId;
44  this.channelId = channelId;
45  this.type = type;
46  this.accids = accids;
47  }
48 
53  @NonNull
54  public Long getServerId() {
55  return serverId;
56  }
57 
62  @NonNull
63  public Long getChannelId() {
64  return channelId;
65  }
66 
71  @NonNull
73  return type;
74  }
75 
80  @NonNull
81  public List<String> getAccids() {
82  return accids;
83  }
84 }
QChatGetExistingChannelBlackWhiteMembersParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull QChatChannelBlackWhiteType type, @NonNull List< String > accids)