NIMSDK-AOS  9.16.0
QChatGetBannedServerMembersByPageParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
4 
12  @NonNull
13  private final Long serverId;
17  @NonNull
18  private final Long timeTag;
22  private Integer limit;
23 
29  public QChatGetBannedServerMembersByPageParam(@NonNull Long serverId, @NonNull Long timeTag) {
30  this.serverId = serverId;
31  this.timeTag = timeTag;
32  }
33 
38  @NonNull
39  public Long getServerId() {
40  return serverId;
41  }
42 
47  @NonNull
48  public Long getTimeTag() {
49  return timeTag;
50  }
51 
56  public Integer getLimit() {
57  return limit;
58  }
59 
64  public void setLimit(Integer limit) {
65  this.limit = limit;
66  }
67 }