ShengwangChatSDK 1.3.2
AgoraChatMessageBody.h
1
9#import <Foundation/Foundation.h>
10#import <CoreGraphics/CGGeometry.h>
11
16typedef NS_ENUM(NSInteger, AgoraChatMessageBodyType) {
17 AgoraChatMessageBodyTypeText = 1,
18 AgoraChatMessageBodyTypeImage,
19 AgoraChatMessageBodyTypeVideo,
20 AgoraChatMessageBodyTypeLocation,
21 AgoraChatMessageBodyTypeVoice,
22 AgoraChatMessageBodyTypeFile,
23 AgoraChatMessageBodyTypeCmd,
24 AgoraChatMessageBodyTypeCustom,
25 AgoraChatMessageBodyTypeCombine,
26};
27
32@interface AgoraChatMessageBody : NSObject
33
34-(instancetype _Nonnull ) init NS_UNAVAILABLE;
35
40@property (nonatomic, readonly) AgoraChatMessageBodyType type;
45@property (nonatomic, assign,readonly) NSUInteger operationTime;
50@property (nonatomic,nullable,readonly) NSString *operatorId;
55@property (nonatomic, assign,readonly) NSUInteger operatorCount;
56
57@end
Definition: AgoraChatMessageBody.h:33
NSUInteger operationTime
Definition: AgoraChatMessageBody.h:45
NSString * operatorId
Definition: AgoraChatMessageBody.h:50
AgoraChatMessageBodyType type
Definition: AgoraChatMessageBody.h:40
NSUInteger operatorCount
Definition: AgoraChatMessageBody.h:55