NIMSDK-AOS  9.16.0
QChatInviteServerMembersParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 import java.util.List;
5 
9 public class QChatInviteServerMembersParam extends QChatServerJoinParam{
10 
14  @NonNull
15  private final Long serverId;
19  @NonNull
20  private final List<String> accids;
24  @NonNull
25  private String postscript = "";
26 
32  public QChatInviteServerMembersParam(long serverId, List<String> accids) {
33  this.serverId = serverId;
34  this.accids = accids;
35  }
36 
41  @NonNull
42  public Long getServerId() {
43  return serverId;
44  }
45 
50  @NonNull
51  public List<String> getAccids() {
52  return accids;
53  }
54 
59  @NonNull
60  public String getPostscript() {
61  return postscript;
62  }
63 
68  public void setPostscript(@NonNull String postscript) {
69  this.postscript = postscript;
70  }
71 
76  @Override
77  public Long getTtl() {
78  return super.getTtl();
79  }
80 
85  @Override
86  public void setTtl(Long ttl) {
87  super.setTtl(ttl);
88  }
89 }
List< String > getAccids()
获取邀请加入的成员的accid列表