HyphenateChatSDK  4.6.0
EMRecallMessageInfo.h
1 //
2 // EMRecallMessageInfo.h
3 // HyphenateChat
4 //
5 // Created by zhangchong on 2022/1/20.
6 // Copyright © 2022 easemob.com. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "EMChatMessage.h"
11 
19 @interface EMRecallMessageInfo : NSObject
20 
28 @property (nonatomic, copy) NSString * _Nonnull recallBy;
29 
37 @property (nonatomic, copy) NSString * _Nonnull recallMessageId;
38 
48 @property (nonatomic, strong) EMChatMessage * _Nullable recallMessage;
49 
57 @property (nonatomic, strong) NSString* _Nullable ext;
58 
59 @end
60 
NSString *_Nonnull recallBy
Definition: EMRecallMessageInfo.h:28
NSString *_Nonnull recallMessageId
Definition: EMRecallMessageInfo.h:37
Definition: EMChatMessage.h:113
Definition: EMRecallMessageInfo.h:19
NSString *_Nullable ext
Definition: EMRecallMessageInfo.h:57
EMChatMessage *_Nullable recallMessage
Definition: EMRecallMessageInfo.h:48