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

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

//
// NIMQChatGetMentionedMeMessagesParam.h
// NIMSDK
//
// Created by Netease.
// Copyright © 2022 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "NIMQChatDefs.h"
NS_ASSUME_NONNULL_BEGIN
/**
* 分页搜索圈组 @ 我的消息的参数
*/
@interface NIMQChatGetMentionedMeMessagesParam : NSObject
/**
* 服务器id
*/
@property (nonatomic, assign) unsigned long long serverId;
/**
* 频道id
*/
@property (nonatomic, assign) unsigned long long channelId;
/**
* 查询时间范围 currentTime~上次ackTime可选
*/
@property (nonatomic, assign) NSTimeInterval timetag;
/**
* 查询数量可选默认200
*/
@property (nonatomic, assign) NSInteger limit;
@end
NS_ASSUME_NONNULL_END