NIMSDK-AOS  9.16.0
QChatGetChannelCategoriesByPageParam.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 Long timeTag;
23  private Integer limit;
24 
30  public QChatGetChannelCategoriesByPageParam(long serverId, long timeTag) {
31  this.serverId = serverId;
32  this.timeTag = timeTag;
33  }
34 
39  @NonNull
40  public Long getServerId() {
41  return serverId;
42  }
43 
48  @NonNull
49  public Long getTimeTag() {
50  return timeTag;
51  }
52 
57  public Integer getLimit() {
58  return limit;
59  }
60 
65  public void setLimit(Integer limit) {
66  this.limit = limit;
67  }
68 }