NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatSystemNotificationSetting.h
浏览该文件的文档.
1//
2// NIMSystemNotificationSetting.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12/**
13 * 自定义系统通知配置
14 */
15@interface NIMQChatSystemNotificationSetting : NSObject<NSCopying>
16
17/**
18 * 是否存离线,只有toAccids不为空,才能设置为存离线,默认NO
19 */
20@property(nonatomic, assign) BOOL persistEnable;
21
22/**
23 * 是否需要推送, 默认NO
24 */
25@property(nonatomic, assign) BOOL pushEnable;
26
27/**
28 * 是否需要系统通知展示角标, 默认YES
29 */
30@property(nonatomic, assign) BOOL needBadge;
31
32/**
33 * 是否需要推送昵称, 默认YES
34 */
35@property(nonatomic, assign) BOOL needPushNick;
36
37/**
38 * 是否需要抄送, 默认YES
39 */
40@property(nonatomic, assign) BOOL routeEnable;
41
42@end
43NS_ASSUME_NONNULL_END
Definition: NIMQChatSystemNotificationSetting.h:15
BOOL routeEnable
Definition: NIMQChatSystemNotificationSetting.h:40
BOOL needBadge
Definition: NIMQChatSystemNotificationSetting.h:30
BOOL pushEnable
Definition: NIMQChatSystemNotificationSetting.h:25
BOOL needPushNick
Definition: NIMQChatSystemNotificationSetting.h:35
BOOL persistEnable
Definition: NIMQChatSystemNotificationSetting.h:20