AgoraChatSDK 1.0.7
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
22
23@interface AgoraChatThreadEvent : NSObject
31@property (readonly) AgoraChatThreadOperation type;
39@property (readonly) NSString *from;
47@property (readonly) AgoraChatThread *chatThread;
48
49@end
50
Definition: AgoraChatMessage.h:67
Definition: AgoraChatThreadEvent.h:24
AgoraChatThreadOperation type
Definition: AgoraChatThreadEvent.h:31
NSString * from
Definition: AgoraChatThreadEvent.h:39
AgoraChatThread * chatThread
Definition: AgoraChatThreadEvent.h:47
Definition: AgoraChatThread.h:14