NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUserPushNotificationConfig.h
浏览该文件的文档.
1//
2// NIMQChatUserPushNotificationConfig.h
3// NIMSDK
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 */
16typedef NS_ENUM(NSInteger, NIMQChatUserPushNotificationConfigType) {
17 /**
18 * 圈组频道用户配置维度
19 */
21 /**
22 * 圈组服务器用户配置维度
23 */
25 /**
26 * 圈组频道分组用户配置维度
27 */
29};
30
31/**
32 * 圈组用户推送配置
33 */
35
36/**
37 * 圈组用户配置维度
38 */
39@property (nonatomic, assign, readonly) NIMQChatUserPushNotificationConfigType type;
40
41/**
42 * 服务器ID
43 */
44@property (nonatomic, assign, readonly) unsigned long long serverId;
45
46/**
47 * 频道ID
48 */
49@property (nonatomic, assign, readonly) unsigned long long channelId;
50
51/**
52 * 频道分组id
53 */
54@property (nonatomic, assign, readonly) unsigned long long categoryId;
55
56/**
57 * 推送等级配置
58 */
59@property (nonatomic, assign, readonly) NSInteger profile;
60
61@end
62
63NS_ASSUME_NONNULL_END
NIMQChatUserPushNotificationConfigType
Definition: NIMQChatUserPushNotificationConfig.h:16
@ NIMQChatUserPushNotificationConfigTypeChannel
Definition: NIMQChatUserPushNotificationConfig.h:20
@ NIMQChatUserPushNotificationConfigTypeServer
Definition: NIMQChatUserPushNotificationConfig.h:24
@ NIMQChatUserPushNotificationConfigTypeCategory
Definition: NIMQChatUserPushNotificationConfig.h:28
Definition: NIMQChatUserPushNotificationConfig.h:35
unsigned long long serverId
Definition: NIMQChatUserPushNotificationConfig.h:44
unsigned long long channelId
Definition: NIMQChatUserPushNotificationConfig.h:49
NIMQChatUserPushNotificationConfigType type
Definition: NIMQChatUserPushNotificationConfig.h:39
NSInteger profile
Definition: NIMQChatUserPushNotificationConfig.h:59
unsigned long long categoryId
Definition: NIMQChatUserPushNotificationConfig.h:54