NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetChannelCategoryRolesParam.h
浏览该文件的文档.
1//
2// NIMQChatGetChannelCategoryRolesParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 查询某频道分组下的身份组信息列表
15 */
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * 分组id
25 */
26@property (nonatomic, assign) unsigned long long categoryId;
27
28/**
29 * timetag
30 */
31@property (nonatomic, assign) NSTimeInterval timeTag;
32
33/**
34 * 每页个数
35 */
36@property (nonatomic, strong) NSNumber *limit;
37
38@end
39
40
41NS_ASSUME_NONNULL_END
Definition: NIMQChatGetChannelCategoryRolesParam.h:17
NSTimeInterval timeTag
Definition: NIMQChatGetChannelCategoryRolesParam.h:31
NSNumber * limit
Definition: NIMQChatGetChannelCategoryRolesParam.h:36
unsigned long long categoryId
Definition: NIMQChatGetChannelCategoryRolesParam.h:26
unsigned long long serverId
Definition: NIMQChatGetChannelCategoryRolesParam.h:21