FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
contentstack-ios/Contentstack/SyncStack.h at master · contentstack/contentstack-ios · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
contentstack
/
contentstack-ios
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
3
Code
Issues
0
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
contentstack-ios
/
Contentstack
/
SyncStack.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
45 lines (37 loc) · 1.01 KB
Breadcrumbs
contentstack-ios
/
Contentstack
/
SyncStack.h
Copy path
File metadata and controls
45 lines (37 loc) · 1.01 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
Back
|
FazBrowse Home
|
New Git URL