AgoraChatSDK 1.2.0
AgoraChatThreadEvent.h
1//
2// AgoraChatThreadEvent.h
3// AgoraChat
4//
5// Created by 朱继超 on 2022/3/3.
6// Copyright © 2022 easemob.com. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class AgoraChatMessage;
12@class AgoraChatThread;
13
14typedef NS_ENUM(NSUInteger, AgoraChatThreadOperation) {
15 AgoraChatThreadOperationUnknown,
16 AgoraChatThreadOperationCreate,
17 AgoraChatThreadOperationUpdate,
18 AgoraChatThreadOperationDelete,
19 AgoraChatThreadOperationUpdate_msg
20};
21
26@interface AgoraChatThreadEvent : NSObject
31@property (readonly) AgoraChatThreadOperation type;
36@property (readonly) NSString *from;
41@property (readonly) AgoraChatThread *chatThread;
42
43@end
44
Definition: AgoraChatMessage.h:61
Definition: AgoraChatThreadEvent.h:27
AgoraChatThreadOperation type
Definition: AgoraChatThreadEvent.h:31
NSString * from
Definition: AgoraChatThreadEvent.h:36
AgoraChatThread * chatThread
Definition: AgoraChatThreadEvent.h:41
Definition: AgoraChatThread.h:19