NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetInviteApplyHistoryByServerResult.h
浏览该文件的文档.
1//
2// NIMQChatSendSystemNotificationResult.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
12
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 查询服务器下的申请邀请记录的回调类型
18 */
19@interface NIMQChatGetInviteApplyHistoryByServerResult : NSObject <NSCopying>
20/**
21 * 记录数组
22 */
23@property (nullable, nonatomic, copy) NSArray<NIMQChatInviteApplyHistoryRecord *> *records;
24@end
25
26
27NS_ASSUME_NONNULL_END
Definition: NIMQChatGetInviteApplyHistoryByServerResult.h:19
NSArray< NIMQChatInviteApplyHistoryRecord * > * records
Definition: NIMQChatGetInviteApplyHistoryByServerResult.h:23
Definition: NIMQChatInviteApplyHistoryRecord.h:73