HyphenateChatSDK 3.9.9.1
EMCursorResult.h
1
15#import <Foundation/Foundation.h>
16
27@interface EMCursorResult<__covariant ObjectType> : NSObject
28
29@property (nonatomic, assign) NSUInteger count;
30
38@property (nonatomic, strong) NSArray<ObjectType> * _Nullable list;
39
47@property (nonatomic, copy) NSString * _Nullable cursor;
48
66+ (instancetype _Nonnull)cursorResultWithList:(NSArray<ObjectType> * _Nullable)aList
67 andCursor:(NSString * _Nullable)aCusror;
68
80- (void)append:(nonnull EMCursorResult<ObjectType> *)result;
81
82@end
Definition: EMCursorResult.h:27
NSArray< ObjectType > *_Nullable list
Definition: EMCursorResult.h:38
NSString *_Nullable cursor
Definition: EMCursorResult.h:47