NIMSDK-iOS
载入中...
搜索中...
未找到
NIMSyncMessagePinResponse.h
浏览该文件的文档.
1//
2// NIMSyncMessagePinResponse.h
3// NIMLib
4//
5// Created by 丁文超 on 2020/4/9.
6// Copyright © 2020 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "NIMMessagePinItem.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
14@interface NIMSyncMessagePinResponse : NSObject
15
16/**
17 * 同步时间戳
18 */
19@property (nonatomic, assign) NSTimeInterval timestamp;
20
21/**
22 * 是否有更新内容
23 */
24@property (nonatomic, assign) BOOL hasChange;
25
26/**
27 * 更新的内容
28 */
29@property (nonatomic, copy) NSArray<NIMMessagePinItem *> *items;
30
31@end
32
33NS_ASSUME_NONNULL_END
Definition: NIMSyncMessagePinResponse.h:15
NSTimeInterval timestamp
Definition: NIMSyncMessagePinResponse.h:19
BOOL hasChange
Definition: NIMSyncMessagePinResponse.h:24
NSArray< NIMMessagePinItem * > * items
Definition: NIMSyncMessagePinResponse.h:29