NIMSDK-AOS  9.16.0
QChatGetServerRolesByAccidParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
9 
13  @NonNull
14  private final Long serverId;
18  @NonNull
19  private final String accid;
23  @NonNull
24  private final Long timeTag;
28  @NonNull
29  private final Integer limit;
30 
38  public QChatGetServerRolesByAccidParam(long serverId, @NonNull String accid, long timeTag, int limit) {
39  this.serverId = serverId;
40  this.accid = accid;
41  this.timeTag = timeTag;
42  this.limit = limit;
43  }
44 
49  @NonNull
50  public Long getServerId() {
51  return serverId;
52  }
53 
58  @NonNull
59  public String getAccid() {
60  return accid;
61  }
62 
67  @NonNull
68  public Long getTimeTag() {
69  return timeTag;
70  }
71 
76  @NonNull
77  public Integer getLimit() {
78  return limit;
79  }
80 }
QChatGetServerRolesByAccidParam(long serverId, @NonNull String accid, long timeTag, int limit)