NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatSubscribeServerAsVisitorParam.h
浏览该文件的文档.
1//
2// NIMQChatMarkServerReadParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "NIMQChatDefs.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
14/**
15 * 设置以游客身份订阅服务器的参数
16 */
17@interface NIMQChatSubscribeServerAsVisitorParam : NSObject <NSCopying>
18
19/**
20 * 操作类型
21 */
22@property(nonatomic, assign) NIMQChatSubscribeOperationType operateType;
23
24/**
25 * 圈组服务器ID列表
26 */
27@property(nonatomic, copy, nonnull) NSArray<NSNumber *> *serverIds;
28
29@end
30
31
32NS_ASSUME_NONNULL_END
33
34
NIMQChatSubscribeOperationType
Definition: NIMQChatDefs.h:519
Definition: NIMQChatSubscribeServerAsVisitorParam.h:17
NSArray< NSNumber * > * serverIds
Definition: NIMQChatSubscribeServerAsVisitorParam.h:27
NIMQChatSubscribeOperationType operateType
Definition: NIMQChatSubscribeServerAsVisitorParam.h:22