AgoraChatSDK 1.2.0
AgoraChatPageResult.h
1
9#import <Foundation/Foundation.h>
10
15@interface AgoraChatPageResult<__covariant ObjectType> : NSObject
16
21@property (nonatomic, strong) NSArray<ObjectType> *_Nullable list;
22
27@property (nonatomic) NSInteger count;
28
38+ (instancetype _Nonnull)pageResultWithList:(NSArray<ObjectType> * _Nullable)aList
39 andCount:(NSInteger)aCount;
40
41@end
Definition: AgoraChatPageResult.h:15
NSInteger count
Definition: AgoraChatPageResult.h:27