NIMBroadcastMessage.h
694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
//
// NIMBroadcastMessage.h
// NIMLib
//
// Created by Netease.
// Copyright © 2017年 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 系统广播
*/
@interface NIMBroadcastMessage : NSObject
/**
* 系统广播 id,全局唯一
*/
@property (nonatomic,assign,readonly) int64_t broadcastId;
/**
* 发起者 id
*/
@property (nullable,nonatomic,copy,readonly) NSString *sender;
/**
* 时间
*/
@property (nonatomic,assign,readonly) NSTimeInterval timestamp;
/**
* 内容
*/
@property (nullable,nonatomic,copy,readonly) NSString *content;
@end
NS_ASSUME_NONNULL_END