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

38 lines
643 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.

//
// NIMQChatGetServerMembersByPageParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* 分页查询服务器成员信息的参数
*/
@interface NIMQChatGetServerMembersByPageParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 时间戳
* 拉取不晚于时间戳之前的服务器成员传0表示拉最新的成员
*/
@property (nonatomic, assign) NSTimeInterval timeTag;
/**
*
*/
@property (nonatomic, assign) NSInteger limit;
@end
NS_ASSUME_NONNULL_END