NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetCategoriesInServerByPageParam.h
浏览该文件的文档.
1
2
3//
4// NIMQChatGetCategoriesInServerByPageParam.h
5// NIMSDK
6//
7// Created by Evang on 2022/4/26.
8// Copyright © 2022 Netease. All rights reserved.
9//
10
11#import <Foundation/Foundation.h>
12#import "NIMQChatDefs.h"
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 分页查询服务器内频道分组
18 */
20
21/**
22 * 服务器id
23 */
24@property (nonatomic, assign) unsigned long long serverId;
25
26/**
27 * timetag
28 */
29@property (nonatomic, assign) NSTimeInterval timeTag;
30
31/**
32 * 每页个数
33 */
34@property (nonatomic, strong) NSNumber *limit;
35
36/**
37 * 返回值的排序类型
38 */
39@property(nonatomic, assign) NIMQChatSearchChannelSortType sortType;
40
41/**
42 * 查询游标,查询的起始位置,上一次查询会返回cursor字段
43 */
44@property(nullable, nonatomic, copy) NSString *cursor;
45@end
46
47NS_ASSUME_NONNULL_END
48
NIMQChatSearchChannelSortType
Definition: NIMQChatDefs.h:478
Definition: NIMQChatGetCategoriesInServerByPageParam.h:20
NSNumber * limit
Definition: NIMQChatGetCategoriesInServerByPageParam.h:34
NSTimeInterval timeTag
Definition: NIMQChatGetCategoriesInServerByPageParam.h:29
unsigned long long serverId
Definition: NIMQChatGetCategoriesInServerByPageParam.h:24
NIMQChatSearchChannelSortType sortType
Definition: NIMQChatGetCategoriesInServerByPageParam.h:39
NSString * cursor
Definition: NIMQChatGetCategoriesInServerByPageParam.h:44