EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZLeaveMessage.h
1 //
2 // EZLeaveMessage.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 EZLeaveMessage : NSObject
13 
15 @property (nonatomic, copy) NSString *id;
17 @property (nonatomic, copy) NSString *deviceSerial;
19 @property (nonatomic, copy) NSString *deviceName;
21 @property (nonatomic) NSInteger duration;
23 @property (nonatomic) NSInteger contentType;
25 @property (nonatomic) NSInteger messageDirection;
27 @property (nonatomic) NSInteger senderType;
29 @property (nonatomic, copy) NSString *senderName;
31 @property (nonatomic, copy) NSString *messagePicUrl;
33 @property (nonatomic) NSInteger status;
35 @property (nonatomic, copy) NSString *cloudServerUrl;
37 @property (nonatomic, strong) NSDate *createTime;
39 @property (nonatomic, strong) NSDate *updateTIme;
40 
41 @end
NSDate * updateTIme
Edit time.
Definition: EZLeaveMessage.h:39
NSInteger senderType
Sender type: 1–F1 deice, 2– Web Client, 3–iPhone Client, 4–iPad Client, 5–android Client...
Definition: EZLeaveMessage.h:27
NSInteger status
Message status: 0- Unread, 1- Read, 2- Deleted.
Definition: EZLeaveMessage.h:33
NSString * cloudServerUrl
Cloud storage server address. Format: {domain name: port}.
Definition: EZLeaveMessage.h:35
Leave message.
Definition: EZLeaveMessage.h:12
NSString * deviceSerial
Device serial No.
Definition: EZLeaveMessage.h:17
NSString * messagePicUrl
Leave message thumbnail URL address.
Definition: EZLeaveMessage.h:31
NSString * senderName
Sender name.
Definition: EZLeaveMessage.h:29
NSString * deviceName
Device name.
Definition: EZLeaveMessage.h:19
NSInteger messageDirection
Receive or response: 1- User received (sent by device), 2- User responded (sent by Client) ...
Definition: EZLeaveMessage.h:25
NSInteger duration
Message duration (unit: second)
Definition: EZLeaveMessage.h:21
NSInteger contentType
Leave message type: 1- Voice message, 2- Video message.
Definition: EZLeaveMessage.h:23
NSDate * createTime
Created time.
Definition: EZLeaveMessage.h:37