-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSyncStack.h
More file actions
45 lines (37 loc) · 1.01 KB
/
SyncStack.h
File metadata and controls
45 lines (37 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//
// SyncStack.h
// ThirdPartyExtension
//
// Created by Uttam Ukkoji on 02/07/18.
// Copyright © 2018 Contentstack.com. All rights reserved.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface SyncStack : NSObject
/**
* Readonly property contains all the Contents
*/
@property (nonatomic, copy, readonly) NSArray<NSDictionary<NSString *, id> *> * _Nullable items;
/**
* Readonly property for paginating sync
*/
@property (nonatomic, copy, readonly) NSString * _Nullable paginationToken;
/**
*Readonly property to delta sync.
*/
@property (nonatomic, copy, readonly) NSString * _Nullable syncToken;
/**
* Readonly property to check skip count
*/
@property (nonatomic, assign, readonly) unsigned int skip;
/**
* Readonly property to check limit
*/
@property (nonatomic, assign, readonly) unsigned int limit;
/**
* Readonly property to check totalCount
*/
@property (nonatomic, assign, readonly) unsigned int totalCount;
- (instancetype)init UNAVAILABLE_ATTRIBUTE;
@end
NS_ASSUME_NONNULL_END