NIMSDK-iOS
载入中...
搜索中...
未找到
NIMSessionDeleteAllRemoteMessagesInfo.h
浏览该文件的文档.
1//
2// NIMSessionDeleteAllRemoteMessagesInfo.h
3// NIMLib
4//
5// Created by Wenchao Ding on 2020/9/1.
6// Copyright © 2020 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11@class NIMSession;
12
13NS_ASSUME_NONNULL_BEGIN
14
16
17/**
18 * 会话
19 */
20@property (nonatomic, copy) NIMSession *session;
21
22/**
23 * 消息发送方accid
24 */
25@property (nonatomic, copy) NSString *fromAccid;
26
27/**
28 * 删除时间(ms)
29 */
30@property (nonatomic, assign) uint64_t time;
31
32/**
33 * 扩展字段
34 */
35@property (nonatomic, copy) NSString *ext;
36
37@end
38
39NS_ASSUME_NONNULL_END
Definition: NIMSessionDeleteAllRemoteMessagesInfo.h:16
NIMSession * session
Definition: NIMSessionDeleteAllRemoteMessagesInfo.h:20
uint64_t time
Definition: NIMSessionDeleteAllRemoteMessagesInfo.h:30
NSString * ext
Definition: NIMSessionDeleteAllRemoteMessagesInfo.h:35
NSString * fromAccid
Definition: NIMSessionDeleteAllRemoteMessagesInfo.h:25
Definition: NIMSession.h:49