NIMSDK-AOS  9.19.0
QChatUpdateUserPushConfigParam.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.param;
2 
3 import androidx.annotation.NonNull;
5 
6 /**
7  * "更新用户推送配置"接口入参
8  */
9 public abstract class QChatUpdateUserPushConfigParam {
10 
11  /**
12  * 推送消息类型选项
13  */
14  @NonNull
15  protected final QChatPushMsgType pushMsgType;
16 
17  /**
18  * @param pushMsgType 推送消息类型选项
19  */
20  public QChatUpdateUserPushConfigParam(@NonNull QChatPushMsgType pushMsgType) {
21  this.pushMsgType = pushMsgType;
22  }
23 
24  /**
25  * 获取推送消息类型选项
26  * @return
27  */
28  @NonNull
30  return pushMsgType;
31  }
32 }
推送消息类型选项 低等级消息:普通消息等(没有具体目标、没有@意愿) 中等级消息: @所有人等(没有具体目...