EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZSADPDeviceInfo.h
1 //
2 // EZSADPDeviceInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by linyong on 2017/8/15.
6 // Copyright © 2017Ezviz.. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 @interface EZSADPDeviceInfo : NSObject
12 
14 @property (nonatomic,copy) NSString *deviceSerial;
16 @property (nonatomic,copy) NSString *deviceMac;
18 @property (nonatomic,assign) BOOL actived;
20 @property (nonatomic,copy) NSString *localIp;
22 @property (nonatomic,assign) NSInteger localPort;
24 @property (nonatomic,copy) NSString *localIpV6;
26 @property (nonatomic,assign) NSInteger httpPort;
28 @property (nonatomic,assign) NSInteger deviceType;
30 @property (nonatomic,copy) NSString *deviceTypeDes;
32 @property (nonatomic,copy) NSString *firmwareVersion;
34 @property (nonatomic,assign) NSInteger abilitySupport;
36 @property (nonatomic,assign) BOOL DHCPOn;
38 @property (nonatomic,assign) BOOL isEzvizDevice;
39 
40 
41 
42 @end
NSString * deviceTypeDes
Device type description.
Definition: EZSADPDeviceInfo.h:30
BOOL actived
Whether the device is activated.
Definition: EZSADPDeviceInfo.h:18
NSString * firmwareVersion
Device firmware version.
Definition: EZSADPDeviceInfo.h:32
NSString * localIp
Device local IP address IPV4.
Definition: EZSADPDeviceInfo.h:20
NSString * localIpV6
Device local IP address IPV6.
Definition: EZSADPDeviceInfo.h:24
NSInteger abilitySupport
According to bits, value 1 is supported, 0x01: support Ipv6,0x02: to modify the parameters of Ipv6 su...
Definition: EZSADPDeviceInfo.h:34
NSInteger httpPort
Http port.
Definition: EZSADPDeviceInfo.h:26
NSInteger localPort
Device port.
Definition: EZSADPDeviceInfo.h:22
BOOL isEzvizDevice
ezviz device
Definition: EZSADPDeviceInfo.h:38
Definition: EZSADPDeviceInfo.h:11
BOOL DHCPOn
DHCP enable.
Definition: EZSADPDeviceInfo.h:36
NSInteger deviceType
Device type.
Definition: EZSADPDeviceInfo.h:28
NSString * deviceSerial
Long device serial number.
Definition: EZSADPDeviceInfo.h:14
NSString * deviceMac
Device MAC address.
Definition: EZSADPDeviceInfo.h:16