EZOpenSDK  4.8.6
 全部  函数 属性
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
修改时间
Definition: EZLeaveMessage.h:39
NSInteger senderType
发送端类型:1–F1设备 2–Web客户端 3–iPhone客户端 4–iPad客户端 5–android客户端 6–androidPad客户端...
Definition: EZLeaveMessage.h:27
NSInteger status
消息状态:0-未读 1-已读 2-删除
Definition: EZLeaveMessage.h:33
NSString * cloudServerUrl
云存储服务器地址,目前默认为武汉云存储,格式为:{域名:端口}
Definition: EZLeaveMessage.h:35
此类为留言消息对象
Definition: EZLeaveMessage.h:12
NSString * deviceSerial
设备序列号
Definition: EZLeaveMessage.h:17
NSString * messagePicUrl
留言封面截图地址
Definition: EZLeaveMessage.h:31
NSString * senderName
发送端别名
Definition: EZLeaveMessage.h:29
NSString * deviceName
设备名称
Definition: EZLeaveMessage.h:19
NSInteger messageDirection
接收or回复:1-用户接收(设备发送)2-用户回复(客户端发送)
Definition: EZLeaveMessage.h:25
NSInteger duration
留言时长(单位:秒)
Definition: EZLeaveMessage.h:21
NSInteger contentType
留言消息类型:1-语音留言 2-视频留言
Definition: EZLeaveMessage.h:23
NSDate * createTime
创建时间
Definition: EZLeaveMessage.h:37