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
13NS_ASSUME_NONNULL_BEGIN
14
15/**
16 * 分页查询服务器内频道分组
17 */
19
20/**
21 * 服务器id
22 */
23@property (nonatomic, assign) unsigned long long serverId;
24
25/**
26 * timetag
27 */
28@property (nonatomic, assign) NSTimeInterval timeTag;
29
30/**
31 * 每页个数
32 */
33@property (nonatomic, strong) NSNumber *limit;
34
35@end
36
37NS_ASSUME_NONNULL_END
38
Definition: NIMQChatGetCategoriesInServerByPageParam.h:19
NSNumber * limit
Definition: NIMQChatGetCategoriesInServerByPageParam.h:33
NSTimeInterval timeTag
Definition: NIMQChatGetCategoriesInServerByPageParam.h:28
unsigned long long serverId
Definition: NIMQChatGetCategoriesInServerByPageParam.h:23