EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZProbeDeviceInfo.h
1 //
2 // EZProbeDeviceInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/12/11.
6 // Copyright © 2015Ezviz.. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZProbeDeviceInfo : NSObject
13 
15 @property (nonatomic, copy) NSString *displayName;
17 @property (nonatomic, copy) NSString *subSerial;
19 @property (nonatomic, copy) NSString *fullSerial;
21 @property (nonatomic) NSInteger status;
23 @property (nonatomic, copy) NSString *defaultPicPath;
25 @property (nonatomic) NSInteger supportWifi;
27 @property (nonatomic, copy) NSString *releaseVersion;
29 @property (nonatomic) NSInteger availiableChannelCount;
31 @property (nonatomic) NSInteger relatedDeviceCount;
33 @property (nonatomic, copy) NSString *supportExt;
34 
35 @end
Search device information (Before adding device)
Definition: EZProbeDeviceInfo.h:12
NSString * defaultPicPath
Device picture.
Definition: EZProbeDeviceInfo.h:23
NSInteger relatedDeviceCount
Related device number, such as N1, R1, A1, and etc.
Definition: EZProbeDeviceInfo.h:31
NSString * displayName
Display name.
Definition: EZProbeDeviceInfo.h:15
NSString * releaseVersion
Device protocol version.
Definition: EZProbeDeviceInfo.h:27
NSInteger supportWifi
Whether supports Wi-Fi: 0- No, 1- Yes, 2- Supports new Wi-Fi configuration with user ID...
Definition: EZProbeDeviceInfo.h:25
NSString * supportExt
Capability set.
Definition: EZProbeDeviceInfo.h:33
NSString * subSerial
Device sub serial No.
Definition: EZProbeDeviceInfo.h:17
NSInteger status
Device online status: 1- Online, other value- Offline.
Definition: EZProbeDeviceInfo.h:21
NSString * fullSerial
Device full serial No.
Definition: EZProbeDeviceInfo.h:19
NSInteger availiableChannelCount
Available channel number.
Definition: EZProbeDeviceInfo.h:29