15#import <Foundation/Foundation.h>
17#import "AgoraChatMessageBody.h"
26typedef NS_ENUM(NSInteger, AgoraChatDownloadStatus) {
27 AgoraChatDownloadStatusDownloading = 0,
28 AgoraChatDownloadStatusSucceed,
29 AgoraChatDownloadStatusFailed,
30 AgoraChatDownloadStatusPending,
31 AgoraChatDownloadStatusSuccessed=AgoraChatDownloadStatusSucceed,
114- (instancetype _Nonnull)initWithLocalPath:(NSString * _Nullable)aLocalPath
115 displayName:(NSString * _Nullable)aDisplayName;
134- (instancetype _Nonnull)initWithData:(NSData *_Nullable)aData
135 displayName:(NSString *_Nullable)aDisplayName;
Definition: AgoraChatFileMessageBody.h:42
NSString * displayName
Definition: AgoraChatFileMessageBody.h:50
long long fileLength
Definition: AgoraChatFileMessageBody.h:86
NSString * localPath
Definition: AgoraChatFileMessageBody.h:59
NSString * remotePath
Definition: AgoraChatFileMessageBody.h:68
AgoraChatDownloadStatus downloadStatus
Definition: AgoraChatFileMessageBody.h:95
NSString * secretKey
Definition: AgoraChatFileMessageBody.h:77
Definition: AgoraChatMessageBody.h:45