NIMSDK-iOS
载入中...
搜索中...
未找到
NIMTeamMessageReceipt.h
浏览该文件的文档.
1//
2// NIMTeamMessageReceipt.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2018年 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 群已读回执信息
15 * @discussion 只有当当前消息为 Team 消息且 teamReceiptEnabled 为 YES 时才有效,需要对端调用过发送已读回执的接口
16 */
17@interface NIMTeamMessageReceipt : NSObject
18
19/**
20 * 已读人数
21 * @discussion 只有当当前消息为 Team 消息且 teamReceiptEnabled 为 YES 时这个字段才有效,需要对端调用过发送已读回执的接口
22 */
23@property (nonatomic,assign,readonly) NSInteger readCount;
24
25/**
26 * 未读人数
27 * @discussion 只有当当前消息为 Team 消息且 teamReceiptEnabled 为 YES 时这个字段才有效,需要对端调用过发送已读回执的接口
28 */
29@property (nonatomic,assign,readonly) NSInteger unreadCount;
30
31/**
32 * 账号
33 * @discussion 新读过这条消息的用户的账号
34 */
35@property (nonatomic,copy,readonly) NSString *readerAccount;
36
37@end
38
39NS_ASSUME_NONNULL_END
Definition: NIMTeamMessageReceipt.h:18
NSInteger readCount
Definition: NIMTeamMessageReceipt.h:23
NSInteger unreadCount
Definition: NIMTeamMessageReceipt.h:29
NSString * readerAccount
Definition: NIMTeamMessageReceipt.h:35