NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatGetCommentatorsResult.h
浏览该文件的文档.
1//
2// Created by 陈吉力 on 2024/1/25.
3// Copyright (c) 2024 Netease. All rights reserved.
4//
5
6#import <Foundation/Foundation.h>
8
9@interface NIMQChatGetCommentatorsResult: NSObject
10/// 评论者列表
11@property (nonatomic, strong, readonly) NSArray<NIMQChatCommentator *> *commentators;
12/// 是否还有下一页
13@property (nonatomic, assign, readonly) BOOL hasMore;
14/// 分页标识,用于下一页请求
15@property (nonatomic, copy, readonly) NSString *pageToken;
16/// 评论者总数
17@property (nonatomic, assign, readonly) NSUInteger total;
18@end
Definition: NIMQChatGetCommentatorsResult.h:10
NSString * pageToken
分页标识,用于下一页请求
Definition: NIMQChatGetCommentatorsResult.h:15
BOOL hasMore
是否还有下一页
Definition: NIMQChatGetCommentatorsResult.h:13
NSArray< NIMQChatCommentator * > * commentators
评论者列表
Definition: NIMQChatGetCommentatorsResult.h:11
NSUInteger total
评论者总数
Definition: NIMQChatGetCommentatorsResult.h:17