NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateSystemNotificationParam.h
浏览该文件的文档.
1//
2// NIMQChatUpdateSystemNotificationParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
11
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 更新圈组系统通知的参数
18 */
20
21/**
22 * 更新操作通用参数,设置该操作相关的附加字段,设置该操作引发的推送内容,必填
23 */
24@property (nonnull, nonatomic, copy) NIMQChatUpdateParam * updateParam;
25
26/**
27 * 系统通知的服务端ID,必填
28 */
29@property (nonatomic, assign) unsigned long long msgServerId;
30
31/**
32 * 系统通知的类型,必填
33 */
35
36/**
37 * 系统通知内容
38 */
39@property(nullable, nonatomic, copy) NSString *body;
40
41/**
42 * 系统通知自定义扩展字段,推荐使用json格式
43 */
44@property(nullable, nonatomic, copy) NSString *extension;
45
46/**
47 * 系统通知状态,大于等于10000有效
48 */
49@property(nonatomic, assign) NSInteger status;
50
51@end
52
53NS_ASSUME_NONNULL_END
NIMQChatSystemNotificationType
Definition: NIMQChatDefs.h:68
Definition: NIMQChatUpdateParam.h:13
Definition: NIMQChatUpdateSystemNotificationParam.h:20
unsigned long long msgServerId
Definition: NIMQChatUpdateSystemNotificationParam.h:29
NIMQChatSystemNotificationType notificationType
Definition: NIMQChatUpdateSystemNotificationParam.h:34
NIMQChatUpdateParam * updateParam
Definition: NIMQChatUpdateSystemNotificationParam.h:24
NSInteger status
Definition: NIMQChatUpdateSystemNotificationParam.h:49
NSString * extension
Definition: NIMQChatUpdateSystemNotificationParam.h:44
NSString * body
Definition: NIMQChatUpdateSystemNotificationParam.h:39