HyphenateChatSDK 4.10.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
66@property (nonatomic, strong) NSString* _Nonnull conversationId;
67
68@end
69
Definition: EMChatMessage.h:114
Definition: EMRecallMessageInfo.h:20
NSString *_Nonnull recallBy
Definition: EMRecallMessageInfo.h:28
NSString *_Nonnull recallMessageId
Definition: EMRecallMessageInfo.h:37
NSString *_Nonnull conversationId
Definition: EMRecallMessageInfo.h:66
EMChatMessage *_Nullable recallMessage
Definition: EMRecallMessageInfo.h:48
NSString *_Nullable ext
Definition: EMRecallMessageInfo.h:57