NIMSDK-AOS  9.19.0
QChatGetChannelsParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 import java.util.List;
6 
7 /**
8  * "查询channel信息"接口入参
9  */
10 public class QChatGetChannelsParam {
11 
12  /**
13  * 查询的频道Id列表
14  */
15  @NonNull
16  private final List<Long> channelIds;
17 
18  /**
19  *
20  * @param channelIds 查询的channelId列表
21  */
22  public QChatGetChannelsParam(@NonNull List<Long> channelIds) {
23  this.channelIds = channelIds;
24  }
25 
26  /**
27  * 获取查询的频道Id列表
28  * @return
29  */
30  @NonNull
31  public List<Long> getChannelIds() {
32  return channelIds;
33  }
34 }
List< Long > getChannelIds()
获取查询的频道Id列表