NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetServerRolesByAccIdParam.h
浏览该文件的文档.
1//
2// NIMQChatGetServerRolesByAccidParam.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 * 通过accid查询自定义身份组列表
15 */
17
18/**
19 * 服务器id
20 */
21@property (nonatomic, assign) unsigned long long serverId;
22
23/**
24 * accid
25 */
26@property (nonatomic, copy) NSString *accid;
27
28/**
29 * timetag
30 */
31@property (nonatomic, assign) NSTimeInterval timeTag;
32
33/**
34 * 每页个数
35 */
36@property (nonatomic, assign) NSInteger limit;
37@end
38
39
40NS_ASSUME_NONNULL_END
Definition: NIMQChatGetServerRolesByAccIdParam.h:17
unsigned long long serverId
Definition: NIMQChatGetServerRolesByAccIdParam.h:21
NSTimeInterval timeTag
Definition: NIMQChatGetServerRolesByAccIdParam.h:31
NSInteger limit
Definition: NIMQChatGetServerRolesByAccIdParam.h:36
NSString * accid
Definition: NIMQChatGetServerRolesByAccIdParam.h:26