EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZDeviceVersion.h
1 //
2 // EZDeviceVersion.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/12/10.
6 // Copyright © 2015Ezviz.. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZDeviceVersion : NSObject
13 
15 @property (nonatomic, copy) NSString *currentVersion;
17 @property (nonatomic, copy) NSString *latestVersion;
19 @property (nonatomic) NSInteger isNeedUpgrade;
21 @property (nonatomic, copy) NSString *downloadUrl;
23 @property (nonatomic, copy) NSString *upgradeDesc;
24 
25 @end
NSString * currentVersion
Current version.
Definition: EZDeviceVersion.h:15
NSString * downloadUrl
Firmware download URL. The value exists only when the firmware can be upgraded.
Definition: EZDeviceVersion.h:21
NSInteger isNeedUpgrade
Whether upgrade is needed: 0- No, 1- Yes, 3- Need to upgrade to the version higher than V1...
Definition: EZDeviceVersion.h:19
NSString * upgradeDesc
Upgrade description.
Definition: EZDeviceVersion.h:23
Device version information.
Definition: EZDeviceVersion.h:12
NSString * latestVersion
Latest version.
Definition: EZDeviceVersion.h:17