NIMSDK-AOS  9.16.0
QChatGetChannelsInCategoryByPageParam.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 categoryId;
23  @NonNull
24  private final Long timeTag;
28  private Integer limit;
29 
36  public QChatGetChannelsInCategoryByPageParam(long serverId,long categoryId, long timeTag) {
37  this.serverId = serverId;
38  this.categoryId = categoryId;
39  this.timeTag = timeTag;
40  }
41 
46  @NonNull
47  public Long getServerId() {
48  return serverId;
49  }
50 
55  @NonNull
56  public Long getCategoryId() {
57  return categoryId;
58  }
59 
64  @NonNull
65  public Long getTimeTag() {
66  return timeTag;
67  }
68 
73  public Integer getLimit() {
74  return limit;
75  }
76 
81  public void setLimit(Integer limit) {
82  this.limit = limit;
83  }
84 }