NIMSDK-AOS  9.16.0
QChatUpdateUserChannelCategoryPushConfigParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
10 
14  @NonNull
15  private final Long serverId;
19  @NonNull
20  private final Long categoryId;
21 
28  public QChatUpdateUserChannelCategoryPushConfigParam(@NonNull long serverId, @NonNull Long categoryId,@NonNull QChatPushMsgType pushMsgType) {
29  super(pushMsgType);
30  this.serverId = serverId;
31  this.categoryId = categoryId;
32  }
33 
38  @NonNull
39  public Long getServerId() {
40  return serverId;
41  }
42 
47  @NonNull
48  public Long getCategoryId() {
49  return categoryId;
50  }
51 
56  @Override
57  @NonNull
59  return super.getPushMsgType();
60  }
61 }
推送消息类型选项 低等级消息:普通消息等(没有具体目标、没有@意愿) 中等级消息: @所有人等(没有具体目...
QChatUpdateUserChannelCategoryPushConfigParam(@NonNull long serverId, @NonNull Long categoryId, @NonNull QChatPushMsgType pushMsgType)