AgoraChatSDK 1.2.0
AgoraChatCursorResult.h
1
9#import <Foundation/Foundation.h>
10
16@interface AgoraChatCursorResult<__covariant ObjectType> : NSObject
17
22@property (nonatomic, strong) NSArray<ObjectType> * _Nullable list;
23
28@property (nonatomic, copy) NSString * _Nullable cursor;
29
39+ (instancetype _Nonnull)cursorResultWithList:(NSArray<ObjectType> * _Nullable)aList
40 andCursor:(NSString * _Nullable)aCusror;
41
42@end
Definition: AgoraChatCursorResult.h:16
NSString *_Nullable cursor
Definition: AgoraChatCursorResult.h:28