EZOpenSDK  4.8.6
 全部  函数 属性
EZProbeDeviceInfo.h
1 //
2 // EZProbeDeviceInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/12/11.
6 // Copyright © 2015年 Ezviz. 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 *category;
19 @property (nonatomic, copy) NSString *model;
21 @property (nonatomic, copy) NSString *subSerial;
23 @property (nonatomic, copy) NSString *fullSerial;
25 @property (nonatomic) NSInteger status;
27 @property (nonatomic, copy) NSString *defaultPicPath;
29 @property (nonatomic) NSInteger supportWifi;
31 @property (nonatomic) NSInteger supportAP;
33 @property (nonatomic) NSInteger supportSoundWave;
35 @property (nonatomic) NSInteger supportCloud;
37 @property (nonatomic, copy) NSString *releaseVersion;
39 @property (nonatomic, copy) NSString *version;
41 @property (nonatomic) NSInteger availiableChannelCount;
43 @property (nonatomic) NSInteger relatedDeviceCount;
45 @property (nonatomic, copy) NSString *supportExt;
46 
47 @end
此类为查询设备信息对象(设备添加前使用)
Definition: EZProbeDeviceInfo.h:12
NSString * defaultPicPath
设备图片
Definition: EZProbeDeviceInfo.h:27
NSString * model
设备型号名
Definition: EZProbeDeviceInfo.h:19
NSInteger supportCloud
是否支持云存储,0-不支持,1-支持
Definition: EZProbeDeviceInfo.h:35
NSInteger relatedDeviceCount
N1,R1,A1等设备关联的设备数
Definition: EZProbeDeviceInfo.h:43
NSInteger supportSoundWave
是否支持声波配置,0-不支持,1-支持
Definition: EZProbeDeviceInfo.h:33
NSString * displayName
展示名称
Definition: EZProbeDeviceInfo.h:15
NSString * releaseVersion
设备协议版本
Definition: EZProbeDeviceInfo.h:37
NSInteger supportWifi
是否支持wifi,0-不支持,1-支持,2-支持带userId的新的wifi配置方式,3-支持smartwifi ...
Definition: EZProbeDeviceInfo.h:29
NSInteger supportAP
是否支持AP配网,2-支持AP,其他值为不支持AP配网
Definition: EZProbeDeviceInfo.h:31
NSString * supportExt
能力集
Definition: EZProbeDeviceInfo.h:45
NSString * category
设备大类名
Definition: EZProbeDeviceInfo.h:17
NSString * version
设备版本
Definition: EZProbeDeviceInfo.h:39
NSString * subSerial
设备短序列号
Definition: EZProbeDeviceInfo.h:21
NSInteger status
设备在线状态,1-在线,其他-不在线
Definition: EZProbeDeviceInfo.h:25
NSString * fullSerial
设备长序列号
Definition: EZProbeDeviceInfo.h:23
NSInteger availiableChannelCount
可用于添加的通道数
Definition: EZProbeDeviceInfo.h:41