NIMSDK-AOS  9.16.0
QChatGetChannelCategoriesParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 import java.util.List;
5 
10 
14  @NonNull
15  private final List<Long> categoryIds;
16 
21  public QChatGetChannelCategoriesParam(@NonNull List<Long> categoryIds) {
22  this.categoryIds = categoryIds;
23  }
24 
29  @NonNull
30  public List<Long> getCategoryIds() {
31  return categoryIds;
32  }
33 }