NIMSDK-AOS  9.16.0
QChatGetExistingChannelCategoryBlackWhiteMembersParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 import java.util.List;
6 
11 
15  @NonNull
16  private final Long serverId;
20  @NonNull
21  private final Long categoryId;
25  @NonNull
26  private final QChatChannelBlackWhiteType type;
30  @NonNull
31  private final List<String> accids;
32 
40  public QChatGetExistingChannelCategoryBlackWhiteMembersParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull List<String> accids) {
41  this.serverId = serverId;
42  this.categoryId = categoryId;
43  this.type = type;
44  this.accids = accids;
45  }
46 
51  @NonNull
52  public Long getServerId() {
53  return serverId;
54  }
55 
60  @NonNull
61  public Long getCategoryId() {
62  return categoryId;
63  }
64 
69  @NonNull
71  return type;
72  }
73 
78  @NonNull
79  public List<String> getAccids() {
80  return accids;
81  }
82 }
QChatGetExistingChannelCategoryBlackWhiteMembersParam(@NonNull Long serverId, @NonNull Long categoryId, @NonNull QChatChannelBlackWhiteType type, @NonNull List< String > accids)