NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateMessageEvent.h
浏览该文件的文档.
1//
2// NIMQChatUpdateMessageEvent.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class NIMQChatMessage;
12
13NS_ASSUME_NONNULL_BEGIN
14
15/**
16 * 圈组消息更新事件
17 */
18@interface NIMQChatUpdateMessageEvent : NSObject
19
20/**
21 * 消息
22 */
23@property(nonnull, nonatomic, strong) NIMQChatMessage *message;
24
25/**
26 * 消息更改信息
27 */
28@property(nonnull, nonatomic, strong) NIMQChatUpdateParam *updateParam;
29
30@end
31
32NS_ASSUME_NONNULL_END
Definition: NIMQChatMessage.h:55
Definition: NIMQChatUpdateMessageEvent.h:19
NIMQChatMessage * message
Definition: NIMQChatUpdateMessageEvent.h:23
NIMQChatUpdateParam * updateParam
Definition: NIMQChatUpdateMessageEvent.h:28
Definition: NIMQChatUpdateParam.h:13