NIMSDK-iOS
载入中...
搜索中...
未找到
V2NIMSendCustomNotificationParams.h
浏览该文件的文档.
1//
2// V2NIMSendCustomNotificationParams.h
3// NIMSDK
4//
5// Created by 齐洪茹 on 2023/8/30.
6// Copyright © 2023 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
15
16NS_ASSUME_NONNULL_BEGIN
17
19/// 通知相关配置,具体参见每一个字段定义
20@property(nonatomic,strong) V2NIMNotificationConfig *notificationConfig;
21/// 离线推送配置相关
22@property(nonatomic,strong) V2NIMNotificationPushConfig *pushConfig;
23/// 反垃圾相关配置是路由抄送相关配置
25/// 离线推送配置相关
26@property(nonatomic,strong) V2NIMNotificationRouteConfig *routeConfig;
27@end
28
29NS_ASSUME_NONNULL_END
Definition: V2NIMNotificationAntispamConfig.h:14
通知相关配置
Definition: V2NIMNotificationConfig.h:15
通知推送相关配置
Definition: V2NIMNotificationPushConfig.h:15
路由抄送相关配置
Definition: V2NIMNotificationRouteConfig.h:15
Definition: V2NIMSendCustomNotificationParams.h:19
V2NIMNotificationAntispamConfig * antispamConfig
反垃圾相关配置是路由抄送相关配置
Definition: V2NIMSendCustomNotificationParams.h:24
V2NIMNotificationRouteConfig * routeConfig
离线推送配置相关
Definition: V2NIMSendCustomNotificationParams.h:26
V2NIMNotificationConfig * notificationConfig
通知相关配置,具体参见每一个字段定义
Definition: V2NIMSendCustomNotificationParams.h:20
V2NIMNotificationPushConfig * pushConfig
离线推送配置相关
Definition: V2NIMSendCustomNotificationParams.h:22