Captainup  2.4
/Users/yogs/Desktop/CaptainUp/Headers/CPTQuery.h
1 //
2 // Query.h
3 // captainup_sdk
4 //
5 // Created by David Azriel on 10/12/2015.
6 // Copyright © 2015 Captain Up. All rights reserved.
7 //
8 
9 #ifndef Query_h
10 #define Query_h
11 
15 @protocol CPTQuery
16 
20 @property (nonatomic, readonly) NSUInteger skip;
21 
25 @property (nonatomic, readonly) NSUInteger limit;
26 
30 @property (nonatomic, readonly) BOOL extended;
31 
32 @end
33 
34 #endif /* Query_h */
BOOL extended
Definition: CPTQuery.h:30
NSUInteger skip
Definition: CPTQuery.h:20
NSUInteger limit
Definition: CPTQuery.h:25
Definition: CPTQuery.h:15