NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatMarkServerReadResult.h
浏览该文件的文档.
1
2
3//
4// NIMQChatMarkServerReadResult.h
5// NIMSDK
6//
7// Created by Netease.
8// Copyright © 2022 Netease. All rights reserved.
9//
10
11#import <Foundation/Foundation.h>
12
13NS_ASSUME_NONNULL_BEGIN
14
15/**
16 * 设置服务器下消息已读的结果
17 */
18@interface NIMQChatMarkServerReadResult : NSObject
19
20/**
21 * 设置成功的服务器ID 数组,元素为 服务器ID 的 NSNumber 包装
22 */
23@property (nonatomic, copy) NSArray <NSNumber *> *successServerIds;
24
25/**
26 * 设置失败的服务器ID 数组,元素为 服务器ID 的 NSNumber 包装
27 */
28@property (nonatomic, copy) NSArray <NSNumber *> *failServerIds;
29
30/**
31 * 清空未读的服务器时间戳,这个时间戳之前的频道消息都认为是已读
32 */
33@property (nonatomic, assign) NSTimeInterval ackTimestamp;
34
35
36@end
37
38
39NS_ASSUME_NONNULL_END
40
41
Definition: NIMQChatMarkServerReadResult.h:19
NSTimeInterval ackTimestamp
Definition: NIMQChatMarkServerReadResult.h:33
NSArray< NSNumber * > * successServerIds
Definition: NIMQChatMarkServerReadResult.h:23
NSArray< NSNumber * > * failServerIds
Definition: NIMQChatMarkServerReadResult.h:28