uniapp-app/nativeplugins/netease-Callkit/ios/NIMSDK.framework/Headers/NIMQChatSearchServerMemberByPageParam.h
2025-10-09 16:48:46 +08:00

30 lines
642 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.

//
// Created by chenjili on 2022/4/28.
// Copyright (c) 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 检索服务器成员信息的参数
*/
@interface NIMQChatSearchServerMemberByPageParam : NSObject <NSCopying>
/**
* 检索关键字目标检索昵称、账号最大100个字符
*/
@property (nonnull, nonatomic, copy)NSString *keyword;
/**
* 服务器ID
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 检索返回的最大记录数最大和默认都是100
*/
@property (nullable, nonatomic, copy) NSNumber *limit;
@end
NS_ASSUME_NONNULL_END