2025-10-09 16:48:46 +08:00

36 lines
660 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// NIMQChatCheckPermissionParam.h
// NIMLib
//
// Created by Evang on 2022/3/24.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMQChatDefs.h"
NS_ASSUME_NONNULL_BEGIN
/**
* 查询是否有某个权限的入参
*/
@interface NIMQChatCheckPermissionParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 频道id, 可选如果不传则只查server权限
*/
@property (nonatomic, assign) unsigned long long channelId;
/**
* 权限类型
*/
@property (nonatomic, assign) NIMQChatPermissionType permissionType;
@end
NS_ASSUME_NONNULL_END