NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatCheckPermissionsResult.h
浏览该文件的文档.
1
2
3//
4// NIMQChatCheckPermissionsResult.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 NIMQChatCheckPermissionsResult : NSObject
19
20/**
21 * 权限字典
22 * key 为 @[NIMQChatPermissionType], value 为 @[NIMQChatPermissionStatus]
23 */
24@property (nonatomic, copy) NSDictionary <NSNumber *, NSNumber *> *permissions;
25
26
27@end
28
29
30NS_ASSUME_NONNULL_END
31
32
Definition: NIMQChatCheckPermissionsResult.h:19
NSDictionary< NSNumber *, NSNumber * > * permissions
Definition: NIMQChatCheckPermissionsResult.h:24