NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetUncategorizedChannelsByPageParam.h
浏览该文件的文档.
1//
2// NIMQChatGetUncategorizedChannelsByPageParam.h
3// NIMQChat
4//
5// Created by 陈吉力 on 2024/6/21.
6// Copyright © 2024 Netease. All rights reserved.
7//
8#import <Foundation/Foundation.h>
9
10NS_ASSUME_NONNULL_BEGIN
11
13
14/**
15 * 服务器id
16 */
17@property (nonatomic, assign) unsigned long long serverId;
18/**
19 * 分页标记
20 * 第一页不传
21 * 翻下一页传接口返回的cursor
22 */
23@property (nonatomic, copy) NSString *cursor;
24/**
25 * 查询数量限制
26 */
27@property (nonatomic, assign) NSInteger limit;
28
29@end
30
31NS_ASSUME_NONNULL_END
Definition: NIMQChatGetUncategorizedChannelsByPageParam.h:13
NSInteger limit
Definition: NIMQChatGetUncategorizedChannelsByPageParam.h:27
NSString * cursor
Definition: NIMQChatGetUncategorizedChannelsByPageParam.h:23
unsigned long long serverId
Definition: NIMQChatGetUncategorizedChannelsByPageParam.h:17