NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateServerRolePrioritiesParam.h
浏览该文件的文档.
1
2//
3// NIMQChatupdateServerRolePrioritiesParam.h
4// NIMSDK
5//
6// Created by Evang on 2022/2/15.
7// Copyright © 2022 Netease. All rights reserved.
8//
9
10#import <Foundation/Foundation.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
14
16/**
17 * 批量更新服务器身份组优先级入参
18 */
20
21@property (nonatomic, assign) unsigned long long serverId;
22/**
23 * 要更新的身份组优先级数组
24 */
25@property (nonatomic, copy) NSArray <NIMQChatUpdateServerRolePriorityItem *> *updateItems;
26
27@end
28
29
31
32/**
33 * 服务器id
34 */
35@property (nonatomic, assign) unsigned long long serverId;
36/**
37 * 身份组id
38 */
39@property (nonatomic, assign) unsigned long long roleId;
40/**
41 * 优先级
42 */
43@property (nonatomic, strong) NSNumber *priority;
44
45@end
46
47NS_ASSUME_NONNULL_END
48
Definition: NIMQChatUpdateServerRolePrioritiesParam.h:31
Definition: NIMQChatUpdateServerRolePrioritiesParam.h:20
NSArray< NIMQChatUpdateServerRolePriorityItem * > * updateItems
Definition: NIMQChatUpdateServerRolePrioritiesParam.h:25
unsigned long long serverId
Definition: NIMQChatUpdateServerRolePrioritiesParam.h:21