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