NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateMessageResult.h
浏览该文件的文档.
1//
2// NIMQChatUpdateMessageResult.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 NIMQChatUpdateMessageResult : NSObject
19
20/**
21 * 消息
22 */
23@property (nullable, nonatomic, strong) NIMQChatMessage *message;
24
25@end
26
27NS_ASSUME_NONNULL_END
Definition: NIMQChatMessage.h:76
Definition: NIMQChatUpdateMessageResult.h:19
NIMQChatMessage * message
Definition: NIMQChatUpdateMessageResult.h:23