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

54 lines
1.1 KiB
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.

//
// NIMQChatUpdateSystemNotificationParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMQChatSystemNotification.h"
@class NIMQChatUpdateParam;
NS_ASSUME_NONNULL_BEGIN
/**
* 更新圈组系统通知的参数
*/
@interface NIMQChatUpdateSystemNotificationParam : NSObject
/**
* 更新操作通用参数,设置该操作相关的附加字段,设置该操作引发的推送内容,必填
*/
@property (nonnull, nonatomic, copy) NIMQChatUpdateParam * updateParam;
/**
* 系统通知的服务端ID必填
*/
@property (nonatomic, assign) unsigned long long msgServerId;
/**
* 系统通知的类型,必填
*/
@property (nonatomic, assign) NIMQChatSystemNotificationType notificationType;
/**
* 系统通知内容
*/
@property(nullable, nonatomic, copy) NSString *body;
/**
* 系统通知自定义扩展字段推荐使用json格式
*/
@property(nullable, nonatomic, copy) NSString *extension;
/**
* 系统通知状态大于等于10000有效
*/
@property(nonatomic, assign) NSInteger status;
@end
NS_ASSUME_NONNULL_END