uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMQChatSystemNotificationSetting.h
2025-10-09 16:48:46 +08:00

44 lines
844 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMSystemNotificationSetting.h
// NIMLib
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 自定义系统通知配置
*/
@interface NIMQChatSystemNotificationSetting : NSObject<NSCopying>
/**
* 是否存离线只有toAccids不为空才能设置为存离线默认NO
*/
@property(nonatomic, assign) BOOL persistEnable;
/**
* 是否需要推送, 默认NO
*/
@property(nonatomic, assign) BOOL pushEnable;
/**
* 是否需要系统通知展示角标, 默认YES
*/
@property(nonatomic, assign) BOOL needBadge;
/**
* 是否需要推送昵称, 默认YES
*/
@property(nonatomic, assign) BOOL needPushNick;
/**
* 是否需要抄送, 默认YES
*/
@property(nonatomic, assign) BOOL routeEnable;
@end
NS_ASSUME_NONNULL_END