9#import <Foundation/Foundation.h>
11#import "AgoraChatMessageBody.h"
17typedef NS_ENUM(NSInteger, AgoraChatDownloadStatus) {
18 AgoraChatDownloadStatusDownloading = 0,
19 AgoraChatDownloadStatusSucceed,
20 AgoraChatDownloadStatusFailed,
21 AgoraChatDownloadStatusPending,
22 AgoraChatDownloadStatusSuccessed=AgoraChatDownloadStatusSucceed,
76- (instancetype _Nonnull)initWithLocalPath:(NSString * _Nullable)aLocalPath
77 displayName:(NSString * _Nullable)aDisplayName;
88- (instancetype _Nonnull)initWithData:(NSData *_Nullable)aData
89 displayName:(NSString *_Nullable)aDisplayName;
Definition: AgoraChatFileMessageBody.h:30
NSString * displayName
Definition: AgoraChatFileMessageBody.h:35
long long fileLength
Definition: AgoraChatFileMessageBody.h:59
NSString * localPath
Definition: AgoraChatFileMessageBody.h:41
NSString * remotePath
Definition: AgoraChatFileMessageBody.h:47
AgoraChatDownloadStatus downloadStatus
Definition: AgoraChatFileMessageBody.h:65
NSString * secretKey
Definition: AgoraChatFileMessageBody.h:53
Definition: AgoraChatMessageBody.h:33