-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGTLRObservedtimesQuery.h
More file actions
163 lines (133 loc) · 4.2 KB
/
GTLRObservedtimesQuery.h
File metadata and controls
163 lines (133 loc) · 4.2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// NOTE: This file was generated by the ServiceGenerator.
// ----------------------------------------------------------------------------
// API:
// observedtimes/v1
// Description:
// ObservedTimes API v1. This API allows the GET method to get a collection of
// observed times since the last time the user asked for a list and a POST
// method
// to record new times
#if GTLR_BUILT_AS_FRAMEWORK
#import "GTLR/GTLRQuery.h"
#else
#import "GTLRQuery.h"
#endif
#if GTLR_RUNTIME_VERSION != 3000
#error This file was generated by a different version of ServiceGenerator which is incompatible with this GTLR library source.
#endif
@class GTLRObservedtimes_RowTimePackageClockSyncRequest;
@class GTLRObservedtimes_RowTimePackageObservedTime;
// Generated comments include content from the discovery document; avoid them
// causing warnings since clang's checks are some what arbitrary.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdocumentation"
NS_ASSUME_NONNULL_BEGIN
/**
* Parent class for other Observedtimes query classes.
*/
@interface GTLRObservedtimesQuery : GTLRQuery
/** Selector specifying which fields to include in a partial response. */
@property(nonatomic, copy, nullable) NSString *fields;
@end
/**
* GTLRObservedtimesQuery_ClockClockcheck
*
* Method: observedtimes.clock.clockcheck
*
* Authorization scope(s):
* @c kGTLRAuthScopeObservedtimesUserinfoEmail
*/
@interface GTLRObservedtimesQuery_ClockClockcheck : GTLRObservedtimesQuery
// Previous library name was
// +[GTLQueryObservedtimes queryForClockClockcheckWithObject:]
/**
* Fetches a @c GTLRObservedtimes_RowTimePackageClockSyncReply.
*
* @param object The @c GTLRObservedtimes_RowTimePackageClockSyncRequest to
* include in the query.
*
* @return GTLRObservedtimesQuery_ClockClockcheck
*/
+ (instancetype)queryWithObject:(GTLRObservedtimes_RowTimePackageClockSyncRequest *)object;
@end
/**
* GTLRObservedtimesQuery_CrewList
*
* Method: observedtimes.crew.list
*
* Authorization scope(s):
* @c kGTLRAuthScopeObservedtimesUserinfoEmail
*/
@interface GTLRObservedtimesQuery_CrewList : GTLRObservedtimesQuery
// Previous library name was
// +[GTLQueryObservedtimes queryForCrewList]
@property(nonatomic, copy, nullable) NSString *eventId;
/**
* Fetches a @c GTLRObservedtimes_RowTimePackageCrewList.
*
* @return GTLRObservedtimesQuery_CrewList
*/
+ (instancetype)query;
@end
/**
* GTLRObservedtimesQuery_EventList
*
* Method: observedtimes.event.list
*
* Authorization scope(s):
* @c kGTLRAuthScopeObservedtimesUserinfoEmail
*/
@interface GTLRObservedtimesQuery_EventList : GTLRObservedtimesQuery
// Previous library name was
// +[GTLQueryObservedtimes queryForEventList]
@property(nonatomic, copy, nullable) NSString *searchString;
/**
* Fetches a @c GTLRObservedtimes_RowTimePackageEventList.
*
* @return GTLRObservedtimesQuery_EventList
*/
+ (instancetype)query;
@end
/**
* GTLRObservedtimesQuery_TimesListtimes
*
* Method: observedtimes.times.listtimes
*
* Authorization scope(s):
* @c kGTLRAuthScopeObservedtimesUserinfoEmail
*/
@interface GTLRObservedtimesQuery_TimesListtimes : GTLRObservedtimesQuery
// Previous library name was
// +[GTLQueryObservedtimes queryForTimesListtimes]
@property(nonatomic, copy, nullable) NSString *eventId;
@property(nonatomic, copy, nullable) NSString *lastTimestamp;
/**
* Fetches a @c GTLRObservedtimes_RowTimePackageObservedTimeList.
*
* @return GTLRObservedtimesQuery_TimesListtimes
*/
+ (instancetype)query;
@end
/**
* GTLRObservedtimesQuery_TimesTimecreate
*
* Method: observedtimes.times.timecreate
*
* Authorization scope(s):
* @c kGTLRAuthScopeObservedtimesUserinfoEmail
*/
@interface GTLRObservedtimesQuery_TimesTimecreate : GTLRObservedtimesQuery
// Previous library name was
// +[GTLQueryObservedtimes queryForTimesTimecreateWithObject:]
/**
* Fetches a @c GTLRObservedtimes_RowTimePackageObservedTime.
*
* @param object The @c GTLRObservedtimes_RowTimePackageObservedTime to include
* in the query.
*
* @return GTLRObservedtimesQuery_TimesTimecreate
*/
+ (instancetype)queryWithObject:(GTLRObservedtimes_RowTimePackageObservedTime *)object;
@end
NS_ASSUME_NONNULL_END
#pragma clang diagnostic pop