EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZCloudRecordFile.h
1 //
2 // EZCloudFile.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/9/17.
6 // Copyright (c) 2015 Ezviz. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZCloudRecordFile : NSObject
13 
15 @property (nonatomic, copy) NSString *fileId;
17 @property (nonatomic, strong) NSDate *startTime;
19 @property (nonatomic, strong) NSDate *stopTime;
21 @property (nonatomic, copy) NSString *coverPic;
23 @property (nonatomic, copy) NSString *downloadPath;
25 @property (nonatomic, copy) NSString *encryption;
26 
27 @end
NSString * downloadPath
Cloud storage video download address.
Definition: EZCloudRecordFile.h:23
NSString * encryption
Cloud storage picture encryption password. If it is [NSNull null] or nil pointer, the picture is not ...
Definition: EZCloudRecordFile.h:25
NSString * coverPic
Cloud storage captured pictures address.
Definition: EZCloudRecordFile.h:21
NSDate * stopTime
Cloud storage video end time.
Definition: EZCloudRecordFile.h:19
NSDate * startTime
Cloud storage video start time.
Definition: EZCloudRecordFile.h:17
NSString * fileId
Cloud storage video ID.
Definition: EZCloudRecordFile.h:15
Cloud storage video.
Definition: EZCloudRecordFile.h:12