9#import <Foundation/Foundation.h>
11#import "AgoraChatMessageBody.h"
17typedef NS_ENUM(NSInteger, AgoraChatDownloadStatus) {
18 AgoraChatDownloadStatusDownloading = 0,
19 AgoraChatDownloadStatusSucceed,
20 AgoraChatDownloadStatusFailed,
21 AgoraChatDownloadStatusPending,
75- (instancetype _Nonnull)initWithLocalPath:(NSString * _Nullable)aLocalPath
76 displayName:(NSString * _Nullable)aDisplayName;
87- (instancetype _Nonnull)initWithData:(NSData *_Nullable)aData
88 displayName:(NSString *_Nullable)aDisplayName;
Definition: AgoraChatFileMessageBody.h:29
NSString * displayName
Definition: AgoraChatFileMessageBody.h:34
long long fileLength
Definition: AgoraChatFileMessageBody.h:58
NSString * localPath
Definition: AgoraChatFileMessageBody.h:40
NSString * remotePath
Definition: AgoraChatFileMessageBody.h:46
AgoraChatDownloadStatus downloadStatus
Definition: AgoraChatFileMessageBody.h:64
NSString * secretKey
Definition: AgoraChatFileMessageBody.h:52
Definition: AgoraChatMessageBody.h:33