NIMSDK-AOS  9.16.0
QChatGetChannelsParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 import java.util.List;
6 
10 public class QChatGetChannelsParam {
11 
15  @NonNull
16  private final List<Long> channelIds;
17 
22  public QChatGetChannelsParam(@NonNull List<Long> channelIds) {
23  this.channelIds = channelIds;
24  }
25 
30  @NonNull
31  public List<Long> getChannelIds() {
32  return channelIds;
33  }
34 }
List< Long > getChannelIds()
获取查询的频道Id列表