NIMSDK-AOS  9.16.0
QChatGetExistingAccidsOfMemberRolesParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
5 import java.util.List;
6 
11 
15  @NonNull
16  private final Long serverId;
17 
21  @NonNull
22  private final Long channelId;
23 
27  @NonNull
28  private final List<String> accids;
29 
36  public QChatGetExistingAccidsOfMemberRolesParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull List<String> accids) {
37  this.serverId = serverId;
38  this.channelId = channelId;
39  this.accids = accids;
40  }
41 
45  @NonNull
46  public Long getServerId() {
47  return serverId;
48  }
49 
53  @NonNull
54  public Long getChannelId() {
55  return channelId;
56  }
57 
61  @NonNull
62  public List<String> getAccids() {
63  return accids;
64  }
65 
66  @Override
67  public String toString() {
68  return "QChatGetExistingAccidsOfMemberRolesParam{" +
69  "serverId=" + serverId +
70  ", channelId=" + channelId +
71  ", accids=" + accids +
72  '}';
73  }
74 }
QChatGetExistingAccidsOfMemberRolesParam(@NonNull Long serverId, @NonNull Long channelId, @NonNull List< String > accids)