NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatMessageUpdateContent.h
浏览该文件的文档.
1//
2// NIMQChatMessageUpdateContent.h
3// NIMLib
4//
5// Created by Evang on 2022/5/26.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "NIMQChatMessage.h"
11
12
13@class NIMQChatMessage;
14NS_ASSUME_NONNULL_BEGIN
15/**
16 * 消息在上次更新后的内容,当消息曾被更新过/删除过/撤回过时存在。
17 */
18@interface NIMQChatMessageUpdateContent : NSObject
19
20/**
21 * 消息处理状态
22 */
23@property (nonatomic,assign) NIMQChatMessageStatus status;
24
25/**
26 * 消息更新后的 扩展ext 内容
27 */
28@property (nonatomic, copy) NSString *remoteExt;
29
30/**
31 * 消息更新后的内容
32 */
33@property (nonatomic, copy) NSString *text;
34
35@end
36
37
38
39/**
40 * 消息在上次更新后的操作信息
41 */
43
44/**
45 * 操作者账号
46 */
47@property(nullable, nonatomic, copy) NSString *operatorAccid;
48
49/**
50 * 操作者客户端类型
51 */
52@property(nonatomic, assign) NIMLoginClientType operatorClientType;
53
54/**
55 * 操作附言
56 */
57@property(nullable, nonatomic, copy) NSString *postscript;
58
59/**
60 * 操作扩展字段
61 */
62@property(nullable, nonatomic, copy) NSString *extension;
63
64/**
65 * 推送文案
66 */
67@property(nullable, nonatomic, copy) NSString *pushContent;
68
69/**
70 * 推送payload
71 */
72@property(nullable, nonatomic, copy) NSString *pushPayload;
73
74
75@end
76NS_ASSUME_NONNULL_END
NIMLoginClientType
Definition: NIMLoginClient.h:17
NIMQChatMessageStatus
Definition: NIMQChatMessage.h:23
Definition: NIMQChatMessage.h:76
Definition: NIMQChatMessageUpdateContent.h:19
NIMQChatMessageStatus status
Definition: NIMQChatMessageUpdateContent.h:23
NSString * remoteExt
Definition: NIMQChatMessageUpdateContent.h:28
NSString * text
Definition: NIMQChatMessageUpdateContent.h:33
Definition: NIMQChatMessageUpdateContent.h:43