AgoraChatSDK 1.3.1
AgoraChatRecallMessageInfo.h
1//
2// AgoraChatRecallMessageInfo.h
3// AgoraChat
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 "AgoraChatMessage.h"
11
16@interface AgoraChatRecallMessageInfo : NSObject
17
22@property (nonatomic, copy) NSString * _Nonnull recallBy;
23
28@property (nonatomic, copy) NSString * _Nonnull recallMessageId;
29
36@property (nonatomic, strong) AgoraChatMessage * _Nullable recallMessage;
37
42@property (nonatomic, strong) NSString* _Nullable ext;
43
48@property (nonatomic, strong) NSString* _Nonnull conversationId;
49
50@end
51
Definition: AgoraChatMessage.h:87
Definition: AgoraChatRecallMessageInfo.h:17
AgoraChatMessage *_Nullable recallMessage
Definition: AgoraChatRecallMessageInfo.h:36
NSString *_Nonnull recallBy
Definition: AgoraChatRecallMessageInfo.h:22
NSString *_Nullable ext
Definition: AgoraChatRecallMessageInfo.h:42
NSString *_Nonnull conversationId
Definition: AgoraChatRecallMessageInfo.h:48
NSString *_Nonnull recallMessageId
Definition: AgoraChatRecallMessageInfo.h:28