NIMSDK-iOS
载入中...
搜索中...
未找到
V2NIMNotificationRouteConfig.h
浏览该文件的文档.
1//
2// V2NIMNotificationRouteConfig.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
11NS_ASSUME_NONNULL_BEGIN
12
13/// 路由抄送相关配置
14@interface V2NIMNotificationRouteConfig : NSObject
15/// 是否需要路由通知。(抄送)true:需要。false:不需要
16@property(nonatomic,assign,readwrite) BOOL routeEnabled;
17/// 环境变量,用于指向不同的抄送,第三方回调等配置
18@property(nonatomic,strong,readwrite) NSString *routeEnvironment;
19@end
20
21NS_ASSUME_NONNULL_END
路由抄送相关配置
Definition: V2NIMNotificationRouteConfig.h:15
BOOL routeEnabled
是否需要路由通知。(抄送)true:需要。false:不需要
Definition: V2NIMNotificationRouteConfig.h:16
NSString * routeEnvironment
环境变量,用于指向不同的抄送,第三方回调等配置
Definition: V2NIMNotificationRouteConfig.h:18