NIMSDK-AOS  9.16.0
QChatPushConfig.java
浏览该文件的文档.
1 package com.netease.nimlib.sdk.qchat.model;
2 
4 
5 public interface QChatPushConfig {
6 
11  boolean isPushShowNoDetail();
12 
17  void setPushShowNoDetail(boolean pushShowNoDetail);
18 
24  String getStartTimeString();
25 
31  String getStopTimeString();
32 
38  void setStartTime(String startTime);
39 
45  void setStopTime(String endTime);
46 
52  boolean isNoDisturbOpen();
53 
57  void setNoDisturbOpen(boolean open);
63 
68  void setPushMsgType(QChatPushMsgType pushMsgType);
69 
70 }
String getStartTimeString()
获取免打扰起始时间
推送消息类型选项 低等级消息:普通消息等(没有具体目标、没有@意愿) 中等级消息: @所有人等(没有具体目...
boolean isPushShowNoDetail()
获取推送是否不显示详情
boolean isNoDisturbOpen()
是否开启免打扰
void setStartTime(String startTime)
设置免打扰开始时间
QChatPushMsgType getPushMsgType()
获取推送接收哪些消息类型
String getStopTimeString()
获取免打扰结束时间
void setNoDisturbOpen(boolean open)
设置免打扰是否开启
void setStopTime(String endTime)
设置免打扰结束时间
void setPushShowNoDetail(boolean pushShowNoDetail)
设置推送是否不显示详情
void setPushMsgType(QChatPushMsgType pushMsgType)
设置推送接收哪些消息类型