NIMSDK-AOS  9.16.0
QChatGetMemberRolesParam.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  @NonNull
29  private final Integer limit;
30 
38  public QChatGetMemberRolesParam(long serverId, long channelId, long timeTag, int limit) {
39  this.serverId = serverId;
40  this.channelId = channelId;
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 Long getChannelId() {
60  return channelId;
61  }
62 
67  @NonNull
68  public Long getTimeTag() {
69  return timeTag;
70  }
71 
76  public Integer getLimit() {
77  return limit;
78  }
79 }
QChatGetMemberRolesParam(long serverId, long channelId, long timeTag, int limit)
"查询channel下某人的定制权限"接口入参