NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatMarkSystemNotificationsReadParam.h
浏览该文件的文档.
1//
2// NIMQChatMarkSystemNotificationsReadParam.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
12
13/**
14 * 标记系统通知已读的参数中一项的类型
15 */
16@interface NIMQChatMarkSystemNotificationsReadItem : NSObject <NSCopying>
17
18@property(nonatomic, assign) unsigned long long messageServerId;
19
20@property(nonatomic, assign) NIMQChatSystemNotificationType type;
21
22@end
23
24/**
25 * 标记系统通知已读的参数
26 */
27@interface NIMQChatMarkSystemNotificationsReadParam : NSObject <NSCopying>
28
29@property(nonnull, nonatomic, copy) NSArray<NIMQChatMarkSystemNotificationsReadItem *> *items;
30
31@end
NIMQChatSystemNotificationType
Definition: NIMQChatDefs.h:68
Definition: NIMQChatMarkSystemNotificationsReadParam.h:16
NIMQChatSystemNotificationType type
Definition: NIMQChatMarkSystemNotificationsReadParam.h:20
unsigned long long messageServerId
Definition: NIMQChatMarkSystemNotificationsReadParam.h:18
Definition: NIMQChatMarkSystemNotificationsReadParam.h:27