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

47 lines
1010 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.

//
// NIMQChatGetServerRolesParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 查询服务器下身份组列表
*/
@interface NIMQChatGetServerRolesParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 每页个数
*/
@property (nonatomic, assign) NSInteger limit;
/**
* 优先级
*/
@property (nullable, nonatomic, strong) NSNumber *priority;
/**
* 以channelId的名义查询可选如果传了则只需要有该channel的管理权限即可否则需要有server的管理权限
*/
@property (nonatomic, assign) unsigned long long channelId;
/**
* 频道分组id,以categoryId的名义查询可选如果传了则只需要有该channel category的管理角色权限即可否则需要有server的管理权限
*/
@property (nonatomic, assign) unsigned long long categoryId;
@end
NS_ASSUME_NONNULL_END