IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for iOS Platforms
AIRBRoomEngineRoomListResponse.h
1//
2// AIRBRoomEngineRoomListResponse.h
3// AliInteractiveRoomBundle
4//
5// Created by 刘再勇 on 2021/6/22.
6// Copyright © 2021 AliYun. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import <AliInteractiveRoomBundle/AIRBRoomBasicInfo.h>
11
12NS_ASSUME_NONNULL_BEGIN
13
15
16@interface AIRBRoomEngineRoomListResponse : NSObject
20@property (nonatomic, nonnull) NSArray<AIRBRoomBasicInfo *> * roomBasicInfoList;
21
25@property (nonatomic) int32_t total;
26
30@property (nonatomic) BOOL hasMore;
31@end
32
33NS_ASSUME_NONNULL_END
Definition: AIRBRoomBasicInfo.h:45
Definition: AIRBRoomEngineRoomListResponse.h:17
int32_t total
Definition: AIRBRoomEngineRoomListResponse.h:25
NSArray< AIRBRoomBasicInfo * > * roomBasicInfoList
Definition: AIRBRoomEngineRoomListResponse.h:20
BOOL hasMore
Definition: AIRBRoomEngineRoomListResponse.h:30