NIMSDK-AOS  9.16.0
QChatUpdateUserPushConfigParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
9 public abstract class QChatUpdateUserPushConfigParam {
10 
14  @NonNull
15  protected final QChatPushMsgType pushMsgType;
16 
20  public QChatUpdateUserPushConfigParam(@NonNull QChatPushMsgType pushMsgType) {
21  this.pushMsgType = pushMsgType;
22  }
23 
28  @NonNull
30  return pushMsgType;
31  }
32 }
推送消息类型选项 低等级消息:普通消息等(没有具体目标、没有@意愿) 中等级消息: @所有人等(没有具体目...