NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatSubscribeChannelAsVisitorParam.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
13
14NS_ASSUME_NONNULL_BEGIN
15
16/**
17 * 设置以游客身份订阅频道的参数
18 */
19@interface NIMQChatSubscribeChannelAsVisitorParam: NSObject <NSCopying>
20
21/**
22 * 操作类型
23 */
24@property(nonatomic, assign) NIMQChatSubscribeOperationType operateType;
25
26/**
27 * 圈组服务器ID列表
28 */
29@property (nonatomic, copy, nonnull) NSArray<NIMQChatChannelIdInfo *> *channelIdInfos;
30@end
31
32
33NS_ASSUME_NONNULL_END
34
35
NIMQChatSubscribeOperationType
Definition: NIMQChatDefs.h:519
Definition: NIMQChatChannelIdInfo.h:15
Definition: NIMQChatSubscribeChannelAsVisitorParam.h:19
NIMQChatSubscribeOperationType operateType
Definition: NIMQChatSubscribeChannelAsVisitorParam.h:24
NSArray< NIMQChatChannelIdInfo * > * channelIdInfos
Definition: NIMQChatSubscribeChannelAsVisitorParam.h:29