EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZAlarmInfo.h
1 //
2 // EZAlarmInfo.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/9/16.
6 // Copyright (c) 2015 Ezviz. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZAlarmInfo : NSObject
13 
15 @property (nonatomic, copy) NSString *alarmId;
17 @property (nonatomic, copy) NSString *deviceSerial;
19 @property (nonatomic) NSInteger cameraNo;
21 @property (nonatomic, copy) NSString *alarmName;
23 @property (nonatomic, copy) NSString *alarmPicUrl;
25 @property (nonatomic, strong) NSDate *alarmStartTime;
27 @property (nonatomic) NSInteger alarmType;
29 @property (nonatomic) BOOL isEncrypt;
31 @property (nonatomic) BOOL isRead;
33 @property (nonatomic) NSInteger recState;
35 @property (nonatomic) NSInteger delayTime;
37 @property (nonatomic) NSInteger preTime;
39 @property (nonatomic, copy) NSString *deviceName;
41 @property (nonatomic, copy) NSString *category;
42 
44 @property (nonatomic, copy) NSString *customerType;
46 @property (nonatomic, copy) NSString *customerInfo;
47 
48 @end
NSInteger cameraNo
Camera No.
Definition: EZAlarmInfo.h:19
Alarm information.
Definition: EZAlarmInfo.h:12
NSString * alarmId
Alarm ID.
Definition: EZAlarmInfo.h:15
NSInteger recState
Storage type: 0- No storage device, 1- Hik-Connect, 2- Baidu Cloud, 4- SD card, 5- Hik-Connect and SD...
Definition: EZAlarmInfo.h:33
NSDate * alarmStartTime
Alarm start time.
Definition: EZAlarmInfo.h:25
NSInteger alarmType
Alarm type.
Definition: EZAlarmInfo.h:27
NSString * deviceSerial
Device serial No.
Definition: EZAlarmInfo.h:17
NSString * customerType
4530 Extended field
Definition: EZAlarmInfo.h:44
NSString * alarmPicUrl
Alarm picture.
Definition: EZAlarmInfo.h:23
NSInteger preTime
Pre-offset of alarm recording start time. Actual alarm recording start time= alarmStartTime + pre-off...
Definition: EZAlarmInfo.h:37
NSString * category
Device category.
Definition: EZAlarmInfo.h:41
BOOL isRead
Has been read or not.
Definition: EZAlarmInfo.h:31
BOOL isEncrypt
Encrypted or not.
Definition: EZAlarmInfo.h:29
NSString * alarmName
Alarm name.
Definition: EZAlarmInfo.h:21
NSString * customerInfo
4530 Extended field
Definition: EZAlarmInfo.h:46
NSString * deviceName
Device name.
Definition: EZAlarmInfo.h:39
NSInteger delayTime
Post-offset of alarm recording end time. Actual alarm recording end time= alarmStartTime + post-offse...
Definition: EZAlarmInfo.h:35