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

48 lines
790 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.

//
// NIMCollectQueryParams.h
// NIMLib
//
// Created by 丁文超 on 2020/3/27.
// Copyright © 2020 Netease. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface NIMCollectQueryOptions : NSObject
/**
* 最小时间(s)
*/
@property (nonatomic, assign) NSTimeInterval fromTime;
/**
* 最大时间传0表示当前时间(s)
*/
@property (nonatomic, assign) NSTimeInterval toTime;
/**
* 上一页最后一条ID第一条传0
*/
@property (nonatomic, assign) NSInteger excludeId;
/**
* 查询条数默认100
*/
@property (nonatomic, assign) NSInteger limit;
/**
* 是否倒序
*/
@property (nonatomic, assign) BOOL reverse;
/**
* 收藏类型
*/
@property (nonatomic, assign) NSInteger type;
@end
NS_ASSUME_NONNULL_END