AgoraChatSDK 1.2.0
AgoraChatImageMessageBody.h
1
9#import <Foundation/Foundation.h>
10
11#import "AgoraChatFileMessageBody.h"
12
25
30@property (nonatomic) CGSize size;
31
38@property (nonatomic) CGFloat compressionRatio;
39
44@property (nonatomic, copy) NSString *thumbnailDisplayName;
45
51@property (nonatomic, copy) NSString *thumbnailLocalPath;
52
59@property (nonatomic, copy) NSString *thumbnailRemotePath;
60
65@property (nonatomic, copy) NSString *thumbnailSecretKey;
66
71@property (nonatomic) CGSize thumbnailSize;
72
77@property (nonatomic) long long thumbnailFileLength;
78
83@property (nonatomic)AgoraChatDownloadStatus thumbnailDownloadStatus;
84
106- (instancetype)initWithData:(NSData *)aData
107 thumbnailData:(NSData *)aThumbnailData;
108
109@end
Definition: AgoraChatFileMessageBody.h:30
Definition: AgoraChatImageMessageBody.h:25
NSString * thumbnailLocalPath
Definition: AgoraChatImageMessageBody.h:51
NSString * thumbnailRemotePath
Definition: AgoraChatImageMessageBody.h:59
NSString * thumbnailDisplayName
Definition: AgoraChatImageMessageBody.h:44
AgoraChatDownloadStatus thumbnailDownloadStatus
Definition: AgoraChatImageMessageBody.h:83
CGSize thumbnailSize
Definition: AgoraChatImageMessageBody.h:71
NSString * thumbnailSecretKey
Definition: AgoraChatImageMessageBody.h:65
long long thumbnailFileLength
Definition: AgoraChatImageMessageBody.h:77
CGSize size
Definition: AgoraChatImageMessageBody.h:30
CGFloat compressionRatio
Definition: AgoraChatImageMessageBody.h:38