Test Failed
Push — master ( 5e22d4...26349a )
by Stiofan
01:19 queued 10s
created
geodirectory-admin/google-api-php-client/src/Google/Service/Plus.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -480,7 +480,7 @@
 block discarded – undo
480 480
    * @param string $userId The ID of the user to record actions for. The only
481 481
    * valid values are "me" and the ID of the authenticated user.
482 482
    * @param string $collection The collection to which to write moments.
483
-   * @param Google_Moment $postBody
483
+   * @param Google_Service_Plus_Moment $postBody
484 484
    * @param array $optParams Optional parameters.
485 485
    *
486 486
    * @opt_param bool debug Return the moment as written. Should be used only for
Please login to merge, or discard this patch.
Indentation   +860 added lines, -860 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Know your basic profile info and list of people in your circles.. */
34 34
   const PLUS_LOGIN =
35
-      "https://www.googleapis.com/auth/plus.login";
35
+	  "https://www.googleapis.com/auth/plus.login";
36 36
   /** Know who you are on Google. */
37 37
   const PLUS_ME =
38
-      "https://www.googleapis.com/auth/plus.me";
38
+	  "https://www.googleapis.com/auth/plus.me";
39 39
   /** View your email address. */
40 40
   const USERINFO_EMAIL =
41
-      "https://www.googleapis.com/auth/userinfo.email";
41
+	  "https://www.googleapis.com/auth/userinfo.email";
42 42
   /** View your basic profile info. */
43 43
   const USERINFO_PROFILE =
44
-      "https://www.googleapis.com/auth/userinfo.profile";
44
+	  "https://www.googleapis.com/auth/userinfo.profile";
45 45
 
46 46
   public $activities;
47 47
   public $comments;
@@ -56,285 +56,285 @@  discard block
 block discarded – undo
56 56
    */
57 57
   public function __construct(Google_Client $client)
58 58
   {
59
-    parent::__construct($client);
60
-    $this->rootUrl = 'https://www.googleapis.com/';
61
-    $this->servicePath = 'plus/v1/';
62
-    $this->version = 'v1';
63
-    $this->serviceName = 'plus';
64
-
65
-    $this->activities = new Google_Service_Plus_Activities_Resource(
66
-        $this,
67
-        $this->serviceName,
68
-        'activities',
69
-        array(
70
-          'methods' => array(
71
-            'get' => array(
72
-              'path' => 'activities/{activityId}',
73
-              'httpMethod' => 'GET',
74
-              'parameters' => array(
75
-                'activityId' => array(
76
-                  'location' => 'path',
77
-                  'type' => 'string',
78
-                  'required' => true,
79
-                ),
80
-              ),
81
-            ),'list' => array(
82
-              'path' => 'people/{userId}/activities/{collection}',
83
-              'httpMethod' => 'GET',
84
-              'parameters' => array(
85
-                'userId' => array(
86
-                  'location' => 'path',
87
-                  'type' => 'string',
88
-                  'required' => true,
89
-                ),
90
-                'collection' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-                'pageToken' => array(
96
-                  'location' => 'query',
97
-                  'type' => 'string',
98
-                ),
99
-                'maxResults' => array(
100
-                  'location' => 'query',
101
-                  'type' => 'integer',
102
-                ),
103
-              ),
104
-            ),'search' => array(
105
-              'path' => 'activities',
106
-              'httpMethod' => 'GET',
107
-              'parameters' => array(
108
-                'query' => array(
109
-                  'location' => 'query',
110
-                  'type' => 'string',
111
-                  'required' => true,
112
-                ),
113
-                'orderBy' => array(
114
-                  'location' => 'query',
115
-                  'type' => 'string',
116
-                ),
117
-                'pageToken' => array(
118
-                  'location' => 'query',
119
-                  'type' => 'string',
120
-                ),
121
-                'maxResults' => array(
122
-                  'location' => 'query',
123
-                  'type' => 'integer',
124
-                ),
125
-                'language' => array(
126
-                  'location' => 'query',
127
-                  'type' => 'string',
128
-                ),
129
-              ),
130
-            ),
131
-          )
132
-        )
133
-    );
134
-    $this->comments = new Google_Service_Plus_Comments_Resource(
135
-        $this,
136
-        $this->serviceName,
137
-        'comments',
138
-        array(
139
-          'methods' => array(
140
-            'get' => array(
141
-              'path' => 'comments/{commentId}',
142
-              'httpMethod' => 'GET',
143
-              'parameters' => array(
144
-                'commentId' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-              ),
150
-            ),'list' => array(
151
-              'path' => 'activities/{activityId}/comments',
152
-              'httpMethod' => 'GET',
153
-              'parameters' => array(
154
-                'activityId' => array(
155
-                  'location' => 'path',
156
-                  'type' => 'string',
157
-                  'required' => true,
158
-                ),
159
-                'pageToken' => array(
160
-                  'location' => 'query',
161
-                  'type' => 'string',
162
-                ),
163
-                'sortOrder' => array(
164
-                  'location' => 'query',
165
-                  'type' => 'string',
166
-                ),
167
-                'maxResults' => array(
168
-                  'location' => 'query',
169
-                  'type' => 'integer',
170
-                ),
171
-              ),
172
-            ),
173
-          )
174
-        )
175
-    );
176
-    $this->moments = new Google_Service_Plus_Moments_Resource(
177
-        $this,
178
-        $this->serviceName,
179
-        'moments',
180
-        array(
181
-          'methods' => array(
182
-            'insert' => array(
183
-              'path' => 'people/{userId}/moments/{collection}',
184
-              'httpMethod' => 'POST',
185
-              'parameters' => array(
186
-                'userId' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-                'collection' => array(
192
-                  'location' => 'path',
193
-                  'type' => 'string',
194
-                  'required' => true,
195
-                ),
196
-                'debug' => array(
197
-                  'location' => 'query',
198
-                  'type' => 'boolean',
199
-                ),
200
-              ),
201
-            ),'list' => array(
202
-              'path' => 'people/{userId}/moments/{collection}',
203
-              'httpMethod' => 'GET',
204
-              'parameters' => array(
205
-                'userId' => array(
206
-                  'location' => 'path',
207
-                  'type' => 'string',
208
-                  'required' => true,
209
-                ),
210
-                'collection' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'string',
213
-                  'required' => true,
214
-                ),
215
-                'maxResults' => array(
216
-                  'location' => 'query',
217
-                  'type' => 'integer',
218
-                ),
219
-                'pageToken' => array(
220
-                  'location' => 'query',
221
-                  'type' => 'string',
222
-                ),
223
-                'targetUrl' => array(
224
-                  'location' => 'query',
225
-                  'type' => 'string',
226
-                ),
227
-                'type' => array(
228
-                  'location' => 'query',
229
-                  'type' => 'string',
230
-                ),
231
-              ),
232
-            ),'remove' => array(
233
-              'path' => 'moments/{id}',
234
-              'httpMethod' => 'DELETE',
235
-              'parameters' => array(
236
-                'id' => array(
237
-                  'location' => 'path',
238
-                  'type' => 'string',
239
-                  'required' => true,
240
-                ),
241
-              ),
242
-            ),
243
-          )
244
-        )
245
-    );
246
-    $this->people = new Google_Service_Plus_People_Resource(
247
-        $this,
248
-        $this->serviceName,
249
-        'people',
250
-        array(
251
-          'methods' => array(
252
-            'get' => array(
253
-              'path' => 'people/{userId}',
254
-              'httpMethod' => 'GET',
255
-              'parameters' => array(
256
-                'userId' => array(
257
-                  'location' => 'path',
258
-                  'type' => 'string',
259
-                  'required' => true,
260
-                ),
261
-              ),
262
-            ),'list' => array(
263
-              'path' => 'people/{userId}/people/{collection}',
264
-              'httpMethod' => 'GET',
265
-              'parameters' => array(
266
-                'userId' => array(
267
-                  'location' => 'path',
268
-                  'type' => 'string',
269
-                  'required' => true,
270
-                ),
271
-                'collection' => array(
272
-                  'location' => 'path',
273
-                  'type' => 'string',
274
-                  'required' => true,
275
-                ),
276
-                'orderBy' => array(
277
-                  'location' => 'query',
278
-                  'type' => 'string',
279
-                ),
280
-                'pageToken' => array(
281
-                  'location' => 'query',
282
-                  'type' => 'string',
283
-                ),
284
-                'maxResults' => array(
285
-                  'location' => 'query',
286
-                  'type' => 'integer',
287
-                ),
288
-              ),
289
-            ),'listByActivity' => array(
290
-              'path' => 'activities/{activityId}/people/{collection}',
291
-              'httpMethod' => 'GET',
292
-              'parameters' => array(
293
-                'activityId' => array(
294
-                  'location' => 'path',
295
-                  'type' => 'string',
296
-                  'required' => true,
297
-                ),
298
-                'collection' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-                'pageToken' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'string',
306
-                ),
307
-                'maxResults' => array(
308
-                  'location' => 'query',
309
-                  'type' => 'integer',
310
-                ),
311
-              ),
312
-            ),'search' => array(
313
-              'path' => 'people',
314
-              'httpMethod' => 'GET',
315
-              'parameters' => array(
316
-                'query' => array(
317
-                  'location' => 'query',
318
-                  'type' => 'string',
319
-                  'required' => true,
320
-                ),
321
-                'pageToken' => array(
322
-                  'location' => 'query',
323
-                  'type' => 'string',
324
-                ),
325
-                'maxResults' => array(
326
-                  'location' => 'query',
327
-                  'type' => 'integer',
328
-                ),
329
-                'language' => array(
330
-                  'location' => 'query',
331
-                  'type' => 'string',
332
-                ),
333
-              ),
334
-            ),
335
-          )
336
-        )
337
-    );
59
+	parent::__construct($client);
60
+	$this->rootUrl = 'https://www.googleapis.com/';
61
+	$this->servicePath = 'plus/v1/';
62
+	$this->version = 'v1';
63
+	$this->serviceName = 'plus';
64
+
65
+	$this->activities = new Google_Service_Plus_Activities_Resource(
66
+		$this,
67
+		$this->serviceName,
68
+		'activities',
69
+		array(
70
+		  'methods' => array(
71
+			'get' => array(
72
+			  'path' => 'activities/{activityId}',
73
+			  'httpMethod' => 'GET',
74
+			  'parameters' => array(
75
+				'activityId' => array(
76
+				  'location' => 'path',
77
+				  'type' => 'string',
78
+				  'required' => true,
79
+				),
80
+			  ),
81
+			),'list' => array(
82
+			  'path' => 'people/{userId}/activities/{collection}',
83
+			  'httpMethod' => 'GET',
84
+			  'parameters' => array(
85
+				'userId' => array(
86
+				  'location' => 'path',
87
+				  'type' => 'string',
88
+				  'required' => true,
89
+				),
90
+				'collection' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+				'pageToken' => array(
96
+				  'location' => 'query',
97
+				  'type' => 'string',
98
+				),
99
+				'maxResults' => array(
100
+				  'location' => 'query',
101
+				  'type' => 'integer',
102
+				),
103
+			  ),
104
+			),'search' => array(
105
+			  'path' => 'activities',
106
+			  'httpMethod' => 'GET',
107
+			  'parameters' => array(
108
+				'query' => array(
109
+				  'location' => 'query',
110
+				  'type' => 'string',
111
+				  'required' => true,
112
+				),
113
+				'orderBy' => array(
114
+				  'location' => 'query',
115
+				  'type' => 'string',
116
+				),
117
+				'pageToken' => array(
118
+				  'location' => 'query',
119
+				  'type' => 'string',
120
+				),
121
+				'maxResults' => array(
122
+				  'location' => 'query',
123
+				  'type' => 'integer',
124
+				),
125
+				'language' => array(
126
+				  'location' => 'query',
127
+				  'type' => 'string',
128
+				),
129
+			  ),
130
+			),
131
+		  )
132
+		)
133
+	);
134
+	$this->comments = new Google_Service_Plus_Comments_Resource(
135
+		$this,
136
+		$this->serviceName,
137
+		'comments',
138
+		array(
139
+		  'methods' => array(
140
+			'get' => array(
141
+			  'path' => 'comments/{commentId}',
142
+			  'httpMethod' => 'GET',
143
+			  'parameters' => array(
144
+				'commentId' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+			  ),
150
+			),'list' => array(
151
+			  'path' => 'activities/{activityId}/comments',
152
+			  'httpMethod' => 'GET',
153
+			  'parameters' => array(
154
+				'activityId' => array(
155
+				  'location' => 'path',
156
+				  'type' => 'string',
157
+				  'required' => true,
158
+				),
159
+				'pageToken' => array(
160
+				  'location' => 'query',
161
+				  'type' => 'string',
162
+				),
163
+				'sortOrder' => array(
164
+				  'location' => 'query',
165
+				  'type' => 'string',
166
+				),
167
+				'maxResults' => array(
168
+				  'location' => 'query',
169
+				  'type' => 'integer',
170
+				),
171
+			  ),
172
+			),
173
+		  )
174
+		)
175
+	);
176
+	$this->moments = new Google_Service_Plus_Moments_Resource(
177
+		$this,
178
+		$this->serviceName,
179
+		'moments',
180
+		array(
181
+		  'methods' => array(
182
+			'insert' => array(
183
+			  'path' => 'people/{userId}/moments/{collection}',
184
+			  'httpMethod' => 'POST',
185
+			  'parameters' => array(
186
+				'userId' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+				'collection' => array(
192
+				  'location' => 'path',
193
+				  'type' => 'string',
194
+				  'required' => true,
195
+				),
196
+				'debug' => array(
197
+				  'location' => 'query',
198
+				  'type' => 'boolean',
199
+				),
200
+			  ),
201
+			),'list' => array(
202
+			  'path' => 'people/{userId}/moments/{collection}',
203
+			  'httpMethod' => 'GET',
204
+			  'parameters' => array(
205
+				'userId' => array(
206
+				  'location' => 'path',
207
+				  'type' => 'string',
208
+				  'required' => true,
209
+				),
210
+				'collection' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'string',
213
+				  'required' => true,
214
+				),
215
+				'maxResults' => array(
216
+				  'location' => 'query',
217
+				  'type' => 'integer',
218
+				),
219
+				'pageToken' => array(
220
+				  'location' => 'query',
221
+				  'type' => 'string',
222
+				),
223
+				'targetUrl' => array(
224
+				  'location' => 'query',
225
+				  'type' => 'string',
226
+				),
227
+				'type' => array(
228
+				  'location' => 'query',
229
+				  'type' => 'string',
230
+				),
231
+			  ),
232
+			),'remove' => array(
233
+			  'path' => 'moments/{id}',
234
+			  'httpMethod' => 'DELETE',
235
+			  'parameters' => array(
236
+				'id' => array(
237
+				  'location' => 'path',
238
+				  'type' => 'string',
239
+				  'required' => true,
240
+				),
241
+			  ),
242
+			),
243
+		  )
244
+		)
245
+	);
246
+	$this->people = new Google_Service_Plus_People_Resource(
247
+		$this,
248
+		$this->serviceName,
249
+		'people',
250
+		array(
251
+		  'methods' => array(
252
+			'get' => array(
253
+			  'path' => 'people/{userId}',
254
+			  'httpMethod' => 'GET',
255
+			  'parameters' => array(
256
+				'userId' => array(
257
+				  'location' => 'path',
258
+				  'type' => 'string',
259
+				  'required' => true,
260
+				),
261
+			  ),
262
+			),'list' => array(
263
+			  'path' => 'people/{userId}/people/{collection}',
264
+			  'httpMethod' => 'GET',
265
+			  'parameters' => array(
266
+				'userId' => array(
267
+				  'location' => 'path',
268
+				  'type' => 'string',
269
+				  'required' => true,
270
+				),
271
+				'collection' => array(
272
+				  'location' => 'path',
273
+				  'type' => 'string',
274
+				  'required' => true,
275
+				),
276
+				'orderBy' => array(
277
+				  'location' => 'query',
278
+				  'type' => 'string',
279
+				),
280
+				'pageToken' => array(
281
+				  'location' => 'query',
282
+				  'type' => 'string',
283
+				),
284
+				'maxResults' => array(
285
+				  'location' => 'query',
286
+				  'type' => 'integer',
287
+				),
288
+			  ),
289
+			),'listByActivity' => array(
290
+			  'path' => 'activities/{activityId}/people/{collection}',
291
+			  'httpMethod' => 'GET',
292
+			  'parameters' => array(
293
+				'activityId' => array(
294
+				  'location' => 'path',
295
+				  'type' => 'string',
296
+				  'required' => true,
297
+				),
298
+				'collection' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+				'pageToken' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'string',
306
+				),
307
+				'maxResults' => array(
308
+				  'location' => 'query',
309
+				  'type' => 'integer',
310
+				),
311
+			  ),
312
+			),'search' => array(
313
+			  'path' => 'people',
314
+			  'httpMethod' => 'GET',
315
+			  'parameters' => array(
316
+				'query' => array(
317
+				  'location' => 'query',
318
+				  'type' => 'string',
319
+				  'required' => true,
320
+				),
321
+				'pageToken' => array(
322
+				  'location' => 'query',
323
+				  'type' => 'string',
324
+				),
325
+				'maxResults' => array(
326
+				  'location' => 'query',
327
+				  'type' => 'integer',
328
+				),
329
+				'language' => array(
330
+				  'location' => 'query',
331
+				  'type' => 'string',
332
+				),
333
+			  ),
334
+			),
335
+		  )
336
+		)
337
+	);
338 338
   }
339 339
 }
340 340
 
@@ -359,9 +359,9 @@  discard block
 block discarded – undo
359 359
    */
360 360
   public function get($activityId, $optParams = array())
361 361
   {
362
-    $params = array('activityId' => $activityId);
363
-    $params = array_merge($params, $optParams);
364
-    return $this->call('get', array($params), "Google_Service_Plus_Activity");
362
+	$params = array('activityId' => $activityId);
363
+	$params = array_merge($params, $optParams);
364
+	return $this->call('get', array($params), "Google_Service_Plus_Activity");
365 365
   }
366 366
 
367 367
   /**
@@ -383,9 +383,9 @@  discard block
 block discarded – undo
383 383
    */
384 384
   public function listActivities($userId, $collection, $optParams = array())
385 385
   {
386
-    $params = array('userId' => $userId, 'collection' => $collection);
387
-    $params = array_merge($params, $optParams);
388
-    return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
386
+	$params = array('userId' => $userId, 'collection' => $collection);
387
+	$params = array_merge($params, $optParams);
388
+	return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
389 389
   }
390 390
 
391 391
   /**
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
    */
409 409
   public function search($query, $optParams = array())
410 410
   {
411
-    $params = array('query' => $query);
412
-    $params = array_merge($params, $optParams);
413
-    return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
411
+	$params = array('query' => $query);
412
+	$params = array_merge($params, $optParams);
413
+	return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
414 414
   }
415 415
 }
416 416
 
@@ -434,9 +434,9 @@  discard block
 block discarded – undo
434 434
    */
435 435
   public function get($commentId, $optParams = array())
436 436
   {
437
-    $params = array('commentId' => $commentId);
438
-    $params = array_merge($params, $optParams);
439
-    return $this->call('get', array($params), "Google_Service_Plus_Comment");
437
+	$params = array('commentId' => $commentId);
438
+	$params = array_merge($params, $optParams);
439
+	return $this->call('get', array($params), "Google_Service_Plus_Comment");
440 440
   }
441 441
 
442 442
   /**
@@ -456,9 +456,9 @@  discard block
 block discarded – undo
456 456
    */
457 457
   public function listComments($activityId, $optParams = array())
458 458
   {
459
-    $params = array('activityId' => $activityId);
460
-    $params = array_merge($params, $optParams);
461
-    return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
459
+	$params = array('activityId' => $activityId);
460
+	$params = array_merge($params, $optParams);
461
+	return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
462 462
   }
463 463
 }
464 464
 
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
    */
490 490
   public function insert($userId, $collection, Google_Service_Plus_Moment $postBody, $optParams = array())
491 491
   {
492
-    $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
493
-    $params = array_merge($params, $optParams);
494
-    return $this->call('insert', array($params), "Google_Service_Plus_Moment");
492
+	$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
493
+	$params = array_merge($params, $optParams);
494
+	return $this->call('insert', array($params), "Google_Service_Plus_Moment");
495 495
   }
496 496
 
497 497
   /**
@@ -515,9 +515,9 @@  discard block
 block discarded – undo
515 515
    */
516 516
   public function listMoments($userId, $collection, $optParams = array())
517 517
   {
518
-    $params = array('userId' => $userId, 'collection' => $collection);
519
-    $params = array_merge($params, $optParams);
520
-    return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
518
+	$params = array('userId' => $userId, 'collection' => $collection);
519
+	$params = array_merge($params, $optParams);
520
+	return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
521 521
   }
522 522
 
523 523
   /**
@@ -528,9 +528,9 @@  discard block
 block discarded – undo
528 528
    */
529 529
   public function remove($id, $optParams = array())
530 530
   {
531
-    $params = array('id' => $id);
532
-    $params = array_merge($params, $optParams);
533
-    return $this->call('remove', array($params));
531
+	$params = array('id' => $id);
532
+	$params = array_merge($params, $optParams);
533
+	return $this->call('remove', array($params));
534 534
   }
535 535
 }
536 536
 
@@ -557,9 +557,9 @@  discard block
 block discarded – undo
557 557
    */
558 558
   public function get($userId, $optParams = array())
559 559
   {
560
-    $params = array('userId' => $userId);
561
-    $params = array_merge($params, $optParams);
562
-    return $this->call('get', array($params), "Google_Service_Plus_Person");
560
+	$params = array('userId' => $userId);
561
+	$params = array_merge($params, $optParams);
562
+	return $this->call('get', array($params), "Google_Service_Plus_Person");
563 563
   }
564 564
 
565 565
   /**
@@ -581,9 +581,9 @@  discard block
 block discarded – undo
581 581
    */
582 582
   public function listPeople($userId, $collection, $optParams = array())
583 583
   {
584
-    $params = array('userId' => $userId, 'collection' => $collection);
585
-    $params = array_merge($params, $optParams);
586
-    return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
584
+	$params = array('userId' => $userId, 'collection' => $collection);
585
+	$params = array_merge($params, $optParams);
586
+	return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
587 587
   }
588 588
 
589 589
   /**
@@ -605,9 +605,9 @@  discard block
 block discarded – undo
605 605
    */
606 606
   public function listByActivity($activityId, $collection, $optParams = array())
607 607
   {
608
-    $params = array('activityId' => $activityId, 'collection' => $collection);
609
-    $params = array_merge($params, $optParams);
610
-    return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
608
+	$params = array('activityId' => $activityId, 'collection' => $collection);
609
+	$params = array_merge($params, $optParams);
610
+	return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
611 611
   }
612 612
 
613 613
   /**
@@ -630,9 +630,9 @@  discard block
 block discarded – undo
630 630
    */
631 631
   public function search($query, $optParams = array())
632 632
   {
633
-    $params = array('query' => $query);
634
-    $params = array_merge($params, $optParams);
635
-    return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
633
+	$params = array('query' => $query);
634
+	$params = array_merge($params, $optParams);
635
+	return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
636 636
   }
637 637
 }
638 638
 
@@ -652,27 +652,27 @@  discard block
 block discarded – undo
652 652
 
653 653
   public function setDescription($description)
654 654
   {
655
-    $this->description = $description;
655
+	$this->description = $description;
656 656
   }
657 657
   public function getDescription()
658 658
   {
659
-    return $this->description;
659
+	return $this->description;
660 660
   }
661 661
   public function setItems($items)
662 662
   {
663
-    $this->items = $items;
663
+	$this->items = $items;
664 664
   }
665 665
   public function getItems()
666 666
   {
667
-    return $this->items;
667
+	return $this->items;
668 668
   }
669 669
   public function setKind($kind)
670 670
   {
671
-    $this->kind = $kind;
671
+	$this->kind = $kind;
672 672
   }
673 673
   public function getKind()
674 674
   {
675
-    return $this->kind;
675
+	return $this->kind;
676 676
   }
677 677
 }
678 678
 
@@ -709,163 +709,163 @@  discard block
 block discarded – undo
709 709
 
710 710
   public function setAccess(Google_Service_Plus_Acl $access)
711 711
   {
712
-    $this->access = $access;
712
+	$this->access = $access;
713 713
   }
714 714
   public function getAccess()
715 715
   {
716
-    return $this->access;
716
+	return $this->access;
717 717
   }
718 718
   public function setActor(Google_Service_Plus_ActivityActor $actor)
719 719
   {
720
-    $this->actor = $actor;
720
+	$this->actor = $actor;
721 721
   }
722 722
   public function getActor()
723 723
   {
724
-    return $this->actor;
724
+	return $this->actor;
725 725
   }
726 726
   public function setAddress($address)
727 727
   {
728
-    $this->address = $address;
728
+	$this->address = $address;
729 729
   }
730 730
   public function getAddress()
731 731
   {
732
-    return $this->address;
732
+	return $this->address;
733 733
   }
734 734
   public function setAnnotation($annotation)
735 735
   {
736
-    $this->annotation = $annotation;
736
+	$this->annotation = $annotation;
737 737
   }
738 738
   public function getAnnotation()
739 739
   {
740
-    return $this->annotation;
740
+	return $this->annotation;
741 741
   }
742 742
   public function setCrosspostSource($crosspostSource)
743 743
   {
744
-    $this->crosspostSource = $crosspostSource;
744
+	$this->crosspostSource = $crosspostSource;
745 745
   }
746 746
   public function getCrosspostSource()
747 747
   {
748
-    return $this->crosspostSource;
748
+	return $this->crosspostSource;
749 749
   }
750 750
   public function setEtag($etag)
751 751
   {
752
-    $this->etag = $etag;
752
+	$this->etag = $etag;
753 753
   }
754 754
   public function getEtag()
755 755
   {
756
-    return $this->etag;
756
+	return $this->etag;
757 757
   }
758 758
   public function setGeocode($geocode)
759 759
   {
760
-    $this->geocode = $geocode;
760
+	$this->geocode = $geocode;
761 761
   }
762 762
   public function getGeocode()
763 763
   {
764
-    return $this->geocode;
764
+	return $this->geocode;
765 765
   }
766 766
   public function setId($id)
767 767
   {
768
-    $this->id = $id;
768
+	$this->id = $id;
769 769
   }
770 770
   public function getId()
771 771
   {
772
-    return $this->id;
772
+	return $this->id;
773 773
   }
774 774
   public function setKind($kind)
775 775
   {
776
-    $this->kind = $kind;
776
+	$this->kind = $kind;
777 777
   }
778 778
   public function getKind()
779 779
   {
780
-    return $this->kind;
780
+	return $this->kind;
781 781
   }
782 782
   public function setLocation(Google_Service_Plus_Place $location)
783 783
   {
784
-    $this->location = $location;
784
+	$this->location = $location;
785 785
   }
786 786
   public function getLocation()
787 787
   {
788
-    return $this->location;
788
+	return $this->location;
789 789
   }
790 790
   public function setObject(Google_Service_Plus_ActivityObject $object)
791 791
   {
792
-    $this->object = $object;
792
+	$this->object = $object;
793 793
   }
794 794
   public function getObject()
795 795
   {
796
-    return $this->object;
796
+	return $this->object;
797 797
   }
798 798
   public function setPlaceId($placeId)
799 799
   {
800
-    $this->placeId = $placeId;
800
+	$this->placeId = $placeId;
801 801
   }
802 802
   public function getPlaceId()
803 803
   {
804
-    return $this->placeId;
804
+	return $this->placeId;
805 805
   }
806 806
   public function setPlaceName($placeName)
807 807
   {
808
-    $this->placeName = $placeName;
808
+	$this->placeName = $placeName;
809 809
   }
810 810
   public function getPlaceName()
811 811
   {
812
-    return $this->placeName;
812
+	return $this->placeName;
813 813
   }
814 814
   public function setProvider(Google_Service_Plus_ActivityProvider $provider)
815 815
   {
816
-    $this->provider = $provider;
816
+	$this->provider = $provider;
817 817
   }
818 818
   public function getProvider()
819 819
   {
820
-    return $this->provider;
820
+	return $this->provider;
821 821
   }
822 822
   public function setPublished($published)
823 823
   {
824
-    $this->published = $published;
824
+	$this->published = $published;
825 825
   }
826 826
   public function getPublished()
827 827
   {
828
-    return $this->published;
828
+	return $this->published;
829 829
   }
830 830
   public function setRadius($radius)
831 831
   {
832
-    $this->radius = $radius;
832
+	$this->radius = $radius;
833 833
   }
834 834
   public function getRadius()
835 835
   {
836
-    return $this->radius;
836
+	return $this->radius;
837 837
   }
838 838
   public function setTitle($title)
839 839
   {
840
-    $this->title = $title;
840
+	$this->title = $title;
841 841
   }
842 842
   public function getTitle()
843 843
   {
844
-    return $this->title;
844
+	return $this->title;
845 845
   }
846 846
   public function setUpdated($updated)
847 847
   {
848
-    $this->updated = $updated;
848
+	$this->updated = $updated;
849 849
   }
850 850
   public function getUpdated()
851 851
   {
852
-    return $this->updated;
852
+	return $this->updated;
853 853
   }
854 854
   public function setUrl($url)
855 855
   {
856
-    $this->url = $url;
856
+	$this->url = $url;
857 857
   }
858 858
   public function getUrl()
859 859
   {
860
-    return $this->url;
860
+	return $this->url;
861 861
   }
862 862
   public function setVerb($verb)
863 863
   {
864
-    $this->verb = $verb;
864
+	$this->verb = $verb;
865 865
   }
866 866
   public function getVerb()
867 867
   {
868
-    return $this->verb;
868
+	return $this->verb;
869 869
   }
870 870
 }
871 871
 
@@ -884,43 +884,43 @@  discard block
 block discarded – undo
884 884
 
885 885
   public function setDisplayName($displayName)
886 886
   {
887
-    $this->displayName = $displayName;
887
+	$this->displayName = $displayName;
888 888
   }
889 889
   public function getDisplayName()
890 890
   {
891
-    return $this->displayName;
891
+	return $this->displayName;
892 892
   }
893 893
   public function setId($id)
894 894
   {
895
-    $this->id = $id;
895
+	$this->id = $id;
896 896
   }
897 897
   public function getId()
898 898
   {
899
-    return $this->id;
899
+	return $this->id;
900 900
   }
901 901
   public function setImage(Google_Service_Plus_ActivityActorImage $image)
902 902
   {
903
-    $this->image = $image;
903
+	$this->image = $image;
904 904
   }
905 905
   public function getImage()
906 906
   {
907
-    return $this->image;
907
+	return $this->image;
908 908
   }
909 909
   public function setName(Google_Service_Plus_ActivityActorName $name)
910 910
   {
911
-    $this->name = $name;
911
+	$this->name = $name;
912 912
   }
913 913
   public function getName()
914 914
   {
915
-    return $this->name;
915
+	return $this->name;
916 916
   }
917 917
   public function setUrl($url)
918 918
   {
919
-    $this->url = $url;
919
+	$this->url = $url;
920 920
   }
921 921
   public function getUrl()
922 922
   {
923
-    return $this->url;
923
+	return $this->url;
924 924
   }
925 925
 }
926 926
 
@@ -933,11 +933,11 @@  discard block
 block discarded – undo
933 933
 
934 934
   public function setUrl($url)
935 935
   {
936
-    $this->url = $url;
936
+	$this->url = $url;
937 937
   }
938 938
   public function getUrl()
939 939
   {
940
-    return $this->url;
940
+	return $this->url;
941 941
   }
942 942
 }
943 943
 
@@ -951,19 +951,19 @@  discard block
 block discarded – undo
951 951
 
952 952
   public function setFamilyName($familyName)
953 953
   {
954
-    $this->familyName = $familyName;
954
+	$this->familyName = $familyName;
955 955
   }
956 956
   public function getFamilyName()
957 957
   {
958
-    return $this->familyName;
958
+	return $this->familyName;
959 959
   }
960 960
   public function setGivenName($givenName)
961 961
   {
962
-    $this->givenName = $givenName;
962
+	$this->givenName = $givenName;
963 963
   }
964 964
   public function getGivenName()
965 965
   {
966
-    return $this->givenName;
966
+	return $this->givenName;
967 967
   }
968 968
 }
969 969
 
@@ -986,75 +986,75 @@  discard block
 block discarded – undo
986 986
 
987 987
   public function setEtag($etag)
988 988
   {
989
-    $this->etag = $etag;
989
+	$this->etag = $etag;
990 990
   }
991 991
   public function getEtag()
992 992
   {
993
-    return $this->etag;
993
+	return $this->etag;
994 994
   }
995 995
   public function setId($id)
996 996
   {
997
-    $this->id = $id;
997
+	$this->id = $id;
998 998
   }
999 999
   public function getId()
1000 1000
   {
1001
-    return $this->id;
1001
+	return $this->id;
1002 1002
   }
1003 1003
   public function setItems($items)
1004 1004
   {
1005
-    $this->items = $items;
1005
+	$this->items = $items;
1006 1006
   }
1007 1007
   public function getItems()
1008 1008
   {
1009
-    return $this->items;
1009
+	return $this->items;
1010 1010
   }
1011 1011
   public function setKind($kind)
1012 1012
   {
1013
-    $this->kind = $kind;
1013
+	$this->kind = $kind;
1014 1014
   }
1015 1015
   public function getKind()
1016 1016
   {
1017
-    return $this->kind;
1017
+	return $this->kind;
1018 1018
   }
1019 1019
   public function setNextLink($nextLink)
1020 1020
   {
1021
-    $this->nextLink = $nextLink;
1021
+	$this->nextLink = $nextLink;
1022 1022
   }
1023 1023
   public function getNextLink()
1024 1024
   {
1025
-    return $this->nextLink;
1025
+	return $this->nextLink;
1026 1026
   }
1027 1027
   public function setNextPageToken($nextPageToken)
1028 1028
   {
1029
-    $this->nextPageToken = $nextPageToken;
1029
+	$this->nextPageToken = $nextPageToken;
1030 1030
   }
1031 1031
   public function getNextPageToken()
1032 1032
   {
1033
-    return $this->nextPageToken;
1033
+	return $this->nextPageToken;
1034 1034
   }
1035 1035
   public function setSelfLink($selfLink)
1036 1036
   {
1037
-    $this->selfLink = $selfLink;
1037
+	$this->selfLink = $selfLink;
1038 1038
   }
1039 1039
   public function getSelfLink()
1040 1040
   {
1041
-    return $this->selfLink;
1041
+	return $this->selfLink;
1042 1042
   }
1043 1043
   public function setTitle($title)
1044 1044
   {
1045
-    $this->title = $title;
1045
+	$this->title = $title;
1046 1046
   }
1047 1047
   public function getTitle()
1048 1048
   {
1049
-    return $this->title;
1049
+	return $this->title;
1050 1050
   }
1051 1051
   public function setUpdated($updated)
1052 1052
   {
1053
-    $this->updated = $updated;
1053
+	$this->updated = $updated;
1054 1054
   }
1055 1055
   public function getUpdated()
1056 1056
   {
1057
-    return $this->updated;
1057
+	return $this->updated;
1058 1058
   }
1059 1059
 }
1060 1060
 
@@ -1082,83 +1082,83 @@  discard block
 block discarded – undo
1082 1082
 
1083 1083
   public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
1084 1084
   {
1085
-    $this->actor = $actor;
1085
+	$this->actor = $actor;
1086 1086
   }
1087 1087
   public function getActor()
1088 1088
   {
1089
-    return $this->actor;
1089
+	return $this->actor;
1090 1090
   }
1091 1091
   public function setAttachments($attachments)
1092 1092
   {
1093
-    $this->attachments = $attachments;
1093
+	$this->attachments = $attachments;
1094 1094
   }
1095 1095
   public function getAttachments()
1096 1096
   {
1097
-    return $this->attachments;
1097
+	return $this->attachments;
1098 1098
   }
1099 1099
   public function setContent($content)
1100 1100
   {
1101
-    $this->content = $content;
1101
+	$this->content = $content;
1102 1102
   }
1103 1103
   public function getContent()
1104 1104
   {
1105
-    return $this->content;
1105
+	return $this->content;
1106 1106
   }
1107 1107
   public function setId($id)
1108 1108
   {
1109
-    $this->id = $id;
1109
+	$this->id = $id;
1110 1110
   }
1111 1111
   public function getId()
1112 1112
   {
1113
-    return $this->id;
1113
+	return $this->id;
1114 1114
   }
1115 1115
   public function setObjectType($objectType)
1116 1116
   {
1117
-    $this->objectType = $objectType;
1117
+	$this->objectType = $objectType;
1118 1118
   }
1119 1119
   public function getObjectType()
1120 1120
   {
1121
-    return $this->objectType;
1121
+	return $this->objectType;
1122 1122
   }
1123 1123
   public function setOriginalContent($originalContent)
1124 1124
   {
1125
-    $this->originalContent = $originalContent;
1125
+	$this->originalContent = $originalContent;
1126 1126
   }
1127 1127
   public function getOriginalContent()
1128 1128
   {
1129
-    return $this->originalContent;
1129
+	return $this->originalContent;
1130 1130
   }
1131 1131
   public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
1132 1132
   {
1133
-    $this->plusoners = $plusoners;
1133
+	$this->plusoners = $plusoners;
1134 1134
   }
1135 1135
   public function getPlusoners()
1136 1136
   {
1137
-    return $this->plusoners;
1137
+	return $this->plusoners;
1138 1138
   }
1139 1139
   public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
1140 1140
   {
1141
-    $this->replies = $replies;
1141
+	$this->replies = $replies;
1142 1142
   }
1143 1143
   public function getReplies()
1144 1144
   {
1145
-    return $this->replies;
1145
+	return $this->replies;
1146 1146
   }
1147 1147
   public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
1148 1148
   {
1149
-    $this->resharers = $resharers;
1149
+	$this->resharers = $resharers;
1150 1150
   }
1151 1151
   public function getResharers()
1152 1152
   {
1153
-    return $this->resharers;
1153
+	return $this->resharers;
1154 1154
   }
1155 1155
   public function setUrl($url)
1156 1156
   {
1157
-    $this->url = $url;
1157
+	$this->url = $url;
1158 1158
   }
1159 1159
   public function getUrl()
1160 1160
   {
1161
-    return $this->url;
1161
+	return $this->url;
1162 1162
   }
1163 1163
 }
1164 1164
 
@@ -1175,35 +1175,35 @@  discard block
 block discarded – undo
1175 1175
 
1176 1176
   public function setDisplayName($displayName)
1177 1177
   {
1178
-    $this->displayName = $displayName;
1178
+	$this->displayName = $displayName;
1179 1179
   }
1180 1180
   public function getDisplayName()
1181 1181
   {
1182
-    return $this->displayName;
1182
+	return $this->displayName;
1183 1183
   }
1184 1184
   public function setId($id)
1185 1185
   {
1186
-    $this->id = $id;
1186
+	$this->id = $id;
1187 1187
   }
1188 1188
   public function getId()
1189 1189
   {
1190
-    return $this->id;
1190
+	return $this->id;
1191 1191
   }
1192 1192
   public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
1193 1193
   {
1194
-    $this->image = $image;
1194
+	$this->image = $image;
1195 1195
   }
1196 1196
   public function getImage()
1197 1197
   {
1198
-    return $this->image;
1198
+	return $this->image;
1199 1199
   }
1200 1200
   public function setUrl($url)
1201 1201
   {
1202
-    $this->url = $url;
1202
+	$this->url = $url;
1203 1203
   }
1204 1204
   public function getUrl()
1205 1205
   {
1206
-    return $this->url;
1206
+	return $this->url;
1207 1207
   }
1208 1208
 }
1209 1209
 
@@ -1216,11 +1216,11 @@  discard block
 block discarded – undo
1216 1216
 
1217 1217
   public function setUrl($url)
1218 1218
   {
1219
-    $this->url = $url;
1219
+	$this->url = $url;
1220 1220
   }
1221 1221
   public function getUrl()
1222 1222
   {
1223
-    return $this->url;
1223
+	return $this->url;
1224 1224
   }
1225 1225
 }
1226 1226
 
@@ -1246,75 +1246,75 @@  discard block
 block discarded – undo
1246 1246
 
1247 1247
   public function setContent($content)
1248 1248
   {
1249
-    $this->content = $content;
1249
+	$this->content = $content;
1250 1250
   }
1251 1251
   public function getContent()
1252 1252
   {
1253
-    return $this->content;
1253
+	return $this->content;
1254 1254
   }
1255 1255
   public function setDisplayName($displayName)
1256 1256
   {
1257
-    $this->displayName = $displayName;
1257
+	$this->displayName = $displayName;
1258 1258
   }
1259 1259
   public function getDisplayName()
1260 1260
   {
1261
-    return $this->displayName;
1261
+	return $this->displayName;
1262 1262
   }
1263 1263
   public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
1264 1264
   {
1265
-    $this->embed = $embed;
1265
+	$this->embed = $embed;
1266 1266
   }
1267 1267
   public function getEmbed()
1268 1268
   {
1269
-    return $this->embed;
1269
+	return $this->embed;
1270 1270
   }
1271 1271
   public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
1272 1272
   {
1273
-    $this->fullImage = $fullImage;
1273
+	$this->fullImage = $fullImage;
1274 1274
   }
1275 1275
   public function getFullImage()
1276 1276
   {
1277
-    return $this->fullImage;
1277
+	return $this->fullImage;
1278 1278
   }
1279 1279
   public function setId($id)
1280 1280
   {
1281
-    $this->id = $id;
1281
+	$this->id = $id;
1282 1282
   }
1283 1283
   public function getId()
1284 1284
   {
1285
-    return $this->id;
1285
+	return $this->id;
1286 1286
   }
1287 1287
   public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
1288 1288
   {
1289
-    $this->image = $image;
1289
+	$this->image = $image;
1290 1290
   }
1291 1291
   public function getImage()
1292 1292
   {
1293
-    return $this->image;
1293
+	return $this->image;
1294 1294
   }
1295 1295
   public function setObjectType($objectType)
1296 1296
   {
1297
-    $this->objectType = $objectType;
1297
+	$this->objectType = $objectType;
1298 1298
   }
1299 1299
   public function getObjectType()
1300 1300
   {
1301
-    return $this->objectType;
1301
+	return $this->objectType;
1302 1302
   }
1303 1303
   public function setThumbnails($thumbnails)
1304 1304
   {
1305
-    $this->thumbnails = $thumbnails;
1305
+	$this->thumbnails = $thumbnails;
1306 1306
   }
1307 1307
   public function getThumbnails()
1308 1308
   {
1309
-    return $this->thumbnails;
1309
+	return $this->thumbnails;
1310 1310
   }
1311 1311
   public function setUrl($url)
1312 1312
   {
1313
-    $this->url = $url;
1313
+	$this->url = $url;
1314 1314
   }
1315 1315
   public function getUrl()
1316 1316
   {
1317
-    return $this->url;
1317
+	return $this->url;
1318 1318
   }
1319 1319
 }
1320 1320
 
@@ -1328,19 +1328,19 @@  discard block
 block discarded – undo
1328 1328
 
1329 1329
   public function setType($type)
1330 1330
   {
1331
-    $this->type = $type;
1331
+	$this->type = $type;
1332 1332
   }
1333 1333
   public function getType()
1334 1334
   {
1335
-    return $this->type;
1335
+	return $this->type;
1336 1336
   }
1337 1337
   public function setUrl($url)
1338 1338
   {
1339
-    $this->url = $url;
1339
+	$this->url = $url;
1340 1340
   }
1341 1341
   public function getUrl()
1342 1342
   {
1343
-    return $this->url;
1343
+	return $this->url;
1344 1344
   }
1345 1345
 }
1346 1346
 
@@ -1356,35 +1356,35 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
   public function setHeight($height)
1358 1358
   {
1359
-    $this->height = $height;
1359
+	$this->height = $height;
1360 1360
   }
1361 1361
   public function getHeight()
1362 1362
   {
1363
-    return $this->height;
1363
+	return $this->height;
1364 1364
   }
1365 1365
   public function setType($type)
1366 1366
   {
1367
-    $this->type = $type;
1367
+	$this->type = $type;
1368 1368
   }
1369 1369
   public function getType()
1370 1370
   {
1371
-    return $this->type;
1371
+	return $this->type;
1372 1372
   }
1373 1373
   public function setUrl($url)
1374 1374
   {
1375
-    $this->url = $url;
1375
+	$this->url = $url;
1376 1376
   }
1377 1377
   public function getUrl()
1378 1378
   {
1379
-    return $this->url;
1379
+	return $this->url;
1380 1380
   }
1381 1381
   public function setWidth($width)
1382 1382
   {
1383
-    $this->width = $width;
1383
+	$this->width = $width;
1384 1384
   }
1385 1385
   public function getWidth()
1386 1386
   {
1387
-    return $this->width;
1387
+	return $this->width;
1388 1388
   }
1389 1389
 }
1390 1390
 
@@ -1400,35 +1400,35 @@  discard block
 block discarded – undo
1400 1400
 
1401 1401
   public function setHeight($height)
1402 1402
   {
1403
-    $this->height = $height;
1403
+	$this->height = $height;
1404 1404
   }
1405 1405
   public function getHeight()
1406 1406
   {
1407
-    return $this->height;
1407
+	return $this->height;
1408 1408
   }
1409 1409
   public function setType($type)
1410 1410
   {
1411
-    $this->type = $type;
1411
+	$this->type = $type;
1412 1412
   }
1413 1413
   public function getType()
1414 1414
   {
1415
-    return $this->type;
1415
+	return $this->type;
1416 1416
   }
1417 1417
   public function setUrl($url)
1418 1418
   {
1419
-    $this->url = $url;
1419
+	$this->url = $url;
1420 1420
   }
1421 1421
   public function getUrl()
1422 1422
   {
1423
-    return $this->url;
1423
+	return $this->url;
1424 1424
   }
1425 1425
   public function setWidth($width)
1426 1426
   {
1427
-    $this->width = $width;
1427
+	$this->width = $width;
1428 1428
   }
1429 1429
   public function getWidth()
1430 1430
   {
1431
-    return $this->width;
1431
+	return $this->width;
1432 1432
   }
1433 1433
 }
1434 1434
 
@@ -1444,27 +1444,27 @@  discard block
 block discarded – undo
1444 1444
 
1445 1445
   public function setDescription($description)
1446 1446
   {
1447
-    $this->description = $description;
1447
+	$this->description = $description;
1448 1448
   }
1449 1449
   public function getDescription()
1450 1450
   {
1451
-    return $this->description;
1451
+	return $this->description;
1452 1452
   }
1453 1453
   public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
1454 1454
   {
1455
-    $this->image = $image;
1455
+	$this->image = $image;
1456 1456
   }
1457 1457
   public function getImage()
1458 1458
   {
1459
-    return $this->image;
1459
+	return $this->image;
1460 1460
   }
1461 1461
   public function setUrl($url)
1462 1462
   {
1463
-    $this->url = $url;
1463
+	$this->url = $url;
1464 1464
   }
1465 1465
   public function getUrl()
1466 1466
   {
1467
-    return $this->url;
1467
+	return $this->url;
1468 1468
   }
1469 1469
 }
1470 1470
 
@@ -1480,35 +1480,35 @@  discard block
 block discarded – undo
1480 1480
 
1481 1481
   public function setHeight($height)
1482 1482
   {
1483
-    $this->height = $height;
1483
+	$this->height = $height;
1484 1484
   }
1485 1485
   public function getHeight()
1486 1486
   {
1487
-    return $this->height;
1487
+	return $this->height;
1488 1488
   }
1489 1489
   public function setType($type)
1490 1490
   {
1491
-    $this->type = $type;
1491
+	$this->type = $type;
1492 1492
   }
1493 1493
   public function getType()
1494 1494
   {
1495
-    return $this->type;
1495
+	return $this->type;
1496 1496
   }
1497 1497
   public function setUrl($url)
1498 1498
   {
1499
-    $this->url = $url;
1499
+	$this->url = $url;
1500 1500
   }
1501 1501
   public function getUrl()
1502 1502
   {
1503
-    return $this->url;
1503
+	return $this->url;
1504 1504
   }
1505 1505
   public function setWidth($width)
1506 1506
   {
1507
-    $this->width = $width;
1507
+	$this->width = $width;
1508 1508
   }
1509 1509
   public function getWidth()
1510 1510
   {
1511
-    return $this->width;
1511
+	return $this->width;
1512 1512
   }
1513 1513
 }
1514 1514
 
@@ -1522,19 +1522,19 @@  discard block
 block discarded – undo
1522 1522
 
1523 1523
   public function setSelfLink($selfLink)
1524 1524
   {
1525
-    $this->selfLink = $selfLink;
1525
+	$this->selfLink = $selfLink;
1526 1526
   }
1527 1527
   public function getSelfLink()
1528 1528
   {
1529
-    return $this->selfLink;
1529
+	return $this->selfLink;
1530 1530
   }
1531 1531
   public function setTotalItems($totalItems)
1532 1532
   {
1533
-    $this->totalItems = $totalItems;
1533
+	$this->totalItems = $totalItems;
1534 1534
   }
1535 1535
   public function getTotalItems()
1536 1536
   {
1537
-    return $this->totalItems;
1537
+	return $this->totalItems;
1538 1538
   }
1539 1539
 }
1540 1540
 
@@ -1548,19 +1548,19 @@  discard block
 block discarded – undo
1548 1548
 
1549 1549
   public function setSelfLink($selfLink)
1550 1550
   {
1551
-    $this->selfLink = $selfLink;
1551
+	$this->selfLink = $selfLink;
1552 1552
   }
1553 1553
   public function getSelfLink()
1554 1554
   {
1555
-    return $this->selfLink;
1555
+	return $this->selfLink;
1556 1556
   }
1557 1557
   public function setTotalItems($totalItems)
1558 1558
   {
1559
-    $this->totalItems = $totalItems;
1559
+	$this->totalItems = $totalItems;
1560 1560
   }
1561 1561
   public function getTotalItems()
1562 1562
   {
1563
-    return $this->totalItems;
1563
+	return $this->totalItems;
1564 1564
   }
1565 1565
 }
1566 1566
 
@@ -1574,19 +1574,19 @@  discard block
 block discarded – undo
1574 1574
 
1575 1575
   public function setSelfLink($selfLink)
1576 1576
   {
1577
-    $this->selfLink = $selfLink;
1577
+	$this->selfLink = $selfLink;
1578 1578
   }
1579 1579
   public function getSelfLink()
1580 1580
   {
1581
-    return $this->selfLink;
1581
+	return $this->selfLink;
1582 1582
   }
1583 1583
   public function setTotalItems($totalItems)
1584 1584
   {
1585
-    $this->totalItems = $totalItems;
1585
+	$this->totalItems = $totalItems;
1586 1586
   }
1587 1587
   public function getTotalItems()
1588 1588
   {
1589
-    return $this->totalItems;
1589
+	return $this->totalItems;
1590 1590
   }
1591 1591
 }
1592 1592
 
@@ -1599,11 +1599,11 @@  discard block
 block discarded – undo
1599 1599
 
1600 1600
   public function setTitle($title)
1601 1601
   {
1602
-    $this->title = $title;
1602
+	$this->title = $title;
1603 1603
   }
1604 1604
   public function getTitle()
1605 1605
   {
1606
-    return $this->title;
1606
+	return $this->title;
1607 1607
   }
1608 1608
 }
1609 1609
 
@@ -1631,91 +1631,91 @@  discard block
 block discarded – undo
1631 1631
 
1632 1632
   public function setActor(Google_Service_Plus_CommentActor $actor)
1633 1633
   {
1634
-    $this->actor = $actor;
1634
+	$this->actor = $actor;
1635 1635
   }
1636 1636
   public function getActor()
1637 1637
   {
1638
-    return $this->actor;
1638
+	return $this->actor;
1639 1639
   }
1640 1640
   public function setEtag($etag)
1641 1641
   {
1642
-    $this->etag = $etag;
1642
+	$this->etag = $etag;
1643 1643
   }
1644 1644
   public function getEtag()
1645 1645
   {
1646
-    return $this->etag;
1646
+	return $this->etag;
1647 1647
   }
1648 1648
   public function setId($id)
1649 1649
   {
1650
-    $this->id = $id;
1650
+	$this->id = $id;
1651 1651
   }
1652 1652
   public function getId()
1653 1653
   {
1654
-    return $this->id;
1654
+	return $this->id;
1655 1655
   }
1656 1656
   public function setInReplyTo($inReplyTo)
1657 1657
   {
1658
-    $this->inReplyTo = $inReplyTo;
1658
+	$this->inReplyTo = $inReplyTo;
1659 1659
   }
1660 1660
   public function getInReplyTo()
1661 1661
   {
1662
-    return $this->inReplyTo;
1662
+	return $this->inReplyTo;
1663 1663
   }
1664 1664
   public function setKind($kind)
1665 1665
   {
1666
-    $this->kind = $kind;
1666
+	$this->kind = $kind;
1667 1667
   }
1668 1668
   public function getKind()
1669 1669
   {
1670
-    return $this->kind;
1670
+	return $this->kind;
1671 1671
   }
1672 1672
   public function setObject(Google_Service_Plus_CommentObject $object)
1673 1673
   {
1674
-    $this->object = $object;
1674
+	$this->object = $object;
1675 1675
   }
1676 1676
   public function getObject()
1677 1677
   {
1678
-    return $this->object;
1678
+	return $this->object;
1679 1679
   }
1680 1680
   public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
1681 1681
   {
1682
-    $this->plusoners = $plusoners;
1682
+	$this->plusoners = $plusoners;
1683 1683
   }
1684 1684
   public function getPlusoners()
1685 1685
   {
1686
-    return $this->plusoners;
1686
+	return $this->plusoners;
1687 1687
   }
1688 1688
   public function setPublished($published)
1689 1689
   {
1690
-    $this->published = $published;
1690
+	$this->published = $published;
1691 1691
   }
1692 1692
   public function getPublished()
1693 1693
   {
1694
-    return $this->published;
1694
+	return $this->published;
1695 1695
   }
1696 1696
   public function setSelfLink($selfLink)
1697 1697
   {
1698
-    $this->selfLink = $selfLink;
1698
+	$this->selfLink = $selfLink;
1699 1699
   }
1700 1700
   public function getSelfLink()
1701 1701
   {
1702
-    return $this->selfLink;
1702
+	return $this->selfLink;
1703 1703
   }
1704 1704
   public function setUpdated($updated)
1705 1705
   {
1706
-    $this->updated = $updated;
1706
+	$this->updated = $updated;
1707 1707
   }
1708 1708
   public function getUpdated()
1709 1709
   {
1710
-    return $this->updated;
1710
+	return $this->updated;
1711 1711
   }
1712 1712
   public function setVerb($verb)
1713 1713
   {
1714
-    $this->verb = $verb;
1714
+	$this->verb = $verb;
1715 1715
   }
1716 1716
   public function getVerb()
1717 1717
   {
1718
-    return $this->verb;
1718
+	return $this->verb;
1719 1719
   }
1720 1720
 }
1721 1721
 
@@ -1732,35 +1732,35 @@  discard block
 block discarded – undo
1732 1732
 
1733 1733
   public function setDisplayName($displayName)
1734 1734
   {
1735
-    $this->displayName = $displayName;
1735
+	$this->displayName = $displayName;
1736 1736
   }
1737 1737
   public function getDisplayName()
1738 1738
   {
1739
-    return $this->displayName;
1739
+	return $this->displayName;
1740 1740
   }
1741 1741
   public function setId($id)
1742 1742
   {
1743
-    $this->id = $id;
1743
+	$this->id = $id;
1744 1744
   }
1745 1745
   public function getId()
1746 1746
   {
1747
-    return $this->id;
1747
+	return $this->id;
1748 1748
   }
1749 1749
   public function setImage(Google_Service_Plus_CommentActorImage $image)
1750 1750
   {
1751
-    $this->image = $image;
1751
+	$this->image = $image;
1752 1752
   }
1753 1753
   public function getImage()
1754 1754
   {
1755
-    return $this->image;
1755
+	return $this->image;
1756 1756
   }
1757 1757
   public function setUrl($url)
1758 1758
   {
1759
-    $this->url = $url;
1759
+	$this->url = $url;
1760 1760
   }
1761 1761
   public function getUrl()
1762 1762
   {
1763
-    return $this->url;
1763
+	return $this->url;
1764 1764
   }
1765 1765
 }
1766 1766
 
@@ -1773,11 +1773,11 @@  discard block
 block discarded – undo
1773 1773
 
1774 1774
   public function setUrl($url)
1775 1775
   {
1776
-    $this->url = $url;
1776
+	$this->url = $url;
1777 1777
   }
1778 1778
   public function getUrl()
1779 1779
   {
1780
-    return $this->url;
1780
+	return $this->url;
1781 1781
   }
1782 1782
 }
1783 1783
 
@@ -1799,67 +1799,67 @@  discard block
 block discarded – undo
1799 1799
 
1800 1800
   public function setEtag($etag)
1801 1801
   {
1802
-    $this->etag = $etag;
1802
+	$this->etag = $etag;
1803 1803
   }
1804 1804
   public function getEtag()
1805 1805
   {
1806
-    return $this->etag;
1806
+	return $this->etag;
1807 1807
   }
1808 1808
   public function setId($id)
1809 1809
   {
1810
-    $this->id = $id;
1810
+	$this->id = $id;
1811 1811
   }
1812 1812
   public function getId()
1813 1813
   {
1814
-    return $this->id;
1814
+	return $this->id;
1815 1815
   }
1816 1816
   public function setItems($items)
1817 1817
   {
1818
-    $this->items = $items;
1818
+	$this->items = $items;
1819 1819
   }
1820 1820
   public function getItems()
1821 1821
   {
1822
-    return $this->items;
1822
+	return $this->items;
1823 1823
   }
1824 1824
   public function setKind($kind)
1825 1825
   {
1826
-    $this->kind = $kind;
1826
+	$this->kind = $kind;
1827 1827
   }
1828 1828
   public function getKind()
1829 1829
   {
1830
-    return $this->kind;
1830
+	return $this->kind;
1831 1831
   }
1832 1832
   public function setNextLink($nextLink)
1833 1833
   {
1834
-    $this->nextLink = $nextLink;
1834
+	$this->nextLink = $nextLink;
1835 1835
   }
1836 1836
   public function getNextLink()
1837 1837
   {
1838
-    return $this->nextLink;
1838
+	return $this->nextLink;
1839 1839
   }
1840 1840
   public function setNextPageToken($nextPageToken)
1841 1841
   {
1842
-    $this->nextPageToken = $nextPageToken;
1842
+	$this->nextPageToken = $nextPageToken;
1843 1843
   }
1844 1844
   public function getNextPageToken()
1845 1845
   {
1846
-    return $this->nextPageToken;
1846
+	return $this->nextPageToken;
1847 1847
   }
1848 1848
   public function setTitle($title)
1849 1849
   {
1850
-    $this->title = $title;
1850
+	$this->title = $title;
1851 1851
   }
1852 1852
   public function getTitle()
1853 1853
   {
1854
-    return $this->title;
1854
+	return $this->title;
1855 1855
   }
1856 1856
   public function setUpdated($updated)
1857 1857
   {
1858
-    $this->updated = $updated;
1858
+	$this->updated = $updated;
1859 1859
   }
1860 1860
   public function getUpdated()
1861 1861
   {
1862
-    return $this->updated;
1862
+	return $this->updated;
1863 1863
   }
1864 1864
 }
1865 1865
 
@@ -1873,19 +1873,19 @@  discard block
 block discarded – undo
1873 1873
 
1874 1874
   public function setId($id)
1875 1875
   {
1876
-    $this->id = $id;
1876
+	$this->id = $id;
1877 1877
   }
1878 1878
   public function getId()
1879 1879
   {
1880
-    return $this->id;
1880
+	return $this->id;
1881 1881
   }
1882 1882
   public function setUrl($url)
1883 1883
   {
1884
-    $this->url = $url;
1884
+	$this->url = $url;
1885 1885
   }
1886 1886
   public function getUrl()
1887 1887
   {
1888
-    return $this->url;
1888
+	return $this->url;
1889 1889
   }
1890 1890
 }
1891 1891
 
@@ -1900,27 +1900,27 @@  discard block
 block discarded – undo
1900 1900
 
1901 1901
   public function setContent($content)
1902 1902
   {
1903
-    $this->content = $content;
1903
+	$this->content = $content;
1904 1904
   }
1905 1905
   public function getContent()
1906 1906
   {
1907
-    return $this->content;
1907
+	return $this->content;
1908 1908
   }
1909 1909
   public function setObjectType($objectType)
1910 1910
   {
1911
-    $this->objectType = $objectType;
1911
+	$this->objectType = $objectType;
1912 1912
   }
1913 1913
   public function getObjectType()
1914 1914
   {
1915
-    return $this->objectType;
1915
+	return $this->objectType;
1916 1916
   }
1917 1917
   public function setOriginalContent($originalContent)
1918 1918
   {
1919
-    $this->originalContent = $originalContent;
1919
+	$this->originalContent = $originalContent;
1920 1920
   }
1921 1921
   public function getOriginalContent()
1922 1922
   {
1923
-    return $this->originalContent;
1923
+	return $this->originalContent;
1924 1924
   }
1925 1925
 }
1926 1926
 
@@ -1933,11 +1933,11 @@  discard block
 block discarded – undo
1933 1933
 
1934 1934
   public function setTotalItems($totalItems)
1935 1935
   {
1936
-    $this->totalItems = $totalItems;
1936
+	$this->totalItems = $totalItems;
1937 1937
   }
1938 1938
   public function getTotalItems()
1939 1939
   {
1940
-    return $this->totalItems;
1940
+	return $this->totalItems;
1941 1941
   }
1942 1942
 }
1943 1943
 
@@ -1945,7 +1945,7 @@  discard block
 block discarded – undo
1945 1945
 {
1946 1946
   protected $collection_key = 'performers';
1947 1947
   protected $internal_gapi_mappings = array(
1948
-        "associatedMedia" => "associated_media",
1948
+		"associatedMedia" => "associated_media",
1949 1949
   );
1950 1950
   protected $aboutType = 'Google_Service_Plus_ItemScope';
1951 1951
   protected $aboutDataType = '';
@@ -2021,443 +2021,443 @@  discard block
 block discarded – undo
2021 2021
 
2022 2022
   public function setAbout(Google_Service_Plus_ItemScope $about)
2023 2023
   {
2024
-    $this->about = $about;
2024
+	$this->about = $about;
2025 2025
   }
2026 2026
   public function getAbout()
2027 2027
   {
2028
-    return $this->about;
2028
+	return $this->about;
2029 2029
   }
2030 2030
   public function setAdditionalName($additionalName)
2031 2031
   {
2032
-    $this->additionalName = $additionalName;
2032
+	$this->additionalName = $additionalName;
2033 2033
   }
2034 2034
   public function getAdditionalName()
2035 2035
   {
2036
-    return $this->additionalName;
2036
+	return $this->additionalName;
2037 2037
   }
2038 2038
   public function setAddress(Google_Service_Plus_ItemScope $address)
2039 2039
   {
2040
-    $this->address = $address;
2040
+	$this->address = $address;
2041 2041
   }
2042 2042
   public function getAddress()
2043 2043
   {
2044
-    return $this->address;
2044
+	return $this->address;
2045 2045
   }
2046 2046
   public function setAddressCountry($addressCountry)
2047 2047
   {
2048
-    $this->addressCountry = $addressCountry;
2048
+	$this->addressCountry = $addressCountry;
2049 2049
   }
2050 2050
   public function getAddressCountry()
2051 2051
   {
2052
-    return $this->addressCountry;
2052
+	return $this->addressCountry;
2053 2053
   }
2054 2054
   public function setAddressLocality($addressLocality)
2055 2055
   {
2056
-    $this->addressLocality = $addressLocality;
2056
+	$this->addressLocality = $addressLocality;
2057 2057
   }
2058 2058
   public function getAddressLocality()
2059 2059
   {
2060
-    return $this->addressLocality;
2060
+	return $this->addressLocality;
2061 2061
   }
2062 2062
   public function setAddressRegion($addressRegion)
2063 2063
   {
2064
-    $this->addressRegion = $addressRegion;
2064
+	$this->addressRegion = $addressRegion;
2065 2065
   }
2066 2066
   public function getAddressRegion()
2067 2067
   {
2068
-    return $this->addressRegion;
2068
+	return $this->addressRegion;
2069 2069
   }
2070 2070
   public function setAssociatedMedia($associatedMedia)
2071 2071
   {
2072
-    $this->associatedMedia = $associatedMedia;
2072
+	$this->associatedMedia = $associatedMedia;
2073 2073
   }
2074 2074
   public function getAssociatedMedia()
2075 2075
   {
2076
-    return $this->associatedMedia;
2076
+	return $this->associatedMedia;
2077 2077
   }
2078 2078
   public function setAttendeeCount($attendeeCount)
2079 2079
   {
2080
-    $this->attendeeCount = $attendeeCount;
2080
+	$this->attendeeCount = $attendeeCount;
2081 2081
   }
2082 2082
   public function getAttendeeCount()
2083 2083
   {
2084
-    return $this->attendeeCount;
2084
+	return $this->attendeeCount;
2085 2085
   }
2086 2086
   public function setAttendees($attendees)
2087 2087
   {
2088
-    $this->attendees = $attendees;
2088
+	$this->attendees = $attendees;
2089 2089
   }
2090 2090
   public function getAttendees()
2091 2091
   {
2092
-    return $this->attendees;
2092
+	return $this->attendees;
2093 2093
   }
2094 2094
   public function setAudio(Google_Service_Plus_ItemScope $audio)
2095 2095
   {
2096
-    $this->audio = $audio;
2096
+	$this->audio = $audio;
2097 2097
   }
2098 2098
   public function getAudio()
2099 2099
   {
2100
-    return $this->audio;
2100
+	return $this->audio;
2101 2101
   }
2102 2102
   public function setAuthor($author)
2103 2103
   {
2104
-    $this->author = $author;
2104
+	$this->author = $author;
2105 2105
   }
2106 2106
   public function getAuthor()
2107 2107
   {
2108
-    return $this->author;
2108
+	return $this->author;
2109 2109
   }
2110 2110
   public function setBestRating($bestRating)
2111 2111
   {
2112
-    $this->bestRating = $bestRating;
2112
+	$this->bestRating = $bestRating;
2113 2113
   }
2114 2114
   public function getBestRating()
2115 2115
   {
2116
-    return $this->bestRating;
2116
+	return $this->bestRating;
2117 2117
   }
2118 2118
   public function setBirthDate($birthDate)
2119 2119
   {
2120
-    $this->birthDate = $birthDate;
2120
+	$this->birthDate = $birthDate;
2121 2121
   }
2122 2122
   public function getBirthDate()
2123 2123
   {
2124
-    return $this->birthDate;
2124
+	return $this->birthDate;
2125 2125
   }
2126 2126
   public function setByArtist(Google_Service_Plus_ItemScope $byArtist)
2127 2127
   {
2128
-    $this->byArtist = $byArtist;
2128
+	$this->byArtist = $byArtist;
2129 2129
   }
2130 2130
   public function getByArtist()
2131 2131
   {
2132
-    return $this->byArtist;
2132
+	return $this->byArtist;
2133 2133
   }
2134 2134
   public function setCaption($caption)
2135 2135
   {
2136
-    $this->caption = $caption;
2136
+	$this->caption = $caption;
2137 2137
   }
2138 2138
   public function getCaption()
2139 2139
   {
2140
-    return $this->caption;
2140
+	return $this->caption;
2141 2141
   }
2142 2142
   public function setContentSize($contentSize)
2143 2143
   {
2144
-    $this->contentSize = $contentSize;
2144
+	$this->contentSize = $contentSize;
2145 2145
   }
2146 2146
   public function getContentSize()
2147 2147
   {
2148
-    return $this->contentSize;
2148
+	return $this->contentSize;
2149 2149
   }
2150 2150
   public function setContentUrl($contentUrl)
2151 2151
   {
2152
-    $this->contentUrl = $contentUrl;
2152
+	$this->contentUrl = $contentUrl;
2153 2153
   }
2154 2154
   public function getContentUrl()
2155 2155
   {
2156
-    return $this->contentUrl;
2156
+	return $this->contentUrl;
2157 2157
   }
2158 2158
   public function setContributor($contributor)
2159 2159
   {
2160
-    $this->contributor = $contributor;
2160
+	$this->contributor = $contributor;
2161 2161
   }
2162 2162
   public function getContributor()
2163 2163
   {
2164
-    return $this->contributor;
2164
+	return $this->contributor;
2165 2165
   }
2166 2166
   public function setDateCreated($dateCreated)
2167 2167
   {
2168
-    $this->dateCreated = $dateCreated;
2168
+	$this->dateCreated = $dateCreated;
2169 2169
   }
2170 2170
   public function getDateCreated()
2171 2171
   {
2172
-    return $this->dateCreated;
2172
+	return $this->dateCreated;
2173 2173
   }
2174 2174
   public function setDateModified($dateModified)
2175 2175
   {
2176
-    $this->dateModified = $dateModified;
2176
+	$this->dateModified = $dateModified;
2177 2177
   }
2178 2178
   public function getDateModified()
2179 2179
   {
2180
-    return $this->dateModified;
2180
+	return $this->dateModified;
2181 2181
   }
2182 2182
   public function setDatePublished($datePublished)
2183 2183
   {
2184
-    $this->datePublished = $datePublished;
2184
+	$this->datePublished = $datePublished;
2185 2185
   }
2186 2186
   public function getDatePublished()
2187 2187
   {
2188
-    return $this->datePublished;
2188
+	return $this->datePublished;
2189 2189
   }
2190 2190
   public function setDescription($description)
2191 2191
   {
2192
-    $this->description = $description;
2192
+	$this->description = $description;
2193 2193
   }
2194 2194
   public function getDescription()
2195 2195
   {
2196
-    return $this->description;
2196
+	return $this->description;
2197 2197
   }
2198 2198
   public function setDuration($duration)
2199 2199
   {
2200
-    $this->duration = $duration;
2200
+	$this->duration = $duration;
2201 2201
   }
2202 2202
   public function getDuration()
2203 2203
   {
2204
-    return $this->duration;
2204
+	return $this->duration;
2205 2205
   }
2206 2206
   public function setEmbedUrl($embedUrl)
2207 2207
   {
2208
-    $this->embedUrl = $embedUrl;
2208
+	$this->embedUrl = $embedUrl;
2209 2209
   }
2210 2210
   public function getEmbedUrl()
2211 2211
   {
2212
-    return $this->embedUrl;
2212
+	return $this->embedUrl;
2213 2213
   }
2214 2214
   public function setEndDate($endDate)
2215 2215
   {
2216
-    $this->endDate = $endDate;
2216
+	$this->endDate = $endDate;
2217 2217
   }
2218 2218
   public function getEndDate()
2219 2219
   {
2220
-    return $this->endDate;
2220
+	return $this->endDate;
2221 2221
   }
2222 2222
   public function setFamilyName($familyName)
2223 2223
   {
2224
-    $this->familyName = $familyName;
2224
+	$this->familyName = $familyName;
2225 2225
   }
2226 2226
   public function getFamilyName()
2227 2227
   {
2228
-    return $this->familyName;
2228
+	return $this->familyName;
2229 2229
   }
2230 2230
   public function setGender($gender)
2231 2231
   {
2232
-    $this->gender = $gender;
2232
+	$this->gender = $gender;
2233 2233
   }
2234 2234
   public function getGender()
2235 2235
   {
2236
-    return $this->gender;
2236
+	return $this->gender;
2237 2237
   }
2238 2238
   public function setGeo(Google_Service_Plus_ItemScope $geo)
2239 2239
   {
2240
-    $this->geo = $geo;
2240
+	$this->geo = $geo;
2241 2241
   }
2242 2242
   public function getGeo()
2243 2243
   {
2244
-    return $this->geo;
2244
+	return $this->geo;
2245 2245
   }
2246 2246
   public function setGivenName($givenName)
2247 2247
   {
2248
-    $this->givenName = $givenName;
2248
+	$this->givenName = $givenName;
2249 2249
   }
2250 2250
   public function getGivenName()
2251 2251
   {
2252
-    return $this->givenName;
2252
+	return $this->givenName;
2253 2253
   }
2254 2254
   public function setHeight($height)
2255 2255
   {
2256
-    $this->height = $height;
2256
+	$this->height = $height;
2257 2257
   }
2258 2258
   public function getHeight()
2259 2259
   {
2260
-    return $this->height;
2260
+	return $this->height;
2261 2261
   }
2262 2262
   public function setId($id)
2263 2263
   {
2264
-    $this->id = $id;
2264
+	$this->id = $id;
2265 2265
   }
2266 2266
   public function getId()
2267 2267
   {
2268
-    return $this->id;
2268
+	return $this->id;
2269 2269
   }
2270 2270
   public function setImage($image)
2271 2271
   {
2272
-    $this->image = $image;
2272
+	$this->image = $image;
2273 2273
   }
2274 2274
   public function getImage()
2275 2275
   {
2276
-    return $this->image;
2276
+	return $this->image;
2277 2277
   }
2278 2278
   public function setInAlbum(Google_Service_Plus_ItemScope $inAlbum)
2279 2279
   {
2280
-    $this->inAlbum = $inAlbum;
2280
+	$this->inAlbum = $inAlbum;
2281 2281
   }
2282 2282
   public function getInAlbum()
2283 2283
   {
2284
-    return $this->inAlbum;
2284
+	return $this->inAlbum;
2285 2285
   }
2286 2286
   public function setKind($kind)
2287 2287
   {
2288
-    $this->kind = $kind;
2288
+	$this->kind = $kind;
2289 2289
   }
2290 2290
   public function getKind()
2291 2291
   {
2292
-    return $this->kind;
2292
+	return $this->kind;
2293 2293
   }
2294 2294
   public function setLatitude($latitude)
2295 2295
   {
2296
-    $this->latitude = $latitude;
2296
+	$this->latitude = $latitude;
2297 2297
   }
2298 2298
   public function getLatitude()
2299 2299
   {
2300
-    return $this->latitude;
2300
+	return $this->latitude;
2301 2301
   }
2302 2302
   public function setLocation(Google_Service_Plus_ItemScope $location)
2303 2303
   {
2304
-    $this->location = $location;
2304
+	$this->location = $location;
2305 2305
   }
2306 2306
   public function getLocation()
2307 2307
   {
2308
-    return $this->location;
2308
+	return $this->location;
2309 2309
   }
2310 2310
   public function setLongitude($longitude)
2311 2311
   {
2312
-    $this->longitude = $longitude;
2312
+	$this->longitude = $longitude;
2313 2313
   }
2314 2314
   public function getLongitude()
2315 2315
   {
2316
-    return $this->longitude;
2316
+	return $this->longitude;
2317 2317
   }
2318 2318
   public function setName($name)
2319 2319
   {
2320
-    $this->name = $name;
2320
+	$this->name = $name;
2321 2321
   }
2322 2322
   public function getName()
2323 2323
   {
2324
-    return $this->name;
2324
+	return $this->name;
2325 2325
   }
2326 2326
   public function setPartOfTVSeries(Google_Service_Plus_ItemScope $partOfTVSeries)
2327 2327
   {
2328
-    $this->partOfTVSeries = $partOfTVSeries;
2328
+	$this->partOfTVSeries = $partOfTVSeries;
2329 2329
   }
2330 2330
   public function getPartOfTVSeries()
2331 2331
   {
2332
-    return $this->partOfTVSeries;
2332
+	return $this->partOfTVSeries;
2333 2333
   }
2334 2334
   public function setPerformers($performers)
2335 2335
   {
2336
-    $this->performers = $performers;
2336
+	$this->performers = $performers;
2337 2337
   }
2338 2338
   public function getPerformers()
2339 2339
   {
2340
-    return $this->performers;
2340
+	return $this->performers;
2341 2341
   }
2342 2342
   public function setPlayerType($playerType)
2343 2343
   {
2344
-    $this->playerType = $playerType;
2344
+	$this->playerType = $playerType;
2345 2345
   }
2346 2346
   public function getPlayerType()
2347 2347
   {
2348
-    return $this->playerType;
2348
+	return $this->playerType;
2349 2349
   }
2350 2350
   public function setPostOfficeBoxNumber($postOfficeBoxNumber)
2351 2351
   {
2352
-    $this->postOfficeBoxNumber = $postOfficeBoxNumber;
2352
+	$this->postOfficeBoxNumber = $postOfficeBoxNumber;
2353 2353
   }
2354 2354
   public function getPostOfficeBoxNumber()
2355 2355
   {
2356
-    return $this->postOfficeBoxNumber;
2356
+	return $this->postOfficeBoxNumber;
2357 2357
   }
2358 2358
   public function setPostalCode($postalCode)
2359 2359
   {
2360
-    $this->postalCode = $postalCode;
2360
+	$this->postalCode = $postalCode;
2361 2361
   }
2362 2362
   public function getPostalCode()
2363 2363
   {
2364
-    return $this->postalCode;
2364
+	return $this->postalCode;
2365 2365
   }
2366 2366
   public function setRatingValue($ratingValue)
2367 2367
   {
2368
-    $this->ratingValue = $ratingValue;
2368
+	$this->ratingValue = $ratingValue;
2369 2369
   }
2370 2370
   public function getRatingValue()
2371 2371
   {
2372
-    return $this->ratingValue;
2372
+	return $this->ratingValue;
2373 2373
   }
2374 2374
   public function setReviewRating(Google_Service_Plus_ItemScope $reviewRating)
2375 2375
   {
2376
-    $this->reviewRating = $reviewRating;
2376
+	$this->reviewRating = $reviewRating;
2377 2377
   }
2378 2378
   public function getReviewRating()
2379 2379
   {
2380
-    return $this->reviewRating;
2380
+	return $this->reviewRating;
2381 2381
   }
2382 2382
   public function setStartDate($startDate)
2383 2383
   {
2384
-    $this->startDate = $startDate;
2384
+	$this->startDate = $startDate;
2385 2385
   }
2386 2386
   public function getStartDate()
2387 2387
   {
2388
-    return $this->startDate;
2388
+	return $this->startDate;
2389 2389
   }
2390 2390
   public function setStreetAddress($streetAddress)
2391 2391
   {
2392
-    $this->streetAddress = $streetAddress;
2392
+	$this->streetAddress = $streetAddress;
2393 2393
   }
2394 2394
   public function getStreetAddress()
2395 2395
   {
2396
-    return $this->streetAddress;
2396
+	return $this->streetAddress;
2397 2397
   }
2398 2398
   public function setText($text)
2399 2399
   {
2400
-    $this->text = $text;
2400
+	$this->text = $text;
2401 2401
   }
2402 2402
   public function getText()
2403 2403
   {
2404
-    return $this->text;
2404
+	return $this->text;
2405 2405
   }
2406 2406
   public function setThumbnail(Google_Service_Plus_ItemScope $thumbnail)
2407 2407
   {
2408
-    $this->thumbnail = $thumbnail;
2408
+	$this->thumbnail = $thumbnail;
2409 2409
   }
2410 2410
   public function getThumbnail()
2411 2411
   {
2412
-    return $this->thumbnail;
2412
+	return $this->thumbnail;
2413 2413
   }
2414 2414
   public function setThumbnailUrl($thumbnailUrl)
2415 2415
   {
2416
-    $this->thumbnailUrl = $thumbnailUrl;
2416
+	$this->thumbnailUrl = $thumbnailUrl;
2417 2417
   }
2418 2418
   public function getThumbnailUrl()
2419 2419
   {
2420
-    return $this->thumbnailUrl;
2420
+	return $this->thumbnailUrl;
2421 2421
   }
2422 2422
   public function setTickerSymbol($tickerSymbol)
2423 2423
   {
2424
-    $this->tickerSymbol = $tickerSymbol;
2424
+	$this->tickerSymbol = $tickerSymbol;
2425 2425
   }
2426 2426
   public function getTickerSymbol()
2427 2427
   {
2428
-    return $this->tickerSymbol;
2428
+	return $this->tickerSymbol;
2429 2429
   }
2430 2430
   public function setType($type)
2431 2431
   {
2432
-    $this->type = $type;
2432
+	$this->type = $type;
2433 2433
   }
2434 2434
   public function getType()
2435 2435
   {
2436
-    return $this->type;
2436
+	return $this->type;
2437 2437
   }
2438 2438
   public function setUrl($url)
2439 2439
   {
2440
-    $this->url = $url;
2440
+	$this->url = $url;
2441 2441
   }
2442 2442
   public function getUrl()
2443 2443
   {
2444
-    return $this->url;
2444
+	return $this->url;
2445 2445
   }
2446 2446
   public function setWidth($width)
2447 2447
   {
2448
-    $this->width = $width;
2448
+	$this->width = $width;
2449 2449
   }
2450 2450
   public function getWidth()
2451 2451
   {
2452
-    return $this->width;
2452
+	return $this->width;
2453 2453
   }
2454 2454
   public function setWorstRating($worstRating)
2455 2455
   {
2456
-    $this->worstRating = $worstRating;
2456
+	$this->worstRating = $worstRating;
2457 2457
   }
2458 2458
   public function getWorstRating()
2459 2459
   {
2460
-    return $this->worstRating;
2460
+	return $this->worstRating;
2461 2461
   }
2462 2462
 }
2463 2463
 
@@ -2479,59 +2479,59 @@  discard block
 block discarded – undo
2479 2479
 
2480 2480
   public function setId($id)
2481 2481
   {
2482
-    $this->id = $id;
2482
+	$this->id = $id;
2483 2483
   }
2484 2484
   public function getId()
2485 2485
   {
2486
-    return $this->id;
2486
+	return $this->id;
2487 2487
   }
2488 2488
   public function setKind($kind)
2489 2489
   {
2490
-    $this->kind = $kind;
2490
+	$this->kind = $kind;
2491 2491
   }
2492 2492
   public function getKind()
2493 2493
   {
2494
-    return $this->kind;
2494
+	return $this->kind;
2495 2495
   }
2496 2496
   public function setObject(Google_Service_Plus_ItemScope $object)
2497 2497
   {
2498
-    $this->object = $object;
2498
+	$this->object = $object;
2499 2499
   }
2500 2500
   public function getObject()
2501 2501
   {
2502
-    return $this->object;
2502
+	return $this->object;
2503 2503
   }
2504 2504
   public function setResult(Google_Service_Plus_ItemScope $result)
2505 2505
   {
2506
-    $this->result = $result;
2506
+	$this->result = $result;
2507 2507
   }
2508 2508
   public function getResult()
2509 2509
   {
2510
-    return $this->result;
2510
+	return $this->result;
2511 2511
   }
2512 2512
   public function setStartDate($startDate)
2513 2513
   {
2514
-    $this->startDate = $startDate;
2514
+	$this->startDate = $startDate;
2515 2515
   }
2516 2516
   public function getStartDate()
2517 2517
   {
2518
-    return $this->startDate;
2518
+	return $this->startDate;
2519 2519
   }
2520 2520
   public function setTarget(Google_Service_Plus_ItemScope $target)
2521 2521
   {
2522
-    $this->target = $target;
2522
+	$this->target = $target;
2523 2523
   }
2524 2524
   public function getTarget()
2525 2525
   {
2526
-    return $this->target;
2526
+	return $this->target;
2527 2527
   }
2528 2528
   public function setType($type)
2529 2529
   {
2530
-    $this->type = $type;
2530
+	$this->type = $type;
2531 2531
   }
2532 2532
   public function getType()
2533 2533
   {
2534
-    return $this->type;
2534
+	return $this->type;
2535 2535
   }
2536 2536
 }
2537 2537
 
@@ -2553,67 +2553,67 @@  discard block
 block discarded – undo
2553 2553
 
2554 2554
   public function setEtag($etag)
2555 2555
   {
2556
-    $this->etag = $etag;
2556
+	$this->etag = $etag;
2557 2557
   }
2558 2558
   public function getEtag()
2559 2559
   {
2560
-    return $this->etag;
2560
+	return $this->etag;
2561 2561
   }
2562 2562
   public function setItems($items)
2563 2563
   {
2564
-    $this->items = $items;
2564
+	$this->items = $items;
2565 2565
   }
2566 2566
   public function getItems()
2567 2567
   {
2568
-    return $this->items;
2568
+	return $this->items;
2569 2569
   }
2570 2570
   public function setKind($kind)
2571 2571
   {
2572
-    $this->kind = $kind;
2572
+	$this->kind = $kind;
2573 2573
   }
2574 2574
   public function getKind()
2575 2575
   {
2576
-    return $this->kind;
2576
+	return $this->kind;
2577 2577
   }
2578 2578
   public function setNextLink($nextLink)
2579 2579
   {
2580
-    $this->nextLink = $nextLink;
2580
+	$this->nextLink = $nextLink;
2581 2581
   }
2582 2582
   public function getNextLink()
2583 2583
   {
2584
-    return $this->nextLink;
2584
+	return $this->nextLink;
2585 2585
   }
2586 2586
   public function setNextPageToken($nextPageToken)
2587 2587
   {
2588
-    $this->nextPageToken = $nextPageToken;
2588
+	$this->nextPageToken = $nextPageToken;
2589 2589
   }
2590 2590
   public function getNextPageToken()
2591 2591
   {
2592
-    return $this->nextPageToken;
2592
+	return $this->nextPageToken;
2593 2593
   }
2594 2594
   public function setSelfLink($selfLink)
2595 2595
   {
2596
-    $this->selfLink = $selfLink;
2596
+	$this->selfLink = $selfLink;
2597 2597
   }
2598 2598
   public function getSelfLink()
2599 2599
   {
2600
-    return $this->selfLink;
2600
+	return $this->selfLink;
2601 2601
   }
2602 2602
   public function setTitle($title)
2603 2603
   {
2604
-    $this->title = $title;
2604
+	$this->title = $title;
2605 2605
   }
2606 2606
   public function getTitle()
2607 2607
   {
2608
-    return $this->title;
2608
+	return $this->title;
2609 2609
   }
2610 2610
   public function setUpdated($updated)
2611 2611
   {
2612
-    $this->updated = $updated;
2612
+	$this->updated = $updated;
2613 2613
   }
2614 2614
   public function getUpdated()
2615 2615
   {
2616
-    return $this->updated;
2616
+	return $this->updated;
2617 2617
   }
2618 2618
 }
2619 2619
 
@@ -2634,59 +2634,59 @@  discard block
 block discarded – undo
2634 2634
 
2635 2635
   public function setEtag($etag)
2636 2636
   {
2637
-    $this->etag = $etag;
2637
+	$this->etag = $etag;
2638 2638
   }
2639 2639
   public function getEtag()
2640 2640
   {
2641
-    return $this->etag;
2641
+	return $this->etag;
2642 2642
   }
2643 2643
   public function setItems($items)
2644 2644
   {
2645
-    $this->items = $items;
2645
+	$this->items = $items;
2646 2646
   }
2647 2647
   public function getItems()
2648 2648
   {
2649
-    return $this->items;
2649
+	return $this->items;
2650 2650
   }
2651 2651
   public function setKind($kind)
2652 2652
   {
2653
-    $this->kind = $kind;
2653
+	$this->kind = $kind;
2654 2654
   }
2655 2655
   public function getKind()
2656 2656
   {
2657
-    return $this->kind;
2657
+	return $this->kind;
2658 2658
   }
2659 2659
   public function setNextPageToken($nextPageToken)
2660 2660
   {
2661
-    $this->nextPageToken = $nextPageToken;
2661
+	$this->nextPageToken = $nextPageToken;
2662 2662
   }
2663 2663
   public function getNextPageToken()
2664 2664
   {
2665
-    return $this->nextPageToken;
2665
+	return $this->nextPageToken;
2666 2666
   }
2667 2667
   public function setSelfLink($selfLink)
2668 2668
   {
2669
-    $this->selfLink = $selfLink;
2669
+	$this->selfLink = $selfLink;
2670 2670
   }
2671 2671
   public function getSelfLink()
2672 2672
   {
2673
-    return $this->selfLink;
2673
+	return $this->selfLink;
2674 2674
   }
2675 2675
   public function setTitle($title)
2676 2676
   {
2677
-    $this->title = $title;
2677
+	$this->title = $title;
2678 2678
   }
2679 2679
   public function getTitle()
2680 2680
   {
2681
-    return $this->title;
2681
+	return $this->title;
2682 2682
   }
2683 2683
   public function setTotalItems($totalItems)
2684 2684
   {
2685
-    $this->totalItems = $totalItems;
2685
+	$this->totalItems = $totalItems;
2686 2686
   }
2687 2687
   public function getTotalItems()
2688 2688
   {
2689
-    return $this->totalItems;
2689
+	return $this->totalItems;
2690 2690
   }
2691 2691
 }
2692 2692
 
@@ -2737,243 +2737,243 @@  discard block
 block discarded – undo
2737 2737
 
2738 2738
   public function setAboutMe($aboutMe)
2739 2739
   {
2740
-    $this->aboutMe = $aboutMe;
2740
+	$this->aboutMe = $aboutMe;
2741 2741
   }
2742 2742
   public function getAboutMe()
2743 2743
   {
2744
-    return $this->aboutMe;
2744
+	return $this->aboutMe;
2745 2745
   }
2746 2746
   public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
2747 2747
   {
2748
-    $this->ageRange = $ageRange;
2748
+	$this->ageRange = $ageRange;
2749 2749
   }
2750 2750
   public function getAgeRange()
2751 2751
   {
2752
-    return $this->ageRange;
2752
+	return $this->ageRange;
2753 2753
   }
2754 2754
   public function setBirthday($birthday)
2755 2755
   {
2756
-    $this->birthday = $birthday;
2756
+	$this->birthday = $birthday;
2757 2757
   }
2758 2758
   public function getBirthday()
2759 2759
   {
2760
-    return $this->birthday;
2760
+	return $this->birthday;
2761 2761
   }
2762 2762
   public function setBraggingRights($braggingRights)
2763 2763
   {
2764
-    $this->braggingRights = $braggingRights;
2764
+	$this->braggingRights = $braggingRights;
2765 2765
   }
2766 2766
   public function getBraggingRights()
2767 2767
   {
2768
-    return $this->braggingRights;
2768
+	return $this->braggingRights;
2769 2769
   }
2770 2770
   public function setCircledByCount($circledByCount)
2771 2771
   {
2772
-    $this->circledByCount = $circledByCount;
2772
+	$this->circledByCount = $circledByCount;
2773 2773
   }
2774 2774
   public function getCircledByCount()
2775 2775
   {
2776
-    return $this->circledByCount;
2776
+	return $this->circledByCount;
2777 2777
   }
2778 2778
   public function setCover(Google_Service_Plus_PersonCover $cover)
2779 2779
   {
2780
-    $this->cover = $cover;
2780
+	$this->cover = $cover;
2781 2781
   }
2782 2782
   public function getCover()
2783 2783
   {
2784
-    return $this->cover;
2784
+	return $this->cover;
2785 2785
   }
2786 2786
   public function setCurrentLocation($currentLocation)
2787 2787
   {
2788
-    $this->currentLocation = $currentLocation;
2788
+	$this->currentLocation = $currentLocation;
2789 2789
   }
2790 2790
   public function getCurrentLocation()
2791 2791
   {
2792
-    return $this->currentLocation;
2792
+	return $this->currentLocation;
2793 2793
   }
2794 2794
   public function setDisplayName($displayName)
2795 2795
   {
2796
-    $this->displayName = $displayName;
2796
+	$this->displayName = $displayName;
2797 2797
   }
2798 2798
   public function getDisplayName()
2799 2799
   {
2800
-    return $this->displayName;
2800
+	return $this->displayName;
2801 2801
   }
2802 2802
   public function setDomain($domain)
2803 2803
   {
2804
-    $this->domain = $domain;
2804
+	$this->domain = $domain;
2805 2805
   }
2806 2806
   public function getDomain()
2807 2807
   {
2808
-    return $this->domain;
2808
+	return $this->domain;
2809 2809
   }
2810 2810
   public function setEmails($emails)
2811 2811
   {
2812
-    $this->emails = $emails;
2812
+	$this->emails = $emails;
2813 2813
   }
2814 2814
   public function getEmails()
2815 2815
   {
2816
-    return $this->emails;
2816
+	return $this->emails;
2817 2817
   }
2818 2818
   public function setEtag($etag)
2819 2819
   {
2820
-    $this->etag = $etag;
2820
+	$this->etag = $etag;
2821 2821
   }
2822 2822
   public function getEtag()
2823 2823
   {
2824
-    return $this->etag;
2824
+	return $this->etag;
2825 2825
   }
2826 2826
   public function setGender($gender)
2827 2827
   {
2828
-    $this->gender = $gender;
2828
+	$this->gender = $gender;
2829 2829
   }
2830 2830
   public function getGender()
2831 2831
   {
2832
-    return $this->gender;
2832
+	return $this->gender;
2833 2833
   }
2834 2834
   public function setId($id)
2835 2835
   {
2836
-    $this->id = $id;
2836
+	$this->id = $id;
2837 2837
   }
2838 2838
   public function getId()
2839 2839
   {
2840
-    return $this->id;
2840
+	return $this->id;
2841 2841
   }
2842 2842
   public function setImage(Google_Service_Plus_PersonImage $image)
2843 2843
   {
2844
-    $this->image = $image;
2844
+	$this->image = $image;
2845 2845
   }
2846 2846
   public function getImage()
2847 2847
   {
2848
-    return $this->image;
2848
+	return $this->image;
2849 2849
   }
2850 2850
   public function setIsPlusUser($isPlusUser)
2851 2851
   {
2852
-    $this->isPlusUser = $isPlusUser;
2852
+	$this->isPlusUser = $isPlusUser;
2853 2853
   }
2854 2854
   public function getIsPlusUser()
2855 2855
   {
2856
-    return $this->isPlusUser;
2856
+	return $this->isPlusUser;
2857 2857
   }
2858 2858
   public function setKind($kind)
2859 2859
   {
2860
-    $this->kind = $kind;
2860
+	$this->kind = $kind;
2861 2861
   }
2862 2862
   public function getKind()
2863 2863
   {
2864
-    return $this->kind;
2864
+	return $this->kind;
2865 2865
   }
2866 2866
   public function setLanguage($language)
2867 2867
   {
2868
-    $this->language = $language;
2868
+	$this->language = $language;
2869 2869
   }
2870 2870
   public function getLanguage()
2871 2871
   {
2872
-    return $this->language;
2872
+	return $this->language;
2873 2873
   }
2874 2874
   public function setName(Google_Service_Plus_PersonName $name)
2875 2875
   {
2876
-    $this->name = $name;
2876
+	$this->name = $name;
2877 2877
   }
2878 2878
   public function getName()
2879 2879
   {
2880
-    return $this->name;
2880
+	return $this->name;
2881 2881
   }
2882 2882
   public function setNickname($nickname)
2883 2883
   {
2884
-    $this->nickname = $nickname;
2884
+	$this->nickname = $nickname;
2885 2885
   }
2886 2886
   public function getNickname()
2887 2887
   {
2888
-    return $this->nickname;
2888
+	return $this->nickname;
2889 2889
   }
2890 2890
   public function setObjectType($objectType)
2891 2891
   {
2892
-    $this->objectType = $objectType;
2892
+	$this->objectType = $objectType;
2893 2893
   }
2894 2894
   public function getObjectType()
2895 2895
   {
2896
-    return $this->objectType;
2896
+	return $this->objectType;
2897 2897
   }
2898 2898
   public function setOccupation($occupation)
2899 2899
   {
2900
-    $this->occupation = $occupation;
2900
+	$this->occupation = $occupation;
2901 2901
   }
2902 2902
   public function getOccupation()
2903 2903
   {
2904
-    return $this->occupation;
2904
+	return $this->occupation;
2905 2905
   }
2906 2906
   public function setOrganizations($organizations)
2907 2907
   {
2908
-    $this->organizations = $organizations;
2908
+	$this->organizations = $organizations;
2909 2909
   }
2910 2910
   public function getOrganizations()
2911 2911
   {
2912
-    return $this->organizations;
2912
+	return $this->organizations;
2913 2913
   }
2914 2914
   public function setPlacesLived($placesLived)
2915 2915
   {
2916
-    $this->placesLived = $placesLived;
2916
+	$this->placesLived = $placesLived;
2917 2917
   }
2918 2918
   public function getPlacesLived()
2919 2919
   {
2920
-    return $this->placesLived;
2920
+	return $this->placesLived;
2921 2921
   }
2922 2922
   public function setPlusOneCount($plusOneCount)
2923 2923
   {
2924
-    $this->plusOneCount = $plusOneCount;
2924
+	$this->plusOneCount = $plusOneCount;
2925 2925
   }
2926 2926
   public function getPlusOneCount()
2927 2927
   {
2928
-    return $this->plusOneCount;
2928
+	return $this->plusOneCount;
2929 2929
   }
2930 2930
   public function setRelationshipStatus($relationshipStatus)
2931 2931
   {
2932
-    $this->relationshipStatus = $relationshipStatus;
2932
+	$this->relationshipStatus = $relationshipStatus;
2933 2933
   }
2934 2934
   public function getRelationshipStatus()
2935 2935
   {
2936
-    return $this->relationshipStatus;
2936
+	return $this->relationshipStatus;
2937 2937
   }
2938 2938
   public function setSkills($skills)
2939 2939
   {
2940
-    $this->skills = $skills;
2940
+	$this->skills = $skills;
2941 2941
   }
2942 2942
   public function getSkills()
2943 2943
   {
2944
-    return $this->skills;
2944
+	return $this->skills;
2945 2945
   }
2946 2946
   public function setTagline($tagline)
2947 2947
   {
2948
-    $this->tagline = $tagline;
2948
+	$this->tagline = $tagline;
2949 2949
   }
2950 2950
   public function getTagline()
2951 2951
   {
2952
-    return $this->tagline;
2952
+	return $this->tagline;
2953 2953
   }
2954 2954
   public function setUrl($url)
2955 2955
   {
2956
-    $this->url = $url;
2956
+	$this->url = $url;
2957 2957
   }
2958 2958
   public function getUrl()
2959 2959
   {
2960
-    return $this->url;
2960
+	return $this->url;
2961 2961
   }
2962 2962
   public function setUrls($urls)
2963 2963
   {
2964
-    $this->urls = $urls;
2964
+	$this->urls = $urls;
2965 2965
   }
2966 2966
   public function getUrls()
2967 2967
   {
2968
-    return $this->urls;
2968
+	return $this->urls;
2969 2969
   }
2970 2970
   public function setVerified($verified)
2971 2971
   {
2972
-    $this->verified = $verified;
2972
+	$this->verified = $verified;
2973 2973
   }
2974 2974
   public function getVerified()
2975 2975
   {
2976
-    return $this->verified;
2976
+	return $this->verified;
2977 2977
   }
2978 2978
 }
2979 2979
 
@@ -2987,19 +2987,19 @@  discard block
 block discarded – undo
2987 2987
 
2988 2988
   public function setMax($max)
2989 2989
   {
2990
-    $this->max = $max;
2990
+	$this->max = $max;
2991 2991
   }
2992 2992
   public function getMax()
2993 2993
   {
2994
-    return $this->max;
2994
+	return $this->max;
2995 2995
   }
2996 2996
   public function setMin($min)
2997 2997
   {
2998
-    $this->min = $min;
2998
+	$this->min = $min;
2999 2999
   }
3000 3000
   public function getMin()
3001 3001
   {
3002
-    return $this->min;
3002
+	return $this->min;
3003 3003
   }
3004 3004
 }
3005 3005
 
@@ -3016,27 +3016,27 @@  discard block
 block discarded – undo
3016 3016
 
3017 3017
   public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
3018 3018
   {
3019
-    $this->coverInfo = $coverInfo;
3019
+	$this->coverInfo = $coverInfo;
3020 3020
   }
3021 3021
   public function getCoverInfo()
3022 3022
   {
3023
-    return $this->coverInfo;
3023
+	return $this->coverInfo;
3024 3024
   }
3025 3025
   public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
3026 3026
   {
3027
-    $this->coverPhoto = $coverPhoto;
3027
+	$this->coverPhoto = $coverPhoto;
3028 3028
   }
3029 3029
   public function getCoverPhoto()
3030 3030
   {
3031
-    return $this->coverPhoto;
3031
+	return $this->coverPhoto;
3032 3032
   }
3033 3033
   public function setLayout($layout)
3034 3034
   {
3035
-    $this->layout = $layout;
3035
+	$this->layout = $layout;
3036 3036
   }
3037 3037
   public function getLayout()
3038 3038
   {
3039
-    return $this->layout;
3039
+	return $this->layout;
3040 3040
   }
3041 3041
 }
3042 3042
 
@@ -3050,19 +3050,19 @@  discard block
 block discarded – undo
3050 3050
 
3051 3051
   public function setLeftImageOffset($leftImageOffset)
3052 3052
   {
3053
-    $this->leftImageOffset = $leftImageOffset;
3053
+	$this->leftImageOffset = $leftImageOffset;
3054 3054
   }
3055 3055
   public function getLeftImageOffset()
3056 3056
   {
3057
-    return $this->leftImageOffset;
3057
+	return $this->leftImageOffset;
3058 3058
   }
3059 3059
   public function setTopImageOffset($topImageOffset)
3060 3060
   {
3061
-    $this->topImageOffset = $topImageOffset;
3061
+	$this->topImageOffset = $topImageOffset;
3062 3062
   }
3063 3063
   public function getTopImageOffset()
3064 3064
   {
3065
-    return $this->topImageOffset;
3065
+	return $this->topImageOffset;
3066 3066
   }
3067 3067
 }
3068 3068
 
@@ -3077,27 +3077,27 @@  discard block
 block discarded – undo
3077 3077
 
3078 3078
   public function setHeight($height)
3079 3079
   {
3080
-    $this->height = $height;
3080
+	$this->height = $height;
3081 3081
   }
3082 3082
   public function getHeight()
3083 3083
   {
3084
-    return $this->height;
3084
+	return $this->height;
3085 3085
   }
3086 3086
   public function setUrl($url)
3087 3087
   {
3088
-    $this->url = $url;
3088
+	$this->url = $url;
3089 3089
   }
3090 3090
   public function getUrl()
3091 3091
   {
3092
-    return $this->url;
3092
+	return $this->url;
3093 3093
   }
3094 3094
   public function setWidth($width)
3095 3095
   {
3096
-    $this->width = $width;
3096
+	$this->width = $width;
3097 3097
   }
3098 3098
   public function getWidth()
3099 3099
   {
3100
-    return $this->width;
3100
+	return $this->width;
3101 3101
   }
3102 3102
 }
3103 3103
 
@@ -3111,19 +3111,19 @@  discard block
 block discarded – undo
3111 3111
 
3112 3112
   public function setType($type)
3113 3113
   {
3114
-    $this->type = $type;
3114
+	$this->type = $type;
3115 3115
   }
3116 3116
   public function getType()
3117 3117
   {
3118
-    return $this->type;
3118
+	return $this->type;
3119 3119
   }
3120 3120
   public function setValue($value)
3121 3121
   {
3122
-    $this->value = $value;
3122
+	$this->value = $value;
3123 3123
   }
3124 3124
   public function getValue()
3125 3125
   {
3126
-    return $this->value;
3126
+	return $this->value;
3127 3127
   }
3128 3128
 }
3129 3129
 
@@ -3137,19 +3137,19 @@  discard block
 block discarded – undo
3137 3137
 
3138 3138
   public function setIsDefault($isDefault)
3139 3139
   {
3140
-    $this->isDefault = $isDefault;
3140
+	$this->isDefault = $isDefault;
3141 3141
   }
3142 3142
   public function getIsDefault()
3143 3143
   {
3144
-    return $this->isDefault;
3144
+	return $this->isDefault;
3145 3145
   }
3146 3146
   public function setUrl($url)
3147 3147
   {
3148
-    $this->url = $url;
3148
+	$this->url = $url;
3149 3149
   }
3150 3150
   public function getUrl()
3151 3151
   {
3152
-    return $this->url;
3152
+	return $this->url;
3153 3153
   }
3154 3154
 }
3155 3155
 
@@ -3167,51 +3167,51 @@  discard block
 block discarded – undo
3167 3167
 
3168 3168
   public function setFamilyName($familyName)
3169 3169
   {
3170
-    $this->familyName = $familyName;
3170
+	$this->familyName = $familyName;
3171 3171
   }
3172 3172
   public function getFamilyName()
3173 3173
   {
3174
-    return $this->familyName;
3174
+	return $this->familyName;
3175 3175
   }
3176 3176
   public function setFormatted($formatted)
3177 3177
   {
3178
-    $this->formatted = $formatted;
3178
+	$this->formatted = $formatted;
3179 3179
   }
3180 3180
   public function getFormatted()
3181 3181
   {
3182
-    return $this->formatted;
3182
+	return $this->formatted;
3183 3183
   }
3184 3184
   public function setGivenName($givenName)
3185 3185
   {
3186
-    $this->givenName = $givenName;
3186
+	$this->givenName = $givenName;
3187 3187
   }
3188 3188
   public function getGivenName()
3189 3189
   {
3190
-    return $this->givenName;
3190
+	return $this->givenName;
3191 3191
   }
3192 3192
   public function setHonorificPrefix($honorificPrefix)
3193 3193
   {
3194
-    $this->honorificPrefix = $honorificPrefix;
3194
+	$this->honorificPrefix = $honorificPrefix;
3195 3195
   }
3196 3196
   public function getHonorificPrefix()
3197 3197
   {
3198
-    return $this->honorificPrefix;
3198
+	return $this->honorificPrefix;
3199 3199
   }
3200 3200
   public function setHonorificSuffix($honorificSuffix)
3201 3201
   {
3202
-    $this->honorificSuffix = $honorificSuffix;
3202
+	$this->honorificSuffix = $honorificSuffix;
3203 3203
   }
3204 3204
   public function getHonorificSuffix()
3205 3205
   {
3206
-    return $this->honorificSuffix;
3206
+	return $this->honorificSuffix;
3207 3207
   }
3208 3208
   public function setMiddleName($middleName)
3209 3209
   {
3210
-    $this->middleName = $middleName;
3210
+	$this->middleName = $middleName;
3211 3211
   }
3212 3212
   public function getMiddleName()
3213 3213
   {
3214
-    return $this->middleName;
3214
+	return $this->middleName;
3215 3215
   }
3216 3216
 }
3217 3217
 
@@ -3232,75 +3232,75 @@  discard block
 block discarded – undo
3232 3232
 
3233 3233
   public function setDepartment($department)
3234 3234
   {
3235
-    $this->department = $department;
3235
+	$this->department = $department;
3236 3236
   }
3237 3237
   public function getDepartment()
3238 3238
   {
3239
-    return $this->department;
3239
+	return $this->department;
3240 3240
   }
3241 3241
   public function setDescription($description)
3242 3242
   {
3243
-    $this->description = $description;
3243
+	$this->description = $description;
3244 3244
   }
3245 3245
   public function getDescription()
3246 3246
   {
3247
-    return $this->description;
3247
+	return $this->description;
3248 3248
   }
3249 3249
   public function setEndDate($endDate)
3250 3250
   {
3251
-    $this->endDate = $endDate;
3251
+	$this->endDate = $endDate;
3252 3252
   }
3253 3253
   public function getEndDate()
3254 3254
   {
3255
-    return $this->endDate;
3255
+	return $this->endDate;
3256 3256
   }
3257 3257
   public function setLocation($location)
3258 3258
   {
3259
-    $this->location = $location;
3259
+	$this->location = $location;
3260 3260
   }
3261 3261
   public function getLocation()
3262 3262
   {
3263
-    return $this->location;
3263
+	return $this->location;
3264 3264
   }
3265 3265
   public function setName($name)
3266 3266
   {
3267
-    $this->name = $name;
3267
+	$this->name = $name;
3268 3268
   }
3269 3269
   public function getName()
3270 3270
   {
3271
-    return $this->name;
3271
+	return $this->name;
3272 3272
   }
3273 3273
   public function setPrimary($primary)
3274 3274
   {
3275
-    $this->primary = $primary;
3275
+	$this->primary = $primary;
3276 3276
   }
3277 3277
   public function getPrimary()
3278 3278
   {
3279
-    return $this->primary;
3279
+	return $this->primary;
3280 3280
   }
3281 3281
   public function setStartDate($startDate)
3282 3282
   {
3283
-    $this->startDate = $startDate;
3283
+	$this->startDate = $startDate;
3284 3284
   }
3285 3285
   public function getStartDate()
3286 3286
   {
3287
-    return $this->startDate;
3287
+	return $this->startDate;
3288 3288
   }
3289 3289
   public function setTitle($title)
3290 3290
   {
3291
-    $this->title = $title;
3291
+	$this->title = $title;
3292 3292
   }
3293 3293
   public function getTitle()
3294 3294
   {
3295
-    return $this->title;
3295
+	return $this->title;
3296 3296
   }
3297 3297
   public function setType($type)
3298 3298
   {
3299
-    $this->type = $type;
3299
+	$this->type = $type;
3300 3300
   }
3301 3301
   public function getType()
3302 3302
   {
3303
-    return $this->type;
3303
+	return $this->type;
3304 3304
   }
3305 3305
 }
3306 3306
 
@@ -3314,19 +3314,19 @@  discard block
 block discarded – undo
3314 3314
 
3315 3315
   public function setPrimary($primary)
3316 3316
   {
3317
-    $this->primary = $primary;
3317
+	$this->primary = $primary;
3318 3318
   }
3319 3319
   public function getPrimary()
3320 3320
   {
3321
-    return $this->primary;
3321
+	return $this->primary;
3322 3322
   }
3323 3323
   public function setValue($value)
3324 3324
   {
3325
-    $this->value = $value;
3325
+	$this->value = $value;
3326 3326
   }
3327 3327
   public function getValue()
3328 3328
   {
3329
-    return $this->value;
3329
+	return $this->value;
3330 3330
   }
3331 3331
 }
3332 3332
 
@@ -3341,27 +3341,27 @@  discard block
 block discarded – undo
3341 3341
 
3342 3342
   public function setLabel($label)
3343 3343
   {
3344
-    $this->label = $label;
3344
+	$this->label = $label;
3345 3345
   }
3346 3346
   public function getLabel()
3347 3347
   {
3348
-    return $this->label;
3348
+	return $this->label;
3349 3349
   }
3350 3350
   public function setType($type)
3351 3351
   {
3352
-    $this->type = $type;
3352
+	$this->type = $type;
3353 3353
   }
3354 3354
   public function getType()
3355 3355
   {
3356
-    return $this->type;
3356
+	return $this->type;
3357 3357
   }
3358 3358
   public function setValue($value)
3359 3359
   {
3360
-    $this->value = $value;
3360
+	$this->value = $value;
3361 3361
   }
3362 3362
   public function getValue()
3363 3363
   {
3364
-    return $this->value;
3364
+	return $this->value;
3365 3365
   }
3366 3366
 }
3367 3367
 
@@ -3380,43 +3380,43 @@  discard block
 block discarded – undo
3380 3380
 
3381 3381
   public function setAddress(Google_Service_Plus_PlaceAddress $address)
3382 3382
   {
3383
-    $this->address = $address;
3383
+	$this->address = $address;
3384 3384
   }
3385 3385
   public function getAddress()
3386 3386
   {
3387
-    return $this->address;
3387
+	return $this->address;
3388 3388
   }
3389 3389
   public function setDisplayName($displayName)
3390 3390
   {
3391
-    $this->displayName = $displayName;
3391
+	$this->displayName = $displayName;
3392 3392
   }
3393 3393
   public function getDisplayName()
3394 3394
   {
3395
-    return $this->displayName;
3395
+	return $this->displayName;
3396 3396
   }
3397 3397
   public function setId($id)
3398 3398
   {
3399
-    $this->id = $id;
3399
+	$this->id = $id;
3400 3400
   }
3401 3401
   public function getId()
3402 3402
   {
3403
-    return $this->id;
3403
+	return $this->id;
3404 3404
   }
3405 3405
   public function setKind($kind)
3406 3406
   {
3407
-    $this->kind = $kind;
3407
+	$this->kind = $kind;
3408 3408
   }
3409 3409
   public function getKind()
3410 3410
   {
3411
-    return $this->kind;
3411
+	return $this->kind;
3412 3412
   }
3413 3413
   public function setPosition(Google_Service_Plus_PlacePosition $position)
3414 3414
   {
3415
-    $this->position = $position;
3415
+	$this->position = $position;
3416 3416
   }
3417 3417
   public function getPosition()
3418 3418
   {
3419
-    return $this->position;
3419
+	return $this->position;
3420 3420
   }
3421 3421
 }
3422 3422
 
@@ -3429,11 +3429,11 @@  discard block
 block discarded – undo
3429 3429
 
3430 3430
   public function setFormatted($formatted)
3431 3431
   {
3432
-    $this->formatted = $formatted;
3432
+	$this->formatted = $formatted;
3433 3433
   }
3434 3434
   public function getFormatted()
3435 3435
   {
3436
-    return $this->formatted;
3436
+	return $this->formatted;
3437 3437
   }
3438 3438
 }
3439 3439
 
@@ -3447,19 +3447,19 @@  discard block
 block discarded – undo
3447 3447
 
3448 3448
   public function setLatitude($latitude)
3449 3449
   {
3450
-    $this->latitude = $latitude;
3450
+	$this->latitude = $latitude;
3451 3451
   }
3452 3452
   public function getLatitude()
3453 3453
   {
3454
-    return $this->latitude;
3454
+	return $this->latitude;
3455 3455
   }
3456 3456
   public function setLongitude($longitude)
3457 3457
   {
3458
-    $this->longitude = $longitude;
3458
+	$this->longitude = $longitude;
3459 3459
   }
3460 3460
   public function getLongitude()
3461 3461
   {
3462
-    return $this->longitude;
3462
+	return $this->longitude;
3463 3463
   }
3464 3464
 }
3465 3465
 
@@ -3474,26 +3474,26 @@  discard block
 block discarded – undo
3474 3474
 
3475 3475
   public function setDisplayName($displayName)
3476 3476
   {
3477
-    $this->displayName = $displayName;
3477
+	$this->displayName = $displayName;
3478 3478
   }
3479 3479
   public function getDisplayName()
3480 3480
   {
3481
-    return $this->displayName;
3481
+	return $this->displayName;
3482 3482
   }
3483 3483
   public function setId($id)
3484 3484
   {
3485
-    $this->id = $id;
3485
+	$this->id = $id;
3486 3486
   }
3487 3487
   public function getId()
3488 3488
   {
3489
-    return $this->id;
3489
+	return $this->id;
3490 3490
   }
3491 3491
   public function setType($type)
3492 3492
   {
3493
-    $this->type = $type;
3493
+	$this->type = $type;
3494 3494
   }
3495 3495
   public function getType()
3496 3496
   {
3497
-    return $this->type;
3497
+	return $this->type;
3498 3498
   }
3499 3499
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                   'required' => true,
79 79
                 ),
80 80
               ),
81
-            ),'list' => array(
81
+            ), 'list' => array(
82 82
               'path' => 'people/{userId}/activities/{collection}',
83 83
               'httpMethod' => 'GET',
84 84
               'parameters' => array(
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                   'type' => 'integer',
102 102
                 ),
103 103
               ),
104
-            ),'search' => array(
104
+            ), 'search' => array(
105 105
               'path' => 'activities',
106 106
               'httpMethod' => 'GET',
107 107
               'parameters' => array(
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                   'required' => true,
148 148
                 ),
149 149
               ),
150
-            ),'list' => array(
150
+            ), 'list' => array(
151 151
               'path' => 'activities/{activityId}/comments',
152 152
               'httpMethod' => 'GET',
153 153
               'parameters' => array(
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
                   'type' => 'boolean',
199 199
                 ),
200 200
               ),
201
-            ),'list' => array(
201
+            ), 'list' => array(
202 202
               'path' => 'people/{userId}/moments/{collection}',
203 203
               'httpMethod' => 'GET',
204 204
               'parameters' => array(
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
                   'type' => 'string',
230 230
                 ),
231 231
               ),
232
-            ),'remove' => array(
232
+            ), 'remove' => array(
233 233
               'path' => 'moments/{id}',
234 234
               'httpMethod' => 'DELETE',
235 235
               'parameters' => array(
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
                   'required' => true,
260 260
                 ),
261 261
               ),
262
-            ),'list' => array(
262
+            ), 'list' => array(
263 263
               'path' => 'people/{userId}/people/{collection}',
264 264
               'httpMethod' => 'GET',
265 265
               'parameters' => array(
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                   'type' => 'integer',
287 287
                 ),
288 288
               ),
289
-            ),'listByActivity' => array(
289
+            ), 'listByActivity' => array(
290 290
               'path' => 'activities/{activityId}/people/{collection}',
291 291
               'httpMethod' => 'GET',
292 292
               'parameters' => array(
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
                   'type' => 'integer',
310 310
                 ),
311 311
               ),
312
-            ),'search' => array(
312
+            ), 'search' => array(
313 313
               'path' => 'people',
314 314
               'httpMethod' => 'GET',
315 315
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/PlusDomains.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
    *
485 485
    * @param string $userId The ID of the user to create the activity on behalf of.
486 486
    * Its value should be "me", to indicate the authenticated user.
487
-   * @param Google_Activity $postBody
487
+   * @param Google_Service_PlusDomains_Activity $postBody
488 488
    * @param array $optParams Optional parameters.
489 489
    *
490 490
    * @opt_param bool preview If "true", extract the potential media attachments
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
    *
610 610
    * @param string $userId The ID of the user to create the circle on behalf of.
611 611
    * The value "me" can be used to indicate the authenticated user.
612
-   * @param Google_Circle $postBody
612
+   * @param Google_Service_PlusDomains_Circle $postBody
613 613
    * @param array $optParams Optional parameters.
614 614
    * @return Google_Service_PlusDomains_Circle
615 615
    */
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
    * (circles.patch)
648 648
    *
649 649
    * @param string $circleId The ID of the circle to update.
650
-   * @param Google_Circle $postBody
650
+   * @param Google_Service_PlusDomains_Circle $postBody
651 651
    * @param array $optParams Optional parameters.
652 652
    * @return Google_Service_PlusDomains_Circle
653 653
    */
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
    * Update a circle's description. (circles.update)
694 694
    *
695 695
    * @param string $circleId The ID of the circle to update.
696
-   * @param Google_Circle $postBody
696
+   * @param Google_Service_PlusDomains_Circle $postBody
697 697
    * @param array $optParams Optional parameters.
698 698
    * @return Google_Service_PlusDomains_Circle
699 699
    */
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
    * Create a new comment in reply to an activity. (comments.insert)
735 735
    *
736 736
    * @param string $activityId The ID of the activity to reply to.
737
-   * @param Google_Comment $postBody
737
+   * @param Google_Service_PlusDomains_Comment $postBody
738 738
    * @param array $optParams Optional parameters.
739 739
    * @return Google_Service_PlusDomains_Comment
740 740
    */
@@ -787,7 +787,7 @@  discard block
 block discarded – undo
787 787
    *
788 788
    * @param string $userId The ID of the user to create the activity on behalf of.
789 789
    * @param string $collection
790
-   * @param Google_Media $postBody
790
+   * @param Google_Service_PlusDomains_Media $postBody
791 791
    * @param array $optParams Optional parameters.
792 792
    * @return Google_Service_PlusDomains_Media
793 793
    */
Please login to merge, or discard this patch.
Indentation   +962 added lines, -962 removed lines patch added patch discarded remove patch
@@ -32,34 +32,34 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View your circles and the people and pages in them. */
34 34
   const PLUS_CIRCLES_READ =
35
-      "https://www.googleapis.com/auth/plus.circles.read";
35
+	  "https://www.googleapis.com/auth/plus.circles.read";
36 36
   /** Manage your circles and add people and pages. People and pages you add to your circles will be notified. Others may see this information publicly. People you add to circles can use Hangouts with you.. */
37 37
   const PLUS_CIRCLES_WRITE =
38
-      "https://www.googleapis.com/auth/plus.circles.write";
38
+	  "https://www.googleapis.com/auth/plus.circles.write";
39 39
   /** Know your basic profile info and list of people in your circles.. */
40 40
   const PLUS_LOGIN =
41
-      "https://www.googleapis.com/auth/plus.login";
41
+	  "https://www.googleapis.com/auth/plus.login";
42 42
   /** Know who you are on Google. */
43 43
   const PLUS_ME =
44
-      "https://www.googleapis.com/auth/plus.me";
44
+	  "https://www.googleapis.com/auth/plus.me";
45 45
   /** Send your photos and videos to Google+. */
46 46
   const PLUS_MEDIA_UPLOAD =
47
-      "https://www.googleapis.com/auth/plus.media.upload";
47
+	  "https://www.googleapis.com/auth/plus.media.upload";
48 48
   /** View your own Google+ profile and profiles visible to you. */
49 49
   const PLUS_PROFILES_READ =
50
-      "https://www.googleapis.com/auth/plus.profiles.read";
50
+	  "https://www.googleapis.com/auth/plus.profiles.read";
51 51
   /** View your Google+ posts, comments, and stream. */
52 52
   const PLUS_STREAM_READ =
53
-      "https://www.googleapis.com/auth/plus.stream.read";
53
+	  "https://www.googleapis.com/auth/plus.stream.read";
54 54
   /** Manage your Google+ posts, comments, and stream. */
55 55
   const PLUS_STREAM_WRITE =
56
-      "https://www.googleapis.com/auth/plus.stream.write";
56
+	  "https://www.googleapis.com/auth/plus.stream.write";
57 57
   /** View your email address. */
58 58
   const USERINFO_EMAIL =
59
-      "https://www.googleapis.com/auth/userinfo.email";
59
+	  "https://www.googleapis.com/auth/userinfo.email";
60 60
   /** View your basic profile info. */
61 61
   const USERINFO_PROFILE =
62
-      "https://www.googleapis.com/auth/userinfo.profile";
62
+	  "https://www.googleapis.com/auth/userinfo.profile";
63 63
 
64 64
   public $activities;
65 65
   public $audiences;
@@ -76,380 +76,380 @@  discard block
 block discarded – undo
76 76
    */
77 77
   public function __construct(Google_Client $client)
78 78
   {
79
-    parent::__construct($client);
80
-    $this->rootUrl = 'https://www.googleapis.com/';
81
-    $this->servicePath = 'plusDomains/v1/';
82
-    $this->version = 'v1';
83
-    $this->serviceName = 'plusDomains';
84
-
85
-    $this->activities = new Google_Service_PlusDomains_Activities_Resource(
86
-        $this,
87
-        $this->serviceName,
88
-        'activities',
89
-        array(
90
-          'methods' => array(
91
-            'get' => array(
92
-              'path' => 'activities/{activityId}',
93
-              'httpMethod' => 'GET',
94
-              'parameters' => array(
95
-                'activityId' => array(
96
-                  'location' => 'path',
97
-                  'type' => 'string',
98
-                  'required' => true,
99
-                ),
100
-              ),
101
-            ),'insert' => array(
102
-              'path' => 'people/{userId}/activities',
103
-              'httpMethod' => 'POST',
104
-              'parameters' => array(
105
-                'userId' => array(
106
-                  'location' => 'path',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'preview' => array(
111
-                  'location' => 'query',
112
-                  'type' => 'boolean',
113
-                ),
114
-              ),
115
-            ),'list' => array(
116
-              'path' => 'people/{userId}/activities/{collection}',
117
-              'httpMethod' => 'GET',
118
-              'parameters' => array(
119
-                'userId' => array(
120
-                  'location' => 'path',
121
-                  'type' => 'string',
122
-                  'required' => true,
123
-                ),
124
-                'collection' => array(
125
-                  'location' => 'path',
126
-                  'type' => 'string',
127
-                  'required' => true,
128
-                ),
129
-                'pageToken' => array(
130
-                  'location' => 'query',
131
-                  'type' => 'string',
132
-                ),
133
-                'maxResults' => array(
134
-                  'location' => 'query',
135
-                  'type' => 'integer',
136
-                ),
137
-              ),
138
-            ),
139
-          )
140
-        )
141
-    );
142
-    $this->audiences = new Google_Service_PlusDomains_Audiences_Resource(
143
-        $this,
144
-        $this->serviceName,
145
-        'audiences',
146
-        array(
147
-          'methods' => array(
148
-            'list' => array(
149
-              'path' => 'people/{userId}/audiences',
150
-              'httpMethod' => 'GET',
151
-              'parameters' => array(
152
-                'userId' => array(
153
-                  'location' => 'path',
154
-                  'type' => 'string',
155
-                  'required' => true,
156
-                ),
157
-                'pageToken' => array(
158
-                  'location' => 'query',
159
-                  'type' => 'string',
160
-                ),
161
-                'maxResults' => array(
162
-                  'location' => 'query',
163
-                  'type' => 'integer',
164
-                ),
165
-              ),
166
-            ),
167
-          )
168
-        )
169
-    );
170
-    $this->circles = new Google_Service_PlusDomains_Circles_Resource(
171
-        $this,
172
-        $this->serviceName,
173
-        'circles',
174
-        array(
175
-          'methods' => array(
176
-            'addPeople' => array(
177
-              'path' => 'circles/{circleId}/people',
178
-              'httpMethod' => 'PUT',
179
-              'parameters' => array(
180
-                'circleId' => array(
181
-                  'location' => 'path',
182
-                  'type' => 'string',
183
-                  'required' => true,
184
-                ),
185
-                'userId' => array(
186
-                  'location' => 'query',
187
-                  'type' => 'string',
188
-                  'repeated' => true,
189
-                ),
190
-                'email' => array(
191
-                  'location' => 'query',
192
-                  'type' => 'string',
193
-                  'repeated' => true,
194
-                ),
195
-              ),
196
-            ),'get' => array(
197
-              'path' => 'circles/{circleId}',
198
-              'httpMethod' => 'GET',
199
-              'parameters' => array(
200
-                'circleId' => array(
201
-                  'location' => 'path',
202
-                  'type' => 'string',
203
-                  'required' => true,
204
-                ),
205
-              ),
206
-            ),'insert' => array(
207
-              'path' => 'people/{userId}/circles',
208
-              'httpMethod' => 'POST',
209
-              'parameters' => array(
210
-                'userId' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'string',
213
-                  'required' => true,
214
-                ),
215
-              ),
216
-            ),'list' => array(
217
-              'path' => 'people/{userId}/circles',
218
-              'httpMethod' => 'GET',
219
-              'parameters' => array(
220
-                'userId' => array(
221
-                  'location' => 'path',
222
-                  'type' => 'string',
223
-                  'required' => true,
224
-                ),
225
-                'pageToken' => array(
226
-                  'location' => 'query',
227
-                  'type' => 'string',
228
-                ),
229
-                'maxResults' => array(
230
-                  'location' => 'query',
231
-                  'type' => 'integer',
232
-                ),
233
-              ),
234
-            ),'patch' => array(
235
-              'path' => 'circles/{circleId}',
236
-              'httpMethod' => 'PATCH',
237
-              'parameters' => array(
238
-                'circleId' => array(
239
-                  'location' => 'path',
240
-                  'type' => 'string',
241
-                  'required' => true,
242
-                ),
243
-              ),
244
-            ),'remove' => array(
245
-              'path' => 'circles/{circleId}',
246
-              'httpMethod' => 'DELETE',
247
-              'parameters' => array(
248
-                'circleId' => array(
249
-                  'location' => 'path',
250
-                  'type' => 'string',
251
-                  'required' => true,
252
-                ),
253
-              ),
254
-            ),'removePeople' => array(
255
-              'path' => 'circles/{circleId}/people',
256
-              'httpMethod' => 'DELETE',
257
-              'parameters' => array(
258
-                'circleId' => array(
259
-                  'location' => 'path',
260
-                  'type' => 'string',
261
-                  'required' => true,
262
-                ),
263
-                'userId' => array(
264
-                  'location' => 'query',
265
-                  'type' => 'string',
266
-                  'repeated' => true,
267
-                ),
268
-                'email' => array(
269
-                  'location' => 'query',
270
-                  'type' => 'string',
271
-                  'repeated' => true,
272
-                ),
273
-              ),
274
-            ),'update' => array(
275
-              'path' => 'circles/{circleId}',
276
-              'httpMethod' => 'PUT',
277
-              'parameters' => array(
278
-                'circleId' => array(
279
-                  'location' => 'path',
280
-                  'type' => 'string',
281
-                  'required' => true,
282
-                ),
283
-              ),
284
-            ),
285
-          )
286
-        )
287
-    );
288
-    $this->comments = new Google_Service_PlusDomains_Comments_Resource(
289
-        $this,
290
-        $this->serviceName,
291
-        'comments',
292
-        array(
293
-          'methods' => array(
294
-            'get' => array(
295
-              'path' => 'comments/{commentId}',
296
-              'httpMethod' => 'GET',
297
-              'parameters' => array(
298
-                'commentId' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-              ),
304
-            ),'insert' => array(
305
-              'path' => 'activities/{activityId}/comments',
306
-              'httpMethod' => 'POST',
307
-              'parameters' => array(
308
-                'activityId' => array(
309
-                  'location' => 'path',
310
-                  'type' => 'string',
311
-                  'required' => true,
312
-                ),
313
-              ),
314
-            ),'list' => array(
315
-              'path' => 'activities/{activityId}/comments',
316
-              'httpMethod' => 'GET',
317
-              'parameters' => array(
318
-                'activityId' => array(
319
-                  'location' => 'path',
320
-                  'type' => 'string',
321
-                  'required' => true,
322
-                ),
323
-                'pageToken' => array(
324
-                  'location' => 'query',
325
-                  'type' => 'string',
326
-                ),
327
-                'sortOrder' => array(
328
-                  'location' => 'query',
329
-                  'type' => 'string',
330
-                ),
331
-                'maxResults' => array(
332
-                  'location' => 'query',
333
-                  'type' => 'integer',
334
-                ),
335
-              ),
336
-            ),
337
-          )
338
-        )
339
-    );
340
-    $this->media = new Google_Service_PlusDomains_Media_Resource(
341
-        $this,
342
-        $this->serviceName,
343
-        'media',
344
-        array(
345
-          'methods' => array(
346
-            'insert' => array(
347
-              'path' => 'people/{userId}/media/{collection}',
348
-              'httpMethod' => 'POST',
349
-              'parameters' => array(
350
-                'userId' => array(
351
-                  'location' => 'path',
352
-                  'type' => 'string',
353
-                  'required' => true,
354
-                ),
355
-                'collection' => array(
356
-                  'location' => 'path',
357
-                  'type' => 'string',
358
-                  'required' => true,
359
-                ),
360
-              ),
361
-            ),
362
-          )
363
-        )
364
-    );
365
-    $this->people = new Google_Service_PlusDomains_People_Resource(
366
-        $this,
367
-        $this->serviceName,
368
-        'people',
369
-        array(
370
-          'methods' => array(
371
-            'get' => array(
372
-              'path' => 'people/{userId}',
373
-              'httpMethod' => 'GET',
374
-              'parameters' => array(
375
-                'userId' => array(
376
-                  'location' => 'path',
377
-                  'type' => 'string',
378
-                  'required' => true,
379
-                ),
380
-              ),
381
-            ),'list' => array(
382
-              'path' => 'people/{userId}/people/{collection}',
383
-              'httpMethod' => 'GET',
384
-              'parameters' => array(
385
-                'userId' => array(
386
-                  'location' => 'path',
387
-                  'type' => 'string',
388
-                  'required' => true,
389
-                ),
390
-                'collection' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'orderBy' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'string',
398
-                ),
399
-                'pageToken' => array(
400
-                  'location' => 'query',
401
-                  'type' => 'string',
402
-                ),
403
-                'maxResults' => array(
404
-                  'location' => 'query',
405
-                  'type' => 'integer',
406
-                ),
407
-              ),
408
-            ),'listByActivity' => array(
409
-              'path' => 'activities/{activityId}/people/{collection}',
410
-              'httpMethod' => 'GET',
411
-              'parameters' => array(
412
-                'activityId' => array(
413
-                  'location' => 'path',
414
-                  'type' => 'string',
415
-                  'required' => true,
416
-                ),
417
-                'collection' => array(
418
-                  'location' => 'path',
419
-                  'type' => 'string',
420
-                  'required' => true,
421
-                ),
422
-                'pageToken' => array(
423
-                  'location' => 'query',
424
-                  'type' => 'string',
425
-                ),
426
-                'maxResults' => array(
427
-                  'location' => 'query',
428
-                  'type' => 'integer',
429
-                ),
430
-              ),
431
-            ),'listByCircle' => array(
432
-              'path' => 'circles/{circleId}/people',
433
-              'httpMethod' => 'GET',
434
-              'parameters' => array(
435
-                'circleId' => array(
436
-                  'location' => 'path',
437
-                  'type' => 'string',
438
-                  'required' => true,
439
-                ),
440
-                'pageToken' => array(
441
-                  'location' => 'query',
442
-                  'type' => 'string',
443
-                ),
444
-                'maxResults' => array(
445
-                  'location' => 'query',
446
-                  'type' => 'integer',
447
-                ),
448
-              ),
449
-            ),
450
-          )
451
-        )
452
-    );
79
+	parent::__construct($client);
80
+	$this->rootUrl = 'https://www.googleapis.com/';
81
+	$this->servicePath = 'plusDomains/v1/';
82
+	$this->version = 'v1';
83
+	$this->serviceName = 'plusDomains';
84
+
85
+	$this->activities = new Google_Service_PlusDomains_Activities_Resource(
86
+		$this,
87
+		$this->serviceName,
88
+		'activities',
89
+		array(
90
+		  'methods' => array(
91
+			'get' => array(
92
+			  'path' => 'activities/{activityId}',
93
+			  'httpMethod' => 'GET',
94
+			  'parameters' => array(
95
+				'activityId' => array(
96
+				  'location' => 'path',
97
+				  'type' => 'string',
98
+				  'required' => true,
99
+				),
100
+			  ),
101
+			),'insert' => array(
102
+			  'path' => 'people/{userId}/activities',
103
+			  'httpMethod' => 'POST',
104
+			  'parameters' => array(
105
+				'userId' => array(
106
+				  'location' => 'path',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'preview' => array(
111
+				  'location' => 'query',
112
+				  'type' => 'boolean',
113
+				),
114
+			  ),
115
+			),'list' => array(
116
+			  'path' => 'people/{userId}/activities/{collection}',
117
+			  'httpMethod' => 'GET',
118
+			  'parameters' => array(
119
+				'userId' => array(
120
+				  'location' => 'path',
121
+				  'type' => 'string',
122
+				  'required' => true,
123
+				),
124
+				'collection' => array(
125
+				  'location' => 'path',
126
+				  'type' => 'string',
127
+				  'required' => true,
128
+				),
129
+				'pageToken' => array(
130
+				  'location' => 'query',
131
+				  'type' => 'string',
132
+				),
133
+				'maxResults' => array(
134
+				  'location' => 'query',
135
+				  'type' => 'integer',
136
+				),
137
+			  ),
138
+			),
139
+		  )
140
+		)
141
+	);
142
+	$this->audiences = new Google_Service_PlusDomains_Audiences_Resource(
143
+		$this,
144
+		$this->serviceName,
145
+		'audiences',
146
+		array(
147
+		  'methods' => array(
148
+			'list' => array(
149
+			  'path' => 'people/{userId}/audiences',
150
+			  'httpMethod' => 'GET',
151
+			  'parameters' => array(
152
+				'userId' => array(
153
+				  'location' => 'path',
154
+				  'type' => 'string',
155
+				  'required' => true,
156
+				),
157
+				'pageToken' => array(
158
+				  'location' => 'query',
159
+				  'type' => 'string',
160
+				),
161
+				'maxResults' => array(
162
+				  'location' => 'query',
163
+				  'type' => 'integer',
164
+				),
165
+			  ),
166
+			),
167
+		  )
168
+		)
169
+	);
170
+	$this->circles = new Google_Service_PlusDomains_Circles_Resource(
171
+		$this,
172
+		$this->serviceName,
173
+		'circles',
174
+		array(
175
+		  'methods' => array(
176
+			'addPeople' => array(
177
+			  'path' => 'circles/{circleId}/people',
178
+			  'httpMethod' => 'PUT',
179
+			  'parameters' => array(
180
+				'circleId' => array(
181
+				  'location' => 'path',
182
+				  'type' => 'string',
183
+				  'required' => true,
184
+				),
185
+				'userId' => array(
186
+				  'location' => 'query',
187
+				  'type' => 'string',
188
+				  'repeated' => true,
189
+				),
190
+				'email' => array(
191
+				  'location' => 'query',
192
+				  'type' => 'string',
193
+				  'repeated' => true,
194
+				),
195
+			  ),
196
+			),'get' => array(
197
+			  'path' => 'circles/{circleId}',
198
+			  'httpMethod' => 'GET',
199
+			  'parameters' => array(
200
+				'circleId' => array(
201
+				  'location' => 'path',
202
+				  'type' => 'string',
203
+				  'required' => true,
204
+				),
205
+			  ),
206
+			),'insert' => array(
207
+			  'path' => 'people/{userId}/circles',
208
+			  'httpMethod' => 'POST',
209
+			  'parameters' => array(
210
+				'userId' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'string',
213
+				  'required' => true,
214
+				),
215
+			  ),
216
+			),'list' => array(
217
+			  'path' => 'people/{userId}/circles',
218
+			  'httpMethod' => 'GET',
219
+			  'parameters' => array(
220
+				'userId' => array(
221
+				  'location' => 'path',
222
+				  'type' => 'string',
223
+				  'required' => true,
224
+				),
225
+				'pageToken' => array(
226
+				  'location' => 'query',
227
+				  'type' => 'string',
228
+				),
229
+				'maxResults' => array(
230
+				  'location' => 'query',
231
+				  'type' => 'integer',
232
+				),
233
+			  ),
234
+			),'patch' => array(
235
+			  'path' => 'circles/{circleId}',
236
+			  'httpMethod' => 'PATCH',
237
+			  'parameters' => array(
238
+				'circleId' => array(
239
+				  'location' => 'path',
240
+				  'type' => 'string',
241
+				  'required' => true,
242
+				),
243
+			  ),
244
+			),'remove' => array(
245
+			  'path' => 'circles/{circleId}',
246
+			  'httpMethod' => 'DELETE',
247
+			  'parameters' => array(
248
+				'circleId' => array(
249
+				  'location' => 'path',
250
+				  'type' => 'string',
251
+				  'required' => true,
252
+				),
253
+			  ),
254
+			),'removePeople' => array(
255
+			  'path' => 'circles/{circleId}/people',
256
+			  'httpMethod' => 'DELETE',
257
+			  'parameters' => array(
258
+				'circleId' => array(
259
+				  'location' => 'path',
260
+				  'type' => 'string',
261
+				  'required' => true,
262
+				),
263
+				'userId' => array(
264
+				  'location' => 'query',
265
+				  'type' => 'string',
266
+				  'repeated' => true,
267
+				),
268
+				'email' => array(
269
+				  'location' => 'query',
270
+				  'type' => 'string',
271
+				  'repeated' => true,
272
+				),
273
+			  ),
274
+			),'update' => array(
275
+			  'path' => 'circles/{circleId}',
276
+			  'httpMethod' => 'PUT',
277
+			  'parameters' => array(
278
+				'circleId' => array(
279
+				  'location' => 'path',
280
+				  'type' => 'string',
281
+				  'required' => true,
282
+				),
283
+			  ),
284
+			),
285
+		  )
286
+		)
287
+	);
288
+	$this->comments = new Google_Service_PlusDomains_Comments_Resource(
289
+		$this,
290
+		$this->serviceName,
291
+		'comments',
292
+		array(
293
+		  'methods' => array(
294
+			'get' => array(
295
+			  'path' => 'comments/{commentId}',
296
+			  'httpMethod' => 'GET',
297
+			  'parameters' => array(
298
+				'commentId' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+			  ),
304
+			),'insert' => array(
305
+			  'path' => 'activities/{activityId}/comments',
306
+			  'httpMethod' => 'POST',
307
+			  'parameters' => array(
308
+				'activityId' => array(
309
+				  'location' => 'path',
310
+				  'type' => 'string',
311
+				  'required' => true,
312
+				),
313
+			  ),
314
+			),'list' => array(
315
+			  'path' => 'activities/{activityId}/comments',
316
+			  'httpMethod' => 'GET',
317
+			  'parameters' => array(
318
+				'activityId' => array(
319
+				  'location' => 'path',
320
+				  'type' => 'string',
321
+				  'required' => true,
322
+				),
323
+				'pageToken' => array(
324
+				  'location' => 'query',
325
+				  'type' => 'string',
326
+				),
327
+				'sortOrder' => array(
328
+				  'location' => 'query',
329
+				  'type' => 'string',
330
+				),
331
+				'maxResults' => array(
332
+				  'location' => 'query',
333
+				  'type' => 'integer',
334
+				),
335
+			  ),
336
+			),
337
+		  )
338
+		)
339
+	);
340
+	$this->media = new Google_Service_PlusDomains_Media_Resource(
341
+		$this,
342
+		$this->serviceName,
343
+		'media',
344
+		array(
345
+		  'methods' => array(
346
+			'insert' => array(
347
+			  'path' => 'people/{userId}/media/{collection}',
348
+			  'httpMethod' => 'POST',
349
+			  'parameters' => array(
350
+				'userId' => array(
351
+				  'location' => 'path',
352
+				  'type' => 'string',
353
+				  'required' => true,
354
+				),
355
+				'collection' => array(
356
+				  'location' => 'path',
357
+				  'type' => 'string',
358
+				  'required' => true,
359
+				),
360
+			  ),
361
+			),
362
+		  )
363
+		)
364
+	);
365
+	$this->people = new Google_Service_PlusDomains_People_Resource(
366
+		$this,
367
+		$this->serviceName,
368
+		'people',
369
+		array(
370
+		  'methods' => array(
371
+			'get' => array(
372
+			  'path' => 'people/{userId}',
373
+			  'httpMethod' => 'GET',
374
+			  'parameters' => array(
375
+				'userId' => array(
376
+				  'location' => 'path',
377
+				  'type' => 'string',
378
+				  'required' => true,
379
+				),
380
+			  ),
381
+			),'list' => array(
382
+			  'path' => 'people/{userId}/people/{collection}',
383
+			  'httpMethod' => 'GET',
384
+			  'parameters' => array(
385
+				'userId' => array(
386
+				  'location' => 'path',
387
+				  'type' => 'string',
388
+				  'required' => true,
389
+				),
390
+				'collection' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'orderBy' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'string',
398
+				),
399
+				'pageToken' => array(
400
+				  'location' => 'query',
401
+				  'type' => 'string',
402
+				),
403
+				'maxResults' => array(
404
+				  'location' => 'query',
405
+				  'type' => 'integer',
406
+				),
407
+			  ),
408
+			),'listByActivity' => array(
409
+			  'path' => 'activities/{activityId}/people/{collection}',
410
+			  'httpMethod' => 'GET',
411
+			  'parameters' => array(
412
+				'activityId' => array(
413
+				  'location' => 'path',
414
+				  'type' => 'string',
415
+				  'required' => true,
416
+				),
417
+				'collection' => array(
418
+				  'location' => 'path',
419
+				  'type' => 'string',
420
+				  'required' => true,
421
+				),
422
+				'pageToken' => array(
423
+				  'location' => 'query',
424
+				  'type' => 'string',
425
+				),
426
+				'maxResults' => array(
427
+				  'location' => 'query',
428
+				  'type' => 'integer',
429
+				),
430
+			  ),
431
+			),'listByCircle' => array(
432
+			  'path' => 'circles/{circleId}/people',
433
+			  'httpMethod' => 'GET',
434
+			  'parameters' => array(
435
+				'circleId' => array(
436
+				  'location' => 'path',
437
+				  'type' => 'string',
438
+				  'required' => true,
439
+				),
440
+				'pageToken' => array(
441
+				  'location' => 'query',
442
+				  'type' => 'string',
443
+				),
444
+				'maxResults' => array(
445
+				  'location' => 'query',
446
+				  'type' => 'integer',
447
+				),
448
+			  ),
449
+			),
450
+		  )
451
+		)
452
+	);
453 453
   }
454 454
 }
455 455
 
@@ -474,9 +474,9 @@  discard block
 block discarded – undo
474 474
    */
475 475
   public function get($activityId, $optParams = array())
476 476
   {
477
-    $params = array('activityId' => $activityId);
478
-    $params = array_merge($params, $optParams);
479
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Activity");
477
+	$params = array('activityId' => $activityId);
478
+	$params = array_merge($params, $optParams);
479
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Activity");
480 480
   }
481 481
 
482 482
   /**
@@ -494,9 +494,9 @@  discard block
 block discarded – undo
494 494
    */
495 495
   public function insert($userId, Google_Service_PlusDomains_Activity $postBody, $optParams = array())
496 496
   {
497
-    $params = array('userId' => $userId, 'postBody' => $postBody);
498
-    $params = array_merge($params, $optParams);
499
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Activity");
497
+	$params = array('userId' => $userId, 'postBody' => $postBody);
498
+	$params = array_merge($params, $optParams);
499
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Activity");
500 500
   }
501 501
 
502 502
   /**
@@ -518,9 +518,9 @@  discard block
 block discarded – undo
518 518
    */
519 519
   public function listActivities($userId, $collection, $optParams = array())
520 520
   {
521
-    $params = array('userId' => $userId, 'collection' => $collection);
522
-    $params = array_merge($params, $optParams);
523
-    return $this->call('list', array($params), "Google_Service_PlusDomains_ActivityFeed");
521
+	$params = array('userId' => $userId, 'collection' => $collection);
522
+	$params = array_merge($params, $optParams);
523
+	return $this->call('list', array($params), "Google_Service_PlusDomains_ActivityFeed");
524 524
   }
525 525
 }
526 526
 
@@ -553,9 +553,9 @@  discard block
 block discarded – undo
553 553
    */
554 554
   public function listAudiences($userId, $optParams = array())
555 555
   {
556
-    $params = array('userId' => $userId);
557
-    $params = array_merge($params, $optParams);
558
-    return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed");
556
+	$params = array('userId' => $userId);
557
+	$params = array_merge($params, $optParams);
558
+	return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed");
559 559
   }
560 560
 }
561 561
 
@@ -585,9 +585,9 @@  discard block
 block discarded – undo
585 585
    */
586 586
   public function addPeople($circleId, $optParams = array())
587 587
   {
588
-    $params = array('circleId' => $circleId);
589
-    $params = array_merge($params, $optParams);
590
-    return $this->call('addPeople', array($params), "Google_Service_PlusDomains_Circle");
588
+	$params = array('circleId' => $circleId);
589
+	$params = array_merge($params, $optParams);
590
+	return $this->call('addPeople', array($params), "Google_Service_PlusDomains_Circle");
591 591
   }
592 592
 
593 593
   /**
@@ -599,9 +599,9 @@  discard block
 block discarded – undo
599 599
    */
600 600
   public function get($circleId, $optParams = array())
601 601
   {
602
-    $params = array('circleId' => $circleId);
603
-    $params = array_merge($params, $optParams);
604
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Circle");
602
+	$params = array('circleId' => $circleId);
603
+	$params = array_merge($params, $optParams);
604
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Circle");
605 605
   }
606 606
 
607 607
   /**
@@ -615,9 +615,9 @@  discard block
 block discarded – undo
615 615
    */
616 616
   public function insert($userId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
617 617
   {
618
-    $params = array('userId' => $userId, 'postBody' => $postBody);
619
-    $params = array_merge($params, $optParams);
620
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Circle");
618
+	$params = array('userId' => $userId, 'postBody' => $postBody);
619
+	$params = array_merge($params, $optParams);
620
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Circle");
621 621
   }
622 622
 
623 623
   /**
@@ -637,9 +637,9 @@  discard block
 block discarded – undo
637 637
    */
638 638
   public function listCircles($userId, $optParams = array())
639 639
   {
640
-    $params = array('userId' => $userId);
641
-    $params = array_merge($params, $optParams);
642
-    return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed");
640
+	$params = array('userId' => $userId);
641
+	$params = array_merge($params, $optParams);
642
+	return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed");
643 643
   }
644 644
 
645 645
   /**
@@ -653,9 +653,9 @@  discard block
 block discarded – undo
653 653
    */
654 654
   public function patch($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
655 655
   {
656
-    $params = array('circleId' => $circleId, 'postBody' => $postBody);
657
-    $params = array_merge($params, $optParams);
658
-    return $this->call('patch', array($params), "Google_Service_PlusDomains_Circle");
656
+	$params = array('circleId' => $circleId, 'postBody' => $postBody);
657
+	$params = array_merge($params, $optParams);
658
+	return $this->call('patch', array($params), "Google_Service_PlusDomains_Circle");
659 659
   }
660 660
 
661 661
   /**
@@ -666,9 +666,9 @@  discard block
 block discarded – undo
666 666
    */
667 667
   public function remove($circleId, $optParams = array())
668 668
   {
669
-    $params = array('circleId' => $circleId);
670
-    $params = array_merge($params, $optParams);
671
-    return $this->call('remove', array($params));
669
+	$params = array('circleId' => $circleId);
670
+	$params = array_merge($params, $optParams);
671
+	return $this->call('remove', array($params));
672 672
   }
673 673
 
674 674
   /**
@@ -684,9 +684,9 @@  discard block
 block discarded – undo
684 684
    */
685 685
   public function removePeople($circleId, $optParams = array())
686 686
   {
687
-    $params = array('circleId' => $circleId);
688
-    $params = array_merge($params, $optParams);
689
-    return $this->call('removePeople', array($params));
687
+	$params = array('circleId' => $circleId);
688
+	$params = array_merge($params, $optParams);
689
+	return $this->call('removePeople', array($params));
690 690
   }
691 691
 
692 692
   /**
@@ -699,9 +699,9 @@  discard block
 block discarded – undo
699 699
    */
700 700
   public function update($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
701 701
   {
702
-    $params = array('circleId' => $circleId, 'postBody' => $postBody);
703
-    $params = array_merge($params, $optParams);
704
-    return $this->call('update', array($params), "Google_Service_PlusDomains_Circle");
702
+	$params = array('circleId' => $circleId, 'postBody' => $postBody);
703
+	$params = array_merge($params, $optParams);
704
+	return $this->call('update', array($params), "Google_Service_PlusDomains_Circle");
705 705
   }
706 706
 }
707 707
 
@@ -725,9 +725,9 @@  discard block
 block discarded – undo
725 725
    */
726 726
   public function get($commentId, $optParams = array())
727 727
   {
728
-    $params = array('commentId' => $commentId);
729
-    $params = array_merge($params, $optParams);
730
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Comment");
728
+	$params = array('commentId' => $commentId);
729
+	$params = array_merge($params, $optParams);
730
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Comment");
731 731
   }
732 732
 
733 733
   /**
@@ -740,9 +740,9 @@  discard block
 block discarded – undo
740 740
    */
741 741
   public function insert($activityId, Google_Service_PlusDomains_Comment $postBody, $optParams = array())
742 742
   {
743
-    $params = array('activityId' => $activityId, 'postBody' => $postBody);
744
-    $params = array_merge($params, $optParams);
745
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Comment");
743
+	$params = array('activityId' => $activityId, 'postBody' => $postBody);
744
+	$params = array_merge($params, $optParams);
745
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Comment");
746 746
   }
747 747
 
748 748
   /**
@@ -762,9 +762,9 @@  discard block
 block discarded – undo
762 762
    */
763 763
   public function listComments($activityId, $optParams = array())
764 764
   {
765
-    $params = array('activityId' => $activityId);
766
-    $params = array_merge($params, $optParams);
767
-    return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed");
765
+	$params = array('activityId' => $activityId);
766
+	$params = array_merge($params, $optParams);
767
+	return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed");
768 768
   }
769 769
 }
770 770
 
@@ -793,9 +793,9 @@  discard block
 block discarded – undo
793 793
    */
794 794
   public function insert($userId, $collection, Google_Service_PlusDomains_Media $postBody, $optParams = array())
795 795
   {
796
-    $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
797
-    $params = array_merge($params, $optParams);
798
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Media");
796
+	$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
797
+	$params = array_merge($params, $optParams);
798
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Media");
799 799
   }
800 800
 }
801 801
 
@@ -820,9 +820,9 @@  discard block
 block discarded – undo
820 820
    */
821 821
   public function get($userId, $optParams = array())
822 822
   {
823
-    $params = array('userId' => $userId);
824
-    $params = array_merge($params, $optParams);
825
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Person");
823
+	$params = array('userId' => $userId);
824
+	$params = array_merge($params, $optParams);
825
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Person");
826 826
   }
827 827
 
828 828
   /**
@@ -844,9 +844,9 @@  discard block
 block discarded – undo
844 844
    */
845 845
   public function listPeople($userId, $collection, $optParams = array())
846 846
   {
847
-    $params = array('userId' => $userId, 'collection' => $collection);
848
-    $params = array_merge($params, $optParams);
849
-    return $this->call('list', array($params), "Google_Service_PlusDomains_PeopleFeed");
847
+	$params = array('userId' => $userId, 'collection' => $collection);
848
+	$params = array_merge($params, $optParams);
849
+	return $this->call('list', array($params), "Google_Service_PlusDomains_PeopleFeed");
850 850
   }
851 851
 
852 852
   /**
@@ -868,9 +868,9 @@  discard block
 block discarded – undo
868 868
    */
869 869
   public function listByActivity($activityId, $collection, $optParams = array())
870 870
   {
871
-    $params = array('activityId' => $activityId, 'collection' => $collection);
872
-    $params = array_merge($params, $optParams);
873
-    return $this->call('listByActivity', array($params), "Google_Service_PlusDomains_PeopleFeed");
871
+	$params = array('activityId' => $activityId, 'collection' => $collection);
872
+	$params = array_merge($params, $optParams);
873
+	return $this->call('listByActivity', array($params), "Google_Service_PlusDomains_PeopleFeed");
874 874
   }
875 875
 
876 876
   /**
@@ -889,9 +889,9 @@  discard block
 block discarded – undo
889 889
    */
890 890
   public function listByCircle($circleId, $optParams = array())
891 891
   {
892
-    $params = array('circleId' => $circleId);
893
-    $params = array_merge($params, $optParams);
894
-    return $this->call('listByCircle', array($params), "Google_Service_PlusDomains_PeopleFeed");
892
+	$params = array('circleId' => $circleId);
893
+	$params = array_merge($params, $optParams);
894
+	return $this->call('listByCircle', array($params), "Google_Service_PlusDomains_PeopleFeed");
895 895
   }
896 896
 }
897 897
 
@@ -912,35 +912,35 @@  discard block
 block discarded – undo
912 912
 
913 913
   public function setDescription($description)
914 914
   {
915
-    $this->description = $description;
915
+	$this->description = $description;
916 916
   }
917 917
   public function getDescription()
918 918
   {
919
-    return $this->description;
919
+	return $this->description;
920 920
   }
921 921
   public function setDomainRestricted($domainRestricted)
922 922
   {
923
-    $this->domainRestricted = $domainRestricted;
923
+	$this->domainRestricted = $domainRestricted;
924 924
   }
925 925
   public function getDomainRestricted()
926 926
   {
927
-    return $this->domainRestricted;
927
+	return $this->domainRestricted;
928 928
   }
929 929
   public function setItems($items)
930 930
   {
931
-    $this->items = $items;
931
+	$this->items = $items;
932 932
   }
933 933
   public function getItems()
934 934
   {
935
-    return $this->items;
935
+	return $this->items;
936 936
   }
937 937
   public function setKind($kind)
938 938
   {
939
-    $this->kind = $kind;
939
+	$this->kind = $kind;
940 940
   }
941 941
   public function getKind()
942 942
   {
943
-    return $this->kind;
943
+	return $this->kind;
944 944
   }
945 945
 }
946 946
 
@@ -977,163 +977,163 @@  discard block
 block discarded – undo
977 977
 
978 978
   public function setAccess(Google_Service_PlusDomains_Acl $access)
979 979
   {
980
-    $this->access = $access;
980
+	$this->access = $access;
981 981
   }
982 982
   public function getAccess()
983 983
   {
984
-    return $this->access;
984
+	return $this->access;
985 985
   }
986 986
   public function setActor(Google_Service_PlusDomains_ActivityActor $actor)
987 987
   {
988
-    $this->actor = $actor;
988
+	$this->actor = $actor;
989 989
   }
990 990
   public function getActor()
991 991
   {
992
-    return $this->actor;
992
+	return $this->actor;
993 993
   }
994 994
   public function setAddress($address)
995 995
   {
996
-    $this->address = $address;
996
+	$this->address = $address;
997 997
   }
998 998
   public function getAddress()
999 999
   {
1000
-    return $this->address;
1000
+	return $this->address;
1001 1001
   }
1002 1002
   public function setAnnotation($annotation)
1003 1003
   {
1004
-    $this->annotation = $annotation;
1004
+	$this->annotation = $annotation;
1005 1005
   }
1006 1006
   public function getAnnotation()
1007 1007
   {
1008
-    return $this->annotation;
1008
+	return $this->annotation;
1009 1009
   }
1010 1010
   public function setCrosspostSource($crosspostSource)
1011 1011
   {
1012
-    $this->crosspostSource = $crosspostSource;
1012
+	$this->crosspostSource = $crosspostSource;
1013 1013
   }
1014 1014
   public function getCrosspostSource()
1015 1015
   {
1016
-    return $this->crosspostSource;
1016
+	return $this->crosspostSource;
1017 1017
   }
1018 1018
   public function setEtag($etag)
1019 1019
   {
1020
-    $this->etag = $etag;
1020
+	$this->etag = $etag;
1021 1021
   }
1022 1022
   public function getEtag()
1023 1023
   {
1024
-    return $this->etag;
1024
+	return $this->etag;
1025 1025
   }
1026 1026
   public function setGeocode($geocode)
1027 1027
   {
1028
-    $this->geocode = $geocode;
1028
+	$this->geocode = $geocode;
1029 1029
   }
1030 1030
   public function getGeocode()
1031 1031
   {
1032
-    return $this->geocode;
1032
+	return $this->geocode;
1033 1033
   }
1034 1034
   public function setId($id)
1035 1035
   {
1036
-    $this->id = $id;
1036
+	$this->id = $id;
1037 1037
   }
1038 1038
   public function getId()
1039 1039
   {
1040
-    return $this->id;
1040
+	return $this->id;
1041 1041
   }
1042 1042
   public function setKind($kind)
1043 1043
   {
1044
-    $this->kind = $kind;
1044
+	$this->kind = $kind;
1045 1045
   }
1046 1046
   public function getKind()
1047 1047
   {
1048
-    return $this->kind;
1048
+	return $this->kind;
1049 1049
   }
1050 1050
   public function setLocation(Google_Service_PlusDomains_Place $location)
1051 1051
   {
1052
-    $this->location = $location;
1052
+	$this->location = $location;
1053 1053
   }
1054 1054
   public function getLocation()
1055 1055
   {
1056
-    return $this->location;
1056
+	return $this->location;
1057 1057
   }
1058 1058
   public function setObject(Google_Service_PlusDomains_ActivityObject $object)
1059 1059
   {
1060
-    $this->object = $object;
1060
+	$this->object = $object;
1061 1061
   }
1062 1062
   public function getObject()
1063 1063
   {
1064
-    return $this->object;
1064
+	return $this->object;
1065 1065
   }
1066 1066
   public function setPlaceId($placeId)
1067 1067
   {
1068
-    $this->placeId = $placeId;
1068
+	$this->placeId = $placeId;
1069 1069
   }
1070 1070
   public function getPlaceId()
1071 1071
   {
1072
-    return $this->placeId;
1072
+	return $this->placeId;
1073 1073
   }
1074 1074
   public function setPlaceName($placeName)
1075 1075
   {
1076
-    $this->placeName = $placeName;
1076
+	$this->placeName = $placeName;
1077 1077
   }
1078 1078
   public function getPlaceName()
1079 1079
   {
1080
-    return $this->placeName;
1080
+	return $this->placeName;
1081 1081
   }
1082 1082
   public function setProvider(Google_Service_PlusDomains_ActivityProvider $provider)
1083 1083
   {
1084
-    $this->provider = $provider;
1084
+	$this->provider = $provider;
1085 1085
   }
1086 1086
   public function getProvider()
1087 1087
   {
1088
-    return $this->provider;
1088
+	return $this->provider;
1089 1089
   }
1090 1090
   public function setPublished($published)
1091 1091
   {
1092
-    $this->published = $published;
1092
+	$this->published = $published;
1093 1093
   }
1094 1094
   public function getPublished()
1095 1095
   {
1096
-    return $this->published;
1096
+	return $this->published;
1097 1097
   }
1098 1098
   public function setRadius($radius)
1099 1099
   {
1100
-    $this->radius = $radius;
1100
+	$this->radius = $radius;
1101 1101
   }
1102 1102
   public function getRadius()
1103 1103
   {
1104
-    return $this->radius;
1104
+	return $this->radius;
1105 1105
   }
1106 1106
   public function setTitle($title)
1107 1107
   {
1108
-    $this->title = $title;
1108
+	$this->title = $title;
1109 1109
   }
1110 1110
   public function getTitle()
1111 1111
   {
1112
-    return $this->title;
1112
+	return $this->title;
1113 1113
   }
1114 1114
   public function setUpdated($updated)
1115 1115
   {
1116
-    $this->updated = $updated;
1116
+	$this->updated = $updated;
1117 1117
   }
1118 1118
   public function getUpdated()
1119 1119
   {
1120
-    return $this->updated;
1120
+	return $this->updated;
1121 1121
   }
1122 1122
   public function setUrl($url)
1123 1123
   {
1124
-    $this->url = $url;
1124
+	$this->url = $url;
1125 1125
   }
1126 1126
   public function getUrl()
1127 1127
   {
1128
-    return $this->url;
1128
+	return $this->url;
1129 1129
   }
1130 1130
   public function setVerb($verb)
1131 1131
   {
1132
-    $this->verb = $verb;
1132
+	$this->verb = $verb;
1133 1133
   }
1134 1134
   public function getVerb()
1135 1135
   {
1136
-    return $this->verb;
1136
+	return $this->verb;
1137 1137
   }
1138 1138
 }
1139 1139
 
@@ -1152,43 +1152,43 @@  discard block
 block discarded – undo
1152 1152
 
1153 1153
   public function setDisplayName($displayName)
1154 1154
   {
1155
-    $this->displayName = $displayName;
1155
+	$this->displayName = $displayName;
1156 1156
   }
1157 1157
   public function getDisplayName()
1158 1158
   {
1159
-    return $this->displayName;
1159
+	return $this->displayName;
1160 1160
   }
1161 1161
   public function setId($id)
1162 1162
   {
1163
-    $this->id = $id;
1163
+	$this->id = $id;
1164 1164
   }
1165 1165
   public function getId()
1166 1166
   {
1167
-    return $this->id;
1167
+	return $this->id;
1168 1168
   }
1169 1169
   public function setImage(Google_Service_PlusDomains_ActivityActorImage $image)
1170 1170
   {
1171
-    $this->image = $image;
1171
+	$this->image = $image;
1172 1172
   }
1173 1173
   public function getImage()
1174 1174
   {
1175
-    return $this->image;
1175
+	return $this->image;
1176 1176
   }
1177 1177
   public function setName(Google_Service_PlusDomains_ActivityActorName $name)
1178 1178
   {
1179
-    $this->name = $name;
1179
+	$this->name = $name;
1180 1180
   }
1181 1181
   public function getName()
1182 1182
   {
1183
-    return $this->name;
1183
+	return $this->name;
1184 1184
   }
1185 1185
   public function setUrl($url)
1186 1186
   {
1187
-    $this->url = $url;
1187
+	$this->url = $url;
1188 1188
   }
1189 1189
   public function getUrl()
1190 1190
   {
1191
-    return $this->url;
1191
+	return $this->url;
1192 1192
   }
1193 1193
 }
1194 1194
 
@@ -1201,11 +1201,11 @@  discard block
 block discarded – undo
1201 1201
 
1202 1202
   public function setUrl($url)
1203 1203
   {
1204
-    $this->url = $url;
1204
+	$this->url = $url;
1205 1205
   }
1206 1206
   public function getUrl()
1207 1207
   {
1208
-    return $this->url;
1208
+	return $this->url;
1209 1209
   }
1210 1210
 }
1211 1211
 
@@ -1219,19 +1219,19 @@  discard block
 block discarded – undo
1219 1219
 
1220 1220
   public function setFamilyName($familyName)
1221 1221
   {
1222
-    $this->familyName = $familyName;
1222
+	$this->familyName = $familyName;
1223 1223
   }
1224 1224
   public function getFamilyName()
1225 1225
   {
1226
-    return $this->familyName;
1226
+	return $this->familyName;
1227 1227
   }
1228 1228
   public function setGivenName($givenName)
1229 1229
   {
1230
-    $this->givenName = $givenName;
1230
+	$this->givenName = $givenName;
1231 1231
   }
1232 1232
   public function getGivenName()
1233 1233
   {
1234
-    return $this->givenName;
1234
+	return $this->givenName;
1235 1235
   }
1236 1236
 }
1237 1237
 
@@ -1254,75 +1254,75 @@  discard block
 block discarded – undo
1254 1254
 
1255 1255
   public function setEtag($etag)
1256 1256
   {
1257
-    $this->etag = $etag;
1257
+	$this->etag = $etag;
1258 1258
   }
1259 1259
   public function getEtag()
1260 1260
   {
1261
-    return $this->etag;
1261
+	return $this->etag;
1262 1262
   }
1263 1263
   public function setId($id)
1264 1264
   {
1265
-    $this->id = $id;
1265
+	$this->id = $id;
1266 1266
   }
1267 1267
   public function getId()
1268 1268
   {
1269
-    return $this->id;
1269
+	return $this->id;
1270 1270
   }
1271 1271
   public function setItems($items)
1272 1272
   {
1273
-    $this->items = $items;
1273
+	$this->items = $items;
1274 1274
   }
1275 1275
   public function getItems()
1276 1276
   {
1277
-    return $this->items;
1277
+	return $this->items;
1278 1278
   }
1279 1279
   public function setKind($kind)
1280 1280
   {
1281
-    $this->kind = $kind;
1281
+	$this->kind = $kind;
1282 1282
   }
1283 1283
   public function getKind()
1284 1284
   {
1285
-    return $this->kind;
1285
+	return $this->kind;
1286 1286
   }
1287 1287
   public function setNextLink($nextLink)
1288 1288
   {
1289
-    $this->nextLink = $nextLink;
1289
+	$this->nextLink = $nextLink;
1290 1290
   }
1291 1291
   public function getNextLink()
1292 1292
   {
1293
-    return $this->nextLink;
1293
+	return $this->nextLink;
1294 1294
   }
1295 1295
   public function setNextPageToken($nextPageToken)
1296 1296
   {
1297
-    $this->nextPageToken = $nextPageToken;
1297
+	$this->nextPageToken = $nextPageToken;
1298 1298
   }
1299 1299
   public function getNextPageToken()
1300 1300
   {
1301
-    return $this->nextPageToken;
1301
+	return $this->nextPageToken;
1302 1302
   }
1303 1303
   public function setSelfLink($selfLink)
1304 1304
   {
1305
-    $this->selfLink = $selfLink;
1305
+	$this->selfLink = $selfLink;
1306 1306
   }
1307 1307
   public function getSelfLink()
1308 1308
   {
1309
-    return $this->selfLink;
1309
+	return $this->selfLink;
1310 1310
   }
1311 1311
   public function setTitle($title)
1312 1312
   {
1313
-    $this->title = $title;
1313
+	$this->title = $title;
1314 1314
   }
1315 1315
   public function getTitle()
1316 1316
   {
1317
-    return $this->title;
1317
+	return $this->title;
1318 1318
   }
1319 1319
   public function setUpdated($updated)
1320 1320
   {
1321
-    $this->updated = $updated;
1321
+	$this->updated = $updated;
1322 1322
   }
1323 1323
   public function getUpdated()
1324 1324
   {
1325
-    return $this->updated;
1325
+	return $this->updated;
1326 1326
   }
1327 1327
 }
1328 1328
 
@@ -1352,91 +1352,91 @@  discard block
 block discarded – undo
1352 1352
 
1353 1353
   public function setActor(Google_Service_PlusDomains_ActivityObjectActor $actor)
1354 1354
   {
1355
-    $this->actor = $actor;
1355
+	$this->actor = $actor;
1356 1356
   }
1357 1357
   public function getActor()
1358 1358
   {
1359
-    return $this->actor;
1359
+	return $this->actor;
1360 1360
   }
1361 1361
   public function setAttachments($attachments)
1362 1362
   {
1363
-    $this->attachments = $attachments;
1363
+	$this->attachments = $attachments;
1364 1364
   }
1365 1365
   public function getAttachments()
1366 1366
   {
1367
-    return $this->attachments;
1367
+	return $this->attachments;
1368 1368
   }
1369 1369
   public function setContent($content)
1370 1370
   {
1371
-    $this->content = $content;
1371
+	$this->content = $content;
1372 1372
   }
1373 1373
   public function getContent()
1374 1374
   {
1375
-    return $this->content;
1375
+	return $this->content;
1376 1376
   }
1377 1377
   public function setId($id)
1378 1378
   {
1379
-    $this->id = $id;
1379
+	$this->id = $id;
1380 1380
   }
1381 1381
   public function getId()
1382 1382
   {
1383
-    return $this->id;
1383
+	return $this->id;
1384 1384
   }
1385 1385
   public function setObjectType($objectType)
1386 1386
   {
1387
-    $this->objectType = $objectType;
1387
+	$this->objectType = $objectType;
1388 1388
   }
1389 1389
   public function getObjectType()
1390 1390
   {
1391
-    return $this->objectType;
1391
+	return $this->objectType;
1392 1392
   }
1393 1393
   public function setOriginalContent($originalContent)
1394 1394
   {
1395
-    $this->originalContent = $originalContent;
1395
+	$this->originalContent = $originalContent;
1396 1396
   }
1397 1397
   public function getOriginalContent()
1398 1398
   {
1399
-    return $this->originalContent;
1399
+	return $this->originalContent;
1400 1400
   }
1401 1401
   public function setPlusoners(Google_Service_PlusDomains_ActivityObjectPlusoners $plusoners)
1402 1402
   {
1403
-    $this->plusoners = $plusoners;
1403
+	$this->plusoners = $plusoners;
1404 1404
   }
1405 1405
   public function getPlusoners()
1406 1406
   {
1407
-    return $this->plusoners;
1407
+	return $this->plusoners;
1408 1408
   }
1409 1409
   public function setReplies(Google_Service_PlusDomains_ActivityObjectReplies $replies)
1410 1410
   {
1411
-    $this->replies = $replies;
1411
+	$this->replies = $replies;
1412 1412
   }
1413 1413
   public function getReplies()
1414 1414
   {
1415
-    return $this->replies;
1415
+	return $this->replies;
1416 1416
   }
1417 1417
   public function setResharers(Google_Service_PlusDomains_ActivityObjectResharers $resharers)
1418 1418
   {
1419
-    $this->resharers = $resharers;
1419
+	$this->resharers = $resharers;
1420 1420
   }
1421 1421
   public function getResharers()
1422 1422
   {
1423
-    return $this->resharers;
1423
+	return $this->resharers;
1424 1424
   }
1425 1425
   public function setStatusForViewer(Google_Service_PlusDomains_ActivityObjectStatusForViewer $statusForViewer)
1426 1426
   {
1427
-    $this->statusForViewer = $statusForViewer;
1427
+	$this->statusForViewer = $statusForViewer;
1428 1428
   }
1429 1429
   public function getStatusForViewer()
1430 1430
   {
1431
-    return $this->statusForViewer;
1431
+	return $this->statusForViewer;
1432 1432
   }
1433 1433
   public function setUrl($url)
1434 1434
   {
1435
-    $this->url = $url;
1435
+	$this->url = $url;
1436 1436
   }
1437 1437
   public function getUrl()
1438 1438
   {
1439
-    return $this->url;
1439
+	return $this->url;
1440 1440
   }
1441 1441
 }
1442 1442
 
@@ -1453,35 +1453,35 @@  discard block
 block discarded – undo
1453 1453
 
1454 1454
   public function setDisplayName($displayName)
1455 1455
   {
1456
-    $this->displayName = $displayName;
1456
+	$this->displayName = $displayName;
1457 1457
   }
1458 1458
   public function getDisplayName()
1459 1459
   {
1460
-    return $this->displayName;
1460
+	return $this->displayName;
1461 1461
   }
1462 1462
   public function setId($id)
1463 1463
   {
1464
-    $this->id = $id;
1464
+	$this->id = $id;
1465 1465
   }
1466 1466
   public function getId()
1467 1467
   {
1468
-    return $this->id;
1468
+	return $this->id;
1469 1469
   }
1470 1470
   public function setImage(Google_Service_PlusDomains_ActivityObjectActorImage $image)
1471 1471
   {
1472
-    $this->image = $image;
1472
+	$this->image = $image;
1473 1473
   }
1474 1474
   public function getImage()
1475 1475
   {
1476
-    return $this->image;
1476
+	return $this->image;
1477 1477
   }
1478 1478
   public function setUrl($url)
1479 1479
   {
1480
-    $this->url = $url;
1480
+	$this->url = $url;
1481 1481
   }
1482 1482
   public function getUrl()
1483 1483
   {
1484
-    return $this->url;
1484
+	return $this->url;
1485 1485
   }
1486 1486
 }
1487 1487
 
@@ -1494,11 +1494,11 @@  discard block
 block discarded – undo
1494 1494
 
1495 1495
   public function setUrl($url)
1496 1496
   {
1497
-    $this->url = $url;
1497
+	$this->url = $url;
1498 1498
   }
1499 1499
   public function getUrl()
1500 1500
   {
1501
-    return $this->url;
1501
+	return $this->url;
1502 1502
   }
1503 1503
 }
1504 1504
 
@@ -1526,83 +1526,83 @@  discard block
 block discarded – undo
1526 1526
 
1527 1527
   public function setContent($content)
1528 1528
   {
1529
-    $this->content = $content;
1529
+	$this->content = $content;
1530 1530
   }
1531 1531
   public function getContent()
1532 1532
   {
1533
-    return $this->content;
1533
+	return $this->content;
1534 1534
   }
1535 1535
   public function setDisplayName($displayName)
1536 1536
   {
1537
-    $this->displayName = $displayName;
1537
+	$this->displayName = $displayName;
1538 1538
   }
1539 1539
   public function getDisplayName()
1540 1540
   {
1541
-    return $this->displayName;
1541
+	return $this->displayName;
1542 1542
   }
1543 1543
   public function setEmbed(Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed $embed)
1544 1544
   {
1545
-    $this->embed = $embed;
1545
+	$this->embed = $embed;
1546 1546
   }
1547 1547
   public function getEmbed()
1548 1548
   {
1549
-    return $this->embed;
1549
+	return $this->embed;
1550 1550
   }
1551 1551
   public function setFullImage(Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage $fullImage)
1552 1552
   {
1553
-    $this->fullImage = $fullImage;
1553
+	$this->fullImage = $fullImage;
1554 1554
   }
1555 1555
   public function getFullImage()
1556 1556
   {
1557
-    return $this->fullImage;
1557
+	return $this->fullImage;
1558 1558
   }
1559 1559
   public function setId($id)
1560 1560
   {
1561
-    $this->id = $id;
1561
+	$this->id = $id;
1562 1562
   }
1563 1563
   public function getId()
1564 1564
   {
1565
-    return $this->id;
1565
+	return $this->id;
1566 1566
   }
1567 1567
   public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsImage $image)
1568 1568
   {
1569
-    $this->image = $image;
1569
+	$this->image = $image;
1570 1570
   }
1571 1571
   public function getImage()
1572 1572
   {
1573
-    return $this->image;
1573
+	return $this->image;
1574 1574
   }
1575 1575
   public function setObjectType($objectType)
1576 1576
   {
1577
-    $this->objectType = $objectType;
1577
+	$this->objectType = $objectType;
1578 1578
   }
1579 1579
   public function getObjectType()
1580 1580
   {
1581
-    return $this->objectType;
1581
+	return $this->objectType;
1582 1582
   }
1583 1583
   public function setPreviewThumbnails($previewThumbnails)
1584 1584
   {
1585
-    $this->previewThumbnails = $previewThumbnails;
1585
+	$this->previewThumbnails = $previewThumbnails;
1586 1586
   }
1587 1587
   public function getPreviewThumbnails()
1588 1588
   {
1589
-    return $this->previewThumbnails;
1589
+	return $this->previewThumbnails;
1590 1590
   }
1591 1591
   public function setThumbnails($thumbnails)
1592 1592
   {
1593
-    $this->thumbnails = $thumbnails;
1593
+	$this->thumbnails = $thumbnails;
1594 1594
   }
1595 1595
   public function getThumbnails()
1596 1596
   {
1597
-    return $this->thumbnails;
1597
+	return $this->thumbnails;
1598 1598
   }
1599 1599
   public function setUrl($url)
1600 1600
   {
1601
-    $this->url = $url;
1601
+	$this->url = $url;
1602 1602
   }
1603 1603
   public function getUrl()
1604 1604
   {
1605
-    return $this->url;
1605
+	return $this->url;
1606 1606
   }
1607 1607
 }
1608 1608
 
@@ -1616,19 +1616,19 @@  discard block
 block discarded – undo
1616 1616
 
1617 1617
   public function setType($type)
1618 1618
   {
1619
-    $this->type = $type;
1619
+	$this->type = $type;
1620 1620
   }
1621 1621
   public function getType()
1622 1622
   {
1623
-    return $this->type;
1623
+	return $this->type;
1624 1624
   }
1625 1625
   public function setUrl($url)
1626 1626
   {
1627
-    $this->url = $url;
1627
+	$this->url = $url;
1628 1628
   }
1629 1629
   public function getUrl()
1630 1630
   {
1631
-    return $this->url;
1631
+	return $this->url;
1632 1632
   }
1633 1633
 }
1634 1634
 
@@ -1644,35 +1644,35 @@  discard block
 block discarded – undo
1644 1644
 
1645 1645
   public function setHeight($height)
1646 1646
   {
1647
-    $this->height = $height;
1647
+	$this->height = $height;
1648 1648
   }
1649 1649
   public function getHeight()
1650 1650
   {
1651
-    return $this->height;
1651
+	return $this->height;
1652 1652
   }
1653 1653
   public function setType($type)
1654 1654
   {
1655
-    $this->type = $type;
1655
+	$this->type = $type;
1656 1656
   }
1657 1657
   public function getType()
1658 1658
   {
1659
-    return $this->type;
1659
+	return $this->type;
1660 1660
   }
1661 1661
   public function setUrl($url)
1662 1662
   {
1663
-    $this->url = $url;
1663
+	$this->url = $url;
1664 1664
   }
1665 1665
   public function getUrl()
1666 1666
   {
1667
-    return $this->url;
1667
+	return $this->url;
1668 1668
   }
1669 1669
   public function setWidth($width)
1670 1670
   {
1671
-    $this->width = $width;
1671
+	$this->width = $width;
1672 1672
   }
1673 1673
   public function getWidth()
1674 1674
   {
1675
-    return $this->width;
1675
+	return $this->width;
1676 1676
   }
1677 1677
 }
1678 1678
 
@@ -1688,35 +1688,35 @@  discard block
 block discarded – undo
1688 1688
 
1689 1689
   public function setHeight($height)
1690 1690
   {
1691
-    $this->height = $height;
1691
+	$this->height = $height;
1692 1692
   }
1693 1693
   public function getHeight()
1694 1694
   {
1695
-    return $this->height;
1695
+	return $this->height;
1696 1696
   }
1697 1697
   public function setType($type)
1698 1698
   {
1699
-    $this->type = $type;
1699
+	$this->type = $type;
1700 1700
   }
1701 1701
   public function getType()
1702 1702
   {
1703
-    return $this->type;
1703
+	return $this->type;
1704 1704
   }
1705 1705
   public function setUrl($url)
1706 1706
   {
1707
-    $this->url = $url;
1707
+	$this->url = $url;
1708 1708
   }
1709 1709
   public function getUrl()
1710 1710
   {
1711
-    return $this->url;
1711
+	return $this->url;
1712 1712
   }
1713 1713
   public function setWidth($width)
1714 1714
   {
1715
-    $this->width = $width;
1715
+	$this->width = $width;
1716 1716
   }
1717 1717
   public function getWidth()
1718 1718
   {
1719
-    return $this->width;
1719
+	return $this->width;
1720 1720
   }
1721 1721
 }
1722 1722
 
@@ -1729,11 +1729,11 @@  discard block
 block discarded – undo
1729 1729
 
1730 1730
   public function setUrl($url)
1731 1731
   {
1732
-    $this->url = $url;
1732
+	$this->url = $url;
1733 1733
   }
1734 1734
   public function getUrl()
1735 1735
   {
1736
-    return $this->url;
1736
+	return $this->url;
1737 1737
   }
1738 1738
 }
1739 1739
 
@@ -1749,27 +1749,27 @@  discard block
 block discarded – undo
1749 1749
 
1750 1750
   public function setDescription($description)
1751 1751
   {
1752
-    $this->description = $description;
1752
+	$this->description = $description;
1753 1753
   }
1754 1754
   public function getDescription()
1755 1755
   {
1756
-    return $this->description;
1756
+	return $this->description;
1757 1757
   }
1758 1758
   public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage $image)
1759 1759
   {
1760
-    $this->image = $image;
1760
+	$this->image = $image;
1761 1761
   }
1762 1762
   public function getImage()
1763 1763
   {
1764
-    return $this->image;
1764
+	return $this->image;
1765 1765
   }
1766 1766
   public function setUrl($url)
1767 1767
   {
1768
-    $this->url = $url;
1768
+	$this->url = $url;
1769 1769
   }
1770 1770
   public function getUrl()
1771 1771
   {
1772
-    return $this->url;
1772
+	return $this->url;
1773 1773
   }
1774 1774
 }
1775 1775
 
@@ -1785,35 +1785,35 @@  discard block
 block discarded – undo
1785 1785
 
1786 1786
   public function setHeight($height)
1787 1787
   {
1788
-    $this->height = $height;
1788
+	$this->height = $height;
1789 1789
   }
1790 1790
   public function getHeight()
1791 1791
   {
1792
-    return $this->height;
1792
+	return $this->height;
1793 1793
   }
1794 1794
   public function setType($type)
1795 1795
   {
1796
-    $this->type = $type;
1796
+	$this->type = $type;
1797 1797
   }
1798 1798
   public function getType()
1799 1799
   {
1800
-    return $this->type;
1800
+	return $this->type;
1801 1801
   }
1802 1802
   public function setUrl($url)
1803 1803
   {
1804
-    $this->url = $url;
1804
+	$this->url = $url;
1805 1805
   }
1806 1806
   public function getUrl()
1807 1807
   {
1808
-    return $this->url;
1808
+	return $this->url;
1809 1809
   }
1810 1810
   public function setWidth($width)
1811 1811
   {
1812
-    $this->width = $width;
1812
+	$this->width = $width;
1813 1813
   }
1814 1814
   public function getWidth()
1815 1815
   {
1816
-    return $this->width;
1816
+	return $this->width;
1817 1817
   }
1818 1818
 }
1819 1819
 
@@ -1827,19 +1827,19 @@  discard block
 block discarded – undo
1827 1827
 
1828 1828
   public function setSelfLink($selfLink)
1829 1829
   {
1830
-    $this->selfLink = $selfLink;
1830
+	$this->selfLink = $selfLink;
1831 1831
   }
1832 1832
   public function getSelfLink()
1833 1833
   {
1834
-    return $this->selfLink;
1834
+	return $this->selfLink;
1835 1835
   }
1836 1836
   public function setTotalItems($totalItems)
1837 1837
   {
1838
-    $this->totalItems = $totalItems;
1838
+	$this->totalItems = $totalItems;
1839 1839
   }
1840 1840
   public function getTotalItems()
1841 1841
   {
1842
-    return $this->totalItems;
1842
+	return $this->totalItems;
1843 1843
   }
1844 1844
 }
1845 1845
 
@@ -1853,19 +1853,19 @@  discard block
 block discarded – undo
1853 1853
 
1854 1854
   public function setSelfLink($selfLink)
1855 1855
   {
1856
-    $this->selfLink = $selfLink;
1856
+	$this->selfLink = $selfLink;
1857 1857
   }
1858 1858
   public function getSelfLink()
1859 1859
   {
1860
-    return $this->selfLink;
1860
+	return $this->selfLink;
1861 1861
   }
1862 1862
   public function setTotalItems($totalItems)
1863 1863
   {
1864
-    $this->totalItems = $totalItems;
1864
+	$this->totalItems = $totalItems;
1865 1865
   }
1866 1866
   public function getTotalItems()
1867 1867
   {
1868
-    return $this->totalItems;
1868
+	return $this->totalItems;
1869 1869
   }
1870 1870
 }
1871 1871
 
@@ -1879,19 +1879,19 @@  discard block
 block discarded – undo
1879 1879
 
1880 1880
   public function setSelfLink($selfLink)
1881 1881
   {
1882
-    $this->selfLink = $selfLink;
1882
+	$this->selfLink = $selfLink;
1883 1883
   }
1884 1884
   public function getSelfLink()
1885 1885
   {
1886
-    return $this->selfLink;
1886
+	return $this->selfLink;
1887 1887
   }
1888 1888
   public function setTotalItems($totalItems)
1889 1889
   {
1890
-    $this->totalItems = $totalItems;
1890
+	$this->totalItems = $totalItems;
1891 1891
   }
1892 1892
   public function getTotalItems()
1893 1893
   {
1894
-    return $this->totalItems;
1894
+	return $this->totalItems;
1895 1895
   }
1896 1896
 }
1897 1897
 
@@ -1908,43 +1908,43 @@  discard block
 block discarded – undo
1908 1908
 
1909 1909
   public function setCanComment($canComment)
1910 1910
   {
1911
-    $this->canComment = $canComment;
1911
+	$this->canComment = $canComment;
1912 1912
   }
1913 1913
   public function getCanComment()
1914 1914
   {
1915
-    return $this->canComment;
1915
+	return $this->canComment;
1916 1916
   }
1917 1917
   public function setCanPlusone($canPlusone)
1918 1918
   {
1919
-    $this->canPlusone = $canPlusone;
1919
+	$this->canPlusone = $canPlusone;
1920 1920
   }
1921 1921
   public function getCanPlusone()
1922 1922
   {
1923
-    return $this->canPlusone;
1923
+	return $this->canPlusone;
1924 1924
   }
1925 1925
   public function setCanUpdate($canUpdate)
1926 1926
   {
1927
-    $this->canUpdate = $canUpdate;
1927
+	$this->canUpdate = $canUpdate;
1928 1928
   }
1929 1929
   public function getCanUpdate()
1930 1930
   {
1931
-    return $this->canUpdate;
1931
+	return $this->canUpdate;
1932 1932
   }
1933 1933
   public function setIsPlusOned($isPlusOned)
1934 1934
   {
1935
-    $this->isPlusOned = $isPlusOned;
1935
+	$this->isPlusOned = $isPlusOned;
1936 1936
   }
1937 1937
   public function getIsPlusOned()
1938 1938
   {
1939
-    return $this->isPlusOned;
1939
+	return $this->isPlusOned;
1940 1940
   }
1941 1941
   public function setResharingDisabled($resharingDisabled)
1942 1942
   {
1943
-    $this->resharingDisabled = $resharingDisabled;
1943
+	$this->resharingDisabled = $resharingDisabled;
1944 1944
   }
1945 1945
   public function getResharingDisabled()
1946 1946
   {
1947
-    return $this->resharingDisabled;
1947
+	return $this->resharingDisabled;
1948 1948
   }
1949 1949
 }
1950 1950
 
@@ -1957,11 +1957,11 @@  discard block
 block discarded – undo
1957 1957
 
1958 1958
   public function setTitle($title)
1959 1959
   {
1960
-    $this->title = $title;
1960
+	$this->title = $title;
1961 1961
   }
1962 1962
   public function getTitle()
1963 1963
   {
1964
-    return $this->title;
1964
+	return $this->title;
1965 1965
   }
1966 1966
 }
1967 1967
 
@@ -1979,43 +1979,43 @@  discard block
 block discarded – undo
1979 1979
 
1980 1980
   public function setEtag($etag)
1981 1981
   {
1982
-    $this->etag = $etag;
1982
+	$this->etag = $etag;
1983 1983
   }
1984 1984
   public function getEtag()
1985 1985
   {
1986
-    return $this->etag;
1986
+	return $this->etag;
1987 1987
   }
1988 1988
   public function setItem(Google_Service_PlusDomains_PlusDomainsAclentryResource $item)
1989 1989
   {
1990
-    $this->item = $item;
1990
+	$this->item = $item;
1991 1991
   }
1992 1992
   public function getItem()
1993 1993
   {
1994
-    return $this->item;
1994
+	return $this->item;
1995 1995
   }
1996 1996
   public function setKind($kind)
1997 1997
   {
1998
-    $this->kind = $kind;
1998
+	$this->kind = $kind;
1999 1999
   }
2000 2000
   public function getKind()
2001 2001
   {
2002
-    return $this->kind;
2002
+	return $this->kind;
2003 2003
   }
2004 2004
   public function setMemberCount($memberCount)
2005 2005
   {
2006
-    $this->memberCount = $memberCount;
2006
+	$this->memberCount = $memberCount;
2007 2007
   }
2008 2008
   public function getMemberCount()
2009 2009
   {
2010
-    return $this->memberCount;
2010
+	return $this->memberCount;
2011 2011
   }
2012 2012
   public function setVisibility($visibility)
2013 2013
   {
2014
-    $this->visibility = $visibility;
2014
+	$this->visibility = $visibility;
2015 2015
   }
2016 2016
   public function getVisibility()
2017 2017
   {
2018
-    return $this->visibility;
2018
+	return $this->visibility;
2019 2019
   }
2020 2020
 }
2021 2021
 
@@ -2034,43 +2034,43 @@  discard block
 block discarded – undo
2034 2034
 
2035 2035
   public function setEtag($etag)
2036 2036
   {
2037
-    $this->etag = $etag;
2037
+	$this->etag = $etag;
2038 2038
   }
2039 2039
   public function getEtag()
2040 2040
   {
2041
-    return $this->etag;
2041
+	return $this->etag;
2042 2042
   }
2043 2043
   public function setItems($items)
2044 2044
   {
2045
-    $this->items = $items;
2045
+	$this->items = $items;
2046 2046
   }
2047 2047
   public function getItems()
2048 2048
   {
2049
-    return $this->items;
2049
+	return $this->items;
2050 2050
   }
2051 2051
   public function setKind($kind)
2052 2052
   {
2053
-    $this->kind = $kind;
2053
+	$this->kind = $kind;
2054 2054
   }
2055 2055
   public function getKind()
2056 2056
   {
2057
-    return $this->kind;
2057
+	return $this->kind;
2058 2058
   }
2059 2059
   public function setNextPageToken($nextPageToken)
2060 2060
   {
2061
-    $this->nextPageToken = $nextPageToken;
2061
+	$this->nextPageToken = $nextPageToken;
2062 2062
   }
2063 2063
   public function getNextPageToken()
2064 2064
   {
2065
-    return $this->nextPageToken;
2065
+	return $this->nextPageToken;
2066 2066
   }
2067 2067
   public function setTotalItems($totalItems)
2068 2068
   {
2069
-    $this->totalItems = $totalItems;
2069
+	$this->totalItems = $totalItems;
2070 2070
   }
2071 2071
   public function getTotalItems()
2072 2072
   {
2073
-    return $this->totalItems;
2073
+	return $this->totalItems;
2074 2074
   }
2075 2075
 }
2076 2076
 
@@ -2090,59 +2090,59 @@  discard block
 block discarded – undo
2090 2090
 
2091 2091
   public function setDescription($description)
2092 2092
   {
2093
-    $this->description = $description;
2093
+	$this->description = $description;
2094 2094
   }
2095 2095
   public function getDescription()
2096 2096
   {
2097
-    return $this->description;
2097
+	return $this->description;
2098 2098
   }
2099 2099
   public function setDisplayName($displayName)
2100 2100
   {
2101
-    $this->displayName = $displayName;
2101
+	$this->displayName = $displayName;
2102 2102
   }
2103 2103
   public function getDisplayName()
2104 2104
   {
2105
-    return $this->displayName;
2105
+	return $this->displayName;
2106 2106
   }
2107 2107
   public function setEtag($etag)
2108 2108
   {
2109
-    $this->etag = $etag;
2109
+	$this->etag = $etag;
2110 2110
   }
2111 2111
   public function getEtag()
2112 2112
   {
2113
-    return $this->etag;
2113
+	return $this->etag;
2114 2114
   }
2115 2115
   public function setId($id)
2116 2116
   {
2117
-    $this->id = $id;
2117
+	$this->id = $id;
2118 2118
   }
2119 2119
   public function getId()
2120 2120
   {
2121
-    return $this->id;
2121
+	return $this->id;
2122 2122
   }
2123 2123
   public function setKind($kind)
2124 2124
   {
2125
-    $this->kind = $kind;
2125
+	$this->kind = $kind;
2126 2126
   }
2127 2127
   public function getKind()
2128 2128
   {
2129
-    return $this->kind;
2129
+	return $this->kind;
2130 2130
   }
2131 2131
   public function setPeople(Google_Service_PlusDomains_CirclePeople $people)
2132 2132
   {
2133
-    $this->people = $people;
2133
+	$this->people = $people;
2134 2134
   }
2135 2135
   public function getPeople()
2136 2136
   {
2137
-    return $this->people;
2137
+	return $this->people;
2138 2138
   }
2139 2139
   public function setSelfLink($selfLink)
2140 2140
   {
2141
-    $this->selfLink = $selfLink;
2141
+	$this->selfLink = $selfLink;
2142 2142
   }
2143 2143
   public function getSelfLink()
2144 2144
   {
2145
-    return $this->selfLink;
2145
+	return $this->selfLink;
2146 2146
   }
2147 2147
 }
2148 2148
 
@@ -2164,67 +2164,67 @@  discard block
 block discarded – undo
2164 2164
 
2165 2165
   public function setEtag($etag)
2166 2166
   {
2167
-    $this->etag = $etag;
2167
+	$this->etag = $etag;
2168 2168
   }
2169 2169
   public function getEtag()
2170 2170
   {
2171
-    return $this->etag;
2171
+	return $this->etag;
2172 2172
   }
2173 2173
   public function setItems($items)
2174 2174
   {
2175
-    $this->items = $items;
2175
+	$this->items = $items;
2176 2176
   }
2177 2177
   public function getItems()
2178 2178
   {
2179
-    return $this->items;
2179
+	return $this->items;
2180 2180
   }
2181 2181
   public function setKind($kind)
2182 2182
   {
2183
-    $this->kind = $kind;
2183
+	$this->kind = $kind;
2184 2184
   }
2185 2185
   public function getKind()
2186 2186
   {
2187
-    return $this->kind;
2187
+	return $this->kind;
2188 2188
   }
2189 2189
   public function setNextLink($nextLink)
2190 2190
   {
2191
-    $this->nextLink = $nextLink;
2191
+	$this->nextLink = $nextLink;
2192 2192
   }
2193 2193
   public function getNextLink()
2194 2194
   {
2195
-    return $this->nextLink;
2195
+	return $this->nextLink;
2196 2196
   }
2197 2197
   public function setNextPageToken($nextPageToken)
2198 2198
   {
2199
-    $this->nextPageToken = $nextPageToken;
2199
+	$this->nextPageToken = $nextPageToken;
2200 2200
   }
2201 2201
   public function getNextPageToken()
2202 2202
   {
2203
-    return $this->nextPageToken;
2203
+	return $this->nextPageToken;
2204 2204
   }
2205 2205
   public function setSelfLink($selfLink)
2206 2206
   {
2207
-    $this->selfLink = $selfLink;
2207
+	$this->selfLink = $selfLink;
2208 2208
   }
2209 2209
   public function getSelfLink()
2210 2210
   {
2211
-    return $this->selfLink;
2211
+	return $this->selfLink;
2212 2212
   }
2213 2213
   public function setTitle($title)
2214 2214
   {
2215
-    $this->title = $title;
2215
+	$this->title = $title;
2216 2216
   }
2217 2217
   public function getTitle()
2218 2218
   {
2219
-    return $this->title;
2219
+	return $this->title;
2220 2220
   }
2221 2221
   public function setTotalItems($totalItems)
2222 2222
   {
2223
-    $this->totalItems = $totalItems;
2223
+	$this->totalItems = $totalItems;
2224 2224
   }
2225 2225
   public function getTotalItems()
2226 2226
   {
2227
-    return $this->totalItems;
2227
+	return $this->totalItems;
2228 2228
   }
2229 2229
 }
2230 2230
 
@@ -2237,11 +2237,11 @@  discard block
 block discarded – undo
2237 2237
 
2238 2238
   public function setTotalItems($totalItems)
2239 2239
   {
2240
-    $this->totalItems = $totalItems;
2240
+	$this->totalItems = $totalItems;
2241 2241
   }
2242 2242
   public function getTotalItems()
2243 2243
   {
2244
-    return $this->totalItems;
2244
+	return $this->totalItems;
2245 2245
   }
2246 2246
 }
2247 2247
 
@@ -2269,91 +2269,91 @@  discard block
 block discarded – undo
2269 2269
 
2270 2270
   public function setActor(Google_Service_PlusDomains_CommentActor $actor)
2271 2271
   {
2272
-    $this->actor = $actor;
2272
+	$this->actor = $actor;
2273 2273
   }
2274 2274
   public function getActor()
2275 2275
   {
2276
-    return $this->actor;
2276
+	return $this->actor;
2277 2277
   }
2278 2278
   public function setEtag($etag)
2279 2279
   {
2280
-    $this->etag = $etag;
2280
+	$this->etag = $etag;
2281 2281
   }
2282 2282
   public function getEtag()
2283 2283
   {
2284
-    return $this->etag;
2284
+	return $this->etag;
2285 2285
   }
2286 2286
   public function setId($id)
2287 2287
   {
2288
-    $this->id = $id;
2288
+	$this->id = $id;
2289 2289
   }
2290 2290
   public function getId()
2291 2291
   {
2292
-    return $this->id;
2292
+	return $this->id;
2293 2293
   }
2294 2294
   public function setInReplyTo($inReplyTo)
2295 2295
   {
2296
-    $this->inReplyTo = $inReplyTo;
2296
+	$this->inReplyTo = $inReplyTo;
2297 2297
   }
2298 2298
   public function getInReplyTo()
2299 2299
   {
2300
-    return $this->inReplyTo;
2300
+	return $this->inReplyTo;
2301 2301
   }
2302 2302
   public function setKind($kind)
2303 2303
   {
2304
-    $this->kind = $kind;
2304
+	$this->kind = $kind;
2305 2305
   }
2306 2306
   public function getKind()
2307 2307
   {
2308
-    return $this->kind;
2308
+	return $this->kind;
2309 2309
   }
2310 2310
   public function setObject(Google_Service_PlusDomains_CommentObject $object)
2311 2311
   {
2312
-    $this->object = $object;
2312
+	$this->object = $object;
2313 2313
   }
2314 2314
   public function getObject()
2315 2315
   {
2316
-    return $this->object;
2316
+	return $this->object;
2317 2317
   }
2318 2318
   public function setPlusoners(Google_Service_PlusDomains_CommentPlusoners $plusoners)
2319 2319
   {
2320
-    $this->plusoners = $plusoners;
2320
+	$this->plusoners = $plusoners;
2321 2321
   }
2322 2322
   public function getPlusoners()
2323 2323
   {
2324
-    return $this->plusoners;
2324
+	return $this->plusoners;
2325 2325
   }
2326 2326
   public function setPublished($published)
2327 2327
   {
2328
-    $this->published = $published;
2328
+	$this->published = $published;
2329 2329
   }
2330 2330
   public function getPublished()
2331 2331
   {
2332
-    return $this->published;
2332
+	return $this->published;
2333 2333
   }
2334 2334
   public function setSelfLink($selfLink)
2335 2335
   {
2336
-    $this->selfLink = $selfLink;
2336
+	$this->selfLink = $selfLink;
2337 2337
   }
2338 2338
   public function getSelfLink()
2339 2339
   {
2340
-    return $this->selfLink;
2340
+	return $this->selfLink;
2341 2341
   }
2342 2342
   public function setUpdated($updated)
2343 2343
   {
2344
-    $this->updated = $updated;
2344
+	$this->updated = $updated;
2345 2345
   }
2346 2346
   public function getUpdated()
2347 2347
   {
2348
-    return $this->updated;
2348
+	return $this->updated;
2349 2349
   }
2350 2350
   public function setVerb($verb)
2351 2351
   {
2352
-    $this->verb = $verb;
2352
+	$this->verb = $verb;
2353 2353
   }
2354 2354
   public function getVerb()
2355 2355
   {
2356
-    return $this->verb;
2356
+	return $this->verb;
2357 2357
   }
2358 2358
 }
2359 2359
 
@@ -2370,35 +2370,35 @@  discard block
 block discarded – undo
2370 2370
 
2371 2371
   public function setDisplayName($displayName)
2372 2372
   {
2373
-    $this->displayName = $displayName;
2373
+	$this->displayName = $displayName;
2374 2374
   }
2375 2375
   public function getDisplayName()
2376 2376
   {
2377
-    return $this->displayName;
2377
+	return $this->displayName;
2378 2378
   }
2379 2379
   public function setId($id)
2380 2380
   {
2381
-    $this->id = $id;
2381
+	$this->id = $id;
2382 2382
   }
2383 2383
   public function getId()
2384 2384
   {
2385
-    return $this->id;
2385
+	return $this->id;
2386 2386
   }
2387 2387
   public function setImage(Google_Service_PlusDomains_CommentActorImage $image)
2388 2388
   {
2389
-    $this->image = $image;
2389
+	$this->image = $image;
2390 2390
   }
2391 2391
   public function getImage()
2392 2392
   {
2393
-    return $this->image;
2393
+	return $this->image;
2394 2394
   }
2395 2395
   public function setUrl($url)
2396 2396
   {
2397
-    $this->url = $url;
2397
+	$this->url = $url;
2398 2398
   }
2399 2399
   public function getUrl()
2400 2400
   {
2401
-    return $this->url;
2401
+	return $this->url;
2402 2402
   }
2403 2403
 }
2404 2404
 
@@ -2411,11 +2411,11 @@  discard block
 block discarded – undo
2411 2411
 
2412 2412
   public function setUrl($url)
2413 2413
   {
2414
-    $this->url = $url;
2414
+	$this->url = $url;
2415 2415
   }
2416 2416
   public function getUrl()
2417 2417
   {
2418
-    return $this->url;
2418
+	return $this->url;
2419 2419
   }
2420 2420
 }
2421 2421
 
@@ -2437,67 +2437,67 @@  discard block
 block discarded – undo
2437 2437
 
2438 2438
   public function setEtag($etag)
2439 2439
   {
2440
-    $this->etag = $etag;
2440
+	$this->etag = $etag;
2441 2441
   }
2442 2442
   public function getEtag()
2443 2443
   {
2444
-    return $this->etag;
2444
+	return $this->etag;
2445 2445
   }
2446 2446
   public function setId($id)
2447 2447
   {
2448
-    $this->id = $id;
2448
+	$this->id = $id;
2449 2449
   }
2450 2450
   public function getId()
2451 2451
   {
2452
-    return $this->id;
2452
+	return $this->id;
2453 2453
   }
2454 2454
   public function setItems($items)
2455 2455
   {
2456
-    $this->items = $items;
2456
+	$this->items = $items;
2457 2457
   }
2458 2458
   public function getItems()
2459 2459
   {
2460
-    return $this->items;
2460
+	return $this->items;
2461 2461
   }
2462 2462
   public function setKind($kind)
2463 2463
   {
2464
-    $this->kind = $kind;
2464
+	$this->kind = $kind;
2465 2465
   }
2466 2466
   public function getKind()
2467 2467
   {
2468
-    return $this->kind;
2468
+	return $this->kind;
2469 2469
   }
2470 2470
   public function setNextLink($nextLink)
2471 2471
   {
2472
-    $this->nextLink = $nextLink;
2472
+	$this->nextLink = $nextLink;
2473 2473
   }
2474 2474
   public function getNextLink()
2475 2475
   {
2476
-    return $this->nextLink;
2476
+	return $this->nextLink;
2477 2477
   }
2478 2478
   public function setNextPageToken($nextPageToken)
2479 2479
   {
2480
-    $this->nextPageToken = $nextPageToken;
2480
+	$this->nextPageToken = $nextPageToken;
2481 2481
   }
2482 2482
   public function getNextPageToken()
2483 2483
   {
2484
-    return $this->nextPageToken;
2484
+	return $this->nextPageToken;
2485 2485
   }
2486 2486
   public function setTitle($title)
2487 2487
   {
2488
-    $this->title = $title;
2488
+	$this->title = $title;
2489 2489
   }
2490 2490
   public function getTitle()
2491 2491
   {
2492
-    return $this->title;
2492
+	return $this->title;
2493 2493
   }
2494 2494
   public function setUpdated($updated)
2495 2495
   {
2496
-    $this->updated = $updated;
2496
+	$this->updated = $updated;
2497 2497
   }
2498 2498
   public function getUpdated()
2499 2499
   {
2500
-    return $this->updated;
2500
+	return $this->updated;
2501 2501
   }
2502 2502
 }
2503 2503
 
@@ -2511,19 +2511,19 @@  discard block
 block discarded – undo
2511 2511
 
2512 2512
   public function setId($id)
2513 2513
   {
2514
-    $this->id = $id;
2514
+	$this->id = $id;
2515 2515
   }
2516 2516
   public function getId()
2517 2517
   {
2518
-    return $this->id;
2518
+	return $this->id;
2519 2519
   }
2520 2520
   public function setUrl($url)
2521 2521
   {
2522
-    $this->url = $url;
2522
+	$this->url = $url;
2523 2523
   }
2524 2524
   public function getUrl()
2525 2525
   {
2526
-    return $this->url;
2526
+	return $this->url;
2527 2527
   }
2528 2528
 }
2529 2529
 
@@ -2538,27 +2538,27 @@  discard block
 block discarded – undo
2538 2538
 
2539 2539
   public function setContent($content)
2540 2540
   {
2541
-    $this->content = $content;
2541
+	$this->content = $content;
2542 2542
   }
2543 2543
   public function getContent()
2544 2544
   {
2545
-    return $this->content;
2545
+	return $this->content;
2546 2546
   }
2547 2547
   public function setObjectType($objectType)
2548 2548
   {
2549
-    $this->objectType = $objectType;
2549
+	$this->objectType = $objectType;
2550 2550
   }
2551 2551
   public function getObjectType()
2552 2552
   {
2553
-    return $this->objectType;
2553
+	return $this->objectType;
2554 2554
   }
2555 2555
   public function setOriginalContent($originalContent)
2556 2556
   {
2557
-    $this->originalContent = $originalContent;
2557
+	$this->originalContent = $originalContent;
2558 2558
   }
2559 2559
   public function getOriginalContent()
2560 2560
   {
2561
-    return $this->originalContent;
2561
+	return $this->originalContent;
2562 2562
   }
2563 2563
 }
2564 2564
 
@@ -2571,11 +2571,11 @@  discard block
 block discarded – undo
2571 2571
 
2572 2572
   public function setTotalItems($totalItems)
2573 2573
   {
2574
-    $this->totalItems = $totalItems;
2574
+	$this->totalItems = $totalItems;
2575 2575
   }
2576 2576
   public function getTotalItems()
2577 2577
   {
2578
-    return $this->totalItems;
2578
+	return $this->totalItems;
2579 2579
   }
2580 2580
 }
2581 2581
 
@@ -2609,147 +2609,147 @@  discard block
 block discarded – undo
2609 2609
 
2610 2610
   public function setAuthor(Google_Service_PlusDomains_MediaAuthor $author)
2611 2611
   {
2612
-    $this->author = $author;
2612
+	$this->author = $author;
2613 2613
   }
2614 2614
   public function getAuthor()
2615 2615
   {
2616
-    return $this->author;
2616
+	return $this->author;
2617 2617
   }
2618 2618
   public function setDisplayName($displayName)
2619 2619
   {
2620
-    $this->displayName = $displayName;
2620
+	$this->displayName = $displayName;
2621 2621
   }
2622 2622
   public function getDisplayName()
2623 2623
   {
2624
-    return $this->displayName;
2624
+	return $this->displayName;
2625 2625
   }
2626 2626
   public function setEtag($etag)
2627 2627
   {
2628
-    $this->etag = $etag;
2628
+	$this->etag = $etag;
2629 2629
   }
2630 2630
   public function getEtag()
2631 2631
   {
2632
-    return $this->etag;
2632
+	return $this->etag;
2633 2633
   }
2634 2634
   public function setExif(Google_Service_PlusDomains_MediaExif $exif)
2635 2635
   {
2636
-    $this->exif = $exif;
2636
+	$this->exif = $exif;
2637 2637
   }
2638 2638
   public function getExif()
2639 2639
   {
2640
-    return $this->exif;
2640
+	return $this->exif;
2641 2641
   }
2642 2642
   public function setHeight($height)
2643 2643
   {
2644
-    $this->height = $height;
2644
+	$this->height = $height;
2645 2645
   }
2646 2646
   public function getHeight()
2647 2647
   {
2648
-    return $this->height;
2648
+	return $this->height;
2649 2649
   }
2650 2650
   public function setId($id)
2651 2651
   {
2652
-    $this->id = $id;
2652
+	$this->id = $id;
2653 2653
   }
2654 2654
   public function getId()
2655 2655
   {
2656
-    return $this->id;
2656
+	return $this->id;
2657 2657
   }
2658 2658
   public function setKind($kind)
2659 2659
   {
2660
-    $this->kind = $kind;
2660
+	$this->kind = $kind;
2661 2661
   }
2662 2662
   public function getKind()
2663 2663
   {
2664
-    return $this->kind;
2664
+	return $this->kind;
2665 2665
   }
2666 2666
   public function setMediaCreatedTime($mediaCreatedTime)
2667 2667
   {
2668
-    $this->mediaCreatedTime = $mediaCreatedTime;
2668
+	$this->mediaCreatedTime = $mediaCreatedTime;
2669 2669
   }
2670 2670
   public function getMediaCreatedTime()
2671 2671
   {
2672
-    return $this->mediaCreatedTime;
2672
+	return $this->mediaCreatedTime;
2673 2673
   }
2674 2674
   public function setMediaUrl($mediaUrl)
2675 2675
   {
2676
-    $this->mediaUrl = $mediaUrl;
2676
+	$this->mediaUrl = $mediaUrl;
2677 2677
   }
2678 2678
   public function getMediaUrl()
2679 2679
   {
2680
-    return $this->mediaUrl;
2680
+	return $this->mediaUrl;
2681 2681
   }
2682 2682
   public function setPublished($published)
2683 2683
   {
2684
-    $this->published = $published;
2684
+	$this->published = $published;
2685 2685
   }
2686 2686
   public function getPublished()
2687 2687
   {
2688
-    return $this->published;
2688
+	return $this->published;
2689 2689
   }
2690 2690
   public function setSizeBytes($sizeBytes)
2691 2691
   {
2692
-    $this->sizeBytes = $sizeBytes;
2692
+	$this->sizeBytes = $sizeBytes;
2693 2693
   }
2694 2694
   public function getSizeBytes()
2695 2695
   {
2696
-    return $this->sizeBytes;
2696
+	return $this->sizeBytes;
2697 2697
   }
2698 2698
   public function setStreams($streams)
2699 2699
   {
2700
-    $this->streams = $streams;
2700
+	$this->streams = $streams;
2701 2701
   }
2702 2702
   public function getStreams()
2703 2703
   {
2704
-    return $this->streams;
2704
+	return $this->streams;
2705 2705
   }
2706 2706
   public function setSummary($summary)
2707 2707
   {
2708
-    $this->summary = $summary;
2708
+	$this->summary = $summary;
2709 2709
   }
2710 2710
   public function getSummary()
2711 2711
   {
2712
-    return $this->summary;
2712
+	return $this->summary;
2713 2713
   }
2714 2714
   public function setUpdated($updated)
2715 2715
   {
2716
-    $this->updated = $updated;
2716
+	$this->updated = $updated;
2717 2717
   }
2718 2718
   public function getUpdated()
2719 2719
   {
2720
-    return $this->updated;
2720
+	return $this->updated;
2721 2721
   }
2722 2722
   public function setUrl($url)
2723 2723
   {
2724
-    $this->url = $url;
2724
+	$this->url = $url;
2725 2725
   }
2726 2726
   public function getUrl()
2727 2727
   {
2728
-    return $this->url;
2728
+	return $this->url;
2729 2729
   }
2730 2730
   public function setVideoDuration($videoDuration)
2731 2731
   {
2732
-    $this->videoDuration = $videoDuration;
2732
+	$this->videoDuration = $videoDuration;
2733 2733
   }
2734 2734
   public function getVideoDuration()
2735 2735
   {
2736
-    return $this->videoDuration;
2736
+	return $this->videoDuration;
2737 2737
   }
2738 2738
   public function setVideoStatus($videoStatus)
2739 2739
   {
2740
-    $this->videoStatus = $videoStatus;
2740
+	$this->videoStatus = $videoStatus;
2741 2741
   }
2742 2742
   public function getVideoStatus()
2743 2743
   {
2744
-    return $this->videoStatus;
2744
+	return $this->videoStatus;
2745 2745
   }
2746 2746
   public function setWidth($width)
2747 2747
   {
2748
-    $this->width = $width;
2748
+	$this->width = $width;
2749 2749
   }
2750 2750
   public function getWidth()
2751 2751
   {
2752
-    return $this->width;
2752
+	return $this->width;
2753 2753
   }
2754 2754
 }
2755 2755
 
@@ -2766,35 +2766,35 @@  discard block
 block discarded – undo
2766 2766
 
2767 2767
   public function setDisplayName($displayName)
2768 2768
   {
2769
-    $this->displayName = $displayName;
2769
+	$this->displayName = $displayName;
2770 2770
   }
2771 2771
   public function getDisplayName()
2772 2772
   {
2773
-    return $this->displayName;
2773
+	return $this->displayName;
2774 2774
   }
2775 2775
   public function setId($id)
2776 2776
   {
2777
-    $this->id = $id;
2777
+	$this->id = $id;
2778 2778
   }
2779 2779
   public function getId()
2780 2780
   {
2781
-    return $this->id;
2781
+	return $this->id;
2782 2782
   }
2783 2783
   public function setImage(Google_Service_PlusDomains_MediaAuthorImage $image)
2784 2784
   {
2785
-    $this->image = $image;
2785
+	$this->image = $image;
2786 2786
   }
2787 2787
   public function getImage()
2788 2788
   {
2789
-    return $this->image;
2789
+	return $this->image;
2790 2790
   }
2791 2791
   public function setUrl($url)
2792 2792
   {
2793
-    $this->url = $url;
2793
+	$this->url = $url;
2794 2794
   }
2795 2795
   public function getUrl()
2796 2796
   {
2797
-    return $this->url;
2797
+	return $this->url;
2798 2798
   }
2799 2799
 }
2800 2800
 
@@ -2807,11 +2807,11 @@  discard block
 block discarded – undo
2807 2807
 
2808 2808
   public function setUrl($url)
2809 2809
   {
2810
-    $this->url = $url;
2810
+	$this->url = $url;
2811 2811
   }
2812 2812
   public function getUrl()
2813 2813
   {
2814
-    return $this->url;
2814
+	return $this->url;
2815 2815
   }
2816 2816
 }
2817 2817
 
@@ -2824,11 +2824,11 @@  discard block
 block discarded – undo
2824 2824
 
2825 2825
   public function setTime($time)
2826 2826
   {
2827
-    $this->time = $time;
2827
+	$this->time = $time;
2828 2828
   }
2829 2829
   public function getTime()
2830 2830
   {
2831
-    return $this->time;
2831
+	return $this->time;
2832 2832
   }
2833 2833
 }
2834 2834
 
@@ -2849,59 +2849,59 @@  discard block
 block discarded – undo
2849 2849
 
2850 2850
   public function setEtag($etag)
2851 2851
   {
2852
-    $this->etag = $etag;
2852
+	$this->etag = $etag;
2853 2853
   }
2854 2854
   public function getEtag()
2855 2855
   {
2856
-    return $this->etag;
2856
+	return $this->etag;
2857 2857
   }
2858 2858
   public function setItems($items)
2859 2859
   {
2860
-    $this->items = $items;
2860
+	$this->items = $items;
2861 2861
   }
2862 2862
   public function getItems()
2863 2863
   {
2864
-    return $this->items;
2864
+	return $this->items;
2865 2865
   }
2866 2866
   public function setKind($kind)
2867 2867
   {
2868
-    $this->kind = $kind;
2868
+	$this->kind = $kind;
2869 2869
   }
2870 2870
   public function getKind()
2871 2871
   {
2872
-    return $this->kind;
2872
+	return $this->kind;
2873 2873
   }
2874 2874
   public function setNextPageToken($nextPageToken)
2875 2875
   {
2876
-    $this->nextPageToken = $nextPageToken;
2876
+	$this->nextPageToken = $nextPageToken;
2877 2877
   }
2878 2878
   public function getNextPageToken()
2879 2879
   {
2880
-    return $this->nextPageToken;
2880
+	return $this->nextPageToken;
2881 2881
   }
2882 2882
   public function setSelfLink($selfLink)
2883 2883
   {
2884
-    $this->selfLink = $selfLink;
2884
+	$this->selfLink = $selfLink;
2885 2885
   }
2886 2886
   public function getSelfLink()
2887 2887
   {
2888
-    return $this->selfLink;
2888
+	return $this->selfLink;
2889 2889
   }
2890 2890
   public function setTitle($title)
2891 2891
   {
2892
-    $this->title = $title;
2892
+	$this->title = $title;
2893 2893
   }
2894 2894
   public function getTitle()
2895 2895
   {
2896
-    return $this->title;
2896
+	return $this->title;
2897 2897
   }
2898 2898
   public function setTotalItems($totalItems)
2899 2899
   {
2900
-    $this->totalItems = $totalItems;
2900
+	$this->totalItems = $totalItems;
2901 2901
   }
2902 2902
   public function getTotalItems()
2903 2903
   {
2904
-    return $this->totalItems;
2904
+	return $this->totalItems;
2905 2905
   }
2906 2906
 }
2907 2907
 
@@ -2949,227 +2949,227 @@  discard block
 block discarded – undo
2949 2949
 
2950 2950
   public function setAboutMe($aboutMe)
2951 2951
   {
2952
-    $this->aboutMe = $aboutMe;
2952
+	$this->aboutMe = $aboutMe;
2953 2953
   }
2954 2954
   public function getAboutMe()
2955 2955
   {
2956
-    return $this->aboutMe;
2956
+	return $this->aboutMe;
2957 2957
   }
2958 2958
   public function setBirthday($birthday)
2959 2959
   {
2960
-    $this->birthday = $birthday;
2960
+	$this->birthday = $birthday;
2961 2961
   }
2962 2962
   public function getBirthday()
2963 2963
   {
2964
-    return $this->birthday;
2964
+	return $this->birthday;
2965 2965
   }
2966 2966
   public function setBraggingRights($braggingRights)
2967 2967
   {
2968
-    $this->braggingRights = $braggingRights;
2968
+	$this->braggingRights = $braggingRights;
2969 2969
   }
2970 2970
   public function getBraggingRights()
2971 2971
   {
2972
-    return $this->braggingRights;
2972
+	return $this->braggingRights;
2973 2973
   }
2974 2974
   public function setCircledByCount($circledByCount)
2975 2975
   {
2976
-    $this->circledByCount = $circledByCount;
2976
+	$this->circledByCount = $circledByCount;
2977 2977
   }
2978 2978
   public function getCircledByCount()
2979 2979
   {
2980
-    return $this->circledByCount;
2980
+	return $this->circledByCount;
2981 2981
   }
2982 2982
   public function setCover(Google_Service_PlusDomains_PersonCover $cover)
2983 2983
   {
2984
-    $this->cover = $cover;
2984
+	$this->cover = $cover;
2985 2985
   }
2986 2986
   public function getCover()
2987 2987
   {
2988
-    return $this->cover;
2988
+	return $this->cover;
2989 2989
   }
2990 2990
   public function setCurrentLocation($currentLocation)
2991 2991
   {
2992
-    $this->currentLocation = $currentLocation;
2992
+	$this->currentLocation = $currentLocation;
2993 2993
   }
2994 2994
   public function getCurrentLocation()
2995 2995
   {
2996
-    return $this->currentLocation;
2996
+	return $this->currentLocation;
2997 2997
   }
2998 2998
   public function setDisplayName($displayName)
2999 2999
   {
3000
-    $this->displayName = $displayName;
3000
+	$this->displayName = $displayName;
3001 3001
   }
3002 3002
   public function getDisplayName()
3003 3003
   {
3004
-    return $this->displayName;
3004
+	return $this->displayName;
3005 3005
   }
3006 3006
   public function setDomain($domain)
3007 3007
   {
3008
-    $this->domain = $domain;
3008
+	$this->domain = $domain;
3009 3009
   }
3010 3010
   public function getDomain()
3011 3011
   {
3012
-    return $this->domain;
3012
+	return $this->domain;
3013 3013
   }
3014 3014
   public function setEmails($emails)
3015 3015
   {
3016
-    $this->emails = $emails;
3016
+	$this->emails = $emails;
3017 3017
   }
3018 3018
   public function getEmails()
3019 3019
   {
3020
-    return $this->emails;
3020
+	return $this->emails;
3021 3021
   }
3022 3022
   public function setEtag($etag)
3023 3023
   {
3024
-    $this->etag = $etag;
3024
+	$this->etag = $etag;
3025 3025
   }
3026 3026
   public function getEtag()
3027 3027
   {
3028
-    return $this->etag;
3028
+	return $this->etag;
3029 3029
   }
3030 3030
   public function setGender($gender)
3031 3031
   {
3032
-    $this->gender = $gender;
3032
+	$this->gender = $gender;
3033 3033
   }
3034 3034
   public function getGender()
3035 3035
   {
3036
-    return $this->gender;
3036
+	return $this->gender;
3037 3037
   }
3038 3038
   public function setId($id)
3039 3039
   {
3040
-    $this->id = $id;
3040
+	$this->id = $id;
3041 3041
   }
3042 3042
   public function getId()
3043 3043
   {
3044
-    return $this->id;
3044
+	return $this->id;
3045 3045
   }
3046 3046
   public function setImage(Google_Service_PlusDomains_PersonImage $image)
3047 3047
   {
3048
-    $this->image = $image;
3048
+	$this->image = $image;
3049 3049
   }
3050 3050
   public function getImage()
3051 3051
   {
3052
-    return $this->image;
3052
+	return $this->image;
3053 3053
   }
3054 3054
   public function setIsPlusUser($isPlusUser)
3055 3055
   {
3056
-    $this->isPlusUser = $isPlusUser;
3056
+	$this->isPlusUser = $isPlusUser;
3057 3057
   }
3058 3058
   public function getIsPlusUser()
3059 3059
   {
3060
-    return $this->isPlusUser;
3060
+	return $this->isPlusUser;
3061 3061
   }
3062 3062
   public function setKind($kind)
3063 3063
   {
3064
-    $this->kind = $kind;
3064
+	$this->kind = $kind;
3065 3065
   }
3066 3066
   public function getKind()
3067 3067
   {
3068
-    return $this->kind;
3068
+	return $this->kind;
3069 3069
   }
3070 3070
   public function setName(Google_Service_PlusDomains_PersonName $name)
3071 3071
   {
3072
-    $this->name = $name;
3072
+	$this->name = $name;
3073 3073
   }
3074 3074
   public function getName()
3075 3075
   {
3076
-    return $this->name;
3076
+	return $this->name;
3077 3077
   }
3078 3078
   public function setNickname($nickname)
3079 3079
   {
3080
-    $this->nickname = $nickname;
3080
+	$this->nickname = $nickname;
3081 3081
   }
3082 3082
   public function getNickname()
3083 3083
   {
3084
-    return $this->nickname;
3084
+	return $this->nickname;
3085 3085
   }
3086 3086
   public function setObjectType($objectType)
3087 3087
   {
3088
-    $this->objectType = $objectType;
3088
+	$this->objectType = $objectType;
3089 3089
   }
3090 3090
   public function getObjectType()
3091 3091
   {
3092
-    return $this->objectType;
3092
+	return $this->objectType;
3093 3093
   }
3094 3094
   public function setOccupation($occupation)
3095 3095
   {
3096
-    $this->occupation = $occupation;
3096
+	$this->occupation = $occupation;
3097 3097
   }
3098 3098
   public function getOccupation()
3099 3099
   {
3100
-    return $this->occupation;
3100
+	return $this->occupation;
3101 3101
   }
3102 3102
   public function setOrganizations($organizations)
3103 3103
   {
3104
-    $this->organizations = $organizations;
3104
+	$this->organizations = $organizations;
3105 3105
   }
3106 3106
   public function getOrganizations()
3107 3107
   {
3108
-    return $this->organizations;
3108
+	return $this->organizations;
3109 3109
   }
3110 3110
   public function setPlacesLived($placesLived)
3111 3111
   {
3112
-    $this->placesLived = $placesLived;
3112
+	$this->placesLived = $placesLived;
3113 3113
   }
3114 3114
   public function getPlacesLived()
3115 3115
   {
3116
-    return $this->placesLived;
3116
+	return $this->placesLived;
3117 3117
   }
3118 3118
   public function setPlusOneCount($plusOneCount)
3119 3119
   {
3120
-    $this->plusOneCount = $plusOneCount;
3120
+	$this->plusOneCount = $plusOneCount;
3121 3121
   }
3122 3122
   public function getPlusOneCount()
3123 3123
   {
3124
-    return $this->plusOneCount;
3124
+	return $this->plusOneCount;
3125 3125
   }
3126 3126
   public function setRelationshipStatus($relationshipStatus)
3127 3127
   {
3128
-    $this->relationshipStatus = $relationshipStatus;
3128
+	$this->relationshipStatus = $relationshipStatus;
3129 3129
   }
3130 3130
   public function getRelationshipStatus()
3131 3131
   {
3132
-    return $this->relationshipStatus;
3132
+	return $this->relationshipStatus;
3133 3133
   }
3134 3134
   public function setSkills($skills)
3135 3135
   {
3136
-    $this->skills = $skills;
3136
+	$this->skills = $skills;
3137 3137
   }
3138 3138
   public function getSkills()
3139 3139
   {
3140
-    return $this->skills;
3140
+	return $this->skills;
3141 3141
   }
3142 3142
   public function setTagline($tagline)
3143 3143
   {
3144
-    $this->tagline = $tagline;
3144
+	$this->tagline = $tagline;
3145 3145
   }
3146 3146
   public function getTagline()
3147 3147
   {
3148
-    return $this->tagline;
3148
+	return $this->tagline;
3149 3149
   }
3150 3150
   public function setUrl($url)
3151 3151
   {
3152
-    $this->url = $url;
3152
+	$this->url = $url;
3153 3153
   }
3154 3154
   public function getUrl()
3155 3155
   {
3156
-    return $this->url;
3156
+	return $this->url;
3157 3157
   }
3158 3158
   public function setUrls($urls)
3159 3159
   {
3160
-    $this->urls = $urls;
3160
+	$this->urls = $urls;
3161 3161
   }
3162 3162
   public function getUrls()
3163 3163
   {
3164
-    return $this->urls;
3164
+	return $this->urls;
3165 3165
   }
3166 3166
   public function setVerified($verified)
3167 3167
   {
3168
-    $this->verified = $verified;
3168
+	$this->verified = $verified;
3169 3169
   }
3170 3170
   public function getVerified()
3171 3171
   {
3172
-    return $this->verified;
3172
+	return $this->verified;
3173 3173
   }
3174 3174
 }
3175 3175
 
@@ -3186,27 +3186,27 @@  discard block
 block discarded – undo
3186 3186
 
3187 3187
   public function setCoverInfo(Google_Service_PlusDomains_PersonCoverCoverInfo $coverInfo)
3188 3188
   {
3189
-    $this->coverInfo = $coverInfo;
3189
+	$this->coverInfo = $coverInfo;
3190 3190
   }
3191 3191
   public function getCoverInfo()
3192 3192
   {
3193
-    return $this->coverInfo;
3193
+	return $this->coverInfo;
3194 3194
   }
3195 3195
   public function setCoverPhoto(Google_Service_PlusDomains_PersonCoverCoverPhoto $coverPhoto)
3196 3196
   {
3197
-    $this->coverPhoto = $coverPhoto;
3197
+	$this->coverPhoto = $coverPhoto;
3198 3198
   }
3199 3199
   public function getCoverPhoto()
3200 3200
   {
3201
-    return $this->coverPhoto;
3201
+	return $this->coverPhoto;
3202 3202
   }
3203 3203
   public function setLayout($layout)
3204 3204
   {
3205
-    $this->layout = $layout;
3205
+	$this->layout = $layout;
3206 3206
   }
3207 3207
   public function getLayout()
3208 3208
   {
3209
-    return $this->layout;
3209
+	return $this->layout;
3210 3210
   }
3211 3211
 }
3212 3212
 
@@ -3220,19 +3220,19 @@  discard block
 block discarded – undo
3220 3220
 
3221 3221
   public function setLeftImageOffset($leftImageOffset)
3222 3222
   {
3223
-    $this->leftImageOffset = $leftImageOffset;
3223
+	$this->leftImageOffset = $leftImageOffset;
3224 3224
   }
3225 3225
   public function getLeftImageOffset()
3226 3226
   {
3227
-    return $this->leftImageOffset;
3227
+	return $this->leftImageOffset;
3228 3228
   }
3229 3229
   public function setTopImageOffset($topImageOffset)
3230 3230
   {
3231
-    $this->topImageOffset = $topImageOffset;
3231
+	$this->topImageOffset = $topImageOffset;
3232 3232
   }
3233 3233
   public function getTopImageOffset()
3234 3234
   {
3235
-    return $this->topImageOffset;
3235
+	return $this->topImageOffset;
3236 3236
   }
3237 3237
 }
3238 3238
 
@@ -3247,27 +3247,27 @@  discard block
 block discarded – undo
3247 3247
 
3248 3248
   public function setHeight($height)
3249 3249
   {
3250
-    $this->height = $height;
3250
+	$this->height = $height;
3251 3251
   }
3252 3252
   public function getHeight()
3253 3253
   {
3254
-    return $this->height;
3254
+	return $this->height;
3255 3255
   }
3256 3256
   public function setUrl($url)
3257 3257
   {
3258
-    $this->url = $url;
3258
+	$this->url = $url;
3259 3259
   }
3260 3260
   public function getUrl()
3261 3261
   {
3262
-    return $this->url;
3262
+	return $this->url;
3263 3263
   }
3264 3264
   public function setWidth($width)
3265 3265
   {
3266
-    $this->width = $width;
3266
+	$this->width = $width;
3267 3267
   }
3268 3268
   public function getWidth()
3269 3269
   {
3270
-    return $this->width;
3270
+	return $this->width;
3271 3271
   }
3272 3272
 }
3273 3273
 
@@ -3281,19 +3281,19 @@  discard block
 block discarded – undo
3281 3281
 
3282 3282
   public function setType($type)
3283 3283
   {
3284
-    $this->type = $type;
3284
+	$this->type = $type;
3285 3285
   }
3286 3286
   public function getType()
3287 3287
   {
3288
-    return $this->type;
3288
+	return $this->type;
3289 3289
   }
3290 3290
   public function setValue($value)
3291 3291
   {
3292
-    $this->value = $value;
3292
+	$this->value = $value;
3293 3293
   }
3294 3294
   public function getValue()
3295 3295
   {
3296
-    return $this->value;
3296
+	return $this->value;
3297 3297
   }
3298 3298
 }
3299 3299
 
@@ -3307,19 +3307,19 @@  discard block
 block discarded – undo
3307 3307
 
3308 3308
   public function setIsDefault($isDefault)
3309 3309
   {
3310
-    $this->isDefault = $isDefault;
3310
+	$this->isDefault = $isDefault;
3311 3311
   }
3312 3312
   public function getIsDefault()
3313 3313
   {
3314
-    return $this->isDefault;
3314
+	return $this->isDefault;
3315 3315
   }
3316 3316
   public function setUrl($url)
3317 3317
   {
3318
-    $this->url = $url;
3318
+	$this->url = $url;
3319 3319
   }
3320 3320
   public function getUrl()
3321 3321
   {
3322
-    return $this->url;
3322
+	return $this->url;
3323 3323
   }
3324 3324
 }
3325 3325
 
@@ -3337,51 +3337,51 @@  discard block
 block discarded – undo
3337 3337
 
3338 3338
   public function setFamilyName($familyName)
3339 3339
   {
3340
-    $this->familyName = $familyName;
3340
+	$this->familyName = $familyName;
3341 3341
   }
3342 3342
   public function getFamilyName()
3343 3343
   {
3344
-    return $this->familyName;
3344
+	return $this->familyName;
3345 3345
   }
3346 3346
   public function setFormatted($formatted)
3347 3347
   {
3348
-    $this->formatted = $formatted;
3348
+	$this->formatted = $formatted;
3349 3349
   }
3350 3350
   public function getFormatted()
3351 3351
   {
3352
-    return $this->formatted;
3352
+	return $this->formatted;
3353 3353
   }
3354 3354
   public function setGivenName($givenName)
3355 3355
   {
3356
-    $this->givenName = $givenName;
3356
+	$this->givenName = $givenName;
3357 3357
   }
3358 3358
   public function getGivenName()
3359 3359
   {
3360
-    return $this->givenName;
3360
+	return $this->givenName;
3361 3361
   }
3362 3362
   public function setHonorificPrefix($honorificPrefix)
3363 3363
   {
3364
-    $this->honorificPrefix = $honorificPrefix;
3364
+	$this->honorificPrefix = $honorificPrefix;
3365 3365
   }
3366 3366
   public function getHonorificPrefix()
3367 3367
   {
3368
-    return $this->honorificPrefix;
3368
+	return $this->honorificPrefix;
3369 3369
   }
3370 3370
   public function setHonorificSuffix($honorificSuffix)
3371 3371
   {
3372
-    $this->honorificSuffix = $honorificSuffix;
3372
+	$this->honorificSuffix = $honorificSuffix;
3373 3373
   }
3374 3374
   public function getHonorificSuffix()
3375 3375
   {
3376
-    return $this->honorificSuffix;
3376
+	return $this->honorificSuffix;
3377 3377
   }
3378 3378
   public function setMiddleName($middleName)
3379 3379
   {
3380
-    $this->middleName = $middleName;
3380
+	$this->middleName = $middleName;
3381 3381
   }
3382 3382
   public function getMiddleName()
3383 3383
   {
3384
-    return $this->middleName;
3384
+	return $this->middleName;
3385 3385
   }
3386 3386
 }
3387 3387
 
@@ -3402,75 +3402,75 @@  discard block
 block discarded – undo
3402 3402
 
3403 3403
   public function setDepartment($department)
3404 3404
   {
3405
-    $this->department = $department;
3405
+	$this->department = $department;
3406 3406
   }
3407 3407
   public function getDepartment()
3408 3408
   {
3409
-    return $this->department;
3409
+	return $this->department;
3410 3410
   }
3411 3411
   public function setDescription($description)
3412 3412
   {
3413
-    $this->description = $description;
3413
+	$this->description = $description;
3414 3414
   }
3415 3415
   public function getDescription()
3416 3416
   {
3417
-    return $this->description;
3417
+	return $this->description;
3418 3418
   }
3419 3419
   public function setEndDate($endDate)
3420 3420
   {
3421
-    $this->endDate = $endDate;
3421
+	$this->endDate = $endDate;
3422 3422
   }
3423 3423
   public function getEndDate()
3424 3424
   {
3425
-    return $this->endDate;
3425
+	return $this->endDate;
3426 3426
   }
3427 3427
   public function setLocation($location)
3428 3428
   {
3429
-    $this->location = $location;
3429
+	$this->location = $location;
3430 3430
   }
3431 3431
   public function getLocation()
3432 3432
   {
3433
-    return $this->location;
3433
+	return $this->location;
3434 3434
   }
3435 3435
   public function setName($name)
3436 3436
   {
3437
-    $this->name = $name;
3437
+	$this->name = $name;
3438 3438
   }
3439 3439
   public function getName()
3440 3440
   {
3441
-    return $this->name;
3441
+	return $this->name;
3442 3442
   }
3443 3443
   public function setPrimary($primary)
3444 3444
   {
3445
-    $this->primary = $primary;
3445
+	$this->primary = $primary;
3446 3446
   }
3447 3447
   public function getPrimary()
3448 3448
   {
3449
-    return $this->primary;
3449
+	return $this->primary;
3450 3450
   }
3451 3451
   public function setStartDate($startDate)
3452 3452
   {
3453
-    $this->startDate = $startDate;
3453
+	$this->startDate = $startDate;
3454 3454
   }
3455 3455
   public function getStartDate()
3456 3456
   {
3457
-    return $this->startDate;
3457
+	return $this->startDate;
3458 3458
   }
3459 3459
   public function setTitle($title)
3460 3460
   {
3461
-    $this->title = $title;
3461
+	$this->title = $title;
3462 3462
   }
3463 3463
   public function getTitle()
3464 3464
   {
3465
-    return $this->title;
3465
+	return $this->title;
3466 3466
   }
3467 3467
   public function setType($type)
3468 3468
   {
3469
-    $this->type = $type;
3469
+	$this->type = $type;
3470 3470
   }
3471 3471
   public function getType()
3472 3472
   {
3473
-    return $this->type;
3473
+	return $this->type;
3474 3474
   }
3475 3475
 }
3476 3476
 
@@ -3484,19 +3484,19 @@  discard block
 block discarded – undo
3484 3484
 
3485 3485
   public function setPrimary($primary)
3486 3486
   {
3487
-    $this->primary = $primary;
3487
+	$this->primary = $primary;
3488 3488
   }
3489 3489
   public function getPrimary()
3490 3490
   {
3491
-    return $this->primary;
3491
+	return $this->primary;
3492 3492
   }
3493 3493
   public function setValue($value)
3494 3494
   {
3495
-    $this->value = $value;
3495
+	$this->value = $value;
3496 3496
   }
3497 3497
   public function getValue()
3498 3498
   {
3499
-    return $this->value;
3499
+	return $this->value;
3500 3500
   }
3501 3501
 }
3502 3502
 
@@ -3511,27 +3511,27 @@  discard block
 block discarded – undo
3511 3511
 
3512 3512
   public function setLabel($label)
3513 3513
   {
3514
-    $this->label = $label;
3514
+	$this->label = $label;
3515 3515
   }
3516 3516
   public function getLabel()
3517 3517
   {
3518
-    return $this->label;
3518
+	return $this->label;
3519 3519
   }
3520 3520
   public function setType($type)
3521 3521
   {
3522
-    $this->type = $type;
3522
+	$this->type = $type;
3523 3523
   }
3524 3524
   public function getType()
3525 3525
   {
3526
-    return $this->type;
3526
+	return $this->type;
3527 3527
   }
3528 3528
   public function setValue($value)
3529 3529
   {
3530
-    $this->value = $value;
3530
+	$this->value = $value;
3531 3531
   }
3532 3532
   public function getValue()
3533 3533
   {
3534
-    return $this->value;
3534
+	return $this->value;
3535 3535
   }
3536 3536
 }
3537 3537
 
@@ -3550,43 +3550,43 @@  discard block
 block discarded – undo
3550 3550
 
3551 3551
   public function setAddress(Google_Service_PlusDomains_PlaceAddress $address)
3552 3552
   {
3553
-    $this->address = $address;
3553
+	$this->address = $address;
3554 3554
   }
3555 3555
   public function getAddress()
3556 3556
   {
3557
-    return $this->address;
3557
+	return $this->address;
3558 3558
   }
3559 3559
   public function setDisplayName($displayName)
3560 3560
   {
3561
-    $this->displayName = $displayName;
3561
+	$this->displayName = $displayName;
3562 3562
   }
3563 3563
   public function getDisplayName()
3564 3564
   {
3565
-    return $this->displayName;
3565
+	return $this->displayName;
3566 3566
   }
3567 3567
   public function setId($id)
3568 3568
   {
3569
-    $this->id = $id;
3569
+	$this->id = $id;
3570 3570
   }
3571 3571
   public function getId()
3572 3572
   {
3573
-    return $this->id;
3573
+	return $this->id;
3574 3574
   }
3575 3575
   public function setKind($kind)
3576 3576
   {
3577
-    $this->kind = $kind;
3577
+	$this->kind = $kind;
3578 3578
   }
3579 3579
   public function getKind()
3580 3580
   {
3581
-    return $this->kind;
3581
+	return $this->kind;
3582 3582
   }
3583 3583
   public function setPosition(Google_Service_PlusDomains_PlacePosition $position)
3584 3584
   {
3585
-    $this->position = $position;
3585
+	$this->position = $position;
3586 3586
   }
3587 3587
   public function getPosition()
3588 3588
   {
3589
-    return $this->position;
3589
+	return $this->position;
3590 3590
   }
3591 3591
 }
3592 3592
 
@@ -3599,11 +3599,11 @@  discard block
 block discarded – undo
3599 3599
 
3600 3600
   public function setFormatted($formatted)
3601 3601
   {
3602
-    $this->formatted = $formatted;
3602
+	$this->formatted = $formatted;
3603 3603
   }
3604 3604
   public function getFormatted()
3605 3605
   {
3606
-    return $this->formatted;
3606
+	return $this->formatted;
3607 3607
   }
3608 3608
 }
3609 3609
 
@@ -3617,19 +3617,19 @@  discard block
 block discarded – undo
3617 3617
 
3618 3618
   public function setLatitude($latitude)
3619 3619
   {
3620
-    $this->latitude = $latitude;
3620
+	$this->latitude = $latitude;
3621 3621
   }
3622 3622
   public function getLatitude()
3623 3623
   {
3624
-    return $this->latitude;
3624
+	return $this->latitude;
3625 3625
   }
3626 3626
   public function setLongitude($longitude)
3627 3627
   {
3628
-    $this->longitude = $longitude;
3628
+	$this->longitude = $longitude;
3629 3629
   }
3630 3630
   public function getLongitude()
3631 3631
   {
3632
-    return $this->longitude;
3632
+	return $this->longitude;
3633 3633
   }
3634 3634
 }
3635 3635
 
@@ -3644,27 +3644,27 @@  discard block
 block discarded – undo
3644 3644
 
3645 3645
   public function setDisplayName($displayName)
3646 3646
   {
3647
-    $this->displayName = $displayName;
3647
+	$this->displayName = $displayName;
3648 3648
   }
3649 3649
   public function getDisplayName()
3650 3650
   {
3651
-    return $this->displayName;
3651
+	return $this->displayName;
3652 3652
   }
3653 3653
   public function setId($id)
3654 3654
   {
3655
-    $this->id = $id;
3655
+	$this->id = $id;
3656 3656
   }
3657 3657
   public function getId()
3658 3658
   {
3659
-    return $this->id;
3659
+	return $this->id;
3660 3660
   }
3661 3661
   public function setType($type)
3662 3662
   {
3663
-    $this->type = $type;
3663
+	$this->type = $type;
3664 3664
   }
3665 3665
   public function getType()
3666 3666
   {
3667
-    return $this->type;
3667
+	return $this->type;
3668 3668
   }
3669 3669
 }
3670 3670
 
@@ -3680,34 +3680,34 @@  discard block
 block discarded – undo
3680 3680
 
3681 3681
   public function setHeight($height)
3682 3682
   {
3683
-    $this->height = $height;
3683
+	$this->height = $height;
3684 3684
   }
3685 3685
   public function getHeight()
3686 3686
   {
3687
-    return $this->height;
3687
+	return $this->height;
3688 3688
   }
3689 3689
   public function setType($type)
3690 3690
   {
3691
-    $this->type = $type;
3691
+	$this->type = $type;
3692 3692
   }
3693 3693
   public function getType()
3694 3694
   {
3695
-    return $this->type;
3695
+	return $this->type;
3696 3696
   }
3697 3697
   public function setUrl($url)
3698 3698
   {
3699
-    $this->url = $url;
3699
+	$this->url = $url;
3700 3700
   }
3701 3701
   public function getUrl()
3702 3702
   {
3703
-    return $this->url;
3703
+	return $this->url;
3704 3704
   }
3705 3705
   public function setWidth($width)
3706 3706
   {
3707
-    $this->width = $width;
3707
+	$this->width = $width;
3708 3708
   }
3709 3709
   public function getWidth()
3710 3710
   {
3711
-    return $this->width;
3711
+	return $this->width;
3712 3712
   }
3713 3713
 }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                   'required' => true,
99 99
                 ),
100 100
               ),
101
-            ),'insert' => array(
101
+            ), 'insert' => array(
102 102
               'path' => 'people/{userId}/activities',
103 103
               'httpMethod' => 'POST',
104 104
               'parameters' => array(
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
                   'type' => 'boolean',
113 113
                 ),
114 114
               ),
115
-            ),'list' => array(
115
+            ), 'list' => array(
116 116
               'path' => 'people/{userId}/activities/{collection}',
117 117
               'httpMethod' => 'GET',
118 118
               'parameters' => array(
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                   'repeated' => true,
194 194
                 ),
195 195
               ),
196
-            ),'get' => array(
196
+            ), 'get' => array(
197 197
               'path' => 'circles/{circleId}',
198 198
               'httpMethod' => 'GET',
199 199
               'parameters' => array(
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                   'required' => true,
204 204
                 ),
205 205
               ),
206
-            ),'insert' => array(
206
+            ), 'insert' => array(
207 207
               'path' => 'people/{userId}/circles',
208 208
               'httpMethod' => 'POST',
209 209
               'parameters' => array(
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                   'required' => true,
214 214
                 ),
215 215
               ),
216
-            ),'list' => array(
216
+            ), 'list' => array(
217 217
               'path' => 'people/{userId}/circles',
218 218
               'httpMethod' => 'GET',
219 219
               'parameters' => array(
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
                   'type' => 'integer',
232 232
                 ),
233 233
               ),
234
-            ),'patch' => array(
234
+            ), 'patch' => array(
235 235
               'path' => 'circles/{circleId}',
236 236
               'httpMethod' => 'PATCH',
237 237
               'parameters' => array(
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
                   'required' => true,
242 242
                 ),
243 243
               ),
244
-            ),'remove' => array(
244
+            ), 'remove' => array(
245 245
               'path' => 'circles/{circleId}',
246 246
               'httpMethod' => 'DELETE',
247 247
               'parameters' => array(
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
                   'required' => true,
252 252
                 ),
253 253
               ),
254
-            ),'removePeople' => array(
254
+            ), 'removePeople' => array(
255 255
               'path' => 'circles/{circleId}/people',
256 256
               'httpMethod' => 'DELETE',
257 257
               'parameters' => array(
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                   'repeated' => true,
272 272
                 ),
273 273
               ),
274
-            ),'update' => array(
274
+            ), 'update' => array(
275 275
               'path' => 'circles/{circleId}',
276 276
               'httpMethod' => 'PUT',
277 277
               'parameters' => array(
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                   'required' => true,
302 302
                 ),
303 303
               ),
304
-            ),'insert' => array(
304
+            ), 'insert' => array(
305 305
               'path' => 'activities/{activityId}/comments',
306 306
               'httpMethod' => 'POST',
307 307
               'parameters' => array(
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                   'required' => true,
312 312
                 ),
313 313
               ),
314
-            ),'list' => array(
314
+            ), 'list' => array(
315 315
               'path' => 'activities/{activityId}/comments',
316 316
               'httpMethod' => 'GET',
317 317
               'parameters' => array(
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
                   'required' => true,
379 379
                 ),
380 380
               ),
381
-            ),'list' => array(
381
+            ), 'list' => array(
382 382
               'path' => 'people/{userId}/people/{collection}',
383 383
               'httpMethod' => 'GET',
384 384
               'parameters' => array(
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
                   'type' => 'integer',
406 406
                 ),
407 407
               ),
408
-            ),'listByActivity' => array(
408
+            ), 'listByActivity' => array(
409 409
               'path' => 'activities/{activityId}/people/{collection}',
410 410
               'httpMethod' => 'GET',
411 411
               'parameters' => array(
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
                   'type' => 'integer',
429 429
                 ),
430 430
               ),
431
-            ),'listByCircle' => array(
431
+            ), 'listByCircle' => array(
432 432
               'path' => 'circles/{circleId}/people',
433 433
               'httpMethod' => 'GET',
434 434
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Prediction.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
    *
221 221
    * @param string $project The project associated with the model.
222 222
    * @param string $hostedModelName The name of a hosted model.
223
-   * @param Google_Input $postBody
223
+   * @param Google_Service_Prediction_Input $postBody
224 224
    * @param array $optParams Optional parameters.
225 225
    * @return Google_Service_Prediction_Output
226 226
    */
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
    * Train a Prediction API model. (trainedmodels.insert)
293 293
    *
294 294
    * @param string $project The project associated with the model.
295
-   * @param Google_Insert $postBody
295
+   * @param Google_Service_Prediction_Insert $postBody
296 296
    * @param array $optParams Optional parameters.
297 297
    * @return Google_Service_Prediction_Insert2
298 298
    */
@@ -325,7 +325,7 @@  discard block
 block discarded – undo
325 325
    *
326 326
    * @param string $project The project associated with the model.
327 327
    * @param string $id The unique name for the predictive model.
328
-   * @param Google_Input $postBody
328
+   * @param Google_Service_Prediction_Input $postBody
329 329
    * @param array $optParams Optional parameters.
330 330
    * @return Google_Service_Prediction_Output
331 331
    */
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
    *
342 342
    * @param string $project The project associated with the model.
343 343
    * @param string $id The unique name for the predictive model.
344
-   * @param Google_Update $postBody
344
+   * @param Google_Service_Prediction_Update $postBody
345 345
    * @param array $optParams Optional parameters.
346 346
    * @return Google_Service_Prediction_Insert2
347 347
    */
Please login to merge, or discard this patch.
Indentation   +318 added lines, -318 removed lines patch added patch discarded remove patch
@@ -33,16 +33,16 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** Manage your data and permissions in Google Cloud Storage. */
35 35
   const DEVSTORAGE_FULL_CONTROL =
36
-      "https://www.googleapis.com/auth/devstorage.full_control";
36
+	  "https://www.googleapis.com/auth/devstorage.full_control";
37 37
   /** View your data in Google Cloud Storage. */
38 38
   const DEVSTORAGE_READ_ONLY =
39
-      "https://www.googleapis.com/auth/devstorage.read_only";
39
+	  "https://www.googleapis.com/auth/devstorage.read_only";
40 40
   /** Manage your data in Google Cloud Storage. */
41 41
   const DEVSTORAGE_READ_WRITE =
42
-      "https://www.googleapis.com/auth/devstorage.read_write";
42
+	  "https://www.googleapis.com/auth/devstorage.read_write";
43 43
   /** Manage your data in the Google Prediction API. */
44 44
   const PREDICTION =
45
-      "https://www.googleapis.com/auth/prediction";
45
+	  "https://www.googleapis.com/auth/prediction";
46 46
 
47 47
   public $hostedmodels;
48 48
   public $trainedmodels;
@@ -55,150 +55,150 @@  discard block
 block discarded – undo
55 55
    */
56 56
   public function __construct(Google_Client $client)
57 57
   {
58
-    parent::__construct($client);
59
-    $this->rootUrl = 'https://www.googleapis.com/';
60
-    $this->servicePath = 'prediction/v1.6/projects/';
61
-    $this->version = 'v1.6';
62
-    $this->serviceName = 'prediction';
63
-
64
-    $this->hostedmodels = new Google_Service_Prediction_Hostedmodels_Resource(
65
-        $this,
66
-        $this->serviceName,
67
-        'hostedmodels',
68
-        array(
69
-          'methods' => array(
70
-            'predict' => array(
71
-              'path' => '{project}/hostedmodels/{hostedModelName}/predict',
72
-              'httpMethod' => 'POST',
73
-              'parameters' => array(
74
-                'project' => array(
75
-                  'location' => 'path',
76
-                  'type' => 'string',
77
-                  'required' => true,
78
-                ),
79
-                'hostedModelName' => array(
80
-                  'location' => 'path',
81
-                  'type' => 'string',
82
-                  'required' => true,
83
-                ),
84
-              ),
85
-            ),
86
-          )
87
-        )
88
-    );
89
-    $this->trainedmodels = new Google_Service_Prediction_Trainedmodels_Resource(
90
-        $this,
91
-        $this->serviceName,
92
-        'trainedmodels',
93
-        array(
94
-          'methods' => array(
95
-            'analyze' => array(
96
-              'path' => '{project}/trainedmodels/{id}/analyze',
97
-              'httpMethod' => 'GET',
98
-              'parameters' => array(
99
-                'project' => array(
100
-                  'location' => 'path',
101
-                  'type' => 'string',
102
-                  'required' => true,
103
-                ),
104
-                'id' => array(
105
-                  'location' => 'path',
106
-                  'type' => 'string',
107
-                  'required' => true,
108
-                ),
109
-              ),
110
-            ),'delete' => array(
111
-              'path' => '{project}/trainedmodels/{id}',
112
-              'httpMethod' => 'DELETE',
113
-              'parameters' => array(
114
-                'project' => array(
115
-                  'location' => 'path',
116
-                  'type' => 'string',
117
-                  'required' => true,
118
-                ),
119
-                'id' => array(
120
-                  'location' => 'path',
121
-                  'type' => 'string',
122
-                  'required' => true,
123
-                ),
124
-              ),
125
-            ),'get' => array(
126
-              'path' => '{project}/trainedmodels/{id}',
127
-              'httpMethod' => 'GET',
128
-              'parameters' => array(
129
-                'project' => array(
130
-                  'location' => 'path',
131
-                  'type' => 'string',
132
-                  'required' => true,
133
-                ),
134
-                'id' => array(
135
-                  'location' => 'path',
136
-                  'type' => 'string',
137
-                  'required' => true,
138
-                ),
139
-              ),
140
-            ),'insert' => array(
141
-              'path' => '{project}/trainedmodels',
142
-              'httpMethod' => 'POST',
143
-              'parameters' => array(
144
-                'project' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-              ),
150
-            ),'list' => array(
151
-              'path' => '{project}/trainedmodels/list',
152
-              'httpMethod' => 'GET',
153
-              'parameters' => array(
154
-                'project' => array(
155
-                  'location' => 'path',
156
-                  'type' => 'string',
157
-                  'required' => true,
158
-                ),
159
-                'pageToken' => array(
160
-                  'location' => 'query',
161
-                  'type' => 'string',
162
-                ),
163
-                'maxResults' => array(
164
-                  'location' => 'query',
165
-                  'type' => 'integer',
166
-                ),
167
-              ),
168
-            ),'predict' => array(
169
-              'path' => '{project}/trainedmodels/{id}/predict',
170
-              'httpMethod' => 'POST',
171
-              'parameters' => array(
172
-                'project' => array(
173
-                  'location' => 'path',
174
-                  'type' => 'string',
175
-                  'required' => true,
176
-                ),
177
-                'id' => array(
178
-                  'location' => 'path',
179
-                  'type' => 'string',
180
-                  'required' => true,
181
-                ),
182
-              ),
183
-            ),'update' => array(
184
-              'path' => '{project}/trainedmodels/{id}',
185
-              'httpMethod' => 'PUT',
186
-              'parameters' => array(
187
-                'project' => array(
188
-                  'location' => 'path',
189
-                  'type' => 'string',
190
-                  'required' => true,
191
-                ),
192
-                'id' => array(
193
-                  'location' => 'path',
194
-                  'type' => 'string',
195
-                  'required' => true,
196
-                ),
197
-              ),
198
-            ),
199
-          )
200
-        )
201
-    );
58
+	parent::__construct($client);
59
+	$this->rootUrl = 'https://www.googleapis.com/';
60
+	$this->servicePath = 'prediction/v1.6/projects/';
61
+	$this->version = 'v1.6';
62
+	$this->serviceName = 'prediction';
63
+
64
+	$this->hostedmodels = new Google_Service_Prediction_Hostedmodels_Resource(
65
+		$this,
66
+		$this->serviceName,
67
+		'hostedmodels',
68
+		array(
69
+		  'methods' => array(
70
+			'predict' => array(
71
+			  'path' => '{project}/hostedmodels/{hostedModelName}/predict',
72
+			  'httpMethod' => 'POST',
73
+			  'parameters' => array(
74
+				'project' => array(
75
+				  'location' => 'path',
76
+				  'type' => 'string',
77
+				  'required' => true,
78
+				),
79
+				'hostedModelName' => array(
80
+				  'location' => 'path',
81
+				  'type' => 'string',
82
+				  'required' => true,
83
+				),
84
+			  ),
85
+			),
86
+		  )
87
+		)
88
+	);
89
+	$this->trainedmodels = new Google_Service_Prediction_Trainedmodels_Resource(
90
+		$this,
91
+		$this->serviceName,
92
+		'trainedmodels',
93
+		array(
94
+		  'methods' => array(
95
+			'analyze' => array(
96
+			  'path' => '{project}/trainedmodels/{id}/analyze',
97
+			  'httpMethod' => 'GET',
98
+			  'parameters' => array(
99
+				'project' => array(
100
+				  'location' => 'path',
101
+				  'type' => 'string',
102
+				  'required' => true,
103
+				),
104
+				'id' => array(
105
+				  'location' => 'path',
106
+				  'type' => 'string',
107
+				  'required' => true,
108
+				),
109
+			  ),
110
+			),'delete' => array(
111
+			  'path' => '{project}/trainedmodels/{id}',
112
+			  'httpMethod' => 'DELETE',
113
+			  'parameters' => array(
114
+				'project' => array(
115
+				  'location' => 'path',
116
+				  'type' => 'string',
117
+				  'required' => true,
118
+				),
119
+				'id' => array(
120
+				  'location' => 'path',
121
+				  'type' => 'string',
122
+				  'required' => true,
123
+				),
124
+			  ),
125
+			),'get' => array(
126
+			  'path' => '{project}/trainedmodels/{id}',
127
+			  'httpMethod' => 'GET',
128
+			  'parameters' => array(
129
+				'project' => array(
130
+				  'location' => 'path',
131
+				  'type' => 'string',
132
+				  'required' => true,
133
+				),
134
+				'id' => array(
135
+				  'location' => 'path',
136
+				  'type' => 'string',
137
+				  'required' => true,
138
+				),
139
+			  ),
140
+			),'insert' => array(
141
+			  'path' => '{project}/trainedmodels',
142
+			  'httpMethod' => 'POST',
143
+			  'parameters' => array(
144
+				'project' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+			  ),
150
+			),'list' => array(
151
+			  'path' => '{project}/trainedmodels/list',
152
+			  'httpMethod' => 'GET',
153
+			  'parameters' => array(
154
+				'project' => array(
155
+				  'location' => 'path',
156
+				  'type' => 'string',
157
+				  'required' => true,
158
+				),
159
+				'pageToken' => array(
160
+				  'location' => 'query',
161
+				  'type' => 'string',
162
+				),
163
+				'maxResults' => array(
164
+				  'location' => 'query',
165
+				  'type' => 'integer',
166
+				),
167
+			  ),
168
+			),'predict' => array(
169
+			  'path' => '{project}/trainedmodels/{id}/predict',
170
+			  'httpMethod' => 'POST',
171
+			  'parameters' => array(
172
+				'project' => array(
173
+				  'location' => 'path',
174
+				  'type' => 'string',
175
+				  'required' => true,
176
+				),
177
+				'id' => array(
178
+				  'location' => 'path',
179
+				  'type' => 'string',
180
+				  'required' => true,
181
+				),
182
+			  ),
183
+			),'update' => array(
184
+			  'path' => '{project}/trainedmodels/{id}',
185
+			  'httpMethod' => 'PUT',
186
+			  'parameters' => array(
187
+				'project' => array(
188
+				  'location' => 'path',
189
+				  'type' => 'string',
190
+				  'required' => true,
191
+				),
192
+				'id' => array(
193
+				  'location' => 'path',
194
+				  'type' => 'string',
195
+				  'required' => true,
196
+				),
197
+			  ),
198
+			),
199
+		  )
200
+		)
201
+	);
202 202
   }
203 203
 }
204 204
 
@@ -226,9 +226,9 @@  discard block
 block discarded – undo
226 226
    */
227 227
   public function predict($project, $hostedModelName, Google_Service_Prediction_Input $postBody, $optParams = array())
228 228
   {
229
-    $params = array('project' => $project, 'hostedModelName' => $hostedModelName, 'postBody' => $postBody);
230
-    $params = array_merge($params, $optParams);
231
-    return $this->call('predict', array($params), "Google_Service_Prediction_Output");
229
+	$params = array('project' => $project, 'hostedModelName' => $hostedModelName, 'postBody' => $postBody);
230
+	$params = array_merge($params, $optParams);
231
+	return $this->call('predict', array($params), "Google_Service_Prediction_Output");
232 232
   }
233 233
 }
234 234
 
@@ -254,9 +254,9 @@  discard block
 block discarded – undo
254 254
    */
255 255
   public function analyze($project, $id, $optParams = array())
256 256
   {
257
-    $params = array('project' => $project, 'id' => $id);
258
-    $params = array_merge($params, $optParams);
259
-    return $this->call('analyze', array($params), "Google_Service_Prediction_Analyze");
257
+	$params = array('project' => $project, 'id' => $id);
258
+	$params = array_merge($params, $optParams);
259
+	return $this->call('analyze', array($params), "Google_Service_Prediction_Analyze");
260 260
   }
261 261
 
262 262
   /**
@@ -268,9 +268,9 @@  discard block
 block discarded – undo
268 268
    */
269 269
   public function delete($project, $id, $optParams = array())
270 270
   {
271
-    $params = array('project' => $project, 'id' => $id);
272
-    $params = array_merge($params, $optParams);
273
-    return $this->call('delete', array($params));
271
+	$params = array('project' => $project, 'id' => $id);
272
+	$params = array_merge($params, $optParams);
273
+	return $this->call('delete', array($params));
274 274
   }
275 275
 
276 276
   /**
@@ -283,9 +283,9 @@  discard block
 block discarded – undo
283 283
    */
284 284
   public function get($project, $id, $optParams = array())
285 285
   {
286
-    $params = array('project' => $project, 'id' => $id);
287
-    $params = array_merge($params, $optParams);
288
-    return $this->call('get', array($params), "Google_Service_Prediction_Insert2");
286
+	$params = array('project' => $project, 'id' => $id);
287
+	$params = array_merge($params, $optParams);
288
+	return $this->call('get', array($params), "Google_Service_Prediction_Insert2");
289 289
   }
290 290
 
291 291
   /**
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
    */
299 299
   public function insert($project, Google_Service_Prediction_Insert $postBody, $optParams = array())
300 300
   {
301
-    $params = array('project' => $project, 'postBody' => $postBody);
302
-    $params = array_merge($params, $optParams);
303
-    return $this->call('insert', array($params), "Google_Service_Prediction_Insert2");
301
+	$params = array('project' => $project, 'postBody' => $postBody);
302
+	$params = array_merge($params, $optParams);
303
+	return $this->call('insert', array($params), "Google_Service_Prediction_Insert2");
304 304
   }
305 305
 
306 306
   /**
@@ -315,9 +315,9 @@  discard block
 block discarded – undo
315 315
    */
316 316
   public function listTrainedmodels($project, $optParams = array())
317 317
   {
318
-    $params = array('project' => $project);
319
-    $params = array_merge($params, $optParams);
320
-    return $this->call('list', array($params), "Google_Service_Prediction_PredictionList");
318
+	$params = array('project' => $project);
319
+	$params = array_merge($params, $optParams);
320
+	return $this->call('list', array($params), "Google_Service_Prediction_PredictionList");
321 321
   }
322 322
 
323 323
   /**
@@ -331,9 +331,9 @@  discard block
 block discarded – undo
331 331
    */
332 332
   public function predict($project, $id, Google_Service_Prediction_Input $postBody, $optParams = array())
333 333
   {
334
-    $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
335
-    $params = array_merge($params, $optParams);
336
-    return $this->call('predict', array($params), "Google_Service_Prediction_Output");
334
+	$params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
335
+	$params = array_merge($params, $optParams);
336
+	return $this->call('predict', array($params), "Google_Service_Prediction_Output");
337 337
   }
338 338
 
339 339
   /**
@@ -347,9 +347,9 @@  discard block
 block discarded – undo
347 347
    */
348 348
   public function update($project, $id, Google_Service_Prediction_Update $postBody, $optParams = array())
349 349
   {
350
-    $params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
351
-    $params = array_merge($params, $optParams);
352
-    return $this->call('update', array($params), "Google_Service_Prediction_Insert2");
350
+	$params = array('project' => $project, 'id' => $id, 'postBody' => $postBody);
351
+	$params = array_merge($params, $optParams);
352
+	return $this->call('update', array($params), "Google_Service_Prediction_Insert2");
353 353
   }
354 354
 }
355 355
 
@@ -373,51 +373,51 @@  discard block
 block discarded – undo
373 373
 
374 374
   public function setDataDescription(Google_Service_Prediction_AnalyzeDataDescription $dataDescription)
375 375
   {
376
-    $this->dataDescription = $dataDescription;
376
+	$this->dataDescription = $dataDescription;
377 377
   }
378 378
   public function getDataDescription()
379 379
   {
380
-    return $this->dataDescription;
380
+	return $this->dataDescription;
381 381
   }
382 382
   public function setErrors($errors)
383 383
   {
384
-    $this->errors = $errors;
384
+	$this->errors = $errors;
385 385
   }
386 386
   public function getErrors()
387 387
   {
388
-    return $this->errors;
388
+	return $this->errors;
389 389
   }
390 390
   public function setId($id)
391 391
   {
392
-    $this->id = $id;
392
+	$this->id = $id;
393 393
   }
394 394
   public function getId()
395 395
   {
396
-    return $this->id;
396
+	return $this->id;
397 397
   }
398 398
   public function setKind($kind)
399 399
   {
400
-    $this->kind = $kind;
400
+	$this->kind = $kind;
401 401
   }
402 402
   public function getKind()
403 403
   {
404
-    return $this->kind;
404
+	return $this->kind;
405 405
   }
406 406
   public function setModelDescription(Google_Service_Prediction_AnalyzeModelDescription $modelDescription)
407 407
   {
408
-    $this->modelDescription = $modelDescription;
408
+	$this->modelDescription = $modelDescription;
409 409
   }
410 410
   public function getModelDescription()
411 411
   {
412
-    return $this->modelDescription;
412
+	return $this->modelDescription;
413 413
   }
414 414
   public function setSelfLink($selfLink)
415 415
   {
416
-    $this->selfLink = $selfLink;
416
+	$this->selfLink = $selfLink;
417 417
   }
418 418
   public function getSelfLink()
419 419
   {
420
-    return $this->selfLink;
420
+	return $this->selfLink;
421 421
   }
422 422
 }
423 423
 
@@ -434,19 +434,19 @@  discard block
 block discarded – undo
434 434
 
435 435
   public function setFeatures($features)
436 436
   {
437
-    $this->features = $features;
437
+	$this->features = $features;
438 438
   }
439 439
   public function getFeatures()
440 440
   {
441
-    return $this->features;
441
+	return $this->features;
442 442
   }
443 443
   public function setOutputFeature(Google_Service_Prediction_AnalyzeDataDescriptionOutputFeature $outputFeature)
444 444
   {
445
-    $this->outputFeature = $outputFeature;
445
+	$this->outputFeature = $outputFeature;
446 446
   }
447 447
   public function getOutputFeature()
448 448
   {
449
-    return $this->outputFeature;
449
+	return $this->outputFeature;
450 450
   }
451 451
 }
452 452
 
@@ -465,35 +465,35 @@  discard block
 block discarded – undo
465 465
 
466 466
   public function setCategorical(Google_Service_Prediction_AnalyzeDataDescriptionFeaturesCategorical $categorical)
467 467
   {
468
-    $this->categorical = $categorical;
468
+	$this->categorical = $categorical;
469 469
   }
470 470
   public function getCategorical()
471 471
   {
472
-    return $this->categorical;
472
+	return $this->categorical;
473 473
   }
474 474
   public function setIndex($index)
475 475
   {
476
-    $this->index = $index;
476
+	$this->index = $index;
477 477
   }
478 478
   public function getIndex()
479 479
   {
480
-    return $this->index;
480
+	return $this->index;
481 481
   }
482 482
   public function setNumeric(Google_Service_Prediction_AnalyzeDataDescriptionFeaturesNumeric $numeric)
483 483
   {
484
-    $this->numeric = $numeric;
484
+	$this->numeric = $numeric;
485 485
   }
486 486
   public function getNumeric()
487 487
   {
488
-    return $this->numeric;
488
+	return $this->numeric;
489 489
   }
490 490
   public function setText(Google_Service_Prediction_AnalyzeDataDescriptionFeaturesText $text)
491 491
   {
492
-    $this->text = $text;
492
+	$this->text = $text;
493 493
   }
494 494
   public function getText()
495 495
   {
496
-    return $this->text;
496
+	return $this->text;
497 497
   }
498 498
 }
499 499
 
@@ -509,19 +509,19 @@  discard block
 block discarded – undo
509 509
 
510 510
   public function setCount($count)
511 511
   {
512
-    $this->count = $count;
512
+	$this->count = $count;
513 513
   }
514 514
   public function getCount()
515 515
   {
516
-    return $this->count;
516
+	return $this->count;
517 517
   }
518 518
   public function setValues($values)
519 519
   {
520
-    $this->values = $values;
520
+	$this->values = $values;
521 521
   }
522 522
   public function getValues()
523 523
   {
524
-    return $this->values;
524
+	return $this->values;
525 525
   }
526 526
 }
527 527
 
@@ -535,19 +535,19 @@  discard block
 block discarded – undo
535 535
 
536 536
   public function setCount($count)
537 537
   {
538
-    $this->count = $count;
538
+	$this->count = $count;
539 539
   }
540 540
   public function getCount()
541 541
   {
542
-    return $this->count;
542
+	return $this->count;
543 543
   }
544 544
   public function setValue($value)
545 545
   {
546
-    $this->value = $value;
546
+	$this->value = $value;
547 547
   }
548 548
   public function getValue()
549 549
   {
550
-    return $this->value;
550
+	return $this->value;
551 551
   }
552 552
 }
553 553
 
@@ -562,27 +562,27 @@  discard block
 block discarded – undo
562 562
 
563 563
   public function setCount($count)
564 564
   {
565
-    $this->count = $count;
565
+	$this->count = $count;
566 566
   }
567 567
   public function getCount()
568 568
   {
569
-    return $this->count;
569
+	return $this->count;
570 570
   }
571 571
   public function setMean($mean)
572 572
   {
573
-    $this->mean = $mean;
573
+	$this->mean = $mean;
574 574
   }
575 575
   public function getMean()
576 576
   {
577
-    return $this->mean;
577
+	return $this->mean;
578 578
   }
579 579
   public function setVariance($variance)
580 580
   {
581
-    $this->variance = $variance;
581
+	$this->variance = $variance;
582 582
   }
583 583
   public function getVariance()
584 584
   {
585
-    return $this->variance;
585
+	return $this->variance;
586 586
   }
587 587
 }
588 588
 
@@ -595,11 +595,11 @@  discard block
 block discarded – undo
595 595
 
596 596
   public function setCount($count)
597 597
   {
598
-    $this->count = $count;
598
+	$this->count = $count;
599 599
   }
600 600
   public function getCount()
601 601
   {
602
-    return $this->count;
602
+	return $this->count;
603 603
   }
604 604
 }
605 605
 
@@ -616,19 +616,19 @@  discard block
 block discarded – undo
616 616
 
617 617
   public function setNumeric(Google_Service_Prediction_AnalyzeDataDescriptionOutputFeatureNumeric $numeric)
618 618
   {
619
-    $this->numeric = $numeric;
619
+	$this->numeric = $numeric;
620 620
   }
621 621
   public function getNumeric()
622 622
   {
623
-    return $this->numeric;
623
+	return $this->numeric;
624 624
   }
625 625
   public function setText($text)
626 626
   {
627
-    $this->text = $text;
627
+	$this->text = $text;
628 628
   }
629 629
   public function getText()
630 630
   {
631
-    return $this->text;
631
+	return $this->text;
632 632
   }
633 633
 }
634 634
 
@@ -643,27 +643,27 @@  discard block
 block discarded – undo
643 643
 
644 644
   public function setCount($count)
645 645
   {
646
-    $this->count = $count;
646
+	$this->count = $count;
647 647
   }
648 648
   public function getCount()
649 649
   {
650
-    return $this->count;
650
+	return $this->count;
651 651
   }
652 652
   public function setMean($mean)
653 653
   {
654
-    $this->mean = $mean;
654
+	$this->mean = $mean;
655 655
   }
656 656
   public function getMean()
657 657
   {
658
-    return $this->mean;
658
+	return $this->mean;
659 659
   }
660 660
   public function setVariance($variance)
661 661
   {
662
-    $this->variance = $variance;
662
+	$this->variance = $variance;
663 663
   }
664 664
   public function getVariance()
665 665
   {
666
-    return $this->variance;
666
+	return $this->variance;
667 667
   }
668 668
 }
669 669
 
@@ -677,19 +677,19 @@  discard block
 block discarded – undo
677 677
 
678 678
   public function setCount($count)
679 679
   {
680
-    $this->count = $count;
680
+	$this->count = $count;
681 681
   }
682 682
   public function getCount()
683 683
   {
684
-    return $this->count;
684
+	return $this->count;
685 685
   }
686 686
   public function setValue($value)
687 687
   {
688
-    $this->value = $value;
688
+	$this->value = $value;
689 689
   }
690 690
   public function getValue()
691 691
   {
692
-    return $this->value;
692
+	return $this->value;
693 693
   }
694 694
 }
695 695
 
@@ -709,27 +709,27 @@  discard block
 block discarded – undo
709 709
 
710 710
   public function setConfusionMatrix($confusionMatrix)
711 711
   {
712
-    $this->confusionMatrix = $confusionMatrix;
712
+	$this->confusionMatrix = $confusionMatrix;
713 713
   }
714 714
   public function getConfusionMatrix()
715 715
   {
716
-    return $this->confusionMatrix;
716
+	return $this->confusionMatrix;
717 717
   }
718 718
   public function setConfusionMatrixRowTotals($confusionMatrixRowTotals)
719 719
   {
720
-    $this->confusionMatrixRowTotals = $confusionMatrixRowTotals;
720
+	$this->confusionMatrixRowTotals = $confusionMatrixRowTotals;
721 721
   }
722 722
   public function getConfusionMatrixRowTotals()
723 723
   {
724
-    return $this->confusionMatrixRowTotals;
724
+	return $this->confusionMatrixRowTotals;
725 725
   }
726 726
   public function setModelinfo(Google_Service_Prediction_Insert2 $modelinfo)
727 727
   {
728
-    $this->modelinfo = $modelinfo;
728
+	$this->modelinfo = $modelinfo;
729 729
   }
730 730
   public function getModelinfo()
731 731
   {
732
-    return $this->modelinfo;
732
+	return $this->modelinfo;
733 733
   }
734 734
 }
735 735
 
@@ -755,11 +755,11 @@  discard block
 block discarded – undo
755 755
 
756 756
   public function setInput(Google_Service_Prediction_InputInput $input)
757 757
   {
758
-    $this->input = $input;
758
+	$this->input = $input;
759 759
   }
760 760
   public function getInput()
761 761
   {
762
-    return $this->input;
762
+	return $this->input;
763 763
   }
764 764
 }
765 765
 
@@ -773,11 +773,11 @@  discard block
 block discarded – undo
773 773
 
774 774
   public function setCsvInstance($csvInstance)
775 775
   {
776
-    $this->csvInstance = $csvInstance;
776
+	$this->csvInstance = $csvInstance;
777 777
   }
778 778
   public function getCsvInstance()
779 779
   {
780
-    return $this->csvInstance;
780
+	return $this->csvInstance;
781 781
   }
782 782
 }
783 783
 
@@ -799,67 +799,67 @@  discard block
 block discarded – undo
799 799
 
800 800
   public function setId($id)
801 801
   {
802
-    $this->id = $id;
802
+	$this->id = $id;
803 803
   }
804 804
   public function getId()
805 805
   {
806
-    return $this->id;
806
+	return $this->id;
807 807
   }
808 808
   public function setModelType($modelType)
809 809
   {
810
-    $this->modelType = $modelType;
810
+	$this->modelType = $modelType;
811 811
   }
812 812
   public function getModelType()
813 813
   {
814
-    return $this->modelType;
814
+	return $this->modelType;
815 815
   }
816 816
   public function setSourceModel($sourceModel)
817 817
   {
818
-    $this->sourceModel = $sourceModel;
818
+	$this->sourceModel = $sourceModel;
819 819
   }
820 820
   public function getSourceModel()
821 821
   {
822
-    return $this->sourceModel;
822
+	return $this->sourceModel;
823 823
   }
824 824
   public function setStorageDataLocation($storageDataLocation)
825 825
   {
826
-    $this->storageDataLocation = $storageDataLocation;
826
+	$this->storageDataLocation = $storageDataLocation;
827 827
   }
828 828
   public function getStorageDataLocation()
829 829
   {
830
-    return $this->storageDataLocation;
830
+	return $this->storageDataLocation;
831 831
   }
832 832
   public function setStoragePMMLLocation($storagePMMLLocation)
833 833
   {
834
-    $this->storagePMMLLocation = $storagePMMLLocation;
834
+	$this->storagePMMLLocation = $storagePMMLLocation;
835 835
   }
836 836
   public function getStoragePMMLLocation()
837 837
   {
838
-    return $this->storagePMMLLocation;
838
+	return $this->storagePMMLLocation;
839 839
   }
840 840
   public function setStoragePMMLModelLocation($storagePMMLModelLocation)
841 841
   {
842
-    $this->storagePMMLModelLocation = $storagePMMLModelLocation;
842
+	$this->storagePMMLModelLocation = $storagePMMLModelLocation;
843 843
   }
844 844
   public function getStoragePMMLModelLocation()
845 845
   {
846
-    return $this->storagePMMLModelLocation;
846
+	return $this->storagePMMLModelLocation;
847 847
   }
848 848
   public function setTrainingInstances($trainingInstances)
849 849
   {
850
-    $this->trainingInstances = $trainingInstances;
850
+	$this->trainingInstances = $trainingInstances;
851 851
   }
852 852
   public function getTrainingInstances()
853 853
   {
854
-    return $this->trainingInstances;
854
+	return $this->trainingInstances;
855 855
   }
856 856
   public function setUtility($utility)
857 857
   {
858
-    $this->utility = $utility;
858
+	$this->utility = $utility;
859 859
   }
860 860
   public function getUtility()
861 861
   {
862
-    return $this->utility;
862
+	return $this->utility;
863 863
   }
864 864
 }
865 865
 
@@ -883,91 +883,91 @@  discard block
 block discarded – undo
883 883
 
884 884
   public function setCreated($created)
885 885
   {
886
-    $this->created = $created;
886
+	$this->created = $created;
887 887
   }
888 888
   public function getCreated()
889 889
   {
890
-    return $this->created;
890
+	return $this->created;
891 891
   }
892 892
   public function setId($id)
893 893
   {
894
-    $this->id = $id;
894
+	$this->id = $id;
895 895
   }
896 896
   public function getId()
897 897
   {
898
-    return $this->id;
898
+	return $this->id;
899 899
   }
900 900
   public function setKind($kind)
901 901
   {
902
-    $this->kind = $kind;
902
+	$this->kind = $kind;
903 903
   }
904 904
   public function getKind()
905 905
   {
906
-    return $this->kind;
906
+	return $this->kind;
907 907
   }
908 908
   public function setModelInfo(Google_Service_Prediction_Insert2ModelInfo $modelInfo)
909 909
   {
910
-    $this->modelInfo = $modelInfo;
910
+	$this->modelInfo = $modelInfo;
911 911
   }
912 912
   public function getModelInfo()
913 913
   {
914
-    return $this->modelInfo;
914
+	return $this->modelInfo;
915 915
   }
916 916
   public function setModelType($modelType)
917 917
   {
918
-    $this->modelType = $modelType;
918
+	$this->modelType = $modelType;
919 919
   }
920 920
   public function getModelType()
921 921
   {
922
-    return $this->modelType;
922
+	return $this->modelType;
923 923
   }
924 924
   public function setSelfLink($selfLink)
925 925
   {
926
-    $this->selfLink = $selfLink;
926
+	$this->selfLink = $selfLink;
927 927
   }
928 928
   public function getSelfLink()
929 929
   {
930
-    return $this->selfLink;
930
+	return $this->selfLink;
931 931
   }
932 932
   public function setStorageDataLocation($storageDataLocation)
933 933
   {
934
-    $this->storageDataLocation = $storageDataLocation;
934
+	$this->storageDataLocation = $storageDataLocation;
935 935
   }
936 936
   public function getStorageDataLocation()
937 937
   {
938
-    return $this->storageDataLocation;
938
+	return $this->storageDataLocation;
939 939
   }
940 940
   public function setStoragePMMLLocation($storagePMMLLocation)
941 941
   {
942
-    $this->storagePMMLLocation = $storagePMMLLocation;
942
+	$this->storagePMMLLocation = $storagePMMLLocation;
943 943
   }
944 944
   public function getStoragePMMLLocation()
945 945
   {
946
-    return $this->storagePMMLLocation;
946
+	return $this->storagePMMLLocation;
947 947
   }
948 948
   public function setStoragePMMLModelLocation($storagePMMLModelLocation)
949 949
   {
950
-    $this->storagePMMLModelLocation = $storagePMMLModelLocation;
950
+	$this->storagePMMLModelLocation = $storagePMMLModelLocation;
951 951
   }
952 952
   public function getStoragePMMLModelLocation()
953 953
   {
954
-    return $this->storagePMMLModelLocation;
954
+	return $this->storagePMMLModelLocation;
955 955
   }
956 956
   public function setTrainingComplete($trainingComplete)
957 957
   {
958
-    $this->trainingComplete = $trainingComplete;
958
+	$this->trainingComplete = $trainingComplete;
959 959
   }
960 960
   public function getTrainingComplete()
961 961
   {
962
-    return $this->trainingComplete;
962
+	return $this->trainingComplete;
963 963
   }
964 964
   public function setTrainingStatus($trainingStatus)
965 965
   {
966
-    $this->trainingStatus = $trainingStatus;
966
+	$this->trainingStatus = $trainingStatus;
967 967
   }
968 968
   public function getTrainingStatus()
969 969
   {
970
-    return $this->trainingStatus;
970
+	return $this->trainingStatus;
971 971
   }
972 972
 }
973 973
 
@@ -985,51 +985,51 @@  discard block
 block discarded – undo
985 985
 
986 986
   public function setClassWeightedAccuracy($classWeightedAccuracy)
987 987
   {
988
-    $this->classWeightedAccuracy = $classWeightedAccuracy;
988
+	$this->classWeightedAccuracy = $classWeightedAccuracy;
989 989
   }
990 990
   public function getClassWeightedAccuracy()
991 991
   {
992
-    return $this->classWeightedAccuracy;
992
+	return $this->classWeightedAccuracy;
993 993
   }
994 994
   public function setClassificationAccuracy($classificationAccuracy)
995 995
   {
996
-    $this->classificationAccuracy = $classificationAccuracy;
996
+	$this->classificationAccuracy = $classificationAccuracy;
997 997
   }
998 998
   public function getClassificationAccuracy()
999 999
   {
1000
-    return $this->classificationAccuracy;
1000
+	return $this->classificationAccuracy;
1001 1001
   }
1002 1002
   public function setMeanSquaredError($meanSquaredError)
1003 1003
   {
1004
-    $this->meanSquaredError = $meanSquaredError;
1004
+	$this->meanSquaredError = $meanSquaredError;
1005 1005
   }
1006 1006
   public function getMeanSquaredError()
1007 1007
   {
1008
-    return $this->meanSquaredError;
1008
+	return $this->meanSquaredError;
1009 1009
   }
1010 1010
   public function setModelType($modelType)
1011 1011
   {
1012
-    $this->modelType = $modelType;
1012
+	$this->modelType = $modelType;
1013 1013
   }
1014 1014
   public function getModelType()
1015 1015
   {
1016
-    return $this->modelType;
1016
+	return $this->modelType;
1017 1017
   }
1018 1018
   public function setNumberInstances($numberInstances)
1019 1019
   {
1020
-    $this->numberInstances = $numberInstances;
1020
+	$this->numberInstances = $numberInstances;
1021 1021
   }
1022 1022
   public function getNumberInstances()
1023 1023
   {
1024
-    return $this->numberInstances;
1024
+	return $this->numberInstances;
1025 1025
   }
1026 1026
   public function setNumberLabels($numberLabels)
1027 1027
   {
1028
-    $this->numberLabels = $numberLabels;
1028
+	$this->numberLabels = $numberLabels;
1029 1029
   }
1030 1030
   public function getNumberLabels()
1031 1031
   {
1032
-    return $this->numberLabels;
1032
+	return $this->numberLabels;
1033 1033
   }
1034 1034
 }
1035 1035
 
@@ -1044,19 +1044,19 @@  discard block
 block discarded – undo
1044 1044
 
1045 1045
   public function setCsvInstance($csvInstance)
1046 1046
   {
1047
-    $this->csvInstance = $csvInstance;
1047
+	$this->csvInstance = $csvInstance;
1048 1048
   }
1049 1049
   public function getCsvInstance()
1050 1050
   {
1051
-    return $this->csvInstance;
1051
+	return $this->csvInstance;
1052 1052
   }
1053 1053
   public function setOutput($output)
1054 1054
   {
1055
-    $this->output = $output;
1055
+	$this->output = $output;
1056 1056
   }
1057 1057
   public function getOutput()
1058 1058
   {
1059
-    return $this->output;
1059
+	return $this->output;
1060 1060
   }
1061 1061
 }
1062 1062
 
@@ -1080,51 +1080,51 @@  discard block
 block discarded – undo
1080 1080
 
1081 1081
   public function setId($id)
1082 1082
   {
1083
-    $this->id = $id;
1083
+	$this->id = $id;
1084 1084
   }
1085 1085
   public function getId()
1086 1086
   {
1087
-    return $this->id;
1087
+	return $this->id;
1088 1088
   }
1089 1089
   public function setKind($kind)
1090 1090
   {
1091
-    $this->kind = $kind;
1091
+	$this->kind = $kind;
1092 1092
   }
1093 1093
   public function getKind()
1094 1094
   {
1095
-    return $this->kind;
1095
+	return $this->kind;
1096 1096
   }
1097 1097
   public function setOutputLabel($outputLabel)
1098 1098
   {
1099
-    $this->outputLabel = $outputLabel;
1099
+	$this->outputLabel = $outputLabel;
1100 1100
   }
1101 1101
   public function getOutputLabel()
1102 1102
   {
1103
-    return $this->outputLabel;
1103
+	return $this->outputLabel;
1104 1104
   }
1105 1105
   public function setOutputMulti($outputMulti)
1106 1106
   {
1107
-    $this->outputMulti = $outputMulti;
1107
+	$this->outputMulti = $outputMulti;
1108 1108
   }
1109 1109
   public function getOutputMulti()
1110 1110
   {
1111
-    return $this->outputMulti;
1111
+	return $this->outputMulti;
1112 1112
   }
1113 1113
   public function setOutputValue($outputValue)
1114 1114
   {
1115
-    $this->outputValue = $outputValue;
1115
+	$this->outputValue = $outputValue;
1116 1116
   }
1117 1117
   public function getOutputValue()
1118 1118
   {
1119
-    return $this->outputValue;
1119
+	return $this->outputValue;
1120 1120
   }
1121 1121
   public function setSelfLink($selfLink)
1122 1122
   {
1123
-    $this->selfLink = $selfLink;
1123
+	$this->selfLink = $selfLink;
1124 1124
   }
1125 1125
   public function getSelfLink()
1126 1126
   {
1127
-    return $this->selfLink;
1127
+	return $this->selfLink;
1128 1128
   }
1129 1129
 }
1130 1130
 
@@ -1138,19 +1138,19 @@  discard block
 block discarded – undo
1138 1138
 
1139 1139
   public function setLabel($label)
1140 1140
   {
1141
-    $this->label = $label;
1141
+	$this->label = $label;
1142 1142
   }
1143 1143
   public function getLabel()
1144 1144
   {
1145
-    return $this->label;
1145
+	return $this->label;
1146 1146
   }
1147 1147
   public function setScore($score)
1148 1148
   {
1149
-    $this->score = $score;
1149
+	$this->score = $score;
1150 1150
   }
1151 1151
   public function getScore()
1152 1152
   {
1153
-    return $this->score;
1153
+	return $this->score;
1154 1154
   }
1155 1155
 }
1156 1156
 
@@ -1168,35 +1168,35 @@  discard block
 block discarded – undo
1168 1168
 
1169 1169
   public function setItems($items)
1170 1170
   {
1171
-    $this->items = $items;
1171
+	$this->items = $items;
1172 1172
   }
1173 1173
   public function getItems()
1174 1174
   {
1175
-    return $this->items;
1175
+	return $this->items;
1176 1176
   }
1177 1177
   public function setKind($kind)
1178 1178
   {
1179
-    $this->kind = $kind;
1179
+	$this->kind = $kind;
1180 1180
   }
1181 1181
   public function getKind()
1182 1182
   {
1183
-    return $this->kind;
1183
+	return $this->kind;
1184 1184
   }
1185 1185
   public function setNextPageToken($nextPageToken)
1186 1186
   {
1187
-    $this->nextPageToken = $nextPageToken;
1187
+	$this->nextPageToken = $nextPageToken;
1188 1188
   }
1189 1189
   public function getNextPageToken()
1190 1190
   {
1191
-    return $this->nextPageToken;
1191
+	return $this->nextPageToken;
1192 1192
   }
1193 1193
   public function setSelfLink($selfLink)
1194 1194
   {
1195
-    $this->selfLink = $selfLink;
1195
+	$this->selfLink = $selfLink;
1196 1196
   }
1197 1197
   public function getSelfLink()
1198 1198
   {
1199
-    return $this->selfLink;
1199
+	return $this->selfLink;
1200 1200
   }
1201 1201
 }
1202 1202
 
@@ -1211,18 +1211,18 @@  discard block
 block discarded – undo
1211 1211
 
1212 1212
   public function setCsvInstance($csvInstance)
1213 1213
   {
1214
-    $this->csvInstance = $csvInstance;
1214
+	$this->csvInstance = $csvInstance;
1215 1215
   }
1216 1216
   public function getCsvInstance()
1217 1217
   {
1218
-    return $this->csvInstance;
1218
+	return $this->csvInstance;
1219 1219
   }
1220 1220
   public function setOutput($output)
1221 1221
   {
1222
-    $this->output = $output;
1222
+	$this->output = $output;
1223 1223
   }
1224 1224
   public function getOutput()
1225 1225
   {
1226
-    return $this->output;
1226
+	return $this->output;
1227 1227
   }
1228 1228
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                   'required' => true,
108 108
                 ),
109 109
               ),
110
-            ),'delete' => array(
110
+            ), 'delete' => array(
111 111
               'path' => '{project}/trainedmodels/{id}',
112 112
               'httpMethod' => 'DELETE',
113 113
               'parameters' => array(
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                   'required' => true,
123 123
                 ),
124 124
               ),
125
-            ),'get' => array(
125
+            ), 'get' => array(
126 126
               'path' => '{project}/trainedmodels/{id}',
127 127
               'httpMethod' => 'GET',
128 128
               'parameters' => array(
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
                   'required' => true,
138 138
                 ),
139 139
               ),
140
-            ),'insert' => array(
140
+            ), 'insert' => array(
141 141
               'path' => '{project}/trainedmodels',
142 142
               'httpMethod' => 'POST',
143 143
               'parameters' => array(
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                   'required' => true,
148 148
                 ),
149 149
               ),
150
-            ),'list' => array(
150
+            ), 'list' => array(
151 151
               'path' => '{project}/trainedmodels/list',
152 152
               'httpMethod' => 'GET',
153 153
               'parameters' => array(
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
                   'type' => 'integer',
166 166
                 ),
167 167
               ),
168
-            ),'predict' => array(
168
+            ), 'predict' => array(
169 169
               'path' => '{project}/trainedmodels/{id}/predict',
170 170
               'httpMethod' => 'POST',
171 171
               'parameters' => array(
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
                   'required' => true,
181 181
                 ),
182 182
               ),
183
-            ),'update' => array(
183
+            ), 'update' => array(
184 184
               'path' => '{project}/trainedmodels/{id}',
185 185
               'httpMethod' => 'PUT',
186 186
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Pubsub.php 3 patches
Doc Comments   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
    *
346 346
    * @param string $subscription The subscription whose message is being
347 347
    * acknowledged.
348
-   * @param Google_AcknowledgeRequest $postBody
348
+   * @param Google_Service_Pubsub_AcknowledgeRequest $postBody
349 349
    * @param array $optParams Optional parameters.
350 350
    * @return Google_Service_Pubsub_Empty
351 351
    */
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
    * (`[0-9]`), dashes (`-`), underscores (`_`), periods (`.`), tildes (`~`), plus
370 370
    * (`+`) or percent signs (`%`). It must be between 3 and 255 characters in
371 371
    * length, and it must not start with `"goog"`.
372
-   * @param Google_Subscription $postBody
372
+   * @param Google_Service_Pubsub_Subscription $postBody
373 373
    * @param array $optParams Optional parameters.
374 374
    * @return Google_Service_Pubsub_Subscription
375 375
    */
@@ -457,7 +457,7 @@  discard block
 block discarded – undo
457 457
    * interrupted. (subscriptions.modifyAckDeadline)
458 458
    *
459 459
    * @param string $subscription The name of the subscription.
460
-   * @param Google_ModifyAckDeadlineRequest $postBody
460
+   * @param Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody
461 461
    * @param array $optParams Optional parameters.
462 462
    * @return Google_Service_Pubsub_Empty
463 463
    */
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
    * (subscriptions.modifyPushConfig)
478 478
    *
479 479
    * @param string $subscription The name of the subscription.
480
-   * @param Google_ModifyPushConfigRequest $postBody
480
+   * @param Google_Service_Pubsub_ModifyPushConfigRequest $postBody
481 481
    * @param array $optParams Optional parameters.
482 482
    * @return Google_Service_Pubsub_Empty
483 483
    */
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
    *
497 497
    * @param string $subscription The subscription from which messages should be
498 498
    * pulled.
499
-   * @param Google_PullRequest $postBody
499
+   * @param Google_Service_Pubsub_PullRequest $postBody
500 500
    * @param array $optParams Optional parameters.
501 501
    * @return Google_Service_Pubsub_PullResponse
502 502
    */
@@ -514,7 +514,7 @@  discard block
 block discarded – undo
514 514
    * @param string $resource REQUIRED: The resource for which policy is being
515 515
    * specified. Resource is usually specified as a path, such as,
516 516
    * projects/{project}/zones/{zone}/disks/{disk}.
517
-   * @param Google_SetIamPolicyRequest $postBody
517
+   * @param Google_Service_Pubsub_SetIamPolicyRequest $postBody
518 518
    * @param array $optParams Optional parameters.
519 519
    * @return Google_Service_Pubsub_Policy
520 520
    */
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
    * @param string $resource REQUIRED: The resource for which policy detail is
533 533
    * being requested. Resource is usually specified as a path, such as,
534 534
    * projects/{project}.
535
-   * @param Google_TestIamPermissionsRequest $postBody
535
+   * @param Google_Service_Pubsub_TestIamPermissionsRequest $postBody
536 536
    * @param array $optParams Optional parameters.
537 537
    * @return Google_Service_Pubsub_TestIamPermissionsResponse
538 538
    */
@@ -563,7 +563,7 @@  discard block
 block discarded – undo
563 563
    * underscores (`_`), periods (`.`), tildes (`~`), plus (`+`) or percent signs
564 564
    * (`%`). It must be between 3 and 255 characters in length, and it must not
565 565
    * start with `"goog"`.
566
-   * @param Google_Topic $postBody
566
+   * @param Google_Service_Pubsub_Topic $postBody
567 567
    * @param array $optParams Optional parameters.
568 568
    * @return Google_Service_Pubsub_Topic
569 569
    */
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
    *
650 650
    * @param string $topic The messages in the request will be published on this
651 651
    * topic.
652
-   * @param Google_PublishRequest $postBody
652
+   * @param Google_Service_Pubsub_PublishRequest $postBody
653 653
    * @param array $optParams Optional parameters.
654 654
    * @return Google_Service_Pubsub_PublishResponse
655 655
    */
@@ -667,7 +667,7 @@  discard block
 block discarded – undo
667 667
    * @param string $resource REQUIRED: The resource for which policy is being
668 668
    * specified. Resource is usually specified as a path, such as,
669 669
    * projects/{project}/zones/{zone}/disks/{disk}.
670
-   * @param Google_SetIamPolicyRequest $postBody
670
+   * @param Google_Service_Pubsub_SetIamPolicyRequest $postBody
671 671
    * @param array $optParams Optional parameters.
672 672
    * @return Google_Service_Pubsub_Policy
673 673
    */
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
    * @param string $resource REQUIRED: The resource for which policy detail is
686 686
    * being requested. Resource is usually specified as a path, such as,
687 687
    * projects/{project}.
688
-   * @param Google_TestIamPermissionsRequest $postBody
688
+   * @param Google_Service_Pubsub_TestIamPermissionsRequest $postBody
689 689
    * @param array $optParams Optional parameters.
690 690
    * @return Google_Service_Pubsub_TestIamPermissionsResponse
691 691
    */
Please login to merge, or discard this patch.
Indentation   +392 added lines, -392 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your data across Google Cloud Platform services. */
34 34
   const CLOUD_PLATFORM =
35
-      "https://www.googleapis.com/auth/cloud-platform";
35
+	  "https://www.googleapis.com/auth/cloud-platform";
36 36
   /** View and manage Pub/Sub topics and subscriptions. */
37 37
   const PUBSUB =
38
-      "https://www.googleapis.com/auth/pubsub";
38
+	  "https://www.googleapis.com/auth/pubsub";
39 39
 
40 40
   public $projects_subscriptions;
41 41
   public $projects_topics;
@@ -49,266 +49,266 @@  discard block
 block discarded – undo
49 49
    */
50 50
   public function __construct(Google_Client $client)
51 51
   {
52
-    parent::__construct($client);
53
-    $this->rootUrl = 'https://pubsub.googleapis.com/';
54
-    $this->servicePath = '';
55
-    $this->version = 'v1';
56
-    $this->serviceName = 'pubsub';
57
-
58
-    $this->projects_subscriptions = new Google_Service_Pubsub_ProjectsSubscriptions_Resource(
59
-        $this,
60
-        $this->serviceName,
61
-        'subscriptions',
62
-        array(
63
-          'methods' => array(
64
-            'acknowledge' => array(
65
-              'path' => 'v1/{+subscription}:acknowledge',
66
-              'httpMethod' => 'POST',
67
-              'parameters' => array(
68
-                'subscription' => array(
69
-                  'location' => 'path',
70
-                  'type' => 'string',
71
-                  'required' => true,
72
-                ),
73
-              ),
74
-            ),'create' => array(
75
-              'path' => 'v1/{+name}',
76
-              'httpMethod' => 'PUT',
77
-              'parameters' => array(
78
-                'name' => array(
79
-                  'location' => 'path',
80
-                  'type' => 'string',
81
-                  'required' => true,
82
-                ),
83
-              ),
84
-            ),'delete' => array(
85
-              'path' => 'v1/{+subscription}',
86
-              'httpMethod' => 'DELETE',
87
-              'parameters' => array(
88
-                'subscription' => array(
89
-                  'location' => 'path',
90
-                  'type' => 'string',
91
-                  'required' => true,
92
-                ),
93
-              ),
94
-            ),'get' => array(
95
-              'path' => 'v1/{+subscription}',
96
-              'httpMethod' => 'GET',
97
-              'parameters' => array(
98
-                'subscription' => array(
99
-                  'location' => 'path',
100
-                  'type' => 'string',
101
-                  'required' => true,
102
-                ),
103
-              ),
104
-            ),'getIamPolicy' => array(
105
-              'path' => 'v1/{+resource}:getIamPolicy',
106
-              'httpMethod' => 'GET',
107
-              'parameters' => array(
108
-                'resource' => array(
109
-                  'location' => 'path',
110
-                  'type' => 'string',
111
-                  'required' => true,
112
-                ),
113
-              ),
114
-            ),'list' => array(
115
-              'path' => 'v1/{+project}/subscriptions',
116
-              'httpMethod' => 'GET',
117
-              'parameters' => array(
118
-                'project' => array(
119
-                  'location' => 'path',
120
-                  'type' => 'string',
121
-                  'required' => true,
122
-                ),
123
-                'pageToken' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                ),
127
-                'pageSize' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'integer',
130
-                ),
131
-              ),
132
-            ),'modifyAckDeadline' => array(
133
-              'path' => 'v1/{+subscription}:modifyAckDeadline',
134
-              'httpMethod' => 'POST',
135
-              'parameters' => array(
136
-                'subscription' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-              ),
142
-            ),'modifyPushConfig' => array(
143
-              'path' => 'v1/{+subscription}:modifyPushConfig',
144
-              'httpMethod' => 'POST',
145
-              'parameters' => array(
146
-                'subscription' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-              ),
152
-            ),'pull' => array(
153
-              'path' => 'v1/{+subscription}:pull',
154
-              'httpMethod' => 'POST',
155
-              'parameters' => array(
156
-                'subscription' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-              ),
162
-            ),'setIamPolicy' => array(
163
-              'path' => 'v1/{+resource}:setIamPolicy',
164
-              'httpMethod' => 'POST',
165
-              'parameters' => array(
166
-                'resource' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-              ),
172
-            ),'testIamPermissions' => array(
173
-              'path' => 'v1/{+resource}:testIamPermissions',
174
-              'httpMethod' => 'POST',
175
-              'parameters' => array(
176
-                'resource' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-              ),
182
-            ),
183
-          )
184
-        )
185
-    );
186
-    $this->projects_topics = new Google_Service_Pubsub_ProjectsTopics_Resource(
187
-        $this,
188
-        $this->serviceName,
189
-        'topics',
190
-        array(
191
-          'methods' => array(
192
-            'create' => array(
193
-              'path' => 'v1/{+name}',
194
-              'httpMethod' => 'PUT',
195
-              'parameters' => array(
196
-                'name' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-              ),
202
-            ),'delete' => array(
203
-              'path' => 'v1/{+topic}',
204
-              'httpMethod' => 'DELETE',
205
-              'parameters' => array(
206
-                'topic' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-              ),
212
-            ),'get' => array(
213
-              'path' => 'v1/{+topic}',
214
-              'httpMethod' => 'GET',
215
-              'parameters' => array(
216
-                'topic' => array(
217
-                  'location' => 'path',
218
-                  'type' => 'string',
219
-                  'required' => true,
220
-                ),
221
-              ),
222
-            ),'getIamPolicy' => array(
223
-              'path' => 'v1/{+resource}:getIamPolicy',
224
-              'httpMethod' => 'GET',
225
-              'parameters' => array(
226
-                'resource' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-              ),
232
-            ),'list' => array(
233
-              'path' => 'v1/{+project}/topics',
234
-              'httpMethod' => 'GET',
235
-              'parameters' => array(
236
-                'project' => array(
237
-                  'location' => 'path',
238
-                  'type' => 'string',
239
-                  'required' => true,
240
-                ),
241
-                'pageToken' => array(
242
-                  'location' => 'query',
243
-                  'type' => 'string',
244
-                ),
245
-                'pageSize' => array(
246
-                  'location' => 'query',
247
-                  'type' => 'integer',
248
-                ),
249
-              ),
250
-            ),'publish' => array(
251
-              'path' => 'v1/{+topic}:publish',
252
-              'httpMethod' => 'POST',
253
-              'parameters' => array(
254
-                'topic' => array(
255
-                  'location' => 'path',
256
-                  'type' => 'string',
257
-                  'required' => true,
258
-                ),
259
-              ),
260
-            ),'setIamPolicy' => array(
261
-              'path' => 'v1/{+resource}:setIamPolicy',
262
-              'httpMethod' => 'POST',
263
-              'parameters' => array(
264
-                'resource' => array(
265
-                  'location' => 'path',
266
-                  'type' => 'string',
267
-                  'required' => true,
268
-                ),
269
-              ),
270
-            ),'testIamPermissions' => array(
271
-              'path' => 'v1/{+resource}:testIamPermissions',
272
-              'httpMethod' => 'POST',
273
-              'parameters' => array(
274
-                'resource' => array(
275
-                  'location' => 'path',
276
-                  'type' => 'string',
277
-                  'required' => true,
278
-                ),
279
-              ),
280
-            ),
281
-          )
282
-        )
283
-    );
284
-    $this->projects_topics_subscriptions = new Google_Service_Pubsub_ProjectsTopicsSubscriptions_Resource(
285
-        $this,
286
-        $this->serviceName,
287
-        'subscriptions',
288
-        array(
289
-          'methods' => array(
290
-            'list' => array(
291
-              'path' => 'v1/{+topic}/subscriptions',
292
-              'httpMethod' => 'GET',
293
-              'parameters' => array(
294
-                'topic' => array(
295
-                  'location' => 'path',
296
-                  'type' => 'string',
297
-                  'required' => true,
298
-                ),
299
-                'pageToken' => array(
300
-                  'location' => 'query',
301
-                  'type' => 'string',
302
-                ),
303
-                'pageSize' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'integer',
306
-                ),
307
-              ),
308
-            ),
309
-          )
310
-        )
311
-    );
52
+	parent::__construct($client);
53
+	$this->rootUrl = 'https://pubsub.googleapis.com/';
54
+	$this->servicePath = '';
55
+	$this->version = 'v1';
56
+	$this->serviceName = 'pubsub';
57
+
58
+	$this->projects_subscriptions = new Google_Service_Pubsub_ProjectsSubscriptions_Resource(
59
+		$this,
60
+		$this->serviceName,
61
+		'subscriptions',
62
+		array(
63
+		  'methods' => array(
64
+			'acknowledge' => array(
65
+			  'path' => 'v1/{+subscription}:acknowledge',
66
+			  'httpMethod' => 'POST',
67
+			  'parameters' => array(
68
+				'subscription' => array(
69
+				  'location' => 'path',
70
+				  'type' => 'string',
71
+				  'required' => true,
72
+				),
73
+			  ),
74
+			),'create' => array(
75
+			  'path' => 'v1/{+name}',
76
+			  'httpMethod' => 'PUT',
77
+			  'parameters' => array(
78
+				'name' => array(
79
+				  'location' => 'path',
80
+				  'type' => 'string',
81
+				  'required' => true,
82
+				),
83
+			  ),
84
+			),'delete' => array(
85
+			  'path' => 'v1/{+subscription}',
86
+			  'httpMethod' => 'DELETE',
87
+			  'parameters' => array(
88
+				'subscription' => array(
89
+				  'location' => 'path',
90
+				  'type' => 'string',
91
+				  'required' => true,
92
+				),
93
+			  ),
94
+			),'get' => array(
95
+			  'path' => 'v1/{+subscription}',
96
+			  'httpMethod' => 'GET',
97
+			  'parameters' => array(
98
+				'subscription' => array(
99
+				  'location' => 'path',
100
+				  'type' => 'string',
101
+				  'required' => true,
102
+				),
103
+			  ),
104
+			),'getIamPolicy' => array(
105
+			  'path' => 'v1/{+resource}:getIamPolicy',
106
+			  'httpMethod' => 'GET',
107
+			  'parameters' => array(
108
+				'resource' => array(
109
+				  'location' => 'path',
110
+				  'type' => 'string',
111
+				  'required' => true,
112
+				),
113
+			  ),
114
+			),'list' => array(
115
+			  'path' => 'v1/{+project}/subscriptions',
116
+			  'httpMethod' => 'GET',
117
+			  'parameters' => array(
118
+				'project' => array(
119
+				  'location' => 'path',
120
+				  'type' => 'string',
121
+				  'required' => true,
122
+				),
123
+				'pageToken' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				),
127
+				'pageSize' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'integer',
130
+				),
131
+			  ),
132
+			),'modifyAckDeadline' => array(
133
+			  'path' => 'v1/{+subscription}:modifyAckDeadline',
134
+			  'httpMethod' => 'POST',
135
+			  'parameters' => array(
136
+				'subscription' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+			  ),
142
+			),'modifyPushConfig' => array(
143
+			  'path' => 'v1/{+subscription}:modifyPushConfig',
144
+			  'httpMethod' => 'POST',
145
+			  'parameters' => array(
146
+				'subscription' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+			  ),
152
+			),'pull' => array(
153
+			  'path' => 'v1/{+subscription}:pull',
154
+			  'httpMethod' => 'POST',
155
+			  'parameters' => array(
156
+				'subscription' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+			  ),
162
+			),'setIamPolicy' => array(
163
+			  'path' => 'v1/{+resource}:setIamPolicy',
164
+			  'httpMethod' => 'POST',
165
+			  'parameters' => array(
166
+				'resource' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+			  ),
172
+			),'testIamPermissions' => array(
173
+			  'path' => 'v1/{+resource}:testIamPermissions',
174
+			  'httpMethod' => 'POST',
175
+			  'parameters' => array(
176
+				'resource' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+			  ),
182
+			),
183
+		  )
184
+		)
185
+	);
186
+	$this->projects_topics = new Google_Service_Pubsub_ProjectsTopics_Resource(
187
+		$this,
188
+		$this->serviceName,
189
+		'topics',
190
+		array(
191
+		  'methods' => array(
192
+			'create' => array(
193
+			  'path' => 'v1/{+name}',
194
+			  'httpMethod' => 'PUT',
195
+			  'parameters' => array(
196
+				'name' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+			  ),
202
+			),'delete' => array(
203
+			  'path' => 'v1/{+topic}',
204
+			  'httpMethod' => 'DELETE',
205
+			  'parameters' => array(
206
+				'topic' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+			  ),
212
+			),'get' => array(
213
+			  'path' => 'v1/{+topic}',
214
+			  'httpMethod' => 'GET',
215
+			  'parameters' => array(
216
+				'topic' => array(
217
+				  'location' => 'path',
218
+				  'type' => 'string',
219
+				  'required' => true,
220
+				),
221
+			  ),
222
+			),'getIamPolicy' => array(
223
+			  'path' => 'v1/{+resource}:getIamPolicy',
224
+			  'httpMethod' => 'GET',
225
+			  'parameters' => array(
226
+				'resource' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+			  ),
232
+			),'list' => array(
233
+			  'path' => 'v1/{+project}/topics',
234
+			  'httpMethod' => 'GET',
235
+			  'parameters' => array(
236
+				'project' => array(
237
+				  'location' => 'path',
238
+				  'type' => 'string',
239
+				  'required' => true,
240
+				),
241
+				'pageToken' => array(
242
+				  'location' => 'query',
243
+				  'type' => 'string',
244
+				),
245
+				'pageSize' => array(
246
+				  'location' => 'query',
247
+				  'type' => 'integer',
248
+				),
249
+			  ),
250
+			),'publish' => array(
251
+			  'path' => 'v1/{+topic}:publish',
252
+			  'httpMethod' => 'POST',
253
+			  'parameters' => array(
254
+				'topic' => array(
255
+				  'location' => 'path',
256
+				  'type' => 'string',
257
+				  'required' => true,
258
+				),
259
+			  ),
260
+			),'setIamPolicy' => array(
261
+			  'path' => 'v1/{+resource}:setIamPolicy',
262
+			  'httpMethod' => 'POST',
263
+			  'parameters' => array(
264
+				'resource' => array(
265
+				  'location' => 'path',
266
+				  'type' => 'string',
267
+				  'required' => true,
268
+				),
269
+			  ),
270
+			),'testIamPermissions' => array(
271
+			  'path' => 'v1/{+resource}:testIamPermissions',
272
+			  'httpMethod' => 'POST',
273
+			  'parameters' => array(
274
+				'resource' => array(
275
+				  'location' => 'path',
276
+				  'type' => 'string',
277
+				  'required' => true,
278
+				),
279
+			  ),
280
+			),
281
+		  )
282
+		)
283
+	);
284
+	$this->projects_topics_subscriptions = new Google_Service_Pubsub_ProjectsTopicsSubscriptions_Resource(
285
+		$this,
286
+		$this->serviceName,
287
+		'subscriptions',
288
+		array(
289
+		  'methods' => array(
290
+			'list' => array(
291
+			  'path' => 'v1/{+topic}/subscriptions',
292
+			  'httpMethod' => 'GET',
293
+			  'parameters' => array(
294
+				'topic' => array(
295
+				  'location' => 'path',
296
+				  'type' => 'string',
297
+				  'required' => true,
298
+				),
299
+				'pageToken' => array(
300
+				  'location' => 'query',
301
+				  'type' => 'string',
302
+				),
303
+				'pageSize' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'integer',
306
+				),
307
+			  ),
308
+			),
309
+		  )
310
+		)
311
+	);
312 312
   }
313 313
 }
314 314
 
@@ -351,9 +351,9 @@  discard block
 block discarded – undo
351 351
    */
352 352
   public function acknowledge($subscription, Google_Service_Pubsub_AcknowledgeRequest $postBody, $optParams = array())
353 353
   {
354
-    $params = array('subscription' => $subscription, 'postBody' => $postBody);
355
-    $params = array_merge($params, $optParams);
356
-    return $this->call('acknowledge', array($params), "Google_Service_Pubsub_Empty");
354
+	$params = array('subscription' => $subscription, 'postBody' => $postBody);
355
+	$params = array_merge($params, $optParams);
356
+	return $this->call('acknowledge', array($params), "Google_Service_Pubsub_Empty");
357 357
   }
358 358
 
359 359
   /**
@@ -375,9 +375,9 @@  discard block
 block discarded – undo
375 375
    */
376 376
   public function create($name, Google_Service_Pubsub_Subscription $postBody, $optParams = array())
377 377
   {
378
-    $params = array('name' => $name, 'postBody' => $postBody);
379
-    $params = array_merge($params, $optParams);
380
-    return $this->call('create', array($params), "Google_Service_Pubsub_Subscription");
378
+	$params = array('name' => $name, 'postBody' => $postBody);
379
+	$params = array_merge($params, $optParams);
380
+	return $this->call('create', array($params), "Google_Service_Pubsub_Subscription");
381 381
   }
382 382
 
383 383
   /**
@@ -393,9 +393,9 @@  discard block
 block discarded – undo
393 393
    */
394 394
   public function delete($subscription, $optParams = array())
395 395
   {
396
-    $params = array('subscription' => $subscription);
397
-    $params = array_merge($params, $optParams);
398
-    return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
396
+	$params = array('subscription' => $subscription);
397
+	$params = array_merge($params, $optParams);
398
+	return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
399 399
   }
400 400
 
401 401
   /**
@@ -407,9 +407,9 @@  discard block
 block discarded – undo
407 407
    */
408 408
   public function get($subscription, $optParams = array())
409 409
   {
410
-    $params = array('subscription' => $subscription);
411
-    $params = array_merge($params, $optParams);
412
-    return $this->call('get', array($params), "Google_Service_Pubsub_Subscription");
410
+	$params = array('subscription' => $subscription);
411
+	$params = array_merge($params, $optParams);
412
+	return $this->call('get', array($params), "Google_Service_Pubsub_Subscription");
413 413
   }
414 414
 
415 415
   /**
@@ -424,9 +424,9 @@  discard block
 block discarded – undo
424 424
    */
425 425
   public function getIamPolicy($resource, $optParams = array())
426 426
   {
427
-    $params = array('resource' => $resource);
428
-    $params = array_merge($params, $optParams);
429
-    return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
427
+	$params = array('resource' => $resource);
428
+	$params = array_merge($params, $optParams);
429
+	return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
430 430
   }
431 431
 
432 432
   /**
@@ -445,9 +445,9 @@  discard block
 block discarded – undo
445 445
    */
446 446
   public function listProjectsSubscriptions($project, $optParams = array())
447 447
   {
448
-    $params = array('project' => $project);
449
-    $params = array_merge($params, $optParams);
450
-    return $this->call('list', array($params), "Google_Service_Pubsub_ListSubscriptionsResponse");
448
+	$params = array('project' => $project);
449
+	$params = array_merge($params, $optParams);
450
+	return $this->call('list', array($params), "Google_Service_Pubsub_ListSubscriptionsResponse");
451 451
   }
452 452
 
453 453
   /**
@@ -463,9 +463,9 @@  discard block
 block discarded – undo
463 463
    */
464 464
   public function modifyAckDeadline($subscription, Google_Service_Pubsub_ModifyAckDeadlineRequest $postBody, $optParams = array())
465 465
   {
466
-    $params = array('subscription' => $subscription, 'postBody' => $postBody);
467
-    $params = array_merge($params, $optParams);
468
-    return $this->call('modifyAckDeadline', array($params), "Google_Service_Pubsub_Empty");
466
+	$params = array('subscription' => $subscription, 'postBody' => $postBody);
467
+	$params = array_merge($params, $optParams);
468
+	return $this->call('modifyAckDeadline', array($params), "Google_Service_Pubsub_Empty");
469 469
   }
470 470
 
471 471
   /**
@@ -483,9 +483,9 @@  discard block
 block discarded – undo
483 483
    */
484 484
   public function modifyPushConfig($subscription, Google_Service_Pubsub_ModifyPushConfigRequest $postBody, $optParams = array())
485 485
   {
486
-    $params = array('subscription' => $subscription, 'postBody' => $postBody);
487
-    $params = array_merge($params, $optParams);
488
-    return $this->call('modifyPushConfig', array($params), "Google_Service_Pubsub_Empty");
486
+	$params = array('subscription' => $subscription, 'postBody' => $postBody);
487
+	$params = array_merge($params, $optParams);
488
+	return $this->call('modifyPushConfig', array($params), "Google_Service_Pubsub_Empty");
489 489
   }
490 490
 
491 491
   /**
@@ -502,9 +502,9 @@  discard block
 block discarded – undo
502 502
    */
503 503
   public function pull($subscription, Google_Service_Pubsub_PullRequest $postBody, $optParams = array())
504 504
   {
505
-    $params = array('subscription' => $subscription, 'postBody' => $postBody);
506
-    $params = array_merge($params, $optParams);
507
-    return $this->call('pull', array($params), "Google_Service_Pubsub_PullResponse");
505
+	$params = array('subscription' => $subscription, 'postBody' => $postBody);
506
+	$params = array_merge($params, $optParams);
507
+	return $this->call('pull', array($params), "Google_Service_Pubsub_PullResponse");
508 508
   }
509 509
 
510 510
   /**
@@ -520,9 +520,9 @@  discard block
 block discarded – undo
520 520
    */
521 521
   public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array())
522 522
   {
523
-    $params = array('resource' => $resource, 'postBody' => $postBody);
524
-    $params = array_merge($params, $optParams);
525
-    return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
523
+	$params = array('resource' => $resource, 'postBody' => $postBody);
524
+	$params = array_merge($params, $optParams);
525
+	return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
526 526
   }
527 527
 
528 528
   /**
@@ -538,9 +538,9 @@  discard block
 block discarded – undo
538 538
    */
539 539
   public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array())
540 540
   {
541
-    $params = array('resource' => $resource, 'postBody' => $postBody);
542
-    $params = array_merge($params, $optParams);
543
-    return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
541
+	$params = array('resource' => $resource, 'postBody' => $postBody);
542
+	$params = array_merge($params, $optParams);
543
+	return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
544 544
   }
545 545
 }
546 546
 /**
@@ -569,9 +569,9 @@  discard block
 block discarded – undo
569 569
    */
570 570
   public function create($name, Google_Service_Pubsub_Topic $postBody, $optParams = array())
571 571
   {
572
-    $params = array('name' => $name, 'postBody' => $postBody);
573
-    $params = array_merge($params, $optParams);
574
-    return $this->call('create', array($params), "Google_Service_Pubsub_Topic");
572
+	$params = array('name' => $name, 'postBody' => $postBody);
573
+	$params = array_merge($params, $optParams);
574
+	return $this->call('create', array($params), "Google_Service_Pubsub_Topic");
575 575
   }
576 576
 
577 577
   /**
@@ -587,9 +587,9 @@  discard block
 block discarded – undo
587 587
    */
588 588
   public function delete($topic, $optParams = array())
589 589
   {
590
-    $params = array('topic' => $topic);
591
-    $params = array_merge($params, $optParams);
592
-    return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
590
+	$params = array('topic' => $topic);
591
+	$params = array_merge($params, $optParams);
592
+	return $this->call('delete', array($params), "Google_Service_Pubsub_Empty");
593 593
   }
594 594
 
595 595
   /**
@@ -601,9 +601,9 @@  discard block
 block discarded – undo
601 601
    */
602 602
   public function get($topic, $optParams = array())
603 603
   {
604
-    $params = array('topic' => $topic);
605
-    $params = array_merge($params, $optParams);
606
-    return $this->call('get', array($params), "Google_Service_Pubsub_Topic");
604
+	$params = array('topic' => $topic);
605
+	$params = array_merge($params, $optParams);
606
+	return $this->call('get', array($params), "Google_Service_Pubsub_Topic");
607 607
   }
608 608
 
609 609
   /**
@@ -618,9 +618,9 @@  discard block
 block discarded – undo
618 618
    */
619 619
   public function getIamPolicy($resource, $optParams = array())
620 620
   {
621
-    $params = array('resource' => $resource);
622
-    $params = array_merge($params, $optParams);
623
-    return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
621
+	$params = array('resource' => $resource);
622
+	$params = array_merge($params, $optParams);
623
+	return $this->call('getIamPolicy', array($params), "Google_Service_Pubsub_Policy");
624 624
   }
625 625
 
626 626
   /**
@@ -637,9 +637,9 @@  discard block
 block discarded – undo
637 637
    */
638 638
   public function listProjectsTopics($project, $optParams = array())
639 639
   {
640
-    $params = array('project' => $project);
641
-    $params = array_merge($params, $optParams);
642
-    return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicsResponse");
640
+	$params = array('project' => $project);
641
+	$params = array_merge($params, $optParams);
642
+	return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicsResponse");
643 643
   }
644 644
 
645 645
   /**
@@ -655,9 +655,9 @@  discard block
 block discarded – undo
655 655
    */
656 656
   public function publish($topic, Google_Service_Pubsub_PublishRequest $postBody, $optParams = array())
657 657
   {
658
-    $params = array('topic' => $topic, 'postBody' => $postBody);
659
-    $params = array_merge($params, $optParams);
660
-    return $this->call('publish', array($params), "Google_Service_Pubsub_PublishResponse");
658
+	$params = array('topic' => $topic, 'postBody' => $postBody);
659
+	$params = array_merge($params, $optParams);
660
+	return $this->call('publish', array($params), "Google_Service_Pubsub_PublishResponse");
661 661
   }
662 662
 
663 663
   /**
@@ -673,9 +673,9 @@  discard block
 block discarded – undo
673 673
    */
674 674
   public function setIamPolicy($resource, Google_Service_Pubsub_SetIamPolicyRequest $postBody, $optParams = array())
675 675
   {
676
-    $params = array('resource' => $resource, 'postBody' => $postBody);
677
-    $params = array_merge($params, $optParams);
678
-    return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
676
+	$params = array('resource' => $resource, 'postBody' => $postBody);
677
+	$params = array_merge($params, $optParams);
678
+	return $this->call('setIamPolicy', array($params), "Google_Service_Pubsub_Policy");
679 679
   }
680 680
 
681 681
   /**
@@ -691,9 +691,9 @@  discard block
 block discarded – undo
691 691
    */
692 692
   public function testIamPermissions($resource, Google_Service_Pubsub_TestIamPermissionsRequest $postBody, $optParams = array())
693 693
   {
694
-    $params = array('resource' => $resource, 'postBody' => $postBody);
695
-    $params = array_merge($params, $optParams);
696
-    return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
694
+	$params = array('resource' => $resource, 'postBody' => $postBody);
695
+	$params = array_merge($params, $optParams);
696
+	return $this->call('testIamPermissions', array($params), "Google_Service_Pubsub_TestIamPermissionsResponse");
697 697
   }
698 698
 }
699 699
 
@@ -725,9 +725,9 @@  discard block
 block discarded – undo
725 725
    */
726 726
   public function listProjectsTopicsSubscriptions($topic, $optParams = array())
727 727
   {
728
-    $params = array('topic' => $topic);
729
-    $params = array_merge($params, $optParams);
730
-    return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicSubscriptionsResponse");
728
+	$params = array('topic' => $topic);
729
+	$params = array_merge($params, $optParams);
730
+	return $this->call('list', array($params), "Google_Service_Pubsub_ListTopicSubscriptionsResponse");
731 731
   }
732 732
 }
733 733
 
@@ -744,11 +744,11 @@  discard block
 block discarded – undo
744 744
 
745 745
   public function setAckIds($ackIds)
746 746
   {
747
-    $this->ackIds = $ackIds;
747
+	$this->ackIds = $ackIds;
748 748
   }
749 749
   public function getAckIds()
750 750
   {
751
-    return $this->ackIds;
751
+	return $this->ackIds;
752 752
   }
753 753
 }
754 754
 
@@ -763,19 +763,19 @@  discard block
 block discarded – undo
763 763
 
764 764
   public function setMembers($members)
765 765
   {
766
-    $this->members = $members;
766
+	$this->members = $members;
767 767
   }
768 768
   public function getMembers()
769 769
   {
770
-    return $this->members;
770
+	return $this->members;
771 771
   }
772 772
   public function setRole($role)
773 773
   {
774
-    $this->role = $role;
774
+	$this->role = $role;
775 775
   }
776 776
   public function getRole()
777 777
   {
778
-    return $this->role;
778
+	return $this->role;
779 779
   }
780 780
 }
781 781
 
@@ -795,19 +795,19 @@  discard block
 block discarded – undo
795 795
 
796 796
   public function setNextPageToken($nextPageToken)
797 797
   {
798
-    $this->nextPageToken = $nextPageToken;
798
+	$this->nextPageToken = $nextPageToken;
799 799
   }
800 800
   public function getNextPageToken()
801 801
   {
802
-    return $this->nextPageToken;
802
+	return $this->nextPageToken;
803 803
   }
804 804
   public function setSubscriptions($subscriptions)
805 805
   {
806
-    $this->subscriptions = $subscriptions;
806
+	$this->subscriptions = $subscriptions;
807 807
   }
808 808
   public function getSubscriptions()
809 809
   {
810
-    return $this->subscriptions;
810
+	return $this->subscriptions;
811 811
   }
812 812
 }
813 813
 
@@ -822,19 +822,19 @@  discard block
 block discarded – undo
822 822
 
823 823
   public function setNextPageToken($nextPageToken)
824 824
   {
825
-    $this->nextPageToken = $nextPageToken;
825
+	$this->nextPageToken = $nextPageToken;
826 826
   }
827 827
   public function getNextPageToken()
828 828
   {
829
-    return $this->nextPageToken;
829
+	return $this->nextPageToken;
830 830
   }
831 831
   public function setSubscriptions($subscriptions)
832 832
   {
833
-    $this->subscriptions = $subscriptions;
833
+	$this->subscriptions = $subscriptions;
834 834
   }
835 835
   public function getSubscriptions()
836 836
   {
837
-    return $this->subscriptions;
837
+	return $this->subscriptions;
838 838
   }
839 839
 }
840 840
 
@@ -850,19 +850,19 @@  discard block
 block discarded – undo
850 850
 
851 851
   public function setNextPageToken($nextPageToken)
852 852
   {
853
-    $this->nextPageToken = $nextPageToken;
853
+	$this->nextPageToken = $nextPageToken;
854 854
   }
855 855
   public function getNextPageToken()
856 856
   {
857
-    return $this->nextPageToken;
857
+	return $this->nextPageToken;
858 858
   }
859 859
   public function setTopics($topics)
860 860
   {
861
-    $this->topics = $topics;
861
+	$this->topics = $topics;
862 862
   }
863 863
   public function getTopics()
864 864
   {
865
-    return $this->topics;
865
+	return $this->topics;
866 866
   }
867 867
 }
868 868
 
@@ -877,19 +877,19 @@  discard block
 block discarded – undo
877 877
 
878 878
   public function setAckDeadlineSeconds($ackDeadlineSeconds)
879 879
   {
880
-    $this->ackDeadlineSeconds = $ackDeadlineSeconds;
880
+	$this->ackDeadlineSeconds = $ackDeadlineSeconds;
881 881
   }
882 882
   public function getAckDeadlineSeconds()
883 883
   {
884
-    return $this->ackDeadlineSeconds;
884
+	return $this->ackDeadlineSeconds;
885 885
   }
886 886
   public function setAckIds($ackIds)
887 887
   {
888
-    $this->ackIds = $ackIds;
888
+	$this->ackIds = $ackIds;
889 889
   }
890 890
   public function getAckIds()
891 891
   {
892
-    return $this->ackIds;
892
+	return $this->ackIds;
893 893
   }
894 894
 }
895 895
 
@@ -903,11 +903,11 @@  discard block
 block discarded – undo
903 903
 
904 904
   public function setPushConfig(Google_Service_Pubsub_PushConfig $pushConfig)
905 905
   {
906
-    $this->pushConfig = $pushConfig;
906
+	$this->pushConfig = $pushConfig;
907 907
   }
908 908
   public function getPushConfig()
909 909
   {
910
-    return $this->pushConfig;
910
+	return $this->pushConfig;
911 911
   }
912 912
 }
913 913
 
@@ -924,27 +924,27 @@  discard block
 block discarded – undo
924 924
 
925 925
   public function setBindings($bindings)
926 926
   {
927
-    $this->bindings = $bindings;
927
+	$this->bindings = $bindings;
928 928
   }
929 929
   public function getBindings()
930 930
   {
931
-    return $this->bindings;
931
+	return $this->bindings;
932 932
   }
933 933
   public function setEtag($etag)
934 934
   {
935
-    $this->etag = $etag;
935
+	$this->etag = $etag;
936 936
   }
937 937
   public function getEtag()
938 938
   {
939
-    return $this->etag;
939
+	return $this->etag;
940 940
   }
941 941
   public function setVersion($version)
942 942
   {
943
-    $this->version = $version;
943
+	$this->version = $version;
944 944
   }
945 945
   public function getVersion()
946 946
   {
947
-    return $this->version;
947
+	return $this->version;
948 948
   }
949 949
 }
950 950
 
@@ -959,11 +959,11 @@  discard block
 block discarded – undo
959 959
 
960 960
   public function setMessages($messages)
961 961
   {
962
-    $this->messages = $messages;
962
+	$this->messages = $messages;
963 963
   }
964 964
   public function getMessages()
965 965
   {
966
-    return $this->messages;
966
+	return $this->messages;
967 967
   }
968 968
 }
969 969
 
@@ -977,11 +977,11 @@  discard block
 block discarded – undo
977 977
 
978 978
   public function setMessageIds($messageIds)
979 979
   {
980
-    $this->messageIds = $messageIds;
980
+	$this->messageIds = $messageIds;
981 981
   }
982 982
   public function getMessageIds()
983 983
   {
984
-    return $this->messageIds;
984
+	return $this->messageIds;
985 985
   }
986 986
 }
987 987
 
@@ -996,27 +996,27 @@  discard block
 block discarded – undo
996 996
 
997 997
   public function setAttributes($attributes)
998 998
   {
999
-    $this->attributes = $attributes;
999
+	$this->attributes = $attributes;
1000 1000
   }
1001 1001
   public function getAttributes()
1002 1002
   {
1003
-    return $this->attributes;
1003
+	return $this->attributes;
1004 1004
   }
1005 1005
   public function setData($data)
1006 1006
   {
1007
-    $this->data = $data;
1007
+	$this->data = $data;
1008 1008
   }
1009 1009
   public function getData()
1010 1010
   {
1011
-    return $this->data;
1011
+	return $this->data;
1012 1012
   }
1013 1013
   public function setMessageId($messageId)
1014 1014
   {
1015
-    $this->messageId = $messageId;
1015
+	$this->messageId = $messageId;
1016 1016
   }
1017 1017
   public function getMessageId()
1018 1018
   {
1019
-    return $this->messageId;
1019
+	return $this->messageId;
1020 1020
   }
1021 1021
 }
1022 1022
 
@@ -1034,19 +1034,19 @@  discard block
 block discarded – undo
1034 1034
 
1035 1035
   public function setMaxMessages($maxMessages)
1036 1036
   {
1037
-    $this->maxMessages = $maxMessages;
1037
+	$this->maxMessages = $maxMessages;
1038 1038
   }
1039 1039
   public function getMaxMessages()
1040 1040
   {
1041
-    return $this->maxMessages;
1041
+	return $this->maxMessages;
1042 1042
   }
1043 1043
   public function setReturnImmediately($returnImmediately)
1044 1044
   {
1045
-    $this->returnImmediately = $returnImmediately;
1045
+	$this->returnImmediately = $returnImmediately;
1046 1046
   }
1047 1047
   public function getReturnImmediately()
1048 1048
   {
1049
-    return $this->returnImmediately;
1049
+	return $this->returnImmediately;
1050 1050
   }
1051 1051
 }
1052 1052
 
@@ -1061,11 +1061,11 @@  discard block
 block discarded – undo
1061 1061
 
1062 1062
   public function setReceivedMessages($receivedMessages)
1063 1063
   {
1064
-    $this->receivedMessages = $receivedMessages;
1064
+	$this->receivedMessages = $receivedMessages;
1065 1065
   }
1066 1066
   public function getReceivedMessages()
1067 1067
   {
1068
-    return $this->receivedMessages;
1068
+	return $this->receivedMessages;
1069 1069
   }
1070 1070
 }
1071 1071
 
@@ -1079,19 +1079,19 @@  discard block
 block discarded – undo
1079 1079
 
1080 1080
   public function setAttributes($attributes)
1081 1081
   {
1082
-    $this->attributes = $attributes;
1082
+	$this->attributes = $attributes;
1083 1083
   }
1084 1084
   public function getAttributes()
1085 1085
   {
1086
-    return $this->attributes;
1086
+	return $this->attributes;
1087 1087
   }
1088 1088
   public function setPushEndpoint($pushEndpoint)
1089 1089
   {
1090
-    $this->pushEndpoint = $pushEndpoint;
1090
+	$this->pushEndpoint = $pushEndpoint;
1091 1091
   }
1092 1092
   public function getPushEndpoint()
1093 1093
   {
1094
-    return $this->pushEndpoint;
1094
+	return $this->pushEndpoint;
1095 1095
   }
1096 1096
 }
1097 1097
 
@@ -1110,19 +1110,19 @@  discard block
 block discarded – undo
1110 1110
 
1111 1111
   public function setAckId($ackId)
1112 1112
   {
1113
-    $this->ackId = $ackId;
1113
+	$this->ackId = $ackId;
1114 1114
   }
1115 1115
   public function getAckId()
1116 1116
   {
1117
-    return $this->ackId;
1117
+	return $this->ackId;
1118 1118
   }
1119 1119
   public function setMessage(Google_Service_Pubsub_PubsubMessage $message)
1120 1120
   {
1121
-    $this->message = $message;
1121
+	$this->message = $message;
1122 1122
   }
1123 1123
   public function getMessage()
1124 1124
   {
1125
-    return $this->message;
1125
+	return $this->message;
1126 1126
   }
1127 1127
 }
1128 1128
 
@@ -1136,11 +1136,11 @@  discard block
 block discarded – undo
1136 1136
 
1137 1137
   public function setPolicy(Google_Service_Pubsub_Policy $policy)
1138 1138
   {
1139
-    $this->policy = $policy;
1139
+	$this->policy = $policy;
1140 1140
   }
1141 1141
   public function getPolicy()
1142 1142
   {
1143
-    return $this->policy;
1143
+	return $this->policy;
1144 1144
   }
1145 1145
 }
1146 1146
 
@@ -1157,35 +1157,35 @@  discard block
 block discarded – undo
1157 1157
 
1158 1158
   public function setAckDeadlineSeconds($ackDeadlineSeconds)
1159 1159
   {
1160
-    $this->ackDeadlineSeconds = $ackDeadlineSeconds;
1160
+	$this->ackDeadlineSeconds = $ackDeadlineSeconds;
1161 1161
   }
1162 1162
   public function getAckDeadlineSeconds()
1163 1163
   {
1164
-    return $this->ackDeadlineSeconds;
1164
+	return $this->ackDeadlineSeconds;
1165 1165
   }
1166 1166
   public function setName($name)
1167 1167
   {
1168
-    $this->name = $name;
1168
+	$this->name = $name;
1169 1169
   }
1170 1170
   public function getName()
1171 1171
   {
1172
-    return $this->name;
1172
+	return $this->name;
1173 1173
   }
1174 1174
   public function setPushConfig(Google_Service_Pubsub_PushConfig $pushConfig)
1175 1175
   {
1176
-    $this->pushConfig = $pushConfig;
1176
+	$this->pushConfig = $pushConfig;
1177 1177
   }
1178 1178
   public function getPushConfig()
1179 1179
   {
1180
-    return $this->pushConfig;
1180
+	return $this->pushConfig;
1181 1181
   }
1182 1182
   public function setTopic($topic)
1183 1183
   {
1184
-    $this->topic = $topic;
1184
+	$this->topic = $topic;
1185 1185
   }
1186 1186
   public function getTopic()
1187 1187
   {
1188
-    return $this->topic;
1188
+	return $this->topic;
1189 1189
   }
1190 1190
 }
1191 1191
 
@@ -1199,11 +1199,11 @@  discard block
 block discarded – undo
1199 1199
 
1200 1200
   public function setPermissions($permissions)
1201 1201
   {
1202
-    $this->permissions = $permissions;
1202
+	$this->permissions = $permissions;
1203 1203
   }
1204 1204
   public function getPermissions()
1205 1205
   {
1206
-    return $this->permissions;
1206
+	return $this->permissions;
1207 1207
   }
1208 1208
 }
1209 1209
 
@@ -1217,11 +1217,11 @@  discard block
 block discarded – undo
1217 1217
 
1218 1218
   public function setPermissions($permissions)
1219 1219
   {
1220
-    $this->permissions = $permissions;
1220
+	$this->permissions = $permissions;
1221 1221
   }
1222 1222
   public function getPermissions()
1223 1223
   {
1224
-    return $this->permissions;
1224
+	return $this->permissions;
1225 1225
   }
1226 1226
 }
1227 1227
 
@@ -1234,10 +1234,10 @@  discard block
 block discarded – undo
1234 1234
 
1235 1235
   public function setName($name)
1236 1236
   {
1237
-    $this->name = $name;
1237
+	$this->name = $name;
1238 1238
   }
1239 1239
   public function getName()
1240 1240
   {
1241
-    return $this->name;
1241
+	return $this->name;
1242 1242
   }
1243 1243
 }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                   'required' => true,
72 72
                 ),
73 73
               ),
74
-            ),'create' => array(
74
+            ), 'create' => array(
75 75
               'path' => 'v1/{+name}',
76 76
               'httpMethod' => 'PUT',
77 77
               'parameters' => array(
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
                   'required' => true,
82 82
                 ),
83 83
               ),
84
-            ),'delete' => array(
84
+            ), 'delete' => array(
85 85
               'path' => 'v1/{+subscription}',
86 86
               'httpMethod' => 'DELETE',
87 87
               'parameters' => array(
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
                   'required' => true,
92 92
                 ),
93 93
               ),
94
-            ),'get' => array(
94
+            ), 'get' => array(
95 95
               'path' => 'v1/{+subscription}',
96 96
               'httpMethod' => 'GET',
97 97
               'parameters' => array(
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                   'required' => true,
102 102
                 ),
103 103
               ),
104
-            ),'getIamPolicy' => array(
104
+            ), 'getIamPolicy' => array(
105 105
               'path' => 'v1/{+resource}:getIamPolicy',
106 106
               'httpMethod' => 'GET',
107 107
               'parameters' => array(
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                   'required' => true,
112 112
                 ),
113 113
               ),
114
-            ),'list' => array(
114
+            ), 'list' => array(
115 115
               'path' => 'v1/{+project}/subscriptions',
116 116
               'httpMethod' => 'GET',
117 117
               'parameters' => array(
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                   'type' => 'integer',
130 130
                 ),
131 131
               ),
132
-            ),'modifyAckDeadline' => array(
132
+            ), 'modifyAckDeadline' => array(
133 133
               'path' => 'v1/{+subscription}:modifyAckDeadline',
134 134
               'httpMethod' => 'POST',
135 135
               'parameters' => array(
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                   'required' => true,
140 140
                 ),
141 141
               ),
142
-            ),'modifyPushConfig' => array(
142
+            ), 'modifyPushConfig' => array(
143 143
               'path' => 'v1/{+subscription}:modifyPushConfig',
144 144
               'httpMethod' => 'POST',
145 145
               'parameters' => array(
@@ -149,7 +149,7 @@  discard block
 block discarded – undo
149 149
                   'required' => true,
150 150
                 ),
151 151
               ),
152
-            ),'pull' => array(
152
+            ), 'pull' => array(
153 153
               'path' => 'v1/{+subscription}:pull',
154 154
               'httpMethod' => 'POST',
155 155
               'parameters' => array(
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                   'required' => true,
160 160
                 ),
161 161
               ),
162
-            ),'setIamPolicy' => array(
162
+            ), 'setIamPolicy' => array(
163 163
               'path' => 'v1/{+resource}:setIamPolicy',
164 164
               'httpMethod' => 'POST',
165 165
               'parameters' => array(
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                   'required' => true,
170 170
                 ),
171 171
               ),
172
-            ),'testIamPermissions' => array(
172
+            ), 'testIamPermissions' => array(
173 173
               'path' => 'v1/{+resource}:testIamPermissions',
174 174
               'httpMethod' => 'POST',
175 175
               'parameters' => array(
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                   'required' => true,
200 200
                 ),
201 201
               ),
202
-            ),'delete' => array(
202
+            ), 'delete' => array(
203 203
               'path' => 'v1/{+topic}',
204 204
               'httpMethod' => 'DELETE',
205 205
               'parameters' => array(
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
                   'required' => true,
210 210
                 ),
211 211
               ),
212
-            ),'get' => array(
212
+            ), 'get' => array(
213 213
               'path' => 'v1/{+topic}',
214 214
               'httpMethod' => 'GET',
215 215
               'parameters' => array(
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                   'required' => true,
220 220
                 ),
221 221
               ),
222
-            ),'getIamPolicy' => array(
222
+            ), 'getIamPolicy' => array(
223 223
               'path' => 'v1/{+resource}:getIamPolicy',
224 224
               'httpMethod' => 'GET',
225 225
               'parameters' => array(
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
                   'required' => true,
230 230
                 ),
231 231
               ),
232
-            ),'list' => array(
232
+            ), 'list' => array(
233 233
               'path' => 'v1/{+project}/topics',
234 234
               'httpMethod' => 'GET',
235 235
               'parameters' => array(
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
                   'type' => 'integer',
248 248
                 ),
249 249
               ),
250
-            ),'publish' => array(
250
+            ), 'publish' => array(
251 251
               'path' => 'v1/{+topic}:publish',
252 252
               'httpMethod' => 'POST',
253 253
               'parameters' => array(
@@ -257,7 +257,7 @@  discard block
 block discarded – undo
257 257
                   'required' => true,
258 258
                 ),
259 259
               ),
260
-            ),'setIamPolicy' => array(
260
+            ), 'setIamPolicy' => array(
261 261
               'path' => 'v1/{+resource}:setIamPolicy',
262 262
               'httpMethod' => 'POST',
263 263
               'parameters' => array(
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
                   'required' => true,
268 268
                 ),
269 269
               ),
270
-            ),'testIamPermissions' => array(
270
+            ), 'testIamPermissions' => array(
271 271
               'path' => 'v1/{+resource}:testIamPermissions',
272 272
               'httpMethod' => 'POST',
273 273
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/QPXExpress.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
   /**
82 82
    * Returns a list of flights. (trips.search)
83 83
    *
84
-   * @param Google_TripsSearchRequest $postBody
84
+   * @param Google_Service_QPXExpress_TripsSearchRequest $postBody
85 85
    * @param array $optParams Optional parameters.
86 86
    * @return Google_Service_QPXExpress_TripsSearchResponse
87 87
    */
Please login to merge, or discard this patch.
Indentation   +293 added lines, -293 removed lines patch added patch discarded remove patch
@@ -43,26 +43,26 @@  discard block
 block discarded – undo
43 43
    */
44 44
   public function __construct(Google_Client $client)
45 45
   {
46
-    parent::__construct($client);
47
-    $this->rootUrl = 'https://www.googleapis.com/';
48
-    $this->servicePath = 'qpxExpress/v1/trips/';
49
-    $this->version = 'v1';
50
-    $this->serviceName = 'qpxExpress';
51
-
52
-    $this->trips = new Google_Service_QPXExpress_Trips_Resource(
53
-        $this,
54
-        $this->serviceName,
55
-        'trips',
56
-        array(
57
-          'methods' => array(
58
-            'search' => array(
59
-              'path' => 'search',
60
-              'httpMethod' => 'POST',
61
-              'parameters' => array(),
62
-            ),
63
-          )
64
-        )
65
-    );
46
+	parent::__construct($client);
47
+	$this->rootUrl = 'https://www.googleapis.com/';
48
+	$this->servicePath = 'qpxExpress/v1/trips/';
49
+	$this->version = 'v1';
50
+	$this->serviceName = 'qpxExpress';
51
+
52
+	$this->trips = new Google_Service_QPXExpress_Trips_Resource(
53
+		$this,
54
+		$this->serviceName,
55
+		'trips',
56
+		array(
57
+		  'methods' => array(
58
+			'search' => array(
59
+			  'path' => 'search',
60
+			  'httpMethod' => 'POST',
61
+			  'parameters' => array(),
62
+			),
63
+		  )
64
+		)
65
+	);
66 66
   }
67 67
 }
68 68
 
@@ -87,9 +87,9 @@  discard block
 block discarded – undo
87 87
    */
88 88
   public function search(Google_Service_QPXExpress_TripsSearchRequest $postBody, $optParams = array())
89 89
   {
90
-    $params = array('postBody' => $postBody);
91
-    $params = array_merge($params, $optParams);
92
-    return $this->call('search', array($params), "Google_Service_QPXExpress_TripsSearchResponse");
90
+	$params = array('postBody' => $postBody);
91
+	$params = array_merge($params, $optParams);
92
+	return $this->call('search', array($params), "Google_Service_QPXExpress_TripsSearchResponse");
93 93
   }
94 94
 }
95 95
 
@@ -107,27 +107,27 @@  discard block
 block discarded – undo
107 107
 
108 108
   public function setCode($code)
109 109
   {
110
-    $this->code = $code;
110
+	$this->code = $code;
111 111
   }
112 112
   public function getCode()
113 113
   {
114
-    return $this->code;
114
+	return $this->code;
115 115
   }
116 116
   public function setKind($kind)
117 117
   {
118
-    $this->kind = $kind;
118
+	$this->kind = $kind;
119 119
   }
120 120
   public function getKind()
121 121
   {
122
-    return $this->kind;
122
+	return $this->kind;
123 123
   }
124 124
   public function setName($name)
125 125
   {
126
-    $this->name = $name;
126
+	$this->name = $name;
127 127
   }
128 128
   public function getName()
129 129
   {
130
-    return $this->name;
130
+	return $this->name;
131 131
   }
132 132
 }
133 133
 
@@ -143,35 +143,35 @@  discard block
 block discarded – undo
143 143
 
144 144
   public function setCity($city)
145 145
   {
146
-    $this->city = $city;
146
+	$this->city = $city;
147 147
   }
148 148
   public function getCity()
149 149
   {
150
-    return $this->city;
150
+	return $this->city;
151 151
   }
152 152
   public function setCode($code)
153 153
   {
154
-    $this->code = $code;
154
+	$this->code = $code;
155 155
   }
156 156
   public function getCode()
157 157
   {
158
-    return $this->code;
158
+	return $this->code;
159 159
   }
160 160
   public function setKind($kind)
161 161
   {
162
-    $this->kind = $kind;
162
+	$this->kind = $kind;
163 163
   }
164 164
   public function getKind()
165 165
   {
166
-    return $this->kind;
166
+	return $this->kind;
167 167
   }
168 168
   public function setName($name)
169 169
   {
170
-    $this->name = $name;
170
+	$this->name = $name;
171 171
   }
172 172
   public function getName()
173 173
   {
174
-    return $this->name;
174
+	return $this->name;
175 175
   }
176 176
 }
177 177
 
@@ -189,43 +189,43 @@  discard block
 block discarded – undo
189 189
 
190 190
   public function setCommercialName($commercialName)
191 191
   {
192
-    $this->commercialName = $commercialName;
192
+	$this->commercialName = $commercialName;
193 193
   }
194 194
   public function getCommercialName()
195 195
   {
196
-    return $this->commercialName;
196
+	return $this->commercialName;
197 197
   }
198 198
   public function setCount($count)
199 199
   {
200
-    $this->count = $count;
200
+	$this->count = $count;
201 201
   }
202 202
   public function getCount()
203 203
   {
204
-    return $this->count;
204
+	return $this->count;
205 205
   }
206 206
   public function setDescription($description)
207 207
   {
208
-    $this->description = $description;
208
+	$this->description = $description;
209 209
   }
210 210
   public function getDescription()
211 211
   {
212
-    return $this->description;
212
+	return $this->description;
213 213
   }
214 214
   public function setKind($kind)
215 215
   {
216
-    $this->kind = $kind;
216
+	$this->kind = $kind;
217 217
   }
218 218
   public function getKind()
219 219
   {
220
-    return $this->kind;
220
+	return $this->kind;
221 221
   }
222 222
   public function setSubcode($subcode)
223 223
   {
224
-    $this->subcode = $subcode;
224
+	$this->subcode = $subcode;
225 225
   }
226 226
   public function getSubcode()
227 227
   {
228
-    return $this->subcode;
228
+	return $this->subcode;
229 229
   }
230 230
 }
231 231
 
@@ -240,27 +240,27 @@  discard block
 block discarded – undo
240 240
 
241 241
   public function setCode($code)
242 242
   {
243
-    $this->code = $code;
243
+	$this->code = $code;
244 244
   }
245 245
   public function getCode()
246 246
   {
247
-    return $this->code;
247
+	return $this->code;
248 248
   }
249 249
   public function setKind($kind)
250 250
   {
251
-    $this->kind = $kind;
251
+	$this->kind = $kind;
252 252
   }
253 253
   public function getKind()
254 254
   {
255
-    return $this->kind;
255
+	return $this->kind;
256 256
   }
257 257
   public function setName($name)
258 258
   {
259
-    $this->name = $name;
259
+	$this->name = $name;
260 260
   }
261 261
   public function getName()
262 262
   {
263
-    return $this->name;
263
+	return $this->name;
264 264
   }
265 265
 }
266 266
 
@@ -276,35 +276,35 @@  discard block
 block discarded – undo
276 276
 
277 277
   public function setCode($code)
278 278
   {
279
-    $this->code = $code;
279
+	$this->code = $code;
280 280
   }
281 281
   public function getCode()
282 282
   {
283
-    return $this->code;
283
+	return $this->code;
284 284
   }
285 285
   public function setCountry($country)
286 286
   {
287
-    $this->country = $country;
287
+	$this->country = $country;
288 288
   }
289 289
   public function getCountry()
290 290
   {
291
-    return $this->country;
291
+	return $this->country;
292 292
   }
293 293
   public function setKind($kind)
294 294
   {
295
-    $this->kind = $kind;
295
+	$this->kind = $kind;
296 296
   }
297 297
   public function getKind()
298 298
   {
299
-    return $this->kind;
299
+	return $this->kind;
300 300
   }
301 301
   public function setName($name)
302 302
   {
303
-    $this->name = $name;
303
+	$this->name = $name;
304 304
   }
305 305
   public function getName()
306 306
   {
307
-    return $this->name;
307
+	return $this->name;
308 308
   }
309 309
 }
310 310
 
@@ -328,51 +328,51 @@  discard block
 block discarded – undo
328 328
 
329 329
   public function setAircraft($aircraft)
330 330
   {
331
-    $this->aircraft = $aircraft;
331
+	$this->aircraft = $aircraft;
332 332
   }
333 333
   public function getAircraft()
334 334
   {
335
-    return $this->aircraft;
335
+	return $this->aircraft;
336 336
   }
337 337
   public function setAirport($airport)
338 338
   {
339
-    $this->airport = $airport;
339
+	$this->airport = $airport;
340 340
   }
341 341
   public function getAirport()
342 342
   {
343
-    return $this->airport;
343
+	return $this->airport;
344 344
   }
345 345
   public function setCarrier($carrier)
346 346
   {
347
-    $this->carrier = $carrier;
347
+	$this->carrier = $carrier;
348 348
   }
349 349
   public function getCarrier()
350 350
   {
351
-    return $this->carrier;
351
+	return $this->carrier;
352 352
   }
353 353
   public function setCity($city)
354 354
   {
355
-    $this->city = $city;
355
+	$this->city = $city;
356 356
   }
357 357
   public function getCity()
358 358
   {
359
-    return $this->city;
359
+	return $this->city;
360 360
   }
361 361
   public function setKind($kind)
362 362
   {
363
-    $this->kind = $kind;
363
+	$this->kind = $kind;
364 364
   }
365 365
   public function getKind()
366 366
   {
367
-    return $this->kind;
367
+	return $this->kind;
368 368
   }
369 369
   public function setTax($tax)
370 370
   {
371
-    $this->tax = $tax;
371
+	$this->tax = $tax;
372 372
   }
373 373
   public function getTax()
374 374
   {
375
-    return $this->tax;
375
+	return $this->tax;
376 376
   }
377 377
 }
378 378
 
@@ -391,59 +391,59 @@  discard block
 block discarded – undo
391 391
 
392 392
   public function setBasisCode($basisCode)
393 393
   {
394
-    $this->basisCode = $basisCode;
394
+	$this->basisCode = $basisCode;
395 395
   }
396 396
   public function getBasisCode()
397 397
   {
398
-    return $this->basisCode;
398
+	return $this->basisCode;
399 399
   }
400 400
   public function setCarrier($carrier)
401 401
   {
402
-    $this->carrier = $carrier;
402
+	$this->carrier = $carrier;
403 403
   }
404 404
   public function getCarrier()
405 405
   {
406
-    return $this->carrier;
406
+	return $this->carrier;
407 407
   }
408 408
   public function setDestination($destination)
409 409
   {
410
-    $this->destination = $destination;
410
+	$this->destination = $destination;
411 411
   }
412 412
   public function getDestination()
413 413
   {
414
-    return $this->destination;
414
+	return $this->destination;
415 415
   }
416 416
   public function setId($id)
417 417
   {
418
-    $this->id = $id;
418
+	$this->id = $id;
419 419
   }
420 420
   public function getId()
421 421
   {
422
-    return $this->id;
422
+	return $this->id;
423 423
   }
424 424
   public function setKind($kind)
425 425
   {
426
-    $this->kind = $kind;
426
+	$this->kind = $kind;
427 427
   }
428 428
   public function getKind()
429 429
   {
430
-    return $this->kind;
430
+	return $this->kind;
431 431
   }
432 432
   public function setOrigin($origin)
433 433
   {
434
-    $this->origin = $origin;
434
+	$this->origin = $origin;
435 435
   }
436 436
   public function getOrigin()
437 437
   {
438
-    return $this->origin;
438
+	return $this->origin;
439 439
   }
440 440
   public function setPrivate($private)
441 441
   {
442
-    $this->private = $private;
442
+	$this->private = $private;
443 443
   }
444 444
   public function getPrivate()
445 445
   {
446
-    return $this->private;
446
+	return $this->private;
447 447
   }
448 448
 }
449 449
 
@@ -457,19 +457,19 @@  discard block
 block discarded – undo
457 457
 
458 458
   public function setCarrier($carrier)
459 459
   {
460
-    $this->carrier = $carrier;
460
+	$this->carrier = $carrier;
461 461
   }
462 462
   public function getCarrier()
463 463
   {
464
-    return $this->carrier;
464
+	return $this->carrier;
465 465
   }
466 466
   public function setNumber($number)
467 467
   {
468
-    $this->number = $number;
468
+	$this->number = $number;
469 469
   }
470 470
   public function getNumber()
471 471
   {
472
-    return $this->number;
472
+	return $this->number;
473 473
   }
474 474
 }
475 475
 
@@ -489,51 +489,51 @@  discard block
 block discarded – undo
489 489
 
490 490
   public function setBagDescriptor($bagDescriptor)
491 491
   {
492
-    $this->bagDescriptor = $bagDescriptor;
492
+	$this->bagDescriptor = $bagDescriptor;
493 493
   }
494 494
   public function getBagDescriptor()
495 495
   {
496
-    return $this->bagDescriptor;
496
+	return $this->bagDescriptor;
497 497
   }
498 498
   public function setKilos($kilos)
499 499
   {
500
-    $this->kilos = $kilos;
500
+	$this->kilos = $kilos;
501 501
   }
502 502
   public function getKilos()
503 503
   {
504
-    return $this->kilos;
504
+	return $this->kilos;
505 505
   }
506 506
   public function setKilosPerPiece($kilosPerPiece)
507 507
   {
508
-    $this->kilosPerPiece = $kilosPerPiece;
508
+	$this->kilosPerPiece = $kilosPerPiece;
509 509
   }
510 510
   public function getKilosPerPiece()
511 511
   {
512
-    return $this->kilosPerPiece;
512
+	return $this->kilosPerPiece;
513 513
   }
514 514
   public function setKind($kind)
515 515
   {
516
-    $this->kind = $kind;
516
+	$this->kind = $kind;
517 517
   }
518 518
   public function getKind()
519 519
   {
520
-    return $this->kind;
520
+	return $this->kind;
521 521
   }
522 522
   public function setPieces($pieces)
523 523
   {
524
-    $this->pieces = $pieces;
524
+	$this->pieces = $pieces;
525 525
   }
526 526
   public function getPieces()
527 527
   {
528
-    return $this->pieces;
528
+	return $this->pieces;
529 529
   }
530 530
   public function setPounds($pounds)
531 531
   {
532
-    $this->pounds = $pounds;
532
+	$this->pounds = $pounds;
533 533
   }
534 534
   public function getPounds()
535 535
   {
536
-    return $this->pounds;
536
+	return $this->pounds;
537 537
   }
538 538
 }
539 539
 
@@ -562,139 +562,139 @@  discard block
 block discarded – undo
562 562
 
563 563
   public function setAircraft($aircraft)
564 564
   {
565
-    $this->aircraft = $aircraft;
565
+	$this->aircraft = $aircraft;
566 566
   }
567 567
   public function getAircraft()
568 568
   {
569
-    return $this->aircraft;
569
+	return $this->aircraft;
570 570
   }
571 571
   public function setArrivalTime($arrivalTime)
572 572
   {
573
-    $this->arrivalTime = $arrivalTime;
573
+	$this->arrivalTime = $arrivalTime;
574 574
   }
575 575
   public function getArrivalTime()
576 576
   {
577
-    return $this->arrivalTime;
577
+	return $this->arrivalTime;
578 578
   }
579 579
   public function setChangePlane($changePlane)
580 580
   {
581
-    $this->changePlane = $changePlane;
581
+	$this->changePlane = $changePlane;
582 582
   }
583 583
   public function getChangePlane()
584 584
   {
585
-    return $this->changePlane;
585
+	return $this->changePlane;
586 586
   }
587 587
   public function setConnectionDuration($connectionDuration)
588 588
   {
589
-    $this->connectionDuration = $connectionDuration;
589
+	$this->connectionDuration = $connectionDuration;
590 590
   }
591 591
   public function getConnectionDuration()
592 592
   {
593
-    return $this->connectionDuration;
593
+	return $this->connectionDuration;
594 594
   }
595 595
   public function setDepartureTime($departureTime)
596 596
   {
597
-    $this->departureTime = $departureTime;
597
+	$this->departureTime = $departureTime;
598 598
   }
599 599
   public function getDepartureTime()
600 600
   {
601
-    return $this->departureTime;
601
+	return $this->departureTime;
602 602
   }
603 603
   public function setDestination($destination)
604 604
   {
605
-    $this->destination = $destination;
605
+	$this->destination = $destination;
606 606
   }
607 607
   public function getDestination()
608 608
   {
609
-    return $this->destination;
609
+	return $this->destination;
610 610
   }
611 611
   public function setDestinationTerminal($destinationTerminal)
612 612
   {
613
-    $this->destinationTerminal = $destinationTerminal;
613
+	$this->destinationTerminal = $destinationTerminal;
614 614
   }
615 615
   public function getDestinationTerminal()
616 616
   {
617
-    return $this->destinationTerminal;
617
+	return $this->destinationTerminal;
618 618
   }
619 619
   public function setDuration($duration)
620 620
   {
621
-    $this->duration = $duration;
621
+	$this->duration = $duration;
622 622
   }
623 623
   public function getDuration()
624 624
   {
625
-    return $this->duration;
625
+	return $this->duration;
626 626
   }
627 627
   public function setId($id)
628 628
   {
629
-    $this->id = $id;
629
+	$this->id = $id;
630 630
   }
631 631
   public function getId()
632 632
   {
633
-    return $this->id;
633
+	return $this->id;
634 634
   }
635 635
   public function setKind($kind)
636 636
   {
637
-    $this->kind = $kind;
637
+	$this->kind = $kind;
638 638
   }
639 639
   public function getKind()
640 640
   {
641
-    return $this->kind;
641
+	return $this->kind;
642 642
   }
643 643
   public function setMeal($meal)
644 644
   {
645
-    $this->meal = $meal;
645
+	$this->meal = $meal;
646 646
   }
647 647
   public function getMeal()
648 648
   {
649
-    return $this->meal;
649
+	return $this->meal;
650 650
   }
651 651
   public function setMileage($mileage)
652 652
   {
653
-    $this->mileage = $mileage;
653
+	$this->mileage = $mileage;
654 654
   }
655 655
   public function getMileage()
656 656
   {
657
-    return $this->mileage;
657
+	return $this->mileage;
658 658
   }
659 659
   public function setOnTimePerformance($onTimePerformance)
660 660
   {
661
-    $this->onTimePerformance = $onTimePerformance;
661
+	$this->onTimePerformance = $onTimePerformance;
662 662
   }
663 663
   public function getOnTimePerformance()
664 664
   {
665
-    return $this->onTimePerformance;
665
+	return $this->onTimePerformance;
666 666
   }
667 667
   public function setOperatingDisclosure($operatingDisclosure)
668 668
   {
669
-    $this->operatingDisclosure = $operatingDisclosure;
669
+	$this->operatingDisclosure = $operatingDisclosure;
670 670
   }
671 671
   public function getOperatingDisclosure()
672 672
   {
673
-    return $this->operatingDisclosure;
673
+	return $this->operatingDisclosure;
674 674
   }
675 675
   public function setOrigin($origin)
676 676
   {
677
-    $this->origin = $origin;
677
+	$this->origin = $origin;
678 678
   }
679 679
   public function getOrigin()
680 680
   {
681
-    return $this->origin;
681
+	return $this->origin;
682 682
   }
683 683
   public function setOriginTerminal($originTerminal)
684 684
   {
685
-    $this->originTerminal = $originTerminal;
685
+	$this->originTerminal = $originTerminal;
686 686
   }
687 687
   public function getOriginTerminal()
688 688
   {
689
-    return $this->originTerminal;
689
+	return $this->originTerminal;
690 690
   }
691 691
   public function setSecure($secure)
692 692
   {
693
-    $this->secure = $secure;
693
+	$this->secure = $secure;
694 694
   }
695 695
   public function getSecure()
696 696
   {
697
-    return $this->secure;
697
+	return $this->secure;
698 698
   }
699 699
 }
700 700
 
@@ -712,51 +712,51 @@  discard block
 block discarded – undo
712 712
 
713 713
   public function setAdultCount($adultCount)
714 714
   {
715
-    $this->adultCount = $adultCount;
715
+	$this->adultCount = $adultCount;
716 716
   }
717 717
   public function getAdultCount()
718 718
   {
719
-    return $this->adultCount;
719
+	return $this->adultCount;
720 720
   }
721 721
   public function setChildCount($childCount)
722 722
   {
723
-    $this->childCount = $childCount;
723
+	$this->childCount = $childCount;
724 724
   }
725 725
   public function getChildCount()
726 726
   {
727
-    return $this->childCount;
727
+	return $this->childCount;
728 728
   }
729 729
   public function setInfantInLapCount($infantInLapCount)
730 730
   {
731
-    $this->infantInLapCount = $infantInLapCount;
731
+	$this->infantInLapCount = $infantInLapCount;
732 732
   }
733 733
   public function getInfantInLapCount()
734 734
   {
735
-    return $this->infantInLapCount;
735
+	return $this->infantInLapCount;
736 736
   }
737 737
   public function setInfantInSeatCount($infantInSeatCount)
738 738
   {
739
-    $this->infantInSeatCount = $infantInSeatCount;
739
+	$this->infantInSeatCount = $infantInSeatCount;
740 740
   }
741 741
   public function getInfantInSeatCount()
742 742
   {
743
-    return $this->infantInSeatCount;
743
+	return $this->infantInSeatCount;
744 744
   }
745 745
   public function setKind($kind)
746 746
   {
747
-    $this->kind = $kind;
747
+	$this->kind = $kind;
748 748
   }
749 749
   public function getKind()
750 750
   {
751
-    return $this->kind;
751
+	return $this->kind;
752 752
   }
753 753
   public function setSeniorCount($seniorCount)
754 754
   {
755
-    $this->seniorCount = $seniorCount;
755
+	$this->seniorCount = $seniorCount;
756 756
   }
757 757
   public function getSeniorCount()
758 758
   {
759
-    return $this->seniorCount;
759
+	return $this->seniorCount;
760 760
   }
761 761
 }
762 762
 
@@ -786,107 +786,107 @@  discard block
 block discarded – undo
786 786
 
787 787
   public function setBaseFareTotal($baseFareTotal)
788 788
   {
789
-    $this->baseFareTotal = $baseFareTotal;
789
+	$this->baseFareTotal = $baseFareTotal;
790 790
   }
791 791
   public function getBaseFareTotal()
792 792
   {
793
-    return $this->baseFareTotal;
793
+	return $this->baseFareTotal;
794 794
   }
795 795
   public function setFare($fare)
796 796
   {
797
-    $this->fare = $fare;
797
+	$this->fare = $fare;
798 798
   }
799 799
   public function getFare()
800 800
   {
801
-    return $this->fare;
801
+	return $this->fare;
802 802
   }
803 803
   public function setFareCalculation($fareCalculation)
804 804
   {
805
-    $this->fareCalculation = $fareCalculation;
805
+	$this->fareCalculation = $fareCalculation;
806 806
   }
807 807
   public function getFareCalculation()
808 808
   {
809
-    return $this->fareCalculation;
809
+	return $this->fareCalculation;
810 810
   }
811 811
   public function setKind($kind)
812 812
   {
813
-    $this->kind = $kind;
813
+	$this->kind = $kind;
814 814
   }
815 815
   public function getKind()
816 816
   {
817
-    return $this->kind;
817
+	return $this->kind;
818 818
   }
819 819
   public function setLatestTicketingTime($latestTicketingTime)
820 820
   {
821
-    $this->latestTicketingTime = $latestTicketingTime;
821
+	$this->latestTicketingTime = $latestTicketingTime;
822 822
   }
823 823
   public function getLatestTicketingTime()
824 824
   {
825
-    return $this->latestTicketingTime;
825
+	return $this->latestTicketingTime;
826 826
   }
827 827
   public function setPassengers(Google_Service_QPXExpress_PassengerCounts $passengers)
828 828
   {
829
-    $this->passengers = $passengers;
829
+	$this->passengers = $passengers;
830 830
   }
831 831
   public function getPassengers()
832 832
   {
833
-    return $this->passengers;
833
+	return $this->passengers;
834 834
   }
835 835
   public function setPtc($ptc)
836 836
   {
837
-    $this->ptc = $ptc;
837
+	$this->ptc = $ptc;
838 838
   }
839 839
   public function getPtc()
840 840
   {
841
-    return $this->ptc;
841
+	return $this->ptc;
842 842
   }
843 843
   public function setRefundable($refundable)
844 844
   {
845
-    $this->refundable = $refundable;
845
+	$this->refundable = $refundable;
846 846
   }
847 847
   public function getRefundable()
848 848
   {
849
-    return $this->refundable;
849
+	return $this->refundable;
850 850
   }
851 851
   public function setSaleFareTotal($saleFareTotal)
852 852
   {
853
-    $this->saleFareTotal = $saleFareTotal;
853
+	$this->saleFareTotal = $saleFareTotal;
854 854
   }
855 855
   public function getSaleFareTotal()
856 856
   {
857
-    return $this->saleFareTotal;
857
+	return $this->saleFareTotal;
858 858
   }
859 859
   public function setSaleTaxTotal($saleTaxTotal)
860 860
   {
861
-    $this->saleTaxTotal = $saleTaxTotal;
861
+	$this->saleTaxTotal = $saleTaxTotal;
862 862
   }
863 863
   public function getSaleTaxTotal()
864 864
   {
865
-    return $this->saleTaxTotal;
865
+	return $this->saleTaxTotal;
866 866
   }
867 867
   public function setSaleTotal($saleTotal)
868 868
   {
869
-    $this->saleTotal = $saleTotal;
869
+	$this->saleTotal = $saleTotal;
870 870
   }
871 871
   public function getSaleTotal()
872 872
   {
873
-    return $this->saleTotal;
873
+	return $this->saleTotal;
874 874
   }
875 875
   public function setSegmentPricing($segmentPricing)
876 876
   {
877
-    $this->segmentPricing = $segmentPricing;
877
+	$this->segmentPricing = $segmentPricing;
878 878
   }
879 879
   public function getSegmentPricing()
880 880
   {
881
-    return $this->segmentPricing;
881
+	return $this->segmentPricing;
882 882
   }
883 883
   public function setTax($tax)
884 884
   {
885
-    $this->tax = $tax;
885
+	$this->tax = $tax;
886 886
   }
887 887
   public function getTax()
888 888
   {
889
-    return $this->tax;
889
+	return $this->tax;
890 890
   }
891 891
 }
892 892
 
@@ -912,91 +912,91 @@  discard block
 block discarded – undo
912 912
 
913 913
   public function setBookingCode($bookingCode)
914 914
   {
915
-    $this->bookingCode = $bookingCode;
915
+	$this->bookingCode = $bookingCode;
916 916
   }
917 917
   public function getBookingCode()
918 918
   {
919
-    return $this->bookingCode;
919
+	return $this->bookingCode;
920 920
   }
921 921
   public function setBookingCodeCount($bookingCodeCount)
922 922
   {
923
-    $this->bookingCodeCount = $bookingCodeCount;
923
+	$this->bookingCodeCount = $bookingCodeCount;
924 924
   }
925 925
   public function getBookingCodeCount()
926 926
   {
927
-    return $this->bookingCodeCount;
927
+	return $this->bookingCodeCount;
928 928
   }
929 929
   public function setCabin($cabin)
930 930
   {
931
-    $this->cabin = $cabin;
931
+	$this->cabin = $cabin;
932 932
   }
933 933
   public function getCabin()
934 934
   {
935
-    return $this->cabin;
935
+	return $this->cabin;
936 936
   }
937 937
   public function setConnectionDuration($connectionDuration)
938 938
   {
939
-    $this->connectionDuration = $connectionDuration;
939
+	$this->connectionDuration = $connectionDuration;
940 940
   }
941 941
   public function getConnectionDuration()
942 942
   {
943
-    return $this->connectionDuration;
943
+	return $this->connectionDuration;
944 944
   }
945 945
   public function setDuration($duration)
946 946
   {
947
-    $this->duration = $duration;
947
+	$this->duration = $duration;
948 948
   }
949 949
   public function getDuration()
950 950
   {
951
-    return $this->duration;
951
+	return $this->duration;
952 952
   }
953 953
   public function setFlight(Google_Service_QPXExpress_FlightInfo $flight)
954 954
   {
955
-    $this->flight = $flight;
955
+	$this->flight = $flight;
956 956
   }
957 957
   public function getFlight()
958 958
   {
959
-    return $this->flight;
959
+	return $this->flight;
960 960
   }
961 961
   public function setId($id)
962 962
   {
963
-    $this->id = $id;
963
+	$this->id = $id;
964 964
   }
965 965
   public function getId()
966 966
   {
967
-    return $this->id;
967
+	return $this->id;
968 968
   }
969 969
   public function setKind($kind)
970 970
   {
971
-    $this->kind = $kind;
971
+	$this->kind = $kind;
972 972
   }
973 973
   public function getKind()
974 974
   {
975
-    return $this->kind;
975
+	return $this->kind;
976 976
   }
977 977
   public function setLeg($leg)
978 978
   {
979
-    $this->leg = $leg;
979
+	$this->leg = $leg;
980 980
   }
981 981
   public function getLeg()
982 982
   {
983
-    return $this->leg;
983
+	return $this->leg;
984 984
   }
985 985
   public function setMarriedSegmentGroup($marriedSegmentGroup)
986 986
   {
987
-    $this->marriedSegmentGroup = $marriedSegmentGroup;
987
+	$this->marriedSegmentGroup = $marriedSegmentGroup;
988 988
   }
989 989
   public function getMarriedSegmentGroup()
990 990
   {
991
-    return $this->marriedSegmentGroup;
991
+	return $this->marriedSegmentGroup;
992 992
   }
993 993
   public function setSubjectToGovernmentApproval($subjectToGovernmentApproval)
994 994
   {
995
-    $this->subjectToGovernmentApproval = $subjectToGovernmentApproval;
995
+	$this->subjectToGovernmentApproval = $subjectToGovernmentApproval;
996 996
   }
997 997
   public function getSubjectToGovernmentApproval()
998 998
   {
999
-    return $this->subjectToGovernmentApproval;
999
+	return $this->subjectToGovernmentApproval;
1000 1000
   }
1001 1001
 }
1002 1002
 
@@ -1014,35 +1014,35 @@  discard block
 block discarded – undo
1014 1014
 
1015 1015
   public function setFareId($fareId)
1016 1016
   {
1017
-    $this->fareId = $fareId;
1017
+	$this->fareId = $fareId;
1018 1018
   }
1019 1019
   public function getFareId()
1020 1020
   {
1021
-    return $this->fareId;
1021
+	return $this->fareId;
1022 1022
   }
1023 1023
   public function setFreeBaggageOption($freeBaggageOption)
1024 1024
   {
1025
-    $this->freeBaggageOption = $freeBaggageOption;
1025
+	$this->freeBaggageOption = $freeBaggageOption;
1026 1026
   }
1027 1027
   public function getFreeBaggageOption()
1028 1028
   {
1029
-    return $this->freeBaggageOption;
1029
+	return $this->freeBaggageOption;
1030 1030
   }
1031 1031
   public function setKind($kind)
1032 1032
   {
1033
-    $this->kind = $kind;
1033
+	$this->kind = $kind;
1034 1034
   }
1035 1035
   public function getKind()
1036 1036
   {
1037
-    return $this->kind;
1037
+	return $this->kind;
1038 1038
   }
1039 1039
   public function setSegmentId($segmentId)
1040 1040
   {
1041
-    $this->segmentId = $segmentId;
1041
+	$this->segmentId = $segmentId;
1042 1042
   }
1043 1043
   public function getSegmentId()
1044 1044
   {
1045
-    return $this->segmentId;
1045
+	return $this->segmentId;
1046 1046
   }
1047 1047
 }
1048 1048
 
@@ -1059,27 +1059,27 @@  discard block
 block discarded – undo
1059 1059
 
1060 1060
   public function setDuration($duration)
1061 1061
   {
1062
-    $this->duration = $duration;
1062
+	$this->duration = $duration;
1063 1063
   }
1064 1064
   public function getDuration()
1065 1065
   {
1066
-    return $this->duration;
1066
+	return $this->duration;
1067 1067
   }
1068 1068
   public function setKind($kind)
1069 1069
   {
1070
-    $this->kind = $kind;
1070
+	$this->kind = $kind;
1071 1071
   }
1072 1072
   public function getKind()
1073 1073
   {
1074
-    return $this->kind;
1074
+	return $this->kind;
1075 1075
   }
1076 1076
   public function setSegment($segment)
1077 1077
   {
1078
-    $this->segment = $segment;
1078
+	$this->segment = $segment;
1079 1079
   }
1080 1080
   public function getSegment()
1081 1081
   {
1082
-    return $this->segment;
1082
+	return $this->segment;
1083 1083
   }
1084 1084
 }
1085 1085
 
@@ -1104,91 +1104,91 @@  discard block
 block discarded – undo
1104 1104
 
1105 1105
   public function setAlliance($alliance)
1106 1106
   {
1107
-    $this->alliance = $alliance;
1107
+	$this->alliance = $alliance;
1108 1108
   }
1109 1109
   public function getAlliance()
1110 1110
   {
1111
-    return $this->alliance;
1111
+	return $this->alliance;
1112 1112
   }
1113 1113
   public function setDate($date)
1114 1114
   {
1115
-    $this->date = $date;
1115
+	$this->date = $date;
1116 1116
   }
1117 1117
   public function getDate()
1118 1118
   {
1119
-    return $this->date;
1119
+	return $this->date;
1120 1120
   }
1121 1121
   public function setDestination($destination)
1122 1122
   {
1123
-    $this->destination = $destination;
1123
+	$this->destination = $destination;
1124 1124
   }
1125 1125
   public function getDestination()
1126 1126
   {
1127
-    return $this->destination;
1127
+	return $this->destination;
1128 1128
   }
1129 1129
   public function setKind($kind)
1130 1130
   {
1131
-    $this->kind = $kind;
1131
+	$this->kind = $kind;
1132 1132
   }
1133 1133
   public function getKind()
1134 1134
   {
1135
-    return $this->kind;
1135
+	return $this->kind;
1136 1136
   }
1137 1137
   public function setMaxConnectionDuration($maxConnectionDuration)
1138 1138
   {
1139
-    $this->maxConnectionDuration = $maxConnectionDuration;
1139
+	$this->maxConnectionDuration = $maxConnectionDuration;
1140 1140
   }
1141 1141
   public function getMaxConnectionDuration()
1142 1142
   {
1143
-    return $this->maxConnectionDuration;
1143
+	return $this->maxConnectionDuration;
1144 1144
   }
1145 1145
   public function setMaxStops($maxStops)
1146 1146
   {
1147
-    $this->maxStops = $maxStops;
1147
+	$this->maxStops = $maxStops;
1148 1148
   }
1149 1149
   public function getMaxStops()
1150 1150
   {
1151
-    return $this->maxStops;
1151
+	return $this->maxStops;
1152 1152
   }
1153 1153
   public function setOrigin($origin)
1154 1154
   {
1155
-    $this->origin = $origin;
1155
+	$this->origin = $origin;
1156 1156
   }
1157 1157
   public function getOrigin()
1158 1158
   {
1159
-    return $this->origin;
1159
+	return $this->origin;
1160 1160
   }
1161 1161
   public function setPermittedCarrier($permittedCarrier)
1162 1162
   {
1163
-    $this->permittedCarrier = $permittedCarrier;
1163
+	$this->permittedCarrier = $permittedCarrier;
1164 1164
   }
1165 1165
   public function getPermittedCarrier()
1166 1166
   {
1167
-    return $this->permittedCarrier;
1167
+	return $this->permittedCarrier;
1168 1168
   }
1169 1169
   public function setPermittedDepartureTime(Google_Service_QPXExpress_TimeOfDayRange $permittedDepartureTime)
1170 1170
   {
1171
-    $this->permittedDepartureTime = $permittedDepartureTime;
1171
+	$this->permittedDepartureTime = $permittedDepartureTime;
1172 1172
   }
1173 1173
   public function getPermittedDepartureTime()
1174 1174
   {
1175
-    return $this->permittedDepartureTime;
1175
+	return $this->permittedDepartureTime;
1176 1176
   }
1177 1177
   public function setPreferredCabin($preferredCabin)
1178 1178
   {
1179
-    $this->preferredCabin = $preferredCabin;
1179
+	$this->preferredCabin = $preferredCabin;
1180 1180
   }
1181 1181
   public function getPreferredCabin()
1182 1182
   {
1183
-    return $this->preferredCabin;
1183
+	return $this->preferredCabin;
1184 1184
   }
1185 1185
   public function setProhibitedCarrier($prohibitedCarrier)
1186 1186
   {
1187
-    $this->prohibitedCarrier = $prohibitedCarrier;
1187
+	$this->prohibitedCarrier = $prohibitedCarrier;
1188 1188
   }
1189 1189
   public function getProhibitedCarrier()
1190 1190
   {
1191
-    return $this->prohibitedCarrier;
1191
+	return $this->prohibitedCarrier;
1192 1192
   }
1193 1193
 }
1194 1194
 
@@ -1203,27 +1203,27 @@  discard block
 block discarded – undo
1203 1203
 
1204 1204
   public function setId($id)
1205 1205
   {
1206
-    $this->id = $id;
1206
+	$this->id = $id;
1207 1207
   }
1208 1208
   public function getId()
1209 1209
   {
1210
-    return $this->id;
1210
+	return $this->id;
1211 1211
   }
1212 1212
   public function setKind($kind)
1213 1213
   {
1214
-    $this->kind = $kind;
1214
+	$this->kind = $kind;
1215 1215
   }
1216 1216
   public function getKind()
1217 1217
   {
1218
-    return $this->kind;
1218
+	return $this->kind;
1219 1219
   }
1220 1220
   public function setName($name)
1221 1221
   {
1222
-    $this->name = $name;
1222
+	$this->name = $name;
1223 1223
   }
1224 1224
   public function getName()
1225 1225
   {
1226
-    return $this->name;
1226
+	return $this->name;
1227 1227
   }
1228 1228
 }
1229 1229
 
@@ -1241,51 +1241,51 @@  discard block
 block discarded – undo
1241 1241
 
1242 1242
   public function setChargeType($chargeType)
1243 1243
   {
1244
-    $this->chargeType = $chargeType;
1244
+	$this->chargeType = $chargeType;
1245 1245
   }
1246 1246
   public function getChargeType()
1247 1247
   {
1248
-    return $this->chargeType;
1248
+	return $this->chargeType;
1249 1249
   }
1250 1250
   public function setCode($code)
1251 1251
   {
1252
-    $this->code = $code;
1252
+	$this->code = $code;
1253 1253
   }
1254 1254
   public function getCode()
1255 1255
   {
1256
-    return $this->code;
1256
+	return $this->code;
1257 1257
   }
1258 1258
   public function setCountry($country)
1259 1259
   {
1260
-    $this->country = $country;
1260
+	$this->country = $country;
1261 1261
   }
1262 1262
   public function getCountry()
1263 1263
   {
1264
-    return $this->country;
1264
+	return $this->country;
1265 1265
   }
1266 1266
   public function setId($id)
1267 1267
   {
1268
-    $this->id = $id;
1268
+	$this->id = $id;
1269 1269
   }
1270 1270
   public function getId()
1271 1271
   {
1272
-    return $this->id;
1272
+	return $this->id;
1273 1273
   }
1274 1274
   public function setKind($kind)
1275 1275
   {
1276
-    $this->kind = $kind;
1276
+	$this->kind = $kind;
1277 1277
   }
1278 1278
   public function getKind()
1279 1279
   {
1280
-    return $this->kind;
1280
+	return $this->kind;
1281 1281
   }
1282 1282
   public function setSalePrice($salePrice)
1283 1283
   {
1284
-    $this->salePrice = $salePrice;
1284
+	$this->salePrice = $salePrice;
1285 1285
   }
1286 1286
   public function getSalePrice()
1287 1287
   {
1288
-    return $this->salePrice;
1288
+	return $this->salePrice;
1289 1289
   }
1290 1290
 }
1291 1291
 
@@ -1300,27 +1300,27 @@  discard block
 block discarded – undo
1300 1300
 
1301 1301
   public function setEarliestTime($earliestTime)
1302 1302
   {
1303
-    $this->earliestTime = $earliestTime;
1303
+	$this->earliestTime = $earliestTime;
1304 1304
   }
1305 1305
   public function getEarliestTime()
1306 1306
   {
1307
-    return $this->earliestTime;
1307
+	return $this->earliestTime;
1308 1308
   }
1309 1309
   public function setKind($kind)
1310 1310
   {
1311
-    $this->kind = $kind;
1311
+	$this->kind = $kind;
1312 1312
   }
1313 1313
   public function getKind()
1314 1314
   {
1315
-    return $this->kind;
1315
+	return $this->kind;
1316 1316
   }
1317 1317
   public function setLatestTime($latestTime)
1318 1318
   {
1319
-    $this->latestTime = $latestTime;
1319
+	$this->latestTime = $latestTime;
1320 1320
   }
1321 1321
   public function getLatestTime()
1322 1322
   {
1323
-    return $this->latestTime;
1323
+	return $this->latestTime;
1324 1324
   }
1325 1325
 }
1326 1326
 
@@ -1340,43 +1340,43 @@  discard block
 block discarded – undo
1340 1340
 
1341 1341
   public function setId($id)
1342 1342
   {
1343
-    $this->id = $id;
1343
+	$this->id = $id;
1344 1344
   }
1345 1345
   public function getId()
1346 1346
   {
1347
-    return $this->id;
1347
+	return $this->id;
1348 1348
   }
1349 1349
   public function setKind($kind)
1350 1350
   {
1351
-    $this->kind = $kind;
1351
+	$this->kind = $kind;
1352 1352
   }
1353 1353
   public function getKind()
1354 1354
   {
1355
-    return $this->kind;
1355
+	return $this->kind;
1356 1356
   }
1357 1357
   public function setPricing($pricing)
1358 1358
   {
1359
-    $this->pricing = $pricing;
1359
+	$this->pricing = $pricing;
1360 1360
   }
1361 1361
   public function getPricing()
1362 1362
   {
1363
-    return $this->pricing;
1363
+	return $this->pricing;
1364 1364
   }
1365 1365
   public function setSaleTotal($saleTotal)
1366 1366
   {
1367
-    $this->saleTotal = $saleTotal;
1367
+	$this->saleTotal = $saleTotal;
1368 1368
   }
1369 1369
   public function getSaleTotal()
1370 1370
   {
1371
-    return $this->saleTotal;
1371
+	return $this->saleTotal;
1372 1372
   }
1373 1373
   public function setSlice($slice)
1374 1374
   {
1375
-    $this->slice = $slice;
1375
+	$this->slice = $slice;
1376 1376
   }
1377 1377
   public function getSlice()
1378 1378
   {
1379
-    return $this->slice;
1379
+	return $this->slice;
1380 1380
   }
1381 1381
 }
1382 1382
 
@@ -1397,51 +1397,51 @@  discard block
 block discarded – undo
1397 1397
 
1398 1398
   public function setMaxPrice($maxPrice)
1399 1399
   {
1400
-    $this->maxPrice = $maxPrice;
1400
+	$this->maxPrice = $maxPrice;
1401 1401
   }
1402 1402
   public function getMaxPrice()
1403 1403
   {
1404
-    return $this->maxPrice;
1404
+	return $this->maxPrice;
1405 1405
   }
1406 1406
   public function setPassengers(Google_Service_QPXExpress_PassengerCounts $passengers)
1407 1407
   {
1408
-    $this->passengers = $passengers;
1408
+	$this->passengers = $passengers;
1409 1409
   }
1410 1410
   public function getPassengers()
1411 1411
   {
1412
-    return $this->passengers;
1412
+	return $this->passengers;
1413 1413
   }
1414 1414
   public function setRefundable($refundable)
1415 1415
   {
1416
-    $this->refundable = $refundable;
1416
+	$this->refundable = $refundable;
1417 1417
   }
1418 1418
   public function getRefundable()
1419 1419
   {
1420
-    return $this->refundable;
1420
+	return $this->refundable;
1421 1421
   }
1422 1422
   public function setSaleCountry($saleCountry)
1423 1423
   {
1424
-    $this->saleCountry = $saleCountry;
1424
+	$this->saleCountry = $saleCountry;
1425 1425
   }
1426 1426
   public function getSaleCountry()
1427 1427
   {
1428
-    return $this->saleCountry;
1428
+	return $this->saleCountry;
1429 1429
   }
1430 1430
   public function setSlice($slice)
1431 1431
   {
1432
-    $this->slice = $slice;
1432
+	$this->slice = $slice;
1433 1433
   }
1434 1434
   public function getSlice()
1435 1435
   {
1436
-    return $this->slice;
1436
+	return $this->slice;
1437 1437
   }
1438 1438
   public function setSolutions($solutions)
1439 1439
   {
1440
-    $this->solutions = $solutions;
1440
+	$this->solutions = $solutions;
1441 1441
   }
1442 1442
   public function getSolutions()
1443 1443
   {
1444
-    return $this->solutions;
1444
+	return $this->solutions;
1445 1445
   }
1446 1446
 }
1447 1447
 
@@ -1460,35 +1460,35 @@  discard block
 block discarded – undo
1460 1460
 
1461 1461
   public function setData(Google_Service_QPXExpress_Data $data)
1462 1462
   {
1463
-    $this->data = $data;
1463
+	$this->data = $data;
1464 1464
   }
1465 1465
   public function getData()
1466 1466
   {
1467
-    return $this->data;
1467
+	return $this->data;
1468 1468
   }
1469 1469
   public function setKind($kind)
1470 1470
   {
1471
-    $this->kind = $kind;
1471
+	$this->kind = $kind;
1472 1472
   }
1473 1473
   public function getKind()
1474 1474
   {
1475
-    return $this->kind;
1475
+	return $this->kind;
1476 1476
   }
1477 1477
   public function setRequestId($requestId)
1478 1478
   {
1479
-    $this->requestId = $requestId;
1479
+	$this->requestId = $requestId;
1480 1480
   }
1481 1481
   public function getRequestId()
1482 1482
   {
1483
-    return $this->requestId;
1483
+	return $this->requestId;
1484 1484
   }
1485 1485
   public function setTripOption($tripOption)
1486 1486
   {
1487
-    $this->tripOption = $tripOption;
1487
+	$this->tripOption = $tripOption;
1488 1488
   }
1489 1489
   public function getTripOption()
1490 1490
   {
1491
-    return $this->tripOption;
1491
+	return $this->tripOption;
1492 1492
   }
1493 1493
 }
1494 1494
 
@@ -1502,11 +1502,11 @@  discard block
 block discarded – undo
1502 1502
 
1503 1503
   public function setRequest(Google_Service_QPXExpress_TripOptionsRequest $request)
1504 1504
   {
1505
-    $this->request = $request;
1505
+	$this->request = $request;
1506 1506
   }
1507 1507
   public function getRequest()
1508 1508
   {
1509
-    return $this->request;
1509
+	return $this->request;
1510 1510
   }
1511 1511
 }
1512 1512
 
@@ -1521,18 +1521,18 @@  discard block
 block discarded – undo
1521 1521
 
1522 1522
   public function setKind($kind)
1523 1523
   {
1524
-    $this->kind = $kind;
1524
+	$this->kind = $kind;
1525 1525
   }
1526 1526
   public function getKind()
1527 1527
   {
1528
-    return $this->kind;
1528
+	return $this->kind;
1529 1529
   }
1530 1530
   public function setTrips(Google_Service_QPXExpress_TripOptionsResponse $trips)
1531 1531
   {
1532
-    $this->trips = $trips;
1532
+	$this->trips = $trips;
1533 1533
   }
1534 1534
   public function getTrips()
1535 1535
   {
1536
-    return $this->trips;
1536
+	return $this->trips;
1537 1537
   }
1538 1538
 }
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Replicapool.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -361,7 +361,7 @@  discard block
 block discarded – undo
361 361
    * @param string $zone The name of the zone in which the instance group manager
362 362
    * resides.
363 363
    * @param string $instanceGroupManager The name of the instance group manager.
364
-   * @param Google_InstanceGroupManagersAbandonInstancesRequest $postBody
364
+   * @param Google_Service_Replicapool_InstanceGroupManagersAbandonInstancesRequest $postBody
365 365
    * @param array $optParams Optional parameters.
366 366
    * @return Google_Service_Replicapool_Operation
367 367
    */
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
    * @param string $zone The name of the zone in which the instance group manager
404 404
    * resides.
405 405
    * @param string $instanceGroupManager The name of the instance group manager.
406
-   * @param Google_InstanceGroupManagersDeleteInstancesRequest $postBody
406
+   * @param Google_Service_Replicapool_InstanceGroupManagersDeleteInstancesRequest $postBody
407 407
    * @param array $optParams Optional parameters.
408 408
    * @return Google_Service_Replicapool_Operation
409 409
    */
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
    * @param string $zone The name of the zone in which the instance group manager
441 441
    * resides.
442 442
    * @param int $size Number of instances that should exist.
443
-   * @param Google_InstanceGroupManager $postBody
443
+   * @param Google_Service_Replicapool_InstanceGroupManager $postBody
444 444
    * @param array $optParams Optional parameters.
445 445
    * @return Google_Service_Replicapool_Operation
446 446
    */
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
    * @param string $zone The name of the zone in which the instance group manager
485 485
    * resides.
486 486
    * @param string $instanceGroupManager The name of the instance group manager.
487
-   * @param Google_InstanceGroupManagersRecreateInstancesRequest $postBody
487
+   * @param Google_Service_Replicapool_InstanceGroupManagersRecreateInstancesRequest $postBody
488 488
    * @param array $optParams Optional parameters.
489 489
    * @return Google_Service_Replicapool_Operation
490 490
    */
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
    * @param string $zone The name of the zone in which the instance group manager
527 527
    * resides.
528 528
    * @param string $instanceGroupManager The name of the instance group manager.
529
-   * @param Google_InstanceGroupManagersSetInstanceTemplateRequest $postBody
529
+   * @param Google_Service_Replicapool_InstanceGroupManagersSetInstanceTemplateRequest $postBody
530 530
    * @param array $optParams Optional parameters.
531 531
    * @return Google_Service_Replicapool_Operation
532 532
    */
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
    * @param string $zone The name of the zone in which the instance group manager
547 547
    * resides.
548 548
    * @param string $instanceGroupManager The name of the instance group manager.
549
-   * @param Google_InstanceGroupManagersSetTargetPoolsRequest $postBody
549
+   * @param Google_Service_Replicapool_InstanceGroupManagersSetTargetPoolsRequest $postBody
550 550
    * @param array $optParams Optional parameters.
551 551
    * @return Google_Service_Replicapool_Operation
552 552
    */
Please login to merge, or discard this patch.
Indentation   +450 added lines, -450 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your data across Google Cloud Platform services. */
35 35
   const CLOUD_PLATFORM =
36
-      "https://www.googleapis.com/auth/cloud-platform";
36
+	  "https://www.googleapis.com/auth/cloud-platform";
37 37
   /** View and manage your Google Compute Engine resources. */
38 38
   const COMPUTE =
39
-      "https://www.googleapis.com/auth/compute";
39
+	  "https://www.googleapis.com/auth/compute";
40 40
   /** View your Google Compute Engine resources. */
41 41
   const COMPUTE_READONLY =
42
-      "https://www.googleapis.com/auth/compute.readonly";
42
+	  "https://www.googleapis.com/auth/compute.readonly";
43 43
 
44 44
   public $instanceGroupManagers;
45 45
   public $zoneOperations;
@@ -52,291 +52,291 @@  discard block
 block discarded – undo
52 52
    */
53 53
   public function __construct(Google_Client $client)
54 54
   {
55
-    parent::__construct($client);
56
-    $this->rootUrl = 'https://www.googleapis.com/';
57
-    $this->servicePath = 'replicapool/v1beta2/projects/';
58
-    $this->version = 'v1beta2';
59
-    $this->serviceName = 'replicapool';
60
-
61
-    $this->instanceGroupManagers = new Google_Service_Replicapool_InstanceGroupManagers_Resource(
62
-        $this,
63
-        $this->serviceName,
64
-        'instanceGroupManagers',
65
-        array(
66
-          'methods' => array(
67
-            'abandonInstances' => array(
68
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances',
69
-              'httpMethod' => 'POST',
70
-              'parameters' => array(
71
-                'project' => array(
72
-                  'location' => 'path',
73
-                  'type' => 'string',
74
-                  'required' => true,
75
-                ),
76
-                'zone' => array(
77
-                  'location' => 'path',
78
-                  'type' => 'string',
79
-                  'required' => true,
80
-                ),
81
-                'instanceGroupManager' => array(
82
-                  'location' => 'path',
83
-                  'type' => 'string',
84
-                  'required' => true,
85
-                ),
86
-              ),
87
-            ),'delete' => array(
88
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
89
-              'httpMethod' => 'DELETE',
90
-              'parameters' => array(
91
-                'project' => array(
92
-                  'location' => 'path',
93
-                  'type' => 'string',
94
-                  'required' => true,
95
-                ),
96
-                'zone' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-                'instanceGroupManager' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-              ),
107
-            ),'deleteInstances' => array(
108
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances',
109
-              'httpMethod' => 'POST',
110
-              'parameters' => array(
111
-                'project' => array(
112
-                  'location' => 'path',
113
-                  'type' => 'string',
114
-                  'required' => true,
115
-                ),
116
-                'zone' => array(
117
-                  'location' => 'path',
118
-                  'type' => 'string',
119
-                  'required' => true,
120
-                ),
121
-                'instanceGroupManager' => array(
122
-                  'location' => 'path',
123
-                  'type' => 'string',
124
-                  'required' => true,
125
-                ),
126
-              ),
127
-            ),'get' => array(
128
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
129
-              'httpMethod' => 'GET',
130
-              'parameters' => array(
131
-                'project' => array(
132
-                  'location' => 'path',
133
-                  'type' => 'string',
134
-                  'required' => true,
135
-                ),
136
-                'zone' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-                'instanceGroupManager' => array(
142
-                  'location' => 'path',
143
-                  'type' => 'string',
144
-                  'required' => true,
145
-                ),
146
-              ),
147
-            ),'insert' => array(
148
-              'path' => '{project}/zones/{zone}/instanceGroupManagers',
149
-              'httpMethod' => 'POST',
150
-              'parameters' => array(
151
-                'project' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'zone' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-                'size' => array(
162
-                  'location' => 'query',
163
-                  'type' => 'integer',
164
-                  'required' => true,
165
-                ),
166
-              ),
167
-            ),'list' => array(
168
-              'path' => '{project}/zones/{zone}/instanceGroupManagers',
169
-              'httpMethod' => 'GET',
170
-              'parameters' => array(
171
-                'project' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-                'zone' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-                'filter' => array(
182
-                  'location' => 'query',
183
-                  'type' => 'string',
184
-                ),
185
-                'pageToken' => array(
186
-                  'location' => 'query',
187
-                  'type' => 'string',
188
-                ),
189
-                'maxResults' => array(
190
-                  'location' => 'query',
191
-                  'type' => 'integer',
192
-                ),
193
-              ),
194
-            ),'recreateInstances' => array(
195
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances',
196
-              'httpMethod' => 'POST',
197
-              'parameters' => array(
198
-                'project' => array(
199
-                  'location' => 'path',
200
-                  'type' => 'string',
201
-                  'required' => true,
202
-                ),
203
-                'zone' => array(
204
-                  'location' => 'path',
205
-                  'type' => 'string',
206
-                  'required' => true,
207
-                ),
208
-                'instanceGroupManager' => array(
209
-                  'location' => 'path',
210
-                  'type' => 'string',
211
-                  'required' => true,
212
-                ),
213
-              ),
214
-            ),'resize' => array(
215
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize',
216
-              'httpMethod' => 'POST',
217
-              'parameters' => array(
218
-                'project' => array(
219
-                  'location' => 'path',
220
-                  'type' => 'string',
221
-                  'required' => true,
222
-                ),
223
-                'zone' => array(
224
-                  'location' => 'path',
225
-                  'type' => 'string',
226
-                  'required' => true,
227
-                ),
228
-                'instanceGroupManager' => array(
229
-                  'location' => 'path',
230
-                  'type' => 'string',
231
-                  'required' => true,
232
-                ),
233
-                'size' => array(
234
-                  'location' => 'query',
235
-                  'type' => 'integer',
236
-                  'required' => true,
237
-                ),
238
-              ),
239
-            ),'setInstanceTemplate' => array(
240
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate',
241
-              'httpMethod' => 'POST',
242
-              'parameters' => array(
243
-                'project' => array(
244
-                  'location' => 'path',
245
-                  'type' => 'string',
246
-                  'required' => true,
247
-                ),
248
-                'zone' => array(
249
-                  'location' => 'path',
250
-                  'type' => 'string',
251
-                  'required' => true,
252
-                ),
253
-                'instanceGroupManager' => array(
254
-                  'location' => 'path',
255
-                  'type' => 'string',
256
-                  'required' => true,
257
-                ),
258
-              ),
259
-            ),'setTargetPools' => array(
260
-              'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools',
261
-              'httpMethod' => 'POST',
262
-              'parameters' => array(
263
-                'project' => array(
264
-                  'location' => 'path',
265
-                  'type' => 'string',
266
-                  'required' => true,
267
-                ),
268
-                'zone' => array(
269
-                  'location' => 'path',
270
-                  'type' => 'string',
271
-                  'required' => true,
272
-                ),
273
-                'instanceGroupManager' => array(
274
-                  'location' => 'path',
275
-                  'type' => 'string',
276
-                  'required' => true,
277
-                ),
278
-              ),
279
-            ),
280
-          )
281
-        )
282
-    );
283
-    $this->zoneOperations = new Google_Service_Replicapool_ZoneOperations_Resource(
284
-        $this,
285
-        $this->serviceName,
286
-        'zoneOperations',
287
-        array(
288
-          'methods' => array(
289
-            'get' => array(
290
-              'path' => '{project}/zones/{zone}/operations/{operation}',
291
-              'httpMethod' => 'GET',
292
-              'parameters' => array(
293
-                'project' => array(
294
-                  'location' => 'path',
295
-                  'type' => 'string',
296
-                  'required' => true,
297
-                ),
298
-                'zone' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-                'operation' => array(
304
-                  'location' => 'path',
305
-                  'type' => 'string',
306
-                  'required' => true,
307
-                ),
308
-              ),
309
-            ),'list' => array(
310
-              'path' => '{project}/zones/{zone}/operations',
311
-              'httpMethod' => 'GET',
312
-              'parameters' => array(
313
-                'project' => array(
314
-                  'location' => 'path',
315
-                  'type' => 'string',
316
-                  'required' => true,
317
-                ),
318
-                'zone' => array(
319
-                  'location' => 'path',
320
-                  'type' => 'string',
321
-                  'required' => true,
322
-                ),
323
-                'filter' => array(
324
-                  'location' => 'query',
325
-                  'type' => 'string',
326
-                ),
327
-                'pageToken' => array(
328
-                  'location' => 'query',
329
-                  'type' => 'string',
330
-                ),
331
-                'maxResults' => array(
332
-                  'location' => 'query',
333
-                  'type' => 'integer',
334
-                ),
335
-              ),
336
-            ),
337
-          )
338
-        )
339
-    );
55
+	parent::__construct($client);
56
+	$this->rootUrl = 'https://www.googleapis.com/';
57
+	$this->servicePath = 'replicapool/v1beta2/projects/';
58
+	$this->version = 'v1beta2';
59
+	$this->serviceName = 'replicapool';
60
+
61
+	$this->instanceGroupManagers = new Google_Service_Replicapool_InstanceGroupManagers_Resource(
62
+		$this,
63
+		$this->serviceName,
64
+		'instanceGroupManagers',
65
+		array(
66
+		  'methods' => array(
67
+			'abandonInstances' => array(
68
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/abandonInstances',
69
+			  'httpMethod' => 'POST',
70
+			  'parameters' => array(
71
+				'project' => array(
72
+				  'location' => 'path',
73
+				  'type' => 'string',
74
+				  'required' => true,
75
+				),
76
+				'zone' => array(
77
+				  'location' => 'path',
78
+				  'type' => 'string',
79
+				  'required' => true,
80
+				),
81
+				'instanceGroupManager' => array(
82
+				  'location' => 'path',
83
+				  'type' => 'string',
84
+				  'required' => true,
85
+				),
86
+			  ),
87
+			),'delete' => array(
88
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
89
+			  'httpMethod' => 'DELETE',
90
+			  'parameters' => array(
91
+				'project' => array(
92
+				  'location' => 'path',
93
+				  'type' => 'string',
94
+				  'required' => true,
95
+				),
96
+				'zone' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+				'instanceGroupManager' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+			  ),
107
+			),'deleteInstances' => array(
108
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances',
109
+			  'httpMethod' => 'POST',
110
+			  'parameters' => array(
111
+				'project' => array(
112
+				  'location' => 'path',
113
+				  'type' => 'string',
114
+				  'required' => true,
115
+				),
116
+				'zone' => array(
117
+				  'location' => 'path',
118
+				  'type' => 'string',
119
+				  'required' => true,
120
+				),
121
+				'instanceGroupManager' => array(
122
+				  'location' => 'path',
123
+				  'type' => 'string',
124
+				  'required' => true,
125
+				),
126
+			  ),
127
+			),'get' => array(
128
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
129
+			  'httpMethod' => 'GET',
130
+			  'parameters' => array(
131
+				'project' => array(
132
+				  'location' => 'path',
133
+				  'type' => 'string',
134
+				  'required' => true,
135
+				),
136
+				'zone' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+				'instanceGroupManager' => array(
142
+				  'location' => 'path',
143
+				  'type' => 'string',
144
+				  'required' => true,
145
+				),
146
+			  ),
147
+			),'insert' => array(
148
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers',
149
+			  'httpMethod' => 'POST',
150
+			  'parameters' => array(
151
+				'project' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'zone' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+				'size' => array(
162
+				  'location' => 'query',
163
+				  'type' => 'integer',
164
+				  'required' => true,
165
+				),
166
+			  ),
167
+			),'list' => array(
168
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers',
169
+			  'httpMethod' => 'GET',
170
+			  'parameters' => array(
171
+				'project' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+				'zone' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+				'filter' => array(
182
+				  'location' => 'query',
183
+				  'type' => 'string',
184
+				),
185
+				'pageToken' => array(
186
+				  'location' => 'query',
187
+				  'type' => 'string',
188
+				),
189
+				'maxResults' => array(
190
+				  'location' => 'query',
191
+				  'type' => 'integer',
192
+				),
193
+			  ),
194
+			),'recreateInstances' => array(
195
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances',
196
+			  'httpMethod' => 'POST',
197
+			  'parameters' => array(
198
+				'project' => array(
199
+				  'location' => 'path',
200
+				  'type' => 'string',
201
+				  'required' => true,
202
+				),
203
+				'zone' => array(
204
+				  'location' => 'path',
205
+				  'type' => 'string',
206
+				  'required' => true,
207
+				),
208
+				'instanceGroupManager' => array(
209
+				  'location' => 'path',
210
+				  'type' => 'string',
211
+				  'required' => true,
212
+				),
213
+			  ),
214
+			),'resize' => array(
215
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize',
216
+			  'httpMethod' => 'POST',
217
+			  'parameters' => array(
218
+				'project' => array(
219
+				  'location' => 'path',
220
+				  'type' => 'string',
221
+				  'required' => true,
222
+				),
223
+				'zone' => array(
224
+				  'location' => 'path',
225
+				  'type' => 'string',
226
+				  'required' => true,
227
+				),
228
+				'instanceGroupManager' => array(
229
+				  'location' => 'path',
230
+				  'type' => 'string',
231
+				  'required' => true,
232
+				),
233
+				'size' => array(
234
+				  'location' => 'query',
235
+				  'type' => 'integer',
236
+				  'required' => true,
237
+				),
238
+			  ),
239
+			),'setInstanceTemplate' => array(
240
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate',
241
+			  'httpMethod' => 'POST',
242
+			  'parameters' => array(
243
+				'project' => array(
244
+				  'location' => 'path',
245
+				  'type' => 'string',
246
+				  'required' => true,
247
+				),
248
+				'zone' => array(
249
+				  'location' => 'path',
250
+				  'type' => 'string',
251
+				  'required' => true,
252
+				),
253
+				'instanceGroupManager' => array(
254
+				  'location' => 'path',
255
+				  'type' => 'string',
256
+				  'required' => true,
257
+				),
258
+			  ),
259
+			),'setTargetPools' => array(
260
+			  'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools',
261
+			  'httpMethod' => 'POST',
262
+			  'parameters' => array(
263
+				'project' => array(
264
+				  'location' => 'path',
265
+				  'type' => 'string',
266
+				  'required' => true,
267
+				),
268
+				'zone' => array(
269
+				  'location' => 'path',
270
+				  'type' => 'string',
271
+				  'required' => true,
272
+				),
273
+				'instanceGroupManager' => array(
274
+				  'location' => 'path',
275
+				  'type' => 'string',
276
+				  'required' => true,
277
+				),
278
+			  ),
279
+			),
280
+		  )
281
+		)
282
+	);
283
+	$this->zoneOperations = new Google_Service_Replicapool_ZoneOperations_Resource(
284
+		$this,
285
+		$this->serviceName,
286
+		'zoneOperations',
287
+		array(
288
+		  'methods' => array(
289
+			'get' => array(
290
+			  'path' => '{project}/zones/{zone}/operations/{operation}',
291
+			  'httpMethod' => 'GET',
292
+			  'parameters' => array(
293
+				'project' => array(
294
+				  'location' => 'path',
295
+				  'type' => 'string',
296
+				  'required' => true,
297
+				),
298
+				'zone' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+				'operation' => array(
304
+				  'location' => 'path',
305
+				  'type' => 'string',
306
+				  'required' => true,
307
+				),
308
+			  ),
309
+			),'list' => array(
310
+			  'path' => '{project}/zones/{zone}/operations',
311
+			  'httpMethod' => 'GET',
312
+			  'parameters' => array(
313
+				'project' => array(
314
+				  'location' => 'path',
315
+				  'type' => 'string',
316
+				  'required' => true,
317
+				),
318
+				'zone' => array(
319
+				  'location' => 'path',
320
+				  'type' => 'string',
321
+				  'required' => true,
322
+				),
323
+				'filter' => array(
324
+				  'location' => 'query',
325
+				  'type' => 'string',
326
+				),
327
+				'pageToken' => array(
328
+				  'location' => 'query',
329
+				  'type' => 'string',
330
+				),
331
+				'maxResults' => array(
332
+				  'location' => 'query',
333
+				  'type' => 'integer',
334
+				),
335
+			  ),
336
+			),
337
+		  )
338
+		)
339
+	);
340 340
   }
341 341
 }
342 342
 
@@ -367,9 +367,9 @@  discard block
 block discarded – undo
367 367
    */
368 368
   public function abandonInstances($project, $zone, $instanceGroupManager, Google_Service_Replicapool_InstanceGroupManagersAbandonInstancesRequest $postBody, $optParams = array())
369 369
   {
370
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
371
-    $params = array_merge($params, $optParams);
372
-    return $this->call('abandonInstances', array($params), "Google_Service_Replicapool_Operation");
370
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
371
+	$params = array_merge($params, $optParams);
372
+	return $this->call('abandonInstances', array($params), "Google_Service_Replicapool_Operation");
373 373
   }
374 374
 
375 375
   /**
@@ -388,9 +388,9 @@  discard block
 block discarded – undo
388 388
    */
389 389
   public function delete($project, $zone, $instanceGroupManager, $optParams = array())
390 390
   {
391
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
392
-    $params = array_merge($params, $optParams);
393
-    return $this->call('delete', array($params), "Google_Service_Replicapool_Operation");
391
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
392
+	$params = array_merge($params, $optParams);
393
+	return $this->call('delete', array($params), "Google_Service_Replicapool_Operation");
394 394
   }
395 395
 
396 396
   /**
@@ -409,9 +409,9 @@  discard block
 block discarded – undo
409 409
    */
410 410
   public function deleteInstances($project, $zone, $instanceGroupManager, Google_Service_Replicapool_InstanceGroupManagersDeleteInstancesRequest $postBody, $optParams = array())
411 411
   {
412
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
413
-    $params = array_merge($params, $optParams);
414
-    return $this->call('deleteInstances', array($params), "Google_Service_Replicapool_Operation");
412
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
413
+	$params = array_merge($params, $optParams);
414
+	return $this->call('deleteInstances', array($params), "Google_Service_Replicapool_Operation");
415 415
   }
416 416
 
417 417
   /**
@@ -427,9 +427,9 @@  discard block
 block discarded – undo
427 427
    */
428 428
   public function get($project, $zone, $instanceGroupManager, $optParams = array())
429 429
   {
430
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
431
-    $params = array_merge($params, $optParams);
432
-    return $this->call('get', array($params), "Google_Service_Replicapool_InstanceGroupManager");
430
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager);
431
+	$params = array_merge($params, $optParams);
432
+	return $this->call('get', array($params), "Google_Service_Replicapool_InstanceGroupManager");
433 433
   }
434 434
 
435 435
   /**
@@ -446,9 +446,9 @@  discard block
 block discarded – undo
446 446
    */
447 447
   public function insert($project, $zone, $size, Google_Service_Replicapool_InstanceGroupManager $postBody, $optParams = array())
448 448
   {
449
-    $params = array('project' => $project, 'zone' => $zone, 'size' => $size, 'postBody' => $postBody);
450
-    $params = array_merge($params, $optParams);
451
-    return $this->call('insert', array($params), "Google_Service_Replicapool_Operation");
449
+	$params = array('project' => $project, 'zone' => $zone, 'size' => $size, 'postBody' => $postBody);
450
+	$params = array_merge($params, $optParams);
451
+	return $this->call('insert', array($params), "Google_Service_Replicapool_Operation");
452 452
   }
453 453
 
454 454
   /**
@@ -470,9 +470,9 @@  discard block
 block discarded – undo
470 470
    */
471 471
   public function listInstanceGroupManagers($project, $zone, $optParams = array())
472 472
   {
473
-    $params = array('project' => $project, 'zone' => $zone);
474
-    $params = array_merge($params, $optParams);
475
-    return $this->call('list', array($params), "Google_Service_Replicapool_InstanceGroupManagerList");
473
+	$params = array('project' => $project, 'zone' => $zone);
474
+	$params = array_merge($params, $optParams);
475
+	return $this->call('list', array($params), "Google_Service_Replicapool_InstanceGroupManagerList");
476 476
   }
477 477
 
478 478
   /**
@@ -490,9 +490,9 @@  discard block
 block discarded – undo
490 490
    */
491 491
   public function recreateInstances($project, $zone, $instanceGroupManager, Google_Service_Replicapool_InstanceGroupManagersRecreateInstancesRequest $postBody, $optParams = array())
492 492
   {
493
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
494
-    $params = array_merge($params, $optParams);
495
-    return $this->call('recreateInstances', array($params), "Google_Service_Replicapool_Operation");
493
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
494
+	$params = array_merge($params, $optParams);
495
+	return $this->call('recreateInstances', array($params), "Google_Service_Replicapool_Operation");
496 496
   }
497 497
 
498 498
   /**
@@ -512,9 +512,9 @@  discard block
 block discarded – undo
512 512
    */
513 513
   public function resize($project, $zone, $instanceGroupManager, $size, $optParams = array())
514 514
   {
515
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'size' => $size);
516
-    $params = array_merge($params, $optParams);
517
-    return $this->call('resize', array($params), "Google_Service_Replicapool_Operation");
515
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'size' => $size);
516
+	$params = array_merge($params, $optParams);
517
+	return $this->call('resize', array($params), "Google_Service_Replicapool_Operation");
518 518
   }
519 519
 
520 520
   /**
@@ -532,9 +532,9 @@  discard block
 block discarded – undo
532 532
    */
533 533
   public function setInstanceTemplate($project, $zone, $instanceGroupManager, Google_Service_Replicapool_InstanceGroupManagersSetInstanceTemplateRequest $postBody, $optParams = array())
534 534
   {
535
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
536
-    $params = array_merge($params, $optParams);
537
-    return $this->call('setInstanceTemplate', array($params), "Google_Service_Replicapool_Operation");
535
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
536
+	$params = array_merge($params, $optParams);
537
+	return $this->call('setInstanceTemplate', array($params), "Google_Service_Replicapool_Operation");
538 538
   }
539 539
 
540 540
   /**
@@ -552,9 +552,9 @@  discard block
 block discarded – undo
552 552
    */
553 553
   public function setTargetPools($project, $zone, $instanceGroupManager, Google_Service_Replicapool_InstanceGroupManagersSetTargetPoolsRequest $postBody, $optParams = array())
554 554
   {
555
-    $params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
556
-    $params = array_merge($params, $optParams);
557
-    return $this->call('setTargetPools', array($params), "Google_Service_Replicapool_Operation");
555
+	$params = array('project' => $project, 'zone' => $zone, 'instanceGroupManager' => $instanceGroupManager, 'postBody' => $postBody);
556
+	$params = array_merge($params, $optParams);
557
+	return $this->call('setTargetPools', array($params), "Google_Service_Replicapool_Operation");
558 558
   }
559 559
 }
560 560
 
@@ -581,9 +581,9 @@  discard block
 block discarded – undo
581 581
    */
582 582
   public function get($project, $zone, $operation, $optParams = array())
583 583
   {
584
-    $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
585
-    $params = array_merge($params, $optParams);
586
-    return $this->call('get', array($params), "Google_Service_Replicapool_Operation");
584
+	$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
585
+	$params = array_merge($params, $optParams);
586
+	return $this->call('get', array($params), "Google_Service_Replicapool_Operation");
587 587
   }
588 588
 
589 589
   /**
@@ -604,9 +604,9 @@  discard block
 block discarded – undo
604 604
    */
605 605
   public function listZoneOperations($project, $zone, $optParams = array())
606 606
   {
607
-    $params = array('project' => $project, 'zone' => $zone);
608
-    $params = array_merge($params, $optParams);
609
-    return $this->call('list', array($params), "Google_Service_Replicapool_OperationList");
607
+	$params = array('project' => $project, 'zone' => $zone);
608
+	$params = array_merge($params, $optParams);
609
+	return $this->call('list', array($params), "Google_Service_Replicapool_OperationList");
610 610
   }
611 611
 }
612 612
 
@@ -637,115 +637,115 @@  discard block
 block discarded – undo
637 637
 
638 638
   public function setAutoHealingPolicies($autoHealingPolicies)
639 639
   {
640
-    $this->autoHealingPolicies = $autoHealingPolicies;
640
+	$this->autoHealingPolicies = $autoHealingPolicies;
641 641
   }
642 642
   public function getAutoHealingPolicies()
643 643
   {
644
-    return $this->autoHealingPolicies;
644
+	return $this->autoHealingPolicies;
645 645
   }
646 646
   public function setBaseInstanceName($baseInstanceName)
647 647
   {
648
-    $this->baseInstanceName = $baseInstanceName;
648
+	$this->baseInstanceName = $baseInstanceName;
649 649
   }
650 650
   public function getBaseInstanceName()
651 651
   {
652
-    return $this->baseInstanceName;
652
+	return $this->baseInstanceName;
653 653
   }
654 654
   public function setCreationTimestamp($creationTimestamp)
655 655
   {
656
-    $this->creationTimestamp = $creationTimestamp;
656
+	$this->creationTimestamp = $creationTimestamp;
657 657
   }
658 658
   public function getCreationTimestamp()
659 659
   {
660
-    return $this->creationTimestamp;
660
+	return $this->creationTimestamp;
661 661
   }
662 662
   public function setCurrentSize($currentSize)
663 663
   {
664
-    $this->currentSize = $currentSize;
664
+	$this->currentSize = $currentSize;
665 665
   }
666 666
   public function getCurrentSize()
667 667
   {
668
-    return $this->currentSize;
668
+	return $this->currentSize;
669 669
   }
670 670
   public function setDescription($description)
671 671
   {
672
-    $this->description = $description;
672
+	$this->description = $description;
673 673
   }
674 674
   public function getDescription()
675 675
   {
676
-    return $this->description;
676
+	return $this->description;
677 677
   }
678 678
   public function setFingerprint($fingerprint)
679 679
   {
680
-    $this->fingerprint = $fingerprint;
680
+	$this->fingerprint = $fingerprint;
681 681
   }
682 682
   public function getFingerprint()
683 683
   {
684
-    return $this->fingerprint;
684
+	return $this->fingerprint;
685 685
   }
686 686
   public function setGroup($group)
687 687
   {
688
-    $this->group = $group;
688
+	$this->group = $group;
689 689
   }
690 690
   public function getGroup()
691 691
   {
692
-    return $this->group;
692
+	return $this->group;
693 693
   }
694 694
   public function setId($id)
695 695
   {
696
-    $this->id = $id;
696
+	$this->id = $id;
697 697
   }
698 698
   public function getId()
699 699
   {
700
-    return $this->id;
700
+	return $this->id;
701 701
   }
702 702
   public function setInstanceTemplate($instanceTemplate)
703 703
   {
704
-    $this->instanceTemplate = $instanceTemplate;
704
+	$this->instanceTemplate = $instanceTemplate;
705 705
   }
706 706
   public function getInstanceTemplate()
707 707
   {
708
-    return $this->instanceTemplate;
708
+	return $this->instanceTemplate;
709 709
   }
710 710
   public function setKind($kind)
711 711
   {
712
-    $this->kind = $kind;
712
+	$this->kind = $kind;
713 713
   }
714 714
   public function getKind()
715 715
   {
716
-    return $this->kind;
716
+	return $this->kind;
717 717
   }
718 718
   public function setName($name)
719 719
   {
720
-    $this->name = $name;
720
+	$this->name = $name;
721 721
   }
722 722
   public function getName()
723 723
   {
724
-    return $this->name;
724
+	return $this->name;
725 725
   }
726 726
   public function setSelfLink($selfLink)
727 727
   {
728
-    $this->selfLink = $selfLink;
728
+	$this->selfLink = $selfLink;
729 729
   }
730 730
   public function getSelfLink()
731 731
   {
732
-    return $this->selfLink;
732
+	return $this->selfLink;
733 733
   }
734 734
   public function setTargetPools($targetPools)
735 735
   {
736
-    $this->targetPools = $targetPools;
736
+	$this->targetPools = $targetPools;
737 737
   }
738 738
   public function getTargetPools()
739 739
   {
740
-    return $this->targetPools;
740
+	return $this->targetPools;
741 741
   }
742 742
   public function setTargetSize($targetSize)
743 743
   {
744
-    $this->targetSize = $targetSize;
744
+	$this->targetSize = $targetSize;
745 745
   }
746 746
   public function getTargetSize()
747 747
   {
748
-    return $this->targetSize;
748
+	return $this->targetSize;
749 749
   }
750 750
 }
751 751
 
@@ -764,43 +764,43 @@  discard block
 block discarded – undo
764 764
 
765 765
   public function setId($id)
766 766
   {
767
-    $this->id = $id;
767
+	$this->id = $id;
768 768
   }
769 769
   public function getId()
770 770
   {
771
-    return $this->id;
771
+	return $this->id;
772 772
   }
773 773
   public function setItems($items)
774 774
   {
775
-    $this->items = $items;
775
+	$this->items = $items;
776 776
   }
777 777
   public function getItems()
778 778
   {
779
-    return $this->items;
779
+	return $this->items;
780 780
   }
781 781
   public function setKind($kind)
782 782
   {
783
-    $this->kind = $kind;
783
+	$this->kind = $kind;
784 784
   }
785 785
   public function getKind()
786 786
   {
787
-    return $this->kind;
787
+	return $this->kind;
788 788
   }
789 789
   public function setNextPageToken($nextPageToken)
790 790
   {
791
-    $this->nextPageToken = $nextPageToken;
791
+	$this->nextPageToken = $nextPageToken;
792 792
   }
793 793
   public function getNextPageToken()
794 794
   {
795
-    return $this->nextPageToken;
795
+	return $this->nextPageToken;
796 796
   }
797 797
   public function setSelfLink($selfLink)
798 798
   {
799
-    $this->selfLink = $selfLink;
799
+	$this->selfLink = $selfLink;
800 800
   }
801 801
   public function getSelfLink()
802 802
   {
803
-    return $this->selfLink;
803
+	return $this->selfLink;
804 804
   }
805 805
 }
806 806
 
@@ -814,11 +814,11 @@  discard block
 block discarded – undo
814 814
 
815 815
   public function setInstances($instances)
816 816
   {
817
-    $this->instances = $instances;
817
+	$this->instances = $instances;
818 818
   }
819 819
   public function getInstances()
820 820
   {
821
-    return $this->instances;
821
+	return $this->instances;
822 822
   }
823 823
 }
824 824
 
@@ -832,11 +832,11 @@  discard block
 block discarded – undo
832 832
 
833 833
   public function setInstances($instances)
834 834
   {
835
-    $this->instances = $instances;
835
+	$this->instances = $instances;
836 836
   }
837 837
   public function getInstances()
838 838
   {
839
-    return $this->instances;
839
+	return $this->instances;
840 840
   }
841 841
 }
842 842
 
@@ -850,11 +850,11 @@  discard block
 block discarded – undo
850 850
 
851 851
   public function setInstances($instances)
852 852
   {
853
-    $this->instances = $instances;
853
+	$this->instances = $instances;
854 854
   }
855 855
   public function getInstances()
856 856
   {
857
-    return $this->instances;
857
+	return $this->instances;
858 858
   }
859 859
 }
860 860
 
@@ -867,11 +867,11 @@  discard block
 block discarded – undo
867 867
 
868 868
   public function setInstanceTemplate($instanceTemplate)
869 869
   {
870
-    $this->instanceTemplate = $instanceTemplate;
870
+	$this->instanceTemplate = $instanceTemplate;
871 871
   }
872 872
   public function getInstanceTemplate()
873 873
   {
874
-    return $this->instanceTemplate;
874
+	return $this->instanceTemplate;
875 875
   }
876 876
 }
877 877
 
@@ -886,19 +886,19 @@  discard block
 block discarded – undo
886 886
 
887 887
   public function setFingerprint($fingerprint)
888 888
   {
889
-    $this->fingerprint = $fingerprint;
889
+	$this->fingerprint = $fingerprint;
890 890
   }
891 891
   public function getFingerprint()
892 892
   {
893
-    return $this->fingerprint;
893
+	return $this->fingerprint;
894 894
   }
895 895
   public function setTargetPools($targetPools)
896 896
   {
897
-    $this->targetPools = $targetPools;
897
+	$this->targetPools = $targetPools;
898 898
   }
899 899
   public function getTargetPools()
900 900
   {
901
-    return $this->targetPools;
901
+	return $this->targetPools;
902 902
   }
903 903
 }
904 904
 
@@ -935,179 +935,179 @@  discard block
 block discarded – undo
935 935
 
936 936
   public function setClientOperationId($clientOperationId)
937 937
   {
938
-    $this->clientOperationId = $clientOperationId;
938
+	$this->clientOperationId = $clientOperationId;
939 939
   }
940 940
   public function getClientOperationId()
941 941
   {
942
-    return $this->clientOperationId;
942
+	return $this->clientOperationId;
943 943
   }
944 944
   public function setCreationTimestamp($creationTimestamp)
945 945
   {
946
-    $this->creationTimestamp = $creationTimestamp;
946
+	$this->creationTimestamp = $creationTimestamp;
947 947
   }
948 948
   public function getCreationTimestamp()
949 949
   {
950
-    return $this->creationTimestamp;
950
+	return $this->creationTimestamp;
951 951
   }
952 952
   public function setEndTime($endTime)
953 953
   {
954
-    $this->endTime = $endTime;
954
+	$this->endTime = $endTime;
955 955
   }
956 956
   public function getEndTime()
957 957
   {
958
-    return $this->endTime;
958
+	return $this->endTime;
959 959
   }
960 960
   public function setError(Google_Service_Replicapool_OperationError $error)
961 961
   {
962
-    $this->error = $error;
962
+	$this->error = $error;
963 963
   }
964 964
   public function getError()
965 965
   {
966
-    return $this->error;
966
+	return $this->error;
967 967
   }
968 968
   public function setHttpErrorMessage($httpErrorMessage)
969 969
   {
970
-    $this->httpErrorMessage = $httpErrorMessage;
970
+	$this->httpErrorMessage = $httpErrorMessage;
971 971
   }
972 972
   public function getHttpErrorMessage()
973 973
   {
974
-    return $this->httpErrorMessage;
974
+	return $this->httpErrorMessage;
975 975
   }
976 976
   public function setHttpErrorStatusCode($httpErrorStatusCode)
977 977
   {
978
-    $this->httpErrorStatusCode = $httpErrorStatusCode;
978
+	$this->httpErrorStatusCode = $httpErrorStatusCode;
979 979
   }
980 980
   public function getHttpErrorStatusCode()
981 981
   {
982
-    return $this->httpErrorStatusCode;
982
+	return $this->httpErrorStatusCode;
983 983
   }
984 984
   public function setId($id)
985 985
   {
986
-    $this->id = $id;
986
+	$this->id = $id;
987 987
   }
988 988
   public function getId()
989 989
   {
990
-    return $this->id;
990
+	return $this->id;
991 991
   }
992 992
   public function setInsertTime($insertTime)
993 993
   {
994
-    $this->insertTime = $insertTime;
994
+	$this->insertTime = $insertTime;
995 995
   }
996 996
   public function getInsertTime()
997 997
   {
998
-    return $this->insertTime;
998
+	return $this->insertTime;
999 999
   }
1000 1000
   public function setKind($kind)
1001 1001
   {
1002
-    $this->kind = $kind;
1002
+	$this->kind = $kind;
1003 1003
   }
1004 1004
   public function getKind()
1005 1005
   {
1006
-    return $this->kind;
1006
+	return $this->kind;
1007 1007
   }
1008 1008
   public function setName($name)
1009 1009
   {
1010
-    $this->name = $name;
1010
+	$this->name = $name;
1011 1011
   }
1012 1012
   public function getName()
1013 1013
   {
1014
-    return $this->name;
1014
+	return $this->name;
1015 1015
   }
1016 1016
   public function setOperationType($operationType)
1017 1017
   {
1018
-    $this->operationType = $operationType;
1018
+	$this->operationType = $operationType;
1019 1019
   }
1020 1020
   public function getOperationType()
1021 1021
   {
1022
-    return $this->operationType;
1022
+	return $this->operationType;
1023 1023
   }
1024 1024
   public function setProgress($progress)
1025 1025
   {
1026
-    $this->progress = $progress;
1026
+	$this->progress = $progress;
1027 1027
   }
1028 1028
   public function getProgress()
1029 1029
   {
1030
-    return $this->progress;
1030
+	return $this->progress;
1031 1031
   }
1032 1032
   public function setRegion($region)
1033 1033
   {
1034
-    $this->region = $region;
1034
+	$this->region = $region;
1035 1035
   }
1036 1036
   public function getRegion()
1037 1037
   {
1038
-    return $this->region;
1038
+	return $this->region;
1039 1039
   }
1040 1040
   public function setSelfLink($selfLink)
1041 1041
   {
1042
-    $this->selfLink = $selfLink;
1042
+	$this->selfLink = $selfLink;
1043 1043
   }
1044 1044
   public function getSelfLink()
1045 1045
   {
1046
-    return $this->selfLink;
1046
+	return $this->selfLink;
1047 1047
   }
1048 1048
   public function setStartTime($startTime)
1049 1049
   {
1050
-    $this->startTime = $startTime;
1050
+	$this->startTime = $startTime;
1051 1051
   }
1052 1052
   public function getStartTime()
1053 1053
   {
1054
-    return $this->startTime;
1054
+	return $this->startTime;
1055 1055
   }
1056 1056
   public function setStatus($status)
1057 1057
   {
1058
-    $this->status = $status;
1058
+	$this->status = $status;
1059 1059
   }
1060 1060
   public function getStatus()
1061 1061
   {
1062
-    return $this->status;
1062
+	return $this->status;
1063 1063
   }
1064 1064
   public function setStatusMessage($statusMessage)
1065 1065
   {
1066
-    $this->statusMessage = $statusMessage;
1066
+	$this->statusMessage = $statusMessage;
1067 1067
   }
1068 1068
   public function getStatusMessage()
1069 1069
   {
1070
-    return $this->statusMessage;
1070
+	return $this->statusMessage;
1071 1071
   }
1072 1072
   public function setTargetId($targetId)
1073 1073
   {
1074
-    $this->targetId = $targetId;
1074
+	$this->targetId = $targetId;
1075 1075
   }
1076 1076
   public function getTargetId()
1077 1077
   {
1078
-    return $this->targetId;
1078
+	return $this->targetId;
1079 1079
   }
1080 1080
   public function setTargetLink($targetLink)
1081 1081
   {
1082
-    $this->targetLink = $targetLink;
1082
+	$this->targetLink = $targetLink;
1083 1083
   }
1084 1084
   public function getTargetLink()
1085 1085
   {
1086
-    return $this->targetLink;
1086
+	return $this->targetLink;
1087 1087
   }
1088 1088
   public function setUser($user)
1089 1089
   {
1090
-    $this->user = $user;
1090
+	$this->user = $user;
1091 1091
   }
1092 1092
   public function getUser()
1093 1093
   {
1094
-    return $this->user;
1094
+	return $this->user;
1095 1095
   }
1096 1096
   public function setWarnings($warnings)
1097 1097
   {
1098
-    $this->warnings = $warnings;
1098
+	$this->warnings = $warnings;
1099 1099
   }
1100 1100
   public function getWarnings()
1101 1101
   {
1102
-    return $this->warnings;
1102
+	return $this->warnings;
1103 1103
   }
1104 1104
   public function setZone($zone)
1105 1105
   {
1106
-    $this->zone = $zone;
1106
+	$this->zone = $zone;
1107 1107
   }
1108 1108
   public function getZone()
1109 1109
   {
1110
-    return $this->zone;
1110
+	return $this->zone;
1111 1111
   }
1112 1112
 }
1113 1113
 
@@ -1122,11 +1122,11 @@  discard block
 block discarded – undo
1122 1122
 
1123 1123
   public function setErrors($errors)
1124 1124
   {
1125
-    $this->errors = $errors;
1125
+	$this->errors = $errors;
1126 1126
   }
1127 1127
   public function getErrors()
1128 1128
   {
1129
-    return $this->errors;
1129
+	return $this->errors;
1130 1130
   }
1131 1131
 }
1132 1132
 
@@ -1141,27 +1141,27 @@  discard block
 block discarded – undo
1141 1141
 
1142 1142
   public function setCode($code)
1143 1143
   {
1144
-    $this->code = $code;
1144
+	$this->code = $code;
1145 1145
   }
1146 1146
   public function getCode()
1147 1147
   {
1148
-    return $this->code;
1148
+	return $this->code;
1149 1149
   }
1150 1150
   public function setLocation($location)
1151 1151
   {
1152
-    $this->location = $location;
1152
+	$this->location = $location;
1153 1153
   }
1154 1154
   public function getLocation()
1155 1155
   {
1156
-    return $this->location;
1156
+	return $this->location;
1157 1157
   }
1158 1158
   public function setMessage($message)
1159 1159
   {
1160
-    $this->message = $message;
1160
+	$this->message = $message;
1161 1161
   }
1162 1162
   public function getMessage()
1163 1163
   {
1164
-    return $this->message;
1164
+	return $this->message;
1165 1165
   }
1166 1166
 }
1167 1167
 
@@ -1180,43 +1180,43 @@  discard block
 block discarded – undo
1180 1180
 
1181 1181
   public function setId($id)
1182 1182
   {
1183
-    $this->id = $id;
1183
+	$this->id = $id;
1184 1184
   }
1185 1185
   public function getId()
1186 1186
   {
1187
-    return $this->id;
1187
+	return $this->id;
1188 1188
   }
1189 1189
   public function setItems($items)
1190 1190
   {
1191
-    $this->items = $items;
1191
+	$this->items = $items;
1192 1192
   }
1193 1193
   public function getItems()
1194 1194
   {
1195
-    return $this->items;
1195
+	return $this->items;
1196 1196
   }
1197 1197
   public function setKind($kind)
1198 1198
   {
1199
-    $this->kind = $kind;
1199
+	$this->kind = $kind;
1200 1200
   }
1201 1201
   public function getKind()
1202 1202
   {
1203
-    return $this->kind;
1203
+	return $this->kind;
1204 1204
   }
1205 1205
   public function setNextPageToken($nextPageToken)
1206 1206
   {
1207
-    $this->nextPageToken = $nextPageToken;
1207
+	$this->nextPageToken = $nextPageToken;
1208 1208
   }
1209 1209
   public function getNextPageToken()
1210 1210
   {
1211
-    return $this->nextPageToken;
1211
+	return $this->nextPageToken;
1212 1212
   }
1213 1213
   public function setSelfLink($selfLink)
1214 1214
   {
1215
-    $this->selfLink = $selfLink;
1215
+	$this->selfLink = $selfLink;
1216 1216
   }
1217 1217
   public function getSelfLink()
1218 1218
   {
1219
-    return $this->selfLink;
1219
+	return $this->selfLink;
1220 1220
   }
1221 1221
 }
1222 1222
 
@@ -1233,27 +1233,27 @@  discard block
 block discarded – undo
1233 1233
 
1234 1234
   public function setCode($code)
1235 1235
   {
1236
-    $this->code = $code;
1236
+	$this->code = $code;
1237 1237
   }
1238 1238
   public function getCode()
1239 1239
   {
1240
-    return $this->code;
1240
+	return $this->code;
1241 1241
   }
1242 1242
   public function setData($data)
1243 1243
   {
1244
-    $this->data = $data;
1244
+	$this->data = $data;
1245 1245
   }
1246 1246
   public function getData()
1247 1247
   {
1248
-    return $this->data;
1248
+	return $this->data;
1249 1249
   }
1250 1250
   public function setMessage($message)
1251 1251
   {
1252
-    $this->message = $message;
1252
+	$this->message = $message;
1253 1253
   }
1254 1254
   public function getMessage()
1255 1255
   {
1256
-    return $this->message;
1256
+	return $this->message;
1257 1257
   }
1258 1258
 }
1259 1259
 
@@ -1267,19 +1267,19 @@  discard block
 block discarded – undo
1267 1267
 
1268 1268
   public function setKey($key)
1269 1269
   {
1270
-    $this->key = $key;
1270
+	$this->key = $key;
1271 1271
   }
1272 1272
   public function getKey()
1273 1273
   {
1274
-    return $this->key;
1274
+	return $this->key;
1275 1275
   }
1276 1276
   public function setValue($value)
1277 1277
   {
1278
-    $this->value = $value;
1278
+	$this->value = $value;
1279 1279
   }
1280 1280
   public function getValue()
1281 1281
   {
1282
-    return $this->value;
1282
+	return $this->value;
1283 1283
   }
1284 1284
 }
1285 1285
 
@@ -1293,18 +1293,18 @@  discard block
 block discarded – undo
1293 1293
 
1294 1294
   public function setActionType($actionType)
1295 1295
   {
1296
-    $this->actionType = $actionType;
1296
+	$this->actionType = $actionType;
1297 1297
   }
1298 1298
   public function getActionType()
1299 1299
   {
1300
-    return $this->actionType;
1300
+	return $this->actionType;
1301 1301
   }
1302 1302
   public function setHealthCheck($healthCheck)
1303 1303
   {
1304
-    $this->healthCheck = $healthCheck;
1304
+	$this->healthCheck = $healthCheck;
1305 1305
   }
1306 1306
   public function getHealthCheck()
1307 1307
   {
1308
-    return $this->healthCheck;
1308
+	return $this->healthCheck;
1309 1309
   }
1310 1310
 }
Please login to merge, or discard this patch.
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                   'required' => true,
85 85
                 ),
86 86
               ),
87
-            ),'delete' => array(
87
+            ), 'delete' => array(
88 88
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
89 89
               'httpMethod' => 'DELETE',
90 90
               'parameters' => array(
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                   'required' => true,
105 105
                 ),
106 106
               ),
107
-            ),'deleteInstances' => array(
107
+            ), 'deleteInstances' => array(
108 108
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/deleteInstances',
109 109
               'httpMethod' => 'POST',
110 110
               'parameters' => array(
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                   'required' => true,
125 125
                 ),
126 126
               ),
127
-            ),'get' => array(
127
+            ), 'get' => array(
128 128
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}',
129 129
               'httpMethod' => 'GET',
130 130
               'parameters' => array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                   'required' => true,
145 145
                 ),
146 146
               ),
147
-            ),'insert' => array(
147
+            ), 'insert' => array(
148 148
               'path' => '{project}/zones/{zone}/instanceGroupManagers',
149 149
               'httpMethod' => 'POST',
150 150
               'parameters' => array(
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
                   'required' => true,
165 165
                 ),
166 166
               ),
167
-            ),'list' => array(
167
+            ), 'list' => array(
168 168
               'path' => '{project}/zones/{zone}/instanceGroupManagers',
169 169
               'httpMethod' => 'GET',
170 170
               'parameters' => array(
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                   'type' => 'integer',
192 192
                 ),
193 193
               ),
194
-            ),'recreateInstances' => array(
194
+            ), 'recreateInstances' => array(
195 195
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/recreateInstances',
196 196
               'httpMethod' => 'POST',
197 197
               'parameters' => array(
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
                   'required' => true,
212 212
                 ),
213 213
               ),
214
-            ),'resize' => array(
214
+            ), 'resize' => array(
215 215
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/resize',
216 216
               'httpMethod' => 'POST',
217 217
               'parameters' => array(
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
                   'required' => true,
237 237
                 ),
238 238
               ),
239
-            ),'setInstanceTemplate' => array(
239
+            ), 'setInstanceTemplate' => array(
240 240
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setInstanceTemplate',
241 241
               'httpMethod' => 'POST',
242 242
               'parameters' => array(
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
                   'required' => true,
257 257
                 ),
258 258
               ),
259
-            ),'setTargetPools' => array(
259
+            ), 'setTargetPools' => array(
260 260
               'path' => '{project}/zones/{zone}/instanceGroupManagers/{instanceGroupManager}/setTargetPools',
261 261
               'httpMethod' => 'POST',
262 262
               'parameters' => array(
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
                   'required' => true,
307 307
                 ),
308 308
               ),
309
-            ),'list' => array(
309
+            ), 'list' => array(
310 310
               'path' => '{project}/zones/{zone}/operations',
311 311
               'httpMethod' => 'GET',
312 312
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/Replicapoolupdater.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -332,7 +332,7 @@
 block discarded – undo
332 332
    * @param string $project The Google Developers Console project name.
333 333
    * @param string $zone The name of the zone in which the update's target
334 334
    * resides.
335
-   * @param Google_RollingUpdate $postBody
335
+   * @param Google_Service_Replicapoolupdater_RollingUpdate $postBody
336 336
    * @param array $optParams Optional parameters.
337 337
    * @return Google_Service_Replicapoolupdater_Operation
338 338
    */
Please login to merge, or discard this patch.
Indentation   +393 added lines, -393 removed lines patch added patch discarded remove patch
@@ -33,13 +33,13 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your data across Google Cloud Platform services. */
35 35
   const CLOUD_PLATFORM =
36
-      "https://www.googleapis.com/auth/cloud-platform";
36
+	  "https://www.googleapis.com/auth/cloud-platform";
37 37
   /** View and manage replica pools. */
38 38
   const REPLICAPOOL =
39
-      "https://www.googleapis.com/auth/replicapool";
39
+	  "https://www.googleapis.com/auth/replicapool";
40 40
   /** View replica pools. */
41 41
   const REPLICAPOOL_READONLY =
42
-      "https://www.googleapis.com/auth/replicapool.readonly";
42
+	  "https://www.googleapis.com/auth/replicapool.readonly";
43 43
 
44 44
   public $rollingUpdates;
45 45
   public $zoneOperations;
@@ -52,230 +52,230 @@  discard block
 block discarded – undo
52 52
    */
53 53
   public function __construct(Google_Client $client)
54 54
   {
55
-    parent::__construct($client);
56
-    $this->rootUrl = 'https://www.googleapis.com/';
57
-    $this->servicePath = 'replicapoolupdater/v1beta1/projects/';
58
-    $this->version = 'v1beta1';
59
-    $this->serviceName = 'replicapoolupdater';
55
+	parent::__construct($client);
56
+	$this->rootUrl = 'https://www.googleapis.com/';
57
+	$this->servicePath = 'replicapoolupdater/v1beta1/projects/';
58
+	$this->version = 'v1beta1';
59
+	$this->serviceName = 'replicapoolupdater';
60 60
 
61
-    $this->rollingUpdates = new Google_Service_Replicapoolupdater_RollingUpdates_Resource(
62
-        $this,
63
-        $this->serviceName,
64
-        'rollingUpdates',
65
-        array(
66
-          'methods' => array(
67
-            'cancel' => array(
68
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/cancel',
69
-              'httpMethod' => 'POST',
70
-              'parameters' => array(
71
-                'project' => array(
72
-                  'location' => 'path',
73
-                  'type' => 'string',
74
-                  'required' => true,
75
-                ),
76
-                'zone' => array(
77
-                  'location' => 'path',
78
-                  'type' => 'string',
79
-                  'required' => true,
80
-                ),
81
-                'rollingUpdate' => array(
82
-                  'location' => 'path',
83
-                  'type' => 'string',
84
-                  'required' => true,
85
-                ),
86
-              ),
87
-            ),'get' => array(
88
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}',
89
-              'httpMethod' => 'GET',
90
-              'parameters' => array(
91
-                'project' => array(
92
-                  'location' => 'path',
93
-                  'type' => 'string',
94
-                  'required' => true,
95
-                ),
96
-                'zone' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-                'rollingUpdate' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-              ),
107
-            ),'insert' => array(
108
-              'path' => '{project}/zones/{zone}/rollingUpdates',
109
-              'httpMethod' => 'POST',
110
-              'parameters' => array(
111
-                'project' => array(
112
-                  'location' => 'path',
113
-                  'type' => 'string',
114
-                  'required' => true,
115
-                ),
116
-                'zone' => array(
117
-                  'location' => 'path',
118
-                  'type' => 'string',
119
-                  'required' => true,
120
-                ),
121
-              ),
122
-            ),'list' => array(
123
-              'path' => '{project}/zones/{zone}/rollingUpdates',
124
-              'httpMethod' => 'GET',
125
-              'parameters' => array(
126
-                'project' => array(
127
-                  'location' => 'path',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-                'zone' => array(
132
-                  'location' => 'path',
133
-                  'type' => 'string',
134
-                  'required' => true,
135
-                ),
136
-                'maxResults' => array(
137
-                  'location' => 'query',
138
-                  'type' => 'integer',
139
-                ),
140
-                'filter' => array(
141
-                  'location' => 'query',
142
-                  'type' => 'string',
143
-                ),
144
-                'pageToken' => array(
145
-                  'location' => 'query',
146
-                  'type' => 'string',
147
-                ),
148
-                'instanceGroupManager' => array(
149
-                  'location' => 'query',
150
-                  'type' => 'string',
151
-                ),
152
-              ),
153
-            ),'listInstanceUpdates' => array(
154
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/instanceUpdates',
155
-              'httpMethod' => 'GET',
156
-              'parameters' => array(
157
-                'project' => array(
158
-                  'location' => 'path',
159
-                  'type' => 'string',
160
-                  'required' => true,
161
-                ),
162
-                'zone' => array(
163
-                  'location' => 'path',
164
-                  'type' => 'string',
165
-                  'required' => true,
166
-                ),
167
-                'rollingUpdate' => array(
168
-                  'location' => 'path',
169
-                  'type' => 'string',
170
-                  'required' => true,
171
-                ),
172
-                'maxResults' => array(
173
-                  'location' => 'query',
174
-                  'type' => 'integer',
175
-                ),
176
-                'filter' => array(
177
-                  'location' => 'query',
178
-                  'type' => 'string',
179
-                ),
180
-                'pageToken' => array(
181
-                  'location' => 'query',
182
-                  'type' => 'string',
183
-                ),
184
-              ),
185
-            ),'pause' => array(
186
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/pause',
187
-              'httpMethod' => 'POST',
188
-              'parameters' => array(
189
-                'project' => array(
190
-                  'location' => 'path',
191
-                  'type' => 'string',
192
-                  'required' => true,
193
-                ),
194
-                'zone' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-                'rollingUpdate' => array(
200
-                  'location' => 'path',
201
-                  'type' => 'string',
202
-                  'required' => true,
203
-                ),
204
-              ),
205
-            ),'resume' => array(
206
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/resume',
207
-              'httpMethod' => 'POST',
208
-              'parameters' => array(
209
-                'project' => array(
210
-                  'location' => 'path',
211
-                  'type' => 'string',
212
-                  'required' => true,
213
-                ),
214
-                'zone' => array(
215
-                  'location' => 'path',
216
-                  'type' => 'string',
217
-                  'required' => true,
218
-                ),
219
-                'rollingUpdate' => array(
220
-                  'location' => 'path',
221
-                  'type' => 'string',
222
-                  'required' => true,
223
-                ),
224
-              ),
225
-            ),'rollback' => array(
226
-              'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/rollback',
227
-              'httpMethod' => 'POST',
228
-              'parameters' => array(
229
-                'project' => array(
230
-                  'location' => 'path',
231
-                  'type' => 'string',
232
-                  'required' => true,
233
-                ),
234
-                'zone' => array(
235
-                  'location' => 'path',
236
-                  'type' => 'string',
237
-                  'required' => true,
238
-                ),
239
-                'rollingUpdate' => array(
240
-                  'location' => 'path',
241
-                  'type' => 'string',
242
-                  'required' => true,
243
-                ),
244
-              ),
245
-            ),
246
-          )
247
-        )
248
-    );
249
-    $this->zoneOperations = new Google_Service_Replicapoolupdater_ZoneOperations_Resource(
250
-        $this,
251
-        $this->serviceName,
252
-        'zoneOperations',
253
-        array(
254
-          'methods' => array(
255
-            'get' => array(
256
-              'path' => '{project}/zones/{zone}/operations/{operation}',
257
-              'httpMethod' => 'GET',
258
-              'parameters' => array(
259
-                'project' => array(
260
-                  'location' => 'path',
261
-                  'type' => 'string',
262
-                  'required' => true,
263
-                ),
264
-                'zone' => array(
265
-                  'location' => 'path',
266
-                  'type' => 'string',
267
-                  'required' => true,
268
-                ),
269
-                'operation' => array(
270
-                  'location' => 'path',
271
-                  'type' => 'string',
272
-                  'required' => true,
273
-                ),
274
-              ),
275
-            ),
276
-          )
277
-        )
278
-    );
61
+	$this->rollingUpdates = new Google_Service_Replicapoolupdater_RollingUpdates_Resource(
62
+		$this,
63
+		$this->serviceName,
64
+		'rollingUpdates',
65
+		array(
66
+		  'methods' => array(
67
+			'cancel' => array(
68
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/cancel',
69
+			  'httpMethod' => 'POST',
70
+			  'parameters' => array(
71
+				'project' => array(
72
+				  'location' => 'path',
73
+				  'type' => 'string',
74
+				  'required' => true,
75
+				),
76
+				'zone' => array(
77
+				  'location' => 'path',
78
+				  'type' => 'string',
79
+				  'required' => true,
80
+				),
81
+				'rollingUpdate' => array(
82
+				  'location' => 'path',
83
+				  'type' => 'string',
84
+				  'required' => true,
85
+				),
86
+			  ),
87
+			),'get' => array(
88
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}',
89
+			  'httpMethod' => 'GET',
90
+			  'parameters' => array(
91
+				'project' => array(
92
+				  'location' => 'path',
93
+				  'type' => 'string',
94
+				  'required' => true,
95
+				),
96
+				'zone' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+				'rollingUpdate' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+			  ),
107
+			),'insert' => array(
108
+			  'path' => '{project}/zones/{zone}/rollingUpdates',
109
+			  'httpMethod' => 'POST',
110
+			  'parameters' => array(
111
+				'project' => array(
112
+				  'location' => 'path',
113
+				  'type' => 'string',
114
+				  'required' => true,
115
+				),
116
+				'zone' => array(
117
+				  'location' => 'path',
118
+				  'type' => 'string',
119
+				  'required' => true,
120
+				),
121
+			  ),
122
+			),'list' => array(
123
+			  'path' => '{project}/zones/{zone}/rollingUpdates',
124
+			  'httpMethod' => 'GET',
125
+			  'parameters' => array(
126
+				'project' => array(
127
+				  'location' => 'path',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+				'zone' => array(
132
+				  'location' => 'path',
133
+				  'type' => 'string',
134
+				  'required' => true,
135
+				),
136
+				'maxResults' => array(
137
+				  'location' => 'query',
138
+				  'type' => 'integer',
139
+				),
140
+				'filter' => array(
141
+				  'location' => 'query',
142
+				  'type' => 'string',
143
+				),
144
+				'pageToken' => array(
145
+				  'location' => 'query',
146
+				  'type' => 'string',
147
+				),
148
+				'instanceGroupManager' => array(
149
+				  'location' => 'query',
150
+				  'type' => 'string',
151
+				),
152
+			  ),
153
+			),'listInstanceUpdates' => array(
154
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/instanceUpdates',
155
+			  'httpMethod' => 'GET',
156
+			  'parameters' => array(
157
+				'project' => array(
158
+				  'location' => 'path',
159
+				  'type' => 'string',
160
+				  'required' => true,
161
+				),
162
+				'zone' => array(
163
+				  'location' => 'path',
164
+				  'type' => 'string',
165
+				  'required' => true,
166
+				),
167
+				'rollingUpdate' => array(
168
+				  'location' => 'path',
169
+				  'type' => 'string',
170
+				  'required' => true,
171
+				),
172
+				'maxResults' => array(
173
+				  'location' => 'query',
174
+				  'type' => 'integer',
175
+				),
176
+				'filter' => array(
177
+				  'location' => 'query',
178
+				  'type' => 'string',
179
+				),
180
+				'pageToken' => array(
181
+				  'location' => 'query',
182
+				  'type' => 'string',
183
+				),
184
+			  ),
185
+			),'pause' => array(
186
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/pause',
187
+			  'httpMethod' => 'POST',
188
+			  'parameters' => array(
189
+				'project' => array(
190
+				  'location' => 'path',
191
+				  'type' => 'string',
192
+				  'required' => true,
193
+				),
194
+				'zone' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+				'rollingUpdate' => array(
200
+				  'location' => 'path',
201
+				  'type' => 'string',
202
+				  'required' => true,
203
+				),
204
+			  ),
205
+			),'resume' => array(
206
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/resume',
207
+			  'httpMethod' => 'POST',
208
+			  'parameters' => array(
209
+				'project' => array(
210
+				  'location' => 'path',
211
+				  'type' => 'string',
212
+				  'required' => true,
213
+				),
214
+				'zone' => array(
215
+				  'location' => 'path',
216
+				  'type' => 'string',
217
+				  'required' => true,
218
+				),
219
+				'rollingUpdate' => array(
220
+				  'location' => 'path',
221
+				  'type' => 'string',
222
+				  'required' => true,
223
+				),
224
+			  ),
225
+			),'rollback' => array(
226
+			  'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/rollback',
227
+			  'httpMethod' => 'POST',
228
+			  'parameters' => array(
229
+				'project' => array(
230
+				  'location' => 'path',
231
+				  'type' => 'string',
232
+				  'required' => true,
233
+				),
234
+				'zone' => array(
235
+				  'location' => 'path',
236
+				  'type' => 'string',
237
+				  'required' => true,
238
+				),
239
+				'rollingUpdate' => array(
240
+				  'location' => 'path',
241
+				  'type' => 'string',
242
+				  'required' => true,
243
+				),
244
+			  ),
245
+			),
246
+		  )
247
+		)
248
+	);
249
+	$this->zoneOperations = new Google_Service_Replicapoolupdater_ZoneOperations_Resource(
250
+		$this,
251
+		$this->serviceName,
252
+		'zoneOperations',
253
+		array(
254
+		  'methods' => array(
255
+			'get' => array(
256
+			  'path' => '{project}/zones/{zone}/operations/{operation}',
257
+			  'httpMethod' => 'GET',
258
+			  'parameters' => array(
259
+				'project' => array(
260
+				  'location' => 'path',
261
+				  'type' => 'string',
262
+				  'required' => true,
263
+				),
264
+				'zone' => array(
265
+				  'location' => 'path',
266
+				  'type' => 'string',
267
+				  'required' => true,
268
+				),
269
+				'operation' => array(
270
+				  'location' => 'path',
271
+				  'type' => 'string',
272
+				  'required' => true,
273
+				),
274
+			  ),
275
+			),
276
+		  )
277
+		)
278
+	);
279 279
   }
280 280
 }
281 281
 
@@ -304,9 +304,9 @@  discard block
 block discarded – undo
304 304
    */
305 305
   public function cancel($project, $zone, $rollingUpdate, $optParams = array())
306 306
   {
307
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
308
-    $params = array_merge($params, $optParams);
309
-    return $this->call('cancel', array($params), "Google_Service_Replicapoolupdater_Operation");
307
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
308
+	$params = array_merge($params, $optParams);
309
+	return $this->call('cancel', array($params), "Google_Service_Replicapoolupdater_Operation");
310 310
   }
311 311
 
312 312
   /**
@@ -321,9 +321,9 @@  discard block
 block discarded – undo
321 321
    */
322 322
   public function get($project, $zone, $rollingUpdate, $optParams = array())
323 323
   {
324
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
325
-    $params = array_merge($params, $optParams);
326
-    return $this->call('get', array($params), "Google_Service_Replicapoolupdater_RollingUpdate");
324
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
325
+	$params = array_merge($params, $optParams);
326
+	return $this->call('get', array($params), "Google_Service_Replicapoolupdater_RollingUpdate");
327 327
   }
328 328
 
329 329
   /**
@@ -338,9 +338,9 @@  discard block
 block discarded – undo
338 338
    */
339 339
   public function insert($project, $zone, Google_Service_Replicapoolupdater_RollingUpdate $postBody, $optParams = array())
340 340
   {
341
-    $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
342
-    $params = array_merge($params, $optParams);
343
-    return $this->call('insert', array($params), "Google_Service_Replicapoolupdater_Operation");
341
+	$params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
342
+	$params = array_merge($params, $optParams);
343
+	return $this->call('insert', array($params), "Google_Service_Replicapoolupdater_Operation");
344 344
   }
345 345
 
346 346
   /**
@@ -365,9 +365,9 @@  discard block
 block discarded – undo
365 365
    */
366 366
   public function listRollingUpdates($project, $zone, $optParams = array())
367 367
   {
368
-    $params = array('project' => $project, 'zone' => $zone);
369
-    $params = array_merge($params, $optParams);
370
-    return $this->call('list', array($params), "Google_Service_Replicapoolupdater_RollingUpdateList");
368
+	$params = array('project' => $project, 'zone' => $zone);
369
+	$params = array_merge($params, $optParams);
370
+	return $this->call('list', array($params), "Google_Service_Replicapoolupdater_RollingUpdateList");
371 371
   }
372 372
 
373 373
   /**
@@ -390,9 +390,9 @@  discard block
 block discarded – undo
390 390
    */
391 391
   public function listInstanceUpdates($project, $zone, $rollingUpdate, $optParams = array())
392 392
   {
393
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
394
-    $params = array_merge($params, $optParams);
395
-    return $this->call('listInstanceUpdates', array($params), "Google_Service_Replicapoolupdater_InstanceUpdateList");
393
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
394
+	$params = array_merge($params, $optParams);
395
+	return $this->call('listInstanceUpdates', array($params), "Google_Service_Replicapoolupdater_InstanceUpdateList");
396 396
   }
397 397
 
398 398
   /**
@@ -409,9 +409,9 @@  discard block
 block discarded – undo
409 409
    */
410 410
   public function pause($project, $zone, $rollingUpdate, $optParams = array())
411 411
   {
412
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
413
-    $params = array_merge($params, $optParams);
414
-    return $this->call('pause', array($params), "Google_Service_Replicapoolupdater_Operation");
412
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
413
+	$params = array_merge($params, $optParams);
414
+	return $this->call('pause', array($params), "Google_Service_Replicapoolupdater_Operation");
415 415
   }
416 416
 
417 417
   /**
@@ -427,9 +427,9 @@  discard block
 block discarded – undo
427 427
    */
428 428
   public function resume($project, $zone, $rollingUpdate, $optParams = array())
429 429
   {
430
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
431
-    $params = array_merge($params, $optParams);
432
-    return $this->call('resume', array($params), "Google_Service_Replicapoolupdater_Operation");
430
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
431
+	$params = array_merge($params, $optParams);
432
+	return $this->call('resume', array($params), "Google_Service_Replicapoolupdater_Operation");
433 433
   }
434 434
 
435 435
   /**
@@ -446,9 +446,9 @@  discard block
 block discarded – undo
446 446
    */
447 447
   public function rollback($project, $zone, $rollingUpdate, $optParams = array())
448 448
   {
449
-    $params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
450
-    $params = array_merge($params, $optParams);
451
-    return $this->call('rollback', array($params), "Google_Service_Replicapoolupdater_Operation");
449
+	$params = array('project' => $project, 'zone' => $zone, 'rollingUpdate' => $rollingUpdate);
450
+	$params = array_merge($params, $optParams);
451
+	return $this->call('rollback', array($params), "Google_Service_Replicapoolupdater_Operation");
452 452
   }
453 453
 }
454 454
 
@@ -475,9 +475,9 @@  discard block
 block discarded – undo
475 475
    */
476 476
   public function get($project, $zone, $operation, $optParams = array())
477 477
   {
478
-    $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
479
-    $params = array_merge($params, $optParams);
480
-    return $this->call('get', array($params), "Google_Service_Replicapoolupdater_Operation");
478
+	$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
479
+	$params = array_merge($params, $optParams);
480
+	return $this->call('get', array($params), "Google_Service_Replicapoolupdater_Operation");
481 481
   }
482 482
 }
483 483
 
@@ -496,27 +496,27 @@  discard block
 block discarded – undo
496 496
 
497 497
   public function setError(Google_Service_Replicapoolupdater_InstanceUpdateError $error)
498 498
   {
499
-    $this->error = $error;
499
+	$this->error = $error;
500 500
   }
501 501
   public function getError()
502 502
   {
503
-    return $this->error;
503
+	return $this->error;
504 504
   }
505 505
   public function setInstance($instance)
506 506
   {
507
-    $this->instance = $instance;
507
+	$this->instance = $instance;
508 508
   }
509 509
   public function getInstance()
510 510
   {
511
-    return $this->instance;
511
+	return $this->instance;
512 512
   }
513 513
   public function setStatus($status)
514 514
   {
515
-    $this->status = $status;
515
+	$this->status = $status;
516 516
   }
517 517
   public function getStatus()
518 518
   {
519
-    return $this->status;
519
+	return $this->status;
520 520
   }
521 521
 }
522 522
 
@@ -531,11 +531,11 @@  discard block
 block discarded – undo
531 531
 
532 532
   public function setErrors($errors)
533 533
   {
534
-    $this->errors = $errors;
534
+	$this->errors = $errors;
535 535
   }
536 536
   public function getErrors()
537 537
   {
538
-    return $this->errors;
538
+	return $this->errors;
539 539
   }
540 540
 }
541 541
 
@@ -550,27 +550,27 @@  discard block
 block discarded – undo
550 550
 
551 551
   public function setCode($code)
552 552
   {
553
-    $this->code = $code;
553
+	$this->code = $code;
554 554
   }
555 555
   public function getCode()
556 556
   {
557
-    return $this->code;
557
+	return $this->code;
558 558
   }
559 559
   public function setLocation($location)
560 560
   {
561
-    $this->location = $location;
561
+	$this->location = $location;
562 562
   }
563 563
   public function getLocation()
564 564
   {
565
-    return $this->location;
565
+	return $this->location;
566 566
   }
567 567
   public function setMessage($message)
568 568
   {
569
-    $this->message = $message;
569
+	$this->message = $message;
570 570
   }
571 571
   public function getMessage()
572 572
   {
573
-    return $this->message;
573
+	return $this->message;
574 574
   }
575 575
 }
576 576
 
@@ -588,35 +588,35 @@  discard block
 block discarded – undo
588 588
 
589 589
   public function setItems($items)
590 590
   {
591
-    $this->items = $items;
591
+	$this->items = $items;
592 592
   }
593 593
   public function getItems()
594 594
   {
595
-    return $this->items;
595
+	return $this->items;
596 596
   }
597 597
   public function setKind($kind)
598 598
   {
599
-    $this->kind = $kind;
599
+	$this->kind = $kind;
600 600
   }
601 601
   public function getKind()
602 602
   {
603
-    return $this->kind;
603
+	return $this->kind;
604 604
   }
605 605
   public function setNextPageToken($nextPageToken)
606 606
   {
607
-    $this->nextPageToken = $nextPageToken;
607
+	$this->nextPageToken = $nextPageToken;
608 608
   }
609 609
   public function getNextPageToken()
610 610
   {
611
-    return $this->nextPageToken;
611
+	return $this->nextPageToken;
612 612
   }
613 613
   public function setSelfLink($selfLink)
614 614
   {
615
-    $this->selfLink = $selfLink;
615
+	$this->selfLink = $selfLink;
616 616
   }
617 617
   public function getSelfLink()
618 618
   {
619
-    return $this->selfLink;
619
+	return $this->selfLink;
620 620
   }
621 621
 }
622 622
 
@@ -653,179 +653,179 @@  discard block
 block discarded – undo
653 653
 
654 654
   public function setClientOperationId($clientOperationId)
655 655
   {
656
-    $this->clientOperationId = $clientOperationId;
656
+	$this->clientOperationId = $clientOperationId;
657 657
   }
658 658
   public function getClientOperationId()
659 659
   {
660
-    return $this->clientOperationId;
660
+	return $this->clientOperationId;
661 661
   }
662 662
   public function setCreationTimestamp($creationTimestamp)
663 663
   {
664
-    $this->creationTimestamp = $creationTimestamp;
664
+	$this->creationTimestamp = $creationTimestamp;
665 665
   }
666 666
   public function getCreationTimestamp()
667 667
   {
668
-    return $this->creationTimestamp;
668
+	return $this->creationTimestamp;
669 669
   }
670 670
   public function setEndTime($endTime)
671 671
   {
672
-    $this->endTime = $endTime;
672
+	$this->endTime = $endTime;
673 673
   }
674 674
   public function getEndTime()
675 675
   {
676
-    return $this->endTime;
676
+	return $this->endTime;
677 677
   }
678 678
   public function setError(Google_Service_Replicapoolupdater_OperationError $error)
679 679
   {
680
-    $this->error = $error;
680
+	$this->error = $error;
681 681
   }
682 682
   public function getError()
683 683
   {
684
-    return $this->error;
684
+	return $this->error;
685 685
   }
686 686
   public function setHttpErrorMessage($httpErrorMessage)
687 687
   {
688
-    $this->httpErrorMessage = $httpErrorMessage;
688
+	$this->httpErrorMessage = $httpErrorMessage;
689 689
   }
690 690
   public function getHttpErrorMessage()
691 691
   {
692
-    return $this->httpErrorMessage;
692
+	return $this->httpErrorMessage;
693 693
   }
694 694
   public function setHttpErrorStatusCode($httpErrorStatusCode)
695 695
   {
696
-    $this->httpErrorStatusCode = $httpErrorStatusCode;
696
+	$this->httpErrorStatusCode = $httpErrorStatusCode;
697 697
   }
698 698
   public function getHttpErrorStatusCode()
699 699
   {
700
-    return $this->httpErrorStatusCode;
700
+	return $this->httpErrorStatusCode;
701 701
   }
702 702
   public function setId($id)
703 703
   {
704
-    $this->id = $id;
704
+	$this->id = $id;
705 705
   }
706 706
   public function getId()
707 707
   {
708
-    return $this->id;
708
+	return $this->id;
709 709
   }
710 710
   public function setInsertTime($insertTime)
711 711
   {
712
-    $this->insertTime = $insertTime;
712
+	$this->insertTime = $insertTime;
713 713
   }
714 714
   public function getInsertTime()
715 715
   {
716
-    return $this->insertTime;
716
+	return $this->insertTime;
717 717
   }
718 718
   public function setKind($kind)
719 719
   {
720
-    $this->kind = $kind;
720
+	$this->kind = $kind;
721 721
   }
722 722
   public function getKind()
723 723
   {
724
-    return $this->kind;
724
+	return $this->kind;
725 725
   }
726 726
   public function setName($name)
727 727
   {
728
-    $this->name = $name;
728
+	$this->name = $name;
729 729
   }
730 730
   public function getName()
731 731
   {
732
-    return $this->name;
732
+	return $this->name;
733 733
   }
734 734
   public function setOperationType($operationType)
735 735
   {
736
-    $this->operationType = $operationType;
736
+	$this->operationType = $operationType;
737 737
   }
738 738
   public function getOperationType()
739 739
   {
740
-    return $this->operationType;
740
+	return $this->operationType;
741 741
   }
742 742
   public function setProgress($progress)
743 743
   {
744
-    $this->progress = $progress;
744
+	$this->progress = $progress;
745 745
   }
746 746
   public function getProgress()
747 747
   {
748
-    return $this->progress;
748
+	return $this->progress;
749 749
   }
750 750
   public function setRegion($region)
751 751
   {
752
-    $this->region = $region;
752
+	$this->region = $region;
753 753
   }
754 754
   public function getRegion()
755 755
   {
756
-    return $this->region;
756
+	return $this->region;
757 757
   }
758 758
   public function setSelfLink($selfLink)
759 759
   {
760
-    $this->selfLink = $selfLink;
760
+	$this->selfLink = $selfLink;
761 761
   }
762 762
   public function getSelfLink()
763 763
   {
764
-    return $this->selfLink;
764
+	return $this->selfLink;
765 765
   }
766 766
   public function setStartTime($startTime)
767 767
   {
768
-    $this->startTime = $startTime;
768
+	$this->startTime = $startTime;
769 769
   }
770 770
   public function getStartTime()
771 771
   {
772
-    return $this->startTime;
772
+	return $this->startTime;
773 773
   }
774 774
   public function setStatus($status)
775 775
   {
776
-    $this->status = $status;
776
+	$this->status = $status;
777 777
   }
778 778
   public function getStatus()
779 779
   {
780
-    return $this->status;
780
+	return $this->status;
781 781
   }
782 782
   public function setStatusMessage($statusMessage)
783 783
   {
784
-    $this->statusMessage = $statusMessage;
784
+	$this->statusMessage = $statusMessage;
785 785
   }
786 786
   public function getStatusMessage()
787 787
   {
788
-    return $this->statusMessage;
788
+	return $this->statusMessage;
789 789
   }
790 790
   public function setTargetId($targetId)
791 791
   {
792
-    $this->targetId = $targetId;
792
+	$this->targetId = $targetId;
793 793
   }
794 794
   public function getTargetId()
795 795
   {
796
-    return $this->targetId;
796
+	return $this->targetId;
797 797
   }
798 798
   public function setTargetLink($targetLink)
799 799
   {
800
-    $this->targetLink = $targetLink;
800
+	$this->targetLink = $targetLink;
801 801
   }
802 802
   public function getTargetLink()
803 803
   {
804
-    return $this->targetLink;
804
+	return $this->targetLink;
805 805
   }
806 806
   public function setUser($user)
807 807
   {
808
-    $this->user = $user;
808
+	$this->user = $user;
809 809
   }
810 810
   public function getUser()
811 811
   {
812
-    return $this->user;
812
+	return $this->user;
813 813
   }
814 814
   public function setWarnings($warnings)
815 815
   {
816
-    $this->warnings = $warnings;
816
+	$this->warnings = $warnings;
817 817
   }
818 818
   public function getWarnings()
819 819
   {
820
-    return $this->warnings;
820
+	return $this->warnings;
821 821
   }
822 822
   public function setZone($zone)
823 823
   {
824
-    $this->zone = $zone;
824
+	$this->zone = $zone;
825 825
   }
826 826
   public function getZone()
827 827
   {
828
-    return $this->zone;
828
+	return $this->zone;
829 829
   }
830 830
 }
831 831
 
@@ -840,11 +840,11 @@  discard block
 block discarded – undo
840 840
 
841 841
   public function setErrors($errors)
842 842
   {
843
-    $this->errors = $errors;
843
+	$this->errors = $errors;
844 844
   }
845 845
   public function getErrors()
846 846
   {
847
-    return $this->errors;
847
+	return $this->errors;
848 848
   }
849 849
 }
850 850
 
@@ -859,27 +859,27 @@  discard block
 block discarded – undo
859 859
 
860 860
   public function setCode($code)
861 861
   {
862
-    $this->code = $code;
862
+	$this->code = $code;
863 863
   }
864 864
   public function getCode()
865 865
   {
866
-    return $this->code;
866
+	return $this->code;
867 867
   }
868 868
   public function setLocation($location)
869 869
   {
870
-    $this->location = $location;
870
+	$this->location = $location;
871 871
   }
872 872
   public function getLocation()
873 873
   {
874
-    return $this->location;
874
+	return $this->location;
875 875
   }
876 876
   public function setMessage($message)
877 877
   {
878
-    $this->message = $message;
878
+	$this->message = $message;
879 879
   }
880 880
   public function getMessage()
881 881
   {
882
-    return $this->message;
882
+	return $this->message;
883 883
   }
884 884
 }
885 885
 
@@ -896,27 +896,27 @@  discard block
 block discarded – undo
896 896
 
897 897
   public function setCode($code)
898 898
   {
899
-    $this->code = $code;
899
+	$this->code = $code;
900 900
   }
901 901
   public function getCode()
902 902
   {
903
-    return $this->code;
903
+	return $this->code;
904 904
   }
905 905
   public function setData($data)
906 906
   {
907
-    $this->data = $data;
907
+	$this->data = $data;
908 908
   }
909 909
   public function getData()
910 910
   {
911
-    return $this->data;
911
+	return $this->data;
912 912
   }
913 913
   public function setMessage($message)
914 914
   {
915
-    $this->message = $message;
915
+	$this->message = $message;
916 916
   }
917 917
   public function getMessage()
918 918
   {
919
-    return $this->message;
919
+	return $this->message;
920 920
   }
921 921
 }
922 922
 
@@ -930,19 +930,19 @@  discard block
 block discarded – undo
930 930
 
931 931
   public function setKey($key)
932 932
   {
933
-    $this->key = $key;
933
+	$this->key = $key;
934 934
   }
935 935
   public function getKey()
936 936
   {
937
-    return $this->key;
937
+	return $this->key;
938 938
   }
939 939
   public function setValue($value)
940 940
   {
941
-    $this->value = $value;
941
+	$this->value = $value;
942 942
   }
943 943
   public function getValue()
944 944
   {
945
-    return $this->value;
945
+	return $this->value;
946 946
   }
947 947
 }
948 948
 
@@ -971,123 +971,123 @@  discard block
 block discarded – undo
971 971
 
972 972
   public function setActionType($actionType)
973 973
   {
974
-    $this->actionType = $actionType;
974
+	$this->actionType = $actionType;
975 975
   }
976 976
   public function getActionType()
977 977
   {
978
-    return $this->actionType;
978
+	return $this->actionType;
979 979
   }
980 980
   public function setCreationTimestamp($creationTimestamp)
981 981
   {
982
-    $this->creationTimestamp = $creationTimestamp;
982
+	$this->creationTimestamp = $creationTimestamp;
983 983
   }
984 984
   public function getCreationTimestamp()
985 985
   {
986
-    return $this->creationTimestamp;
986
+	return $this->creationTimestamp;
987 987
   }
988 988
   public function setDescription($description)
989 989
   {
990
-    $this->description = $description;
990
+	$this->description = $description;
991 991
   }
992 992
   public function getDescription()
993 993
   {
994
-    return $this->description;
994
+	return $this->description;
995 995
   }
996 996
   public function setError(Google_Service_Replicapoolupdater_RollingUpdateError $error)
997 997
   {
998
-    $this->error = $error;
998
+	$this->error = $error;
999 999
   }
1000 1000
   public function getError()
1001 1001
   {
1002
-    return $this->error;
1002
+	return $this->error;
1003 1003
   }
1004 1004
   public function setId($id)
1005 1005
   {
1006
-    $this->id = $id;
1006
+	$this->id = $id;
1007 1007
   }
1008 1008
   public function getId()
1009 1009
   {
1010
-    return $this->id;
1010
+	return $this->id;
1011 1011
   }
1012 1012
   public function setInstanceGroup($instanceGroup)
1013 1013
   {
1014
-    $this->instanceGroup = $instanceGroup;
1014
+	$this->instanceGroup = $instanceGroup;
1015 1015
   }
1016 1016
   public function getInstanceGroup()
1017 1017
   {
1018
-    return $this->instanceGroup;
1018
+	return $this->instanceGroup;
1019 1019
   }
1020 1020
   public function setInstanceGroupManager($instanceGroupManager)
1021 1021
   {
1022
-    $this->instanceGroupManager = $instanceGroupManager;
1022
+	$this->instanceGroupManager = $instanceGroupManager;
1023 1023
   }
1024 1024
   public function getInstanceGroupManager()
1025 1025
   {
1026
-    return $this->instanceGroupManager;
1026
+	return $this->instanceGroupManager;
1027 1027
   }
1028 1028
   public function setInstanceTemplate($instanceTemplate)
1029 1029
   {
1030
-    $this->instanceTemplate = $instanceTemplate;
1030
+	$this->instanceTemplate = $instanceTemplate;
1031 1031
   }
1032 1032
   public function getInstanceTemplate()
1033 1033
   {
1034
-    return $this->instanceTemplate;
1034
+	return $this->instanceTemplate;
1035 1035
   }
1036 1036
   public function setKind($kind)
1037 1037
   {
1038
-    $this->kind = $kind;
1038
+	$this->kind = $kind;
1039 1039
   }
1040 1040
   public function getKind()
1041 1041
   {
1042
-    return $this->kind;
1042
+	return $this->kind;
1043 1043
   }
1044 1044
   public function setPolicy(Google_Service_Replicapoolupdater_RollingUpdatePolicy $policy)
1045 1045
   {
1046
-    $this->policy = $policy;
1046
+	$this->policy = $policy;
1047 1047
   }
1048 1048
   public function getPolicy()
1049 1049
   {
1050
-    return $this->policy;
1050
+	return $this->policy;
1051 1051
   }
1052 1052
   public function setProgress($progress)
1053 1053
   {
1054
-    $this->progress = $progress;
1054
+	$this->progress = $progress;
1055 1055
   }
1056 1056
   public function getProgress()
1057 1057
   {
1058
-    return $this->progress;
1058
+	return $this->progress;
1059 1059
   }
1060 1060
   public function setSelfLink($selfLink)
1061 1061
   {
1062
-    $this->selfLink = $selfLink;
1062
+	$this->selfLink = $selfLink;
1063 1063
   }
1064 1064
   public function getSelfLink()
1065 1065
   {
1066
-    return $this->selfLink;
1066
+	return $this->selfLink;
1067 1067
   }
1068 1068
   public function setStatus($status)
1069 1069
   {
1070
-    $this->status = $status;
1070
+	$this->status = $status;
1071 1071
   }
1072 1072
   public function getStatus()
1073 1073
   {
1074
-    return $this->status;
1074
+	return $this->status;
1075 1075
   }
1076 1076
   public function setStatusMessage($statusMessage)
1077 1077
   {
1078
-    $this->statusMessage = $statusMessage;
1078
+	$this->statusMessage = $statusMessage;
1079 1079
   }
1080 1080
   public function getStatusMessage()
1081 1081
   {
1082
-    return $this->statusMessage;
1082
+	return $this->statusMessage;
1083 1083
   }
1084 1084
   public function setUser($user)
1085 1085
   {
1086
-    $this->user = $user;
1086
+	$this->user = $user;
1087 1087
   }
1088 1088
   public function getUser()
1089 1089
   {
1090
-    return $this->user;
1090
+	return $this->user;
1091 1091
   }
1092 1092
 }
1093 1093
 
@@ -1102,11 +1102,11 @@  discard block
 block discarded – undo
1102 1102
 
1103 1103
   public function setErrors($errors)
1104 1104
   {
1105
-    $this->errors = $errors;
1105
+	$this->errors = $errors;
1106 1106
   }
1107 1107
   public function getErrors()
1108 1108
   {
1109
-    return $this->errors;
1109
+	return $this->errors;
1110 1110
   }
1111 1111
 }
1112 1112
 
@@ -1121,27 +1121,27 @@  discard block
 block discarded – undo
1121 1121
 
1122 1122
   public function setCode($code)
1123 1123
   {
1124
-    $this->code = $code;
1124
+	$this->code = $code;
1125 1125
   }
1126 1126
   public function getCode()
1127 1127
   {
1128
-    return $this->code;
1128
+	return $this->code;
1129 1129
   }
1130 1130
   public function setLocation($location)
1131 1131
   {
1132
-    $this->location = $location;
1132
+	$this->location = $location;
1133 1133
   }
1134 1134
   public function getLocation()
1135 1135
   {
1136
-    return $this->location;
1136
+	return $this->location;
1137 1137
   }
1138 1138
   public function setMessage($message)
1139 1139
   {
1140
-    $this->message = $message;
1140
+	$this->message = $message;
1141 1141
   }
1142 1142
   public function getMessage()
1143 1143
   {
1144
-    return $this->message;
1144
+	return $this->message;
1145 1145
   }
1146 1146
 }
1147 1147
 
@@ -1159,35 +1159,35 @@  discard block
 block discarded – undo
1159 1159
 
1160 1160
   public function setItems($items)
1161 1161
   {
1162
-    $this->items = $items;
1162
+	$this->items = $items;
1163 1163
   }
1164 1164
   public function getItems()
1165 1165
   {
1166
-    return $this->items;
1166
+	return $this->items;
1167 1167
   }
1168 1168
   public function setKind($kind)
1169 1169
   {
1170
-    $this->kind = $kind;
1170
+	$this->kind = $kind;
1171 1171
   }
1172 1172
   public function getKind()
1173 1173
   {
1174
-    return $this->kind;
1174
+	return $this->kind;
1175 1175
   }
1176 1176
   public function setNextPageToken($nextPageToken)
1177 1177
   {
1178
-    $this->nextPageToken = $nextPageToken;
1178
+	$this->nextPageToken = $nextPageToken;
1179 1179
   }
1180 1180
   public function getNextPageToken()
1181 1181
   {
1182
-    return $this->nextPageToken;
1182
+	return $this->nextPageToken;
1183 1183
   }
1184 1184
   public function setSelfLink($selfLink)
1185 1185
   {
1186
-    $this->selfLink = $selfLink;
1186
+	$this->selfLink = $selfLink;
1187 1187
   }
1188 1188
   public function getSelfLink()
1189 1189
   {
1190
-    return $this->selfLink;
1190
+	return $this->selfLink;
1191 1191
   }
1192 1192
 }
1193 1193
 
@@ -1204,42 +1204,42 @@  discard block
 block discarded – undo
1204 1204
 
1205 1205
   public function setAutoPauseAfterInstances($autoPauseAfterInstances)
1206 1206
   {
1207
-    $this->autoPauseAfterInstances = $autoPauseAfterInstances;
1207
+	$this->autoPauseAfterInstances = $autoPauseAfterInstances;
1208 1208
   }
1209 1209
   public function getAutoPauseAfterInstances()
1210 1210
   {
1211
-    return $this->autoPauseAfterInstances;
1211
+	return $this->autoPauseAfterInstances;
1212 1212
   }
1213 1213
   public function setInstanceStartupTimeoutSec($instanceStartupTimeoutSec)
1214 1214
   {
1215
-    $this->instanceStartupTimeoutSec = $instanceStartupTimeoutSec;
1215
+	$this->instanceStartupTimeoutSec = $instanceStartupTimeoutSec;
1216 1216
   }
1217 1217
   public function getInstanceStartupTimeoutSec()
1218 1218
   {
1219
-    return $this->instanceStartupTimeoutSec;
1219
+	return $this->instanceStartupTimeoutSec;
1220 1220
   }
1221 1221
   public function setMaxNumConcurrentInstances($maxNumConcurrentInstances)
1222 1222
   {
1223
-    $this->maxNumConcurrentInstances = $maxNumConcurrentInstances;
1223
+	$this->maxNumConcurrentInstances = $maxNumConcurrentInstances;
1224 1224
   }
1225 1225
   public function getMaxNumConcurrentInstances()
1226 1226
   {
1227
-    return $this->maxNumConcurrentInstances;
1227
+	return $this->maxNumConcurrentInstances;
1228 1228
   }
1229 1229
   public function setMaxNumFailedInstances($maxNumFailedInstances)
1230 1230
   {
1231
-    $this->maxNumFailedInstances = $maxNumFailedInstances;
1231
+	$this->maxNumFailedInstances = $maxNumFailedInstances;
1232 1232
   }
1233 1233
   public function getMaxNumFailedInstances()
1234 1234
   {
1235
-    return $this->maxNumFailedInstances;
1235
+	return $this->maxNumFailedInstances;
1236 1236
   }
1237 1237
   public function setMinInstanceUpdateTimeSec($minInstanceUpdateTimeSec)
1238 1238
   {
1239
-    $this->minInstanceUpdateTimeSec = $minInstanceUpdateTimeSec;
1239
+	$this->minInstanceUpdateTimeSec = $minInstanceUpdateTimeSec;
1240 1240
   }
1241 1241
   public function getMinInstanceUpdateTimeSec()
1242 1242
   {
1243
-    return $this->minInstanceUpdateTimeSec;
1243
+	return $this->minInstanceUpdateTimeSec;
1244 1244
   }
1245 1245
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
                   'required' => true,
85 85
                 ),
86 86
               ),
87
-            ),'get' => array(
87
+            ), 'get' => array(
88 88
               'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}',
89 89
               'httpMethod' => 'GET',
90 90
               'parameters' => array(
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
                   'required' => true,
105 105
                 ),
106 106
               ),
107
-            ),'insert' => array(
107
+            ), 'insert' => array(
108 108
               'path' => '{project}/zones/{zone}/rollingUpdates',
109 109
               'httpMethod' => 'POST',
110 110
               'parameters' => array(
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
                   'required' => true,
120 120
                 ),
121 121
               ),
122
-            ),'list' => array(
122
+            ), 'list' => array(
123 123
               'path' => '{project}/zones/{zone}/rollingUpdates',
124 124
               'httpMethod' => 'GET',
125 125
               'parameters' => array(
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
                   'type' => 'string',
151 151
                 ),
152 152
               ),
153
-            ),'listInstanceUpdates' => array(
153
+            ), 'listInstanceUpdates' => array(
154 154
               'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/instanceUpdates',
155 155
               'httpMethod' => 'GET',
156 156
               'parameters' => array(
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
                   'type' => 'string',
183 183
                 ),
184 184
               ),
185
-            ),'pause' => array(
185
+            ), 'pause' => array(
186 186
               'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/pause',
187 187
               'httpMethod' => 'POST',
188 188
               'parameters' => array(
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                   'required' => true,
203 203
                 ),
204 204
               ),
205
-            ),'resume' => array(
205
+            ), 'resume' => array(
206 206
               'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/resume',
207 207
               'httpMethod' => 'POST',
208 208
               'parameters' => array(
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
                   'required' => true,
223 223
                 ),
224 224
               ),
225
-            ),'rollback' => array(
225
+            ), 'rollback' => array(
226 226
               'path' => '{project}/zones/{zone}/rollingUpdates/{rollingUpdate}/rollback',
227 227
               'httpMethod' => 'POST',
228 228
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Reports.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
    * returns usageReports for all users.
310 310
    * @param string $applicationName Application name for which the events are to
311 311
    * be retrieved.
312
-   * @param Google_Channel $postBody
312
+   * @param Google_Service_Reports_Channel $postBody
313 313
    * @param array $optParams Optional parameters.
314 314
    *
315 315
    * @opt_param string startTime Return events which occured at or after this
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
   /**
351 351
    * Stop watching resources through this channel (channels.stop)
352 352
    *
353
-   * @param Google_Channel $postBody
353
+   * @param Google_Service_Reports_Channel $postBody
354 354
    * @param array $optParams Optional parameters.
355 355
    */
356 356
   public function stop(Google_Service_Reports_Channel $postBody, $optParams = array())
Please login to merge, or discard this patch.
Indentation   +343 added lines, -343 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View audit reports of Google Apps for your domain. */
35 35
   const ADMIN_REPORTS_AUDIT_READONLY =
36
-      "https://www.googleapis.com/auth/admin.reports.audit.readonly";
36
+	  "https://www.googleapis.com/auth/admin.reports.audit.readonly";
37 37
   /** View usage reports of Google Apps for your domain. */
38 38
   const ADMIN_REPORTS_USAGE_READONLY =
39
-      "https://www.googleapis.com/auth/admin.reports.usage.readonly";
39
+	  "https://www.googleapis.com/auth/admin.reports.usage.readonly";
40 40
 
41 41
   public $activities;
42 42
   public $channels;
@@ -51,207 +51,207 @@  discard block
 block discarded – undo
51 51
    */
52 52
   public function __construct(Google_Client $client)
53 53
   {
54
-    parent::__construct($client);
55
-    $this->rootUrl = 'https://www.googleapis.com/';
56
-    $this->servicePath = 'admin/reports/v1/';
57
-    $this->version = 'reports_v1';
58
-    $this->serviceName = 'admin';
54
+	parent::__construct($client);
55
+	$this->rootUrl = 'https://www.googleapis.com/';
56
+	$this->servicePath = 'admin/reports/v1/';
57
+	$this->version = 'reports_v1';
58
+	$this->serviceName = 'admin';
59 59
 
60
-    $this->activities = new Google_Service_Reports_Activities_Resource(
61
-        $this,
62
-        $this->serviceName,
63
-        'activities',
64
-        array(
65
-          'methods' => array(
66
-            'list' => array(
67
-              'path' => 'activity/users/{userKey}/applications/{applicationName}',
68
-              'httpMethod' => 'GET',
69
-              'parameters' => array(
70
-                'userKey' => array(
71
-                  'location' => 'path',
72
-                  'type' => 'string',
73
-                  'required' => true,
74
-                ),
75
-                'applicationName' => array(
76
-                  'location' => 'path',
77
-                  'type' => 'string',
78
-                  'required' => true,
79
-                ),
80
-                'startTime' => array(
81
-                  'location' => 'query',
82
-                  'type' => 'string',
83
-                ),
84
-                'actorIpAddress' => array(
85
-                  'location' => 'query',
86
-                  'type' => 'string',
87
-                ),
88
-                'maxResults' => array(
89
-                  'location' => 'query',
90
-                  'type' => 'integer',
91
-                ),
92
-                'eventName' => array(
93
-                  'location' => 'query',
94
-                  'type' => 'string',
95
-                ),
96
-                'pageToken' => array(
97
-                  'location' => 'query',
98
-                  'type' => 'string',
99
-                ),
100
-                'filters' => array(
101
-                  'location' => 'query',
102
-                  'type' => 'string',
103
-                ),
104
-                'endTime' => array(
105
-                  'location' => 'query',
106
-                  'type' => 'string',
107
-                ),
108
-                'customerId' => array(
109
-                  'location' => 'query',
110
-                  'type' => 'string',
111
-                ),
112
-              ),
113
-            ),'watch' => array(
114
-              'path' => 'activity/users/{userKey}/applications/{applicationName}/watch',
115
-              'httpMethod' => 'POST',
116
-              'parameters' => array(
117
-                'userKey' => array(
118
-                  'location' => 'path',
119
-                  'type' => 'string',
120
-                  'required' => true,
121
-                ),
122
-                'applicationName' => array(
123
-                  'location' => 'path',
124
-                  'type' => 'string',
125
-                  'required' => true,
126
-                ),
127
-                'startTime' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'string',
130
-                ),
131
-                'actorIpAddress' => array(
132
-                  'location' => 'query',
133
-                  'type' => 'string',
134
-                ),
135
-                'maxResults' => array(
136
-                  'location' => 'query',
137
-                  'type' => 'integer',
138
-                ),
139
-                'eventName' => array(
140
-                  'location' => 'query',
141
-                  'type' => 'string',
142
-                ),
143
-                'pageToken' => array(
144
-                  'location' => 'query',
145
-                  'type' => 'string',
146
-                ),
147
-                'filters' => array(
148
-                  'location' => 'query',
149
-                  'type' => 'string',
150
-                ),
151
-                'endTime' => array(
152
-                  'location' => 'query',
153
-                  'type' => 'string',
154
-                ),
155
-                'customerId' => array(
156
-                  'location' => 'query',
157
-                  'type' => 'string',
158
-                ),
159
-              ),
160
-            ),
161
-          )
162
-        )
163
-    );
164
-    $this->channels = new Google_Service_Reports_Channels_Resource(
165
-        $this,
166
-        $this->serviceName,
167
-        'channels',
168
-        array(
169
-          'methods' => array(
170
-            'stop' => array(
171
-              'path' => '/admin/reports_v1/channels/stop',
172
-              'httpMethod' => 'POST',
173
-              'parameters' => array(),
174
-            ),
175
-          )
176
-        )
177
-    );
178
-    $this->customerUsageReports = new Google_Service_Reports_CustomerUsageReports_Resource(
179
-        $this,
180
-        $this->serviceName,
181
-        'customerUsageReports',
182
-        array(
183
-          'methods' => array(
184
-            'get' => array(
185
-              'path' => 'usage/dates/{date}',
186
-              'httpMethod' => 'GET',
187
-              'parameters' => array(
188
-                'date' => array(
189
-                  'location' => 'path',
190
-                  'type' => 'string',
191
-                  'required' => true,
192
-                ),
193
-                'pageToken' => array(
194
-                  'location' => 'query',
195
-                  'type' => 'string',
196
-                ),
197
-                'customerId' => array(
198
-                  'location' => 'query',
199
-                  'type' => 'string',
200
-                ),
201
-                'parameters' => array(
202
-                  'location' => 'query',
203
-                  'type' => 'string',
204
-                ),
205
-              ),
206
-            ),
207
-          )
208
-        )
209
-    );
210
-    $this->userUsageReport = new Google_Service_Reports_UserUsageReport_Resource(
211
-        $this,
212
-        $this->serviceName,
213
-        'userUsageReport',
214
-        array(
215
-          'methods' => array(
216
-            'get' => array(
217
-              'path' => 'usage/users/{userKey}/dates/{date}',
218
-              'httpMethod' => 'GET',
219
-              'parameters' => array(
220
-                'userKey' => array(
221
-                  'location' => 'path',
222
-                  'type' => 'string',
223
-                  'required' => true,
224
-                ),
225
-                'date' => array(
226
-                  'location' => 'path',
227
-                  'type' => 'string',
228
-                  'required' => true,
229
-                ),
230
-                'parameters' => array(
231
-                  'location' => 'query',
232
-                  'type' => 'string',
233
-                ),
234
-                'maxResults' => array(
235
-                  'location' => 'query',
236
-                  'type' => 'integer',
237
-                ),
238
-                'pageToken' => array(
239
-                  'location' => 'query',
240
-                  'type' => 'string',
241
-                ),
242
-                'filters' => array(
243
-                  'location' => 'query',
244
-                  'type' => 'string',
245
-                ),
246
-                'customerId' => array(
247
-                  'location' => 'query',
248
-                  'type' => 'string',
249
-                ),
250
-              ),
251
-            ),
252
-          )
253
-        )
254
-    );
60
+	$this->activities = new Google_Service_Reports_Activities_Resource(
61
+		$this,
62
+		$this->serviceName,
63
+		'activities',
64
+		array(
65
+		  'methods' => array(
66
+			'list' => array(
67
+			  'path' => 'activity/users/{userKey}/applications/{applicationName}',
68
+			  'httpMethod' => 'GET',
69
+			  'parameters' => array(
70
+				'userKey' => array(
71
+				  'location' => 'path',
72
+				  'type' => 'string',
73
+				  'required' => true,
74
+				),
75
+				'applicationName' => array(
76
+				  'location' => 'path',
77
+				  'type' => 'string',
78
+				  'required' => true,
79
+				),
80
+				'startTime' => array(
81
+				  'location' => 'query',
82
+				  'type' => 'string',
83
+				),
84
+				'actorIpAddress' => array(
85
+				  'location' => 'query',
86
+				  'type' => 'string',
87
+				),
88
+				'maxResults' => array(
89
+				  'location' => 'query',
90
+				  'type' => 'integer',
91
+				),
92
+				'eventName' => array(
93
+				  'location' => 'query',
94
+				  'type' => 'string',
95
+				),
96
+				'pageToken' => array(
97
+				  'location' => 'query',
98
+				  'type' => 'string',
99
+				),
100
+				'filters' => array(
101
+				  'location' => 'query',
102
+				  'type' => 'string',
103
+				),
104
+				'endTime' => array(
105
+				  'location' => 'query',
106
+				  'type' => 'string',
107
+				),
108
+				'customerId' => array(
109
+				  'location' => 'query',
110
+				  'type' => 'string',
111
+				),
112
+			  ),
113
+			),'watch' => array(
114
+			  'path' => 'activity/users/{userKey}/applications/{applicationName}/watch',
115
+			  'httpMethod' => 'POST',
116
+			  'parameters' => array(
117
+				'userKey' => array(
118
+				  'location' => 'path',
119
+				  'type' => 'string',
120
+				  'required' => true,
121
+				),
122
+				'applicationName' => array(
123
+				  'location' => 'path',
124
+				  'type' => 'string',
125
+				  'required' => true,
126
+				),
127
+				'startTime' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'string',
130
+				),
131
+				'actorIpAddress' => array(
132
+				  'location' => 'query',
133
+				  'type' => 'string',
134
+				),
135
+				'maxResults' => array(
136
+				  'location' => 'query',
137
+				  'type' => 'integer',
138
+				),
139
+				'eventName' => array(
140
+				  'location' => 'query',
141
+				  'type' => 'string',
142
+				),
143
+				'pageToken' => array(
144
+				  'location' => 'query',
145
+				  'type' => 'string',
146
+				),
147
+				'filters' => array(
148
+				  'location' => 'query',
149
+				  'type' => 'string',
150
+				),
151
+				'endTime' => array(
152
+				  'location' => 'query',
153
+				  'type' => 'string',
154
+				),
155
+				'customerId' => array(
156
+				  'location' => 'query',
157
+				  'type' => 'string',
158
+				),
159
+			  ),
160
+			),
161
+		  )
162
+		)
163
+	);
164
+	$this->channels = new Google_Service_Reports_Channels_Resource(
165
+		$this,
166
+		$this->serviceName,
167
+		'channels',
168
+		array(
169
+		  'methods' => array(
170
+			'stop' => array(
171
+			  'path' => '/admin/reports_v1/channels/stop',
172
+			  'httpMethod' => 'POST',
173
+			  'parameters' => array(),
174
+			),
175
+		  )
176
+		)
177
+	);
178
+	$this->customerUsageReports = new Google_Service_Reports_CustomerUsageReports_Resource(
179
+		$this,
180
+		$this->serviceName,
181
+		'customerUsageReports',
182
+		array(
183
+		  'methods' => array(
184
+			'get' => array(
185
+			  'path' => 'usage/dates/{date}',
186
+			  'httpMethod' => 'GET',
187
+			  'parameters' => array(
188
+				'date' => array(
189
+				  'location' => 'path',
190
+				  'type' => 'string',
191
+				  'required' => true,
192
+				),
193
+				'pageToken' => array(
194
+				  'location' => 'query',
195
+				  'type' => 'string',
196
+				),
197
+				'customerId' => array(
198
+				  'location' => 'query',
199
+				  'type' => 'string',
200
+				),
201
+				'parameters' => array(
202
+				  'location' => 'query',
203
+				  'type' => 'string',
204
+				),
205
+			  ),
206
+			),
207
+		  )
208
+		)
209
+	);
210
+	$this->userUsageReport = new Google_Service_Reports_UserUsageReport_Resource(
211
+		$this,
212
+		$this->serviceName,
213
+		'userUsageReport',
214
+		array(
215
+		  'methods' => array(
216
+			'get' => array(
217
+			  'path' => 'usage/users/{userKey}/dates/{date}',
218
+			  'httpMethod' => 'GET',
219
+			  'parameters' => array(
220
+				'userKey' => array(
221
+				  'location' => 'path',
222
+				  'type' => 'string',
223
+				  'required' => true,
224
+				),
225
+				'date' => array(
226
+				  'location' => 'path',
227
+				  'type' => 'string',
228
+				  'required' => true,
229
+				),
230
+				'parameters' => array(
231
+				  'location' => 'query',
232
+				  'type' => 'string',
233
+				),
234
+				'maxResults' => array(
235
+				  'location' => 'query',
236
+				  'type' => 'integer',
237
+				),
238
+				'pageToken' => array(
239
+				  'location' => 'query',
240
+				  'type' => 'string',
241
+				),
242
+				'filters' => array(
243
+				  'location' => 'query',
244
+				  'type' => 'string',
245
+				),
246
+				'customerId' => array(
247
+				  'location' => 'query',
248
+				  'type' => 'string',
249
+				),
250
+			  ),
251
+			),
252
+		  )
253
+		)
254
+	);
255 255
   }
256 256
 }
257 257
 
@@ -296,9 +296,9 @@  discard block
 block discarded – undo
296 296
    */
297 297
   public function listActivities($userKey, $applicationName, $optParams = array())
298 298
   {
299
-    $params = array('userKey' => $userKey, 'applicationName' => $applicationName);
300
-    $params = array_merge($params, $optParams);
301
-    return $this->call('list', array($params), "Google_Service_Reports_Activities");
299
+	$params = array('userKey' => $userKey, 'applicationName' => $applicationName);
300
+	$params = array_merge($params, $optParams);
301
+	return $this->call('list', array($params), "Google_Service_Reports_Activities");
302 302
   }
303 303
 
304 304
   /**
@@ -330,9 +330,9 @@  discard block
 block discarded – undo
330 330
    */
331 331
   public function watch($userKey, $applicationName, Google_Service_Reports_Channel $postBody, $optParams = array())
332 332
   {
333
-    $params = array('userKey' => $userKey, 'applicationName' => $applicationName, 'postBody' => $postBody);
334
-    $params = array_merge($params, $optParams);
335
-    return $this->call('watch', array($params), "Google_Service_Reports_Channel");
333
+	$params = array('userKey' => $userKey, 'applicationName' => $applicationName, 'postBody' => $postBody);
334
+	$params = array_merge($params, $optParams);
335
+	return $this->call('watch', array($params), "Google_Service_Reports_Channel");
336 336
   }
337 337
 }
338 338
 
@@ -355,9 +355,9 @@  discard block
 block discarded – undo
355 355
    */
356 356
   public function stop(Google_Service_Reports_Channel $postBody, $optParams = array())
357 357
   {
358
-    $params = array('postBody' => $postBody);
359
-    $params = array_merge($params, $optParams);
360
-    return $this->call('stop', array($params));
358
+	$params = array('postBody' => $postBody);
359
+	$params = array_merge($params, $optParams);
360
+	return $this->call('stop', array($params));
361 361
   }
362 362
 }
363 363
 
@@ -389,9 +389,9 @@  discard block
 block discarded – undo
389 389
    */
390 390
   public function get($date, $optParams = array())
391 391
   {
392
-    $params = array('date' => $date);
393
-    $params = array_merge($params, $optParams);
394
-    return $this->call('get', array($params), "Google_Service_Reports_UsageReports");
392
+	$params = array('date' => $date);
393
+	$params = array_merge($params, $optParams);
394
+	return $this->call('get', array($params), "Google_Service_Reports_UsageReports");
395 395
   }
396 396
 }
397 397
 
@@ -429,9 +429,9 @@  discard block
 block discarded – undo
429 429
    */
430 430
   public function get($userKey, $date, $optParams = array())
431 431
   {
432
-    $params = array('userKey' => $userKey, 'date' => $date);
433
-    $params = array_merge($params, $optParams);
434
-    return $this->call('get', array($params), "Google_Service_Reports_UsageReports");
432
+	$params = array('userKey' => $userKey, 'date' => $date);
433
+	$params = array_merge($params, $optParams);
434
+	return $this->call('get', array($params), "Google_Service_Reports_UsageReports");
435 435
   }
436 436
 }
437 437
 
@@ -452,35 +452,35 @@  discard block
 block discarded – undo
452 452
 
453 453
   public function setEtag($etag)
454 454
   {
455
-    $this->etag = $etag;
455
+	$this->etag = $etag;
456 456
   }
457 457
   public function getEtag()
458 458
   {
459
-    return $this->etag;
459
+	return $this->etag;
460 460
   }
461 461
   public function setItems($items)
462 462
   {
463
-    $this->items = $items;
463
+	$this->items = $items;
464 464
   }
465 465
   public function getItems()
466 466
   {
467
-    return $this->items;
467
+	return $this->items;
468 468
   }
469 469
   public function setKind($kind)
470 470
   {
471
-    $this->kind = $kind;
471
+	$this->kind = $kind;
472 472
   }
473 473
   public function getKind()
474 474
   {
475
-    return $this->kind;
475
+	return $this->kind;
476 476
   }
477 477
   public function setNextPageToken($nextPageToken)
478 478
   {
479
-    $this->nextPageToken = $nextPageToken;
479
+	$this->nextPageToken = $nextPageToken;
480 480
   }
481 481
   public function getNextPageToken()
482 482
   {
483
-    return $this->nextPageToken;
483
+	return $this->nextPageToken;
484 484
   }
485 485
 }
486 486
 
@@ -503,59 +503,59 @@  discard block
 block discarded – undo
503 503
 
504 504
   public function setActor(Google_Service_Reports_ActivityActor $actor)
505 505
   {
506
-    $this->actor = $actor;
506
+	$this->actor = $actor;
507 507
   }
508 508
   public function getActor()
509 509
   {
510
-    return $this->actor;
510
+	return $this->actor;
511 511
   }
512 512
   public function setEtag($etag)
513 513
   {
514
-    $this->etag = $etag;
514
+	$this->etag = $etag;
515 515
   }
516 516
   public function getEtag()
517 517
   {
518
-    return $this->etag;
518
+	return $this->etag;
519 519
   }
520 520
   public function setEvents($events)
521 521
   {
522
-    $this->events = $events;
522
+	$this->events = $events;
523 523
   }
524 524
   public function getEvents()
525 525
   {
526
-    return $this->events;
526
+	return $this->events;
527 527
   }
528 528
   public function setId(Google_Service_Reports_ActivityId $id)
529 529
   {
530
-    $this->id = $id;
530
+	$this->id = $id;
531 531
   }
532 532
   public function getId()
533 533
   {
534
-    return $this->id;
534
+	return $this->id;
535 535
   }
536 536
   public function setIpAddress($ipAddress)
537 537
   {
538
-    $this->ipAddress = $ipAddress;
538
+	$this->ipAddress = $ipAddress;
539 539
   }
540 540
   public function getIpAddress()
541 541
   {
542
-    return $this->ipAddress;
542
+	return $this->ipAddress;
543 543
   }
544 544
   public function setKind($kind)
545 545
   {
546
-    $this->kind = $kind;
546
+	$this->kind = $kind;
547 547
   }
548 548
   public function getKind()
549 549
   {
550
-    return $this->kind;
550
+	return $this->kind;
551 551
   }
552 552
   public function setOwnerDomain($ownerDomain)
553 553
   {
554
-    $this->ownerDomain = $ownerDomain;
554
+	$this->ownerDomain = $ownerDomain;
555 555
   }
556 556
   public function getOwnerDomain()
557 557
   {
558
-    return $this->ownerDomain;
558
+	return $this->ownerDomain;
559 559
   }
560 560
 }
561 561
 
@@ -571,35 +571,35 @@  discard block
 block discarded – undo
571 571
 
572 572
   public function setCallerType($callerType)
573 573
   {
574
-    $this->callerType = $callerType;
574
+	$this->callerType = $callerType;
575 575
   }
576 576
   public function getCallerType()
577 577
   {
578
-    return $this->callerType;
578
+	return $this->callerType;
579 579
   }
580 580
   public function setEmail($email)
581 581
   {
582
-    $this->email = $email;
582
+	$this->email = $email;
583 583
   }
584 584
   public function getEmail()
585 585
   {
586
-    return $this->email;
586
+	return $this->email;
587 587
   }
588 588
   public function setKey($key)
589 589
   {
590
-    $this->key = $key;
590
+	$this->key = $key;
591 591
   }
592 592
   public function getKey()
593 593
   {
594
-    return $this->key;
594
+	return $this->key;
595 595
   }
596 596
   public function setProfileId($profileId)
597 597
   {
598
-    $this->profileId = $profileId;
598
+	$this->profileId = $profileId;
599 599
   }
600 600
   public function getProfileId()
601 601
   {
602
-    return $this->profileId;
602
+	return $this->profileId;
603 603
   }
604 604
 }
605 605
 
@@ -616,27 +616,27 @@  discard block
 block discarded – undo
616 616
 
617 617
   public function setName($name)
618 618
   {
619
-    $this->name = $name;
619
+	$this->name = $name;
620 620
   }
621 621
   public function getName()
622 622
   {
623
-    return $this->name;
623
+	return $this->name;
624 624
   }
625 625
   public function setParameters($parameters)
626 626
   {
627
-    $this->parameters = $parameters;
627
+	$this->parameters = $parameters;
628 628
   }
629 629
   public function getParameters()
630 630
   {
631
-    return $this->parameters;
631
+	return $this->parameters;
632 632
   }
633 633
   public function setType($type)
634 634
   {
635
-    $this->type = $type;
635
+	$this->type = $type;
636 636
   }
637 637
   public function getType()
638 638
   {
639
-    return $this->type;
639
+	return $this->type;
640 640
   }
641 641
 }
642 642
 
@@ -655,51 +655,51 @@  discard block
 block discarded – undo
655 655
 
656 656
   public function setBoolValue($boolValue)
657 657
   {
658
-    $this->boolValue = $boolValue;
658
+	$this->boolValue = $boolValue;
659 659
   }
660 660
   public function getBoolValue()
661 661
   {
662
-    return $this->boolValue;
662
+	return $this->boolValue;
663 663
   }
664 664
   public function setIntValue($intValue)
665 665
   {
666
-    $this->intValue = $intValue;
666
+	$this->intValue = $intValue;
667 667
   }
668 668
   public function getIntValue()
669 669
   {
670
-    return $this->intValue;
670
+	return $this->intValue;
671 671
   }
672 672
   public function setMultiIntValue($multiIntValue)
673 673
   {
674
-    $this->multiIntValue = $multiIntValue;
674
+	$this->multiIntValue = $multiIntValue;
675 675
   }
676 676
   public function getMultiIntValue()
677 677
   {
678
-    return $this->multiIntValue;
678
+	return $this->multiIntValue;
679 679
   }
680 680
   public function setMultiValue($multiValue)
681 681
   {
682
-    $this->multiValue = $multiValue;
682
+	$this->multiValue = $multiValue;
683 683
   }
684 684
   public function getMultiValue()
685 685
   {
686
-    return $this->multiValue;
686
+	return $this->multiValue;
687 687
   }
688 688
   public function setName($name)
689 689
   {
690
-    $this->name = $name;
690
+	$this->name = $name;
691 691
   }
692 692
   public function getName()
693 693
   {
694
-    return $this->name;
694
+	return $this->name;
695 695
   }
696 696
   public function setValue($value)
697 697
   {
698
-    $this->value = $value;
698
+	$this->value = $value;
699 699
   }
700 700
   public function getValue()
701 701
   {
702
-    return $this->value;
702
+	return $this->value;
703 703
   }
704 704
 }
705 705
 
@@ -715,35 +715,35 @@  discard block
 block discarded – undo
715 715
 
716 716
   public function setApplicationName($applicationName)
717 717
   {
718
-    $this->applicationName = $applicationName;
718
+	$this->applicationName = $applicationName;
719 719
   }
720 720
   public function getApplicationName()
721 721
   {
722
-    return $this->applicationName;
722
+	return $this->applicationName;
723 723
   }
724 724
   public function setCustomerId($customerId)
725 725
   {
726
-    $this->customerId = $customerId;
726
+	$this->customerId = $customerId;
727 727
   }
728 728
   public function getCustomerId()
729 729
   {
730
-    return $this->customerId;
730
+	return $this->customerId;
731 731
   }
732 732
   public function setTime($time)
733 733
   {
734
-    $this->time = $time;
734
+	$this->time = $time;
735 735
   }
736 736
   public function getTime()
737 737
   {
738
-    return $this->time;
738
+	return $this->time;
739 739
   }
740 740
   public function setUniqueQualifier($uniqueQualifier)
741 741
   {
742
-    $this->uniqueQualifier = $uniqueQualifier;
742
+	$this->uniqueQualifier = $uniqueQualifier;
743 743
   }
744 744
   public function getUniqueQualifier()
745 745
   {
746
-    return $this->uniqueQualifier;
746
+	return $this->uniqueQualifier;
747 747
   }
748 748
 }
749 749
 
@@ -765,83 +765,83 @@  discard block
 block discarded – undo
765 765
 
766 766
   public function setAddress($address)
767 767
   {
768
-    $this->address = $address;
768
+	$this->address = $address;
769 769
   }
770 770
   public function getAddress()
771 771
   {
772
-    return $this->address;
772
+	return $this->address;
773 773
   }
774 774
   public function setExpiration($expiration)
775 775
   {
776
-    $this->expiration = $expiration;
776
+	$this->expiration = $expiration;
777 777
   }
778 778
   public function getExpiration()
779 779
   {
780
-    return $this->expiration;
780
+	return $this->expiration;
781 781
   }
782 782
   public function setId($id)
783 783
   {
784
-    $this->id = $id;
784
+	$this->id = $id;
785 785
   }
786 786
   public function getId()
787 787
   {
788
-    return $this->id;
788
+	return $this->id;
789 789
   }
790 790
   public function setKind($kind)
791 791
   {
792
-    $this->kind = $kind;
792
+	$this->kind = $kind;
793 793
   }
794 794
   public function getKind()
795 795
   {
796
-    return $this->kind;
796
+	return $this->kind;
797 797
   }
798 798
   public function setParams($params)
799 799
   {
800
-    $this->params = $params;
800
+	$this->params = $params;
801 801
   }
802 802
   public function getParams()
803 803
   {
804
-    return $this->params;
804
+	return $this->params;
805 805
   }
806 806
   public function setPayload($payload)
807 807
   {
808
-    $this->payload = $payload;
808
+	$this->payload = $payload;
809 809
   }
810 810
   public function getPayload()
811 811
   {
812
-    return $this->payload;
812
+	return $this->payload;
813 813
   }
814 814
   public function setResourceId($resourceId)
815 815
   {
816
-    $this->resourceId = $resourceId;
816
+	$this->resourceId = $resourceId;
817 817
   }
818 818
   public function getResourceId()
819 819
   {
820
-    return $this->resourceId;
820
+	return $this->resourceId;
821 821
   }
822 822
   public function setResourceUri($resourceUri)
823 823
   {
824
-    $this->resourceUri = $resourceUri;
824
+	$this->resourceUri = $resourceUri;
825 825
   }
826 826
   public function getResourceUri()
827 827
   {
828
-    return $this->resourceUri;
828
+	return $this->resourceUri;
829 829
   }
830 830
   public function setToken($token)
831 831
   {
832
-    $this->token = $token;
832
+	$this->token = $token;
833 833
   }
834 834
   public function getToken()
835 835
   {
836
-    return $this->token;
836
+	return $this->token;
837 837
   }
838 838
   public function setType($type)
839 839
   {
840
-    $this->type = $type;
840
+	$this->type = $type;
841 841
   }
842 842
   public function getType()
843 843
   {
844
-    return $this->type;
844
+	return $this->type;
845 845
   }
846 846
 }
847 847
 
@@ -865,43 +865,43 @@  discard block
 block discarded – undo
865 865
 
866 866
   public function setDate($date)
867 867
   {
868
-    $this->date = $date;
868
+	$this->date = $date;
869 869
   }
870 870
   public function getDate()
871 871
   {
872
-    return $this->date;
872
+	return $this->date;
873 873
   }
874 874
   public function setEntity(Google_Service_Reports_UsageReportEntity $entity)
875 875
   {
876
-    $this->entity = $entity;
876
+	$this->entity = $entity;
877 877
   }
878 878
   public function getEntity()
879 879
   {
880
-    return $this->entity;
880
+	return $this->entity;
881 881
   }
882 882
   public function setEtag($etag)
883 883
   {
884
-    $this->etag = $etag;
884
+	$this->etag = $etag;
885 885
   }
886 886
   public function getEtag()
887 887
   {
888
-    return $this->etag;
888
+	return $this->etag;
889 889
   }
890 890
   public function setKind($kind)
891 891
   {
892
-    $this->kind = $kind;
892
+	$this->kind = $kind;
893 893
   }
894 894
   public function getKind()
895 895
   {
896
-    return $this->kind;
896
+	return $this->kind;
897 897
   }
898 898
   public function setParameters($parameters)
899 899
   {
900
-    $this->parameters = $parameters;
900
+	$this->parameters = $parameters;
901 901
   }
902 902
   public function getParameters()
903 903
   {
904
-    return $this->parameters;
904
+	return $this->parameters;
905 905
   }
906 906
 }
907 907
 
@@ -917,35 +917,35 @@  discard block
 block discarded – undo
917 917
 
918 918
   public function setCustomerId($customerId)
919 919
   {
920
-    $this->customerId = $customerId;
920
+	$this->customerId = $customerId;
921 921
   }
922 922
   public function getCustomerId()
923 923
   {
924
-    return $this->customerId;
924
+	return $this->customerId;
925 925
   }
926 926
   public function setProfileId($profileId)
927 927
   {
928
-    $this->profileId = $profileId;
928
+	$this->profileId = $profileId;
929 929
   }
930 930
   public function getProfileId()
931 931
   {
932
-    return $this->profileId;
932
+	return $this->profileId;
933 933
   }
934 934
   public function setType($type)
935 935
   {
936
-    $this->type = $type;
936
+	$this->type = $type;
937 937
   }
938 938
   public function getType()
939 939
   {
940
-    return $this->type;
940
+	return $this->type;
941 941
   }
942 942
   public function setUserEmail($userEmail)
943 943
   {
944
-    $this->userEmail = $userEmail;
944
+	$this->userEmail = $userEmail;
945 945
   }
946 946
   public function getUserEmail()
947 947
   {
948
-    return $this->userEmail;
948
+	return $this->userEmail;
949 949
   }
950 950
 }
951 951
 
@@ -964,51 +964,51 @@  discard block
 block discarded – undo
964 964
 
965 965
   public function setBoolValue($boolValue)
966 966
   {
967
-    $this->boolValue = $boolValue;
967
+	$this->boolValue = $boolValue;
968 968
   }
969 969
   public function getBoolValue()
970 970
   {
971
-    return $this->boolValue;
971
+	return $this->boolValue;
972 972
   }
973 973
   public function setDatetimeValue($datetimeValue)
974 974
   {
975
-    $this->datetimeValue = $datetimeValue;
975
+	$this->datetimeValue = $datetimeValue;
976 976
   }
977 977
   public function getDatetimeValue()
978 978
   {
979
-    return $this->datetimeValue;
979
+	return $this->datetimeValue;
980 980
   }
981 981
   public function setIntValue($intValue)
982 982
   {
983
-    $this->intValue = $intValue;
983
+	$this->intValue = $intValue;
984 984
   }
985 985
   public function getIntValue()
986 986
   {
987
-    return $this->intValue;
987
+	return $this->intValue;
988 988
   }
989 989
   public function setMsgValue($msgValue)
990 990
   {
991
-    $this->msgValue = $msgValue;
991
+	$this->msgValue = $msgValue;
992 992
   }
993 993
   public function getMsgValue()
994 994
   {
995
-    return $this->msgValue;
995
+	return $this->msgValue;
996 996
   }
997 997
   public function setName($name)
998 998
   {
999
-    $this->name = $name;
999
+	$this->name = $name;
1000 1000
   }
1001 1001
   public function getName()
1002 1002
   {
1003
-    return $this->name;
1003
+	return $this->name;
1004 1004
   }
1005 1005
   public function setStringValue($stringValue)
1006 1006
   {
1007
-    $this->stringValue = $stringValue;
1007
+	$this->stringValue = $stringValue;
1008 1008
   }
1009 1009
   public function getStringValue()
1010 1010
   {
1011
-    return $this->stringValue;
1011
+	return $this->stringValue;
1012 1012
   }
1013 1013
 }
1014 1014
 
@@ -1032,43 +1032,43 @@  discard block
 block discarded – undo
1032 1032
 
1033 1033
   public function setEtag($etag)
1034 1034
   {
1035
-    $this->etag = $etag;
1035
+	$this->etag = $etag;
1036 1036
   }
1037 1037
   public function getEtag()
1038 1038
   {
1039
-    return $this->etag;
1039
+	return $this->etag;
1040 1040
   }
1041 1041
   public function setKind($kind)
1042 1042
   {
1043
-    $this->kind = $kind;
1043
+	$this->kind = $kind;
1044 1044
   }
1045 1045
   public function getKind()
1046 1046
   {
1047
-    return $this->kind;
1047
+	return $this->kind;
1048 1048
   }
1049 1049
   public function setNextPageToken($nextPageToken)
1050 1050
   {
1051
-    $this->nextPageToken = $nextPageToken;
1051
+	$this->nextPageToken = $nextPageToken;
1052 1052
   }
1053 1053
   public function getNextPageToken()
1054 1054
   {
1055
-    return $this->nextPageToken;
1055
+	return $this->nextPageToken;
1056 1056
   }
1057 1057
   public function setUsageReports($usageReports)
1058 1058
   {
1059
-    $this->usageReports = $usageReports;
1059
+	$this->usageReports = $usageReports;
1060 1060
   }
1061 1061
   public function getUsageReports()
1062 1062
   {
1063
-    return $this->usageReports;
1063
+	return $this->usageReports;
1064 1064
   }
1065 1065
   public function setWarnings($warnings)
1066 1066
   {
1067
-    $this->warnings = $warnings;
1067
+	$this->warnings = $warnings;
1068 1068
   }
1069 1069
   public function getWarnings()
1070 1070
   {
1071
-    return $this->warnings;
1071
+	return $this->warnings;
1072 1072
   }
1073 1073
 }
1074 1074
 
@@ -1085,27 +1085,27 @@  discard block
 block discarded – undo
1085 1085
 
1086 1086
   public function setCode($code)
1087 1087
   {
1088
-    $this->code = $code;
1088
+	$this->code = $code;
1089 1089
   }
1090 1090
   public function getCode()
1091 1091
   {
1092
-    return $this->code;
1092
+	return $this->code;
1093 1093
   }
1094 1094
   public function setData($data)
1095 1095
   {
1096
-    $this->data = $data;
1096
+	$this->data = $data;
1097 1097
   }
1098 1098
   public function getData()
1099 1099
   {
1100
-    return $this->data;
1100
+	return $this->data;
1101 1101
   }
1102 1102
   public function setMessage($message)
1103 1103
   {
1104
-    $this->message = $message;
1104
+	$this->message = $message;
1105 1105
   }
1106 1106
   public function getMessage()
1107 1107
   {
1108
-    return $this->message;
1108
+	return $this->message;
1109 1109
   }
1110 1110
 }
1111 1111
 
@@ -1119,18 +1119,18 @@  discard block
 block discarded – undo
1119 1119
 
1120 1120
   public function setKey($key)
1121 1121
   {
1122
-    $this->key = $key;
1122
+	$this->key = $key;
1123 1123
   }
1124 1124
   public function getKey()
1125 1125
   {
1126
-    return $this->key;
1126
+	return $this->key;
1127 1127
   }
1128 1128
   public function setValue($value)
1129 1129
   {
1130
-    $this->value = $value;
1130
+	$this->value = $value;
1131 1131
   }
1132 1132
   public function getValue()
1133 1133
   {
1134
-    return $this->value;
1134
+	return $this->value;
1135 1135
   }
1136 1136
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@
 block discarded – undo
110 110
                   'type' => 'string',
111 111
                 ),
112 112
               ),
113
-            ),'watch' => array(
113
+            ), 'watch' => array(
114 114
               'path' => 'activity/users/{userKey}/applications/{applicationName}/watch',
115 115
               'httpMethod' => 'POST',
116 116
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Reseller.php 3 patches
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
   /**
311 311
    * Creates a customer resource if one does not already exist. (customers.insert)
312 312
    *
313
-   * @param Google_Customer $postBody
313
+   * @param Google_Service_Reseller_Customer $postBody
314 314
    * @param array $optParams Optional parameters.
315 315
    *
316 316
    * @opt_param string customerAuthToken An auth token needed for inserting a
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
    * This method supports patch semantics. (customers.patch)
331 331
    *
332 332
    * @param string $customerId Id of the Customer
333
-   * @param Google_Customer $postBody
333
+   * @param Google_Service_Reseller_Customer $postBody
334 334
    * @param array $optParams Optional parameters.
335 335
    * @return Google_Service_Reseller_Customer
336 336
    */
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
    * (customers.update)
347 347
    *
348 348
    * @param string $customerId Id of the Customer
349
-   * @param Google_Customer $postBody
349
+   * @param Google_Service_Reseller_Customer $postBody
350 350
    * @param array $optParams Optional parameters.
351 351
    * @return Google_Service_Reseller_Customer
352 352
    */
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
    * @param string $customerId Id of the Customer
393 393
    * @param string $subscriptionId Id of the subscription, which is unique for a
394 394
    * customer
395
-   * @param Google_ChangePlanRequest $postBody
395
+   * @param Google_Service_Reseller_ChangePlanRequest $postBody
396 396
    * @param array $optParams Optional parameters.
397 397
    * @return Google_Service_Reseller_Subscription
398 398
    */
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
    * @param string $customerId Id of the Customer
411 411
    * @param string $subscriptionId Id of the subscription, which is unique for a
412 412
    * customer
413
-   * @param Google_RenewalSettings $postBody
413
+   * @param Google_Service_Reseller_RenewalSettings $postBody
414 414
    * @param array $optParams Optional parameters.
415 415
    * @return Google_Service_Reseller_Subscription
416 416
    */
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
    * @param string $customerId Id of the Customer
428 428
    * @param string $subscriptionId Id of the subscription, which is unique for a
429 429
    * customer
430
-   * @param Google_Seats $postBody
430
+   * @param Google_Service_Reseller_Seats $postBody
431 431
    * @param array $optParams Optional parameters.
432 432
    * @return Google_Service_Reseller_Subscription
433 433
    */
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
    * Creates/Transfers a subscription for the customer. (subscriptions.insert)
476 476
    *
477 477
    * @param string $customerId Id of the Customer
478
-   * @param Google_Subscription $postBody
478
+   * @param Google_Service_Reseller_Subscription $postBody
479 479
    * @param array $optParams Optional parameters.
480 480
    *
481 481
    * @opt_param string customerAuthToken An auth token needed for transferring a
Please login to merge, or discard this patch.
Indentation   +380 added lines, -380 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage users on your domain. */
34 34
   const APPS_ORDER =
35
-      "https://www.googleapis.com/auth/apps.order";
35
+	  "https://www.googleapis.com/auth/apps.order";
36 36
   /** Manage users on your domain. */
37 37
   const APPS_ORDER_READONLY =
38
-      "https://www.googleapis.com/auth/apps.order.readonly";
38
+	  "https://www.googleapis.com/auth/apps.order.readonly";
39 39
 
40 40
   public $customers;
41 41
   public $subscriptions;
@@ -48,235 +48,235 @@  discard block
 block discarded – undo
48 48
    */
49 49
   public function __construct(Google_Client $client)
50 50
   {
51
-    parent::__construct($client);
52
-    $this->rootUrl = 'https://www.googleapis.com/';
53
-    $this->servicePath = 'apps/reseller/v1/';
54
-    $this->version = 'v1';
55
-    $this->serviceName = 'reseller';
51
+	parent::__construct($client);
52
+	$this->rootUrl = 'https://www.googleapis.com/';
53
+	$this->servicePath = 'apps/reseller/v1/';
54
+	$this->version = 'v1';
55
+	$this->serviceName = 'reseller';
56 56
 
57
-    $this->customers = new Google_Service_Reseller_Customers_Resource(
58
-        $this,
59
-        $this->serviceName,
60
-        'customers',
61
-        array(
62
-          'methods' => array(
63
-            'get' => array(
64
-              'path' => 'customers/{customerId}',
65
-              'httpMethod' => 'GET',
66
-              'parameters' => array(
67
-                'customerId' => array(
68
-                  'location' => 'path',
69
-                  'type' => 'string',
70
-                  'required' => true,
71
-                ),
72
-              ),
73
-            ),'insert' => array(
74
-              'path' => 'customers',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(
77
-                'customerAuthToken' => array(
78
-                  'location' => 'query',
79
-                  'type' => 'string',
80
-                ),
81
-              ),
82
-            ),'patch' => array(
83
-              'path' => 'customers/{customerId}',
84
-              'httpMethod' => 'PATCH',
85
-              'parameters' => array(
86
-                'customerId' => array(
87
-                  'location' => 'path',
88
-                  'type' => 'string',
89
-                  'required' => true,
90
-                ),
91
-              ),
92
-            ),'update' => array(
93
-              'path' => 'customers/{customerId}',
94
-              'httpMethod' => 'PUT',
95
-              'parameters' => array(
96
-                'customerId' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-              ),
102
-            ),
103
-          )
104
-        )
105
-    );
106
-    $this->subscriptions = new Google_Service_Reseller_Subscriptions_Resource(
107
-        $this,
108
-        $this->serviceName,
109
-        'subscriptions',
110
-        array(
111
-          'methods' => array(
112
-            'activate' => array(
113
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/activate',
114
-              'httpMethod' => 'POST',
115
-              'parameters' => array(
116
-                'customerId' => array(
117
-                  'location' => 'path',
118
-                  'type' => 'string',
119
-                  'required' => true,
120
-                ),
121
-                'subscriptionId' => array(
122
-                  'location' => 'path',
123
-                  'type' => 'string',
124
-                  'required' => true,
125
-                ),
126
-              ),
127
-            ),'changePlan' => array(
128
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changePlan',
129
-              'httpMethod' => 'POST',
130
-              'parameters' => array(
131
-                'customerId' => array(
132
-                  'location' => 'path',
133
-                  'type' => 'string',
134
-                  'required' => true,
135
-                ),
136
-                'subscriptionId' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-              ),
142
-            ),'changeRenewalSettings' => array(
143
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeRenewalSettings',
144
-              'httpMethod' => 'POST',
145
-              'parameters' => array(
146
-                'customerId' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'subscriptionId' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-              ),
157
-            ),'changeSeats' => array(
158
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeSeats',
159
-              'httpMethod' => 'POST',
160
-              'parameters' => array(
161
-                'customerId' => array(
162
-                  'location' => 'path',
163
-                  'type' => 'string',
164
-                  'required' => true,
165
-                ),
166
-                'subscriptionId' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-              ),
172
-            ),'delete' => array(
173
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
174
-              'httpMethod' => 'DELETE',
175
-              'parameters' => array(
176
-                'customerId' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-                'subscriptionId' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-                'deletionType' => array(
187
-                  'location' => 'query',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-              ),
192
-            ),'get' => array(
193
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
194
-              'httpMethod' => 'GET',
195
-              'parameters' => array(
196
-                'customerId' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-                'subscriptionId' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-              ),
207
-            ),'insert' => array(
208
-              'path' => 'customers/{customerId}/subscriptions',
209
-              'httpMethod' => 'POST',
210
-              'parameters' => array(
211
-                'customerId' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-                'customerAuthToken' => array(
217
-                  'location' => 'query',
218
-                  'type' => 'string',
219
-                ),
220
-              ),
221
-            ),'list' => array(
222
-              'path' => 'subscriptions',
223
-              'httpMethod' => 'GET',
224
-              'parameters' => array(
225
-                'customerAuthToken' => array(
226
-                  'location' => 'query',
227
-                  'type' => 'string',
228
-                ),
229
-                'pageToken' => array(
230
-                  'location' => 'query',
231
-                  'type' => 'string',
232
-                ),
233
-                'customerId' => array(
234
-                  'location' => 'query',
235
-                  'type' => 'string',
236
-                ),
237
-                'maxResults' => array(
238
-                  'location' => 'query',
239
-                  'type' => 'integer',
240
-                ),
241
-                'customerNamePrefix' => array(
242
-                  'location' => 'query',
243
-                  'type' => 'string',
244
-                ),
245
-              ),
246
-            ),'startPaidService' => array(
247
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/startPaidService',
248
-              'httpMethod' => 'POST',
249
-              'parameters' => array(
250
-                'customerId' => array(
251
-                  'location' => 'path',
252
-                  'type' => 'string',
253
-                  'required' => true,
254
-                ),
255
-                'subscriptionId' => array(
256
-                  'location' => 'path',
257
-                  'type' => 'string',
258
-                  'required' => true,
259
-                ),
260
-              ),
261
-            ),'suspend' => array(
262
-              'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/suspend',
263
-              'httpMethod' => 'POST',
264
-              'parameters' => array(
265
-                'customerId' => array(
266
-                  'location' => 'path',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-                'subscriptionId' => array(
271
-                  'location' => 'path',
272
-                  'type' => 'string',
273
-                  'required' => true,
274
-                ),
275
-              ),
276
-            ),
277
-          )
278
-        )
279
-    );
57
+	$this->customers = new Google_Service_Reseller_Customers_Resource(
58
+		$this,
59
+		$this->serviceName,
60
+		'customers',
61
+		array(
62
+		  'methods' => array(
63
+			'get' => array(
64
+			  'path' => 'customers/{customerId}',
65
+			  'httpMethod' => 'GET',
66
+			  'parameters' => array(
67
+				'customerId' => array(
68
+				  'location' => 'path',
69
+				  'type' => 'string',
70
+				  'required' => true,
71
+				),
72
+			  ),
73
+			),'insert' => array(
74
+			  'path' => 'customers',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(
77
+				'customerAuthToken' => array(
78
+				  'location' => 'query',
79
+				  'type' => 'string',
80
+				),
81
+			  ),
82
+			),'patch' => array(
83
+			  'path' => 'customers/{customerId}',
84
+			  'httpMethod' => 'PATCH',
85
+			  'parameters' => array(
86
+				'customerId' => array(
87
+				  'location' => 'path',
88
+				  'type' => 'string',
89
+				  'required' => true,
90
+				),
91
+			  ),
92
+			),'update' => array(
93
+			  'path' => 'customers/{customerId}',
94
+			  'httpMethod' => 'PUT',
95
+			  'parameters' => array(
96
+				'customerId' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+			  ),
102
+			),
103
+		  )
104
+		)
105
+	);
106
+	$this->subscriptions = new Google_Service_Reseller_Subscriptions_Resource(
107
+		$this,
108
+		$this->serviceName,
109
+		'subscriptions',
110
+		array(
111
+		  'methods' => array(
112
+			'activate' => array(
113
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/activate',
114
+			  'httpMethod' => 'POST',
115
+			  'parameters' => array(
116
+				'customerId' => array(
117
+				  'location' => 'path',
118
+				  'type' => 'string',
119
+				  'required' => true,
120
+				),
121
+				'subscriptionId' => array(
122
+				  'location' => 'path',
123
+				  'type' => 'string',
124
+				  'required' => true,
125
+				),
126
+			  ),
127
+			),'changePlan' => array(
128
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changePlan',
129
+			  'httpMethod' => 'POST',
130
+			  'parameters' => array(
131
+				'customerId' => array(
132
+				  'location' => 'path',
133
+				  'type' => 'string',
134
+				  'required' => true,
135
+				),
136
+				'subscriptionId' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+			  ),
142
+			),'changeRenewalSettings' => array(
143
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeRenewalSettings',
144
+			  'httpMethod' => 'POST',
145
+			  'parameters' => array(
146
+				'customerId' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'subscriptionId' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+			  ),
157
+			),'changeSeats' => array(
158
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeSeats',
159
+			  'httpMethod' => 'POST',
160
+			  'parameters' => array(
161
+				'customerId' => array(
162
+				  'location' => 'path',
163
+				  'type' => 'string',
164
+				  'required' => true,
165
+				),
166
+				'subscriptionId' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+			  ),
172
+			),'delete' => array(
173
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
174
+			  'httpMethod' => 'DELETE',
175
+			  'parameters' => array(
176
+				'customerId' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+				'subscriptionId' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+				'deletionType' => array(
187
+				  'location' => 'query',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+			  ),
192
+			),'get' => array(
193
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
194
+			  'httpMethod' => 'GET',
195
+			  'parameters' => array(
196
+				'customerId' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+				'subscriptionId' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+			  ),
207
+			),'insert' => array(
208
+			  'path' => 'customers/{customerId}/subscriptions',
209
+			  'httpMethod' => 'POST',
210
+			  'parameters' => array(
211
+				'customerId' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+				'customerAuthToken' => array(
217
+				  'location' => 'query',
218
+				  'type' => 'string',
219
+				),
220
+			  ),
221
+			),'list' => array(
222
+			  'path' => 'subscriptions',
223
+			  'httpMethod' => 'GET',
224
+			  'parameters' => array(
225
+				'customerAuthToken' => array(
226
+				  'location' => 'query',
227
+				  'type' => 'string',
228
+				),
229
+				'pageToken' => array(
230
+				  'location' => 'query',
231
+				  'type' => 'string',
232
+				),
233
+				'customerId' => array(
234
+				  'location' => 'query',
235
+				  'type' => 'string',
236
+				),
237
+				'maxResults' => array(
238
+				  'location' => 'query',
239
+				  'type' => 'integer',
240
+				),
241
+				'customerNamePrefix' => array(
242
+				  'location' => 'query',
243
+				  'type' => 'string',
244
+				),
245
+			  ),
246
+			),'startPaidService' => array(
247
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/startPaidService',
248
+			  'httpMethod' => 'POST',
249
+			  'parameters' => array(
250
+				'customerId' => array(
251
+				  'location' => 'path',
252
+				  'type' => 'string',
253
+				  'required' => true,
254
+				),
255
+				'subscriptionId' => array(
256
+				  'location' => 'path',
257
+				  'type' => 'string',
258
+				  'required' => true,
259
+				),
260
+			  ),
261
+			),'suspend' => array(
262
+			  'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/suspend',
263
+			  'httpMethod' => 'POST',
264
+			  'parameters' => array(
265
+				'customerId' => array(
266
+				  'location' => 'path',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+				'subscriptionId' => array(
271
+				  'location' => 'path',
272
+				  'type' => 'string',
273
+				  'required' => true,
274
+				),
275
+			  ),
276
+			),
277
+		  )
278
+		)
279
+	);
280 280
   }
281 281
 }
282 282
 
@@ -302,9 +302,9 @@  discard block
 block discarded – undo
302 302
    */
303 303
   public function get($customerId, $optParams = array())
304 304
   {
305
-    $params = array('customerId' => $customerId);
306
-    $params = array_merge($params, $optParams);
307
-    return $this->call('get', array($params), "Google_Service_Reseller_Customer");
305
+	$params = array('customerId' => $customerId);
306
+	$params = array_merge($params, $optParams);
307
+	return $this->call('get', array($params), "Google_Service_Reseller_Customer");
308 308
   }
309 309
 
310 310
   /**
@@ -320,9 +320,9 @@  discard block
 block discarded – undo
320 320
    */
321 321
   public function insert(Google_Service_Reseller_Customer $postBody, $optParams = array())
322 322
   {
323
-    $params = array('postBody' => $postBody);
324
-    $params = array_merge($params, $optParams);
325
-    return $this->call('insert', array($params), "Google_Service_Reseller_Customer");
323
+	$params = array('postBody' => $postBody);
324
+	$params = array_merge($params, $optParams);
325
+	return $this->call('insert', array($params), "Google_Service_Reseller_Customer");
326 326
   }
327 327
 
328 328
   /**
@@ -336,9 +336,9 @@  discard block
 block discarded – undo
336 336
    */
337 337
   public function patch($customerId, Google_Service_Reseller_Customer $postBody, $optParams = array())
338 338
   {
339
-    $params = array('customerId' => $customerId, 'postBody' => $postBody);
340
-    $params = array_merge($params, $optParams);
341
-    return $this->call('patch', array($params), "Google_Service_Reseller_Customer");
339
+	$params = array('customerId' => $customerId, 'postBody' => $postBody);
340
+	$params = array_merge($params, $optParams);
341
+	return $this->call('patch', array($params), "Google_Service_Reseller_Customer");
342 342
   }
343 343
 
344 344
   /**
@@ -352,9 +352,9 @@  discard block
 block discarded – undo
352 352
    */
353 353
   public function update($customerId, Google_Service_Reseller_Customer $postBody, $optParams = array())
354 354
   {
355
-    $params = array('customerId' => $customerId, 'postBody' => $postBody);
356
-    $params = array_merge($params, $optParams);
357
-    return $this->call('update', array($params), "Google_Service_Reseller_Customer");
355
+	$params = array('customerId' => $customerId, 'postBody' => $postBody);
356
+	$params = array_merge($params, $optParams);
357
+	return $this->call('update', array($params), "Google_Service_Reseller_Customer");
358 358
   }
359 359
 }
360 360
 
@@ -381,9 +381,9 @@  discard block
 block discarded – undo
381 381
    */
382 382
   public function activate($customerId, $subscriptionId, $optParams = array())
383 383
   {
384
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
385
-    $params = array_merge($params, $optParams);
386
-    return $this->call('activate', array($params), "Google_Service_Reseller_Subscription");
384
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
385
+	$params = array_merge($params, $optParams);
386
+	return $this->call('activate', array($params), "Google_Service_Reseller_Subscription");
387 387
   }
388 388
 
389 389
   /**
@@ -398,9 +398,9 @@  discard block
 block discarded – undo
398 398
    */
399 399
   public function changePlan($customerId, $subscriptionId, Google_Service_Reseller_ChangePlanRequest $postBody, $optParams = array())
400 400
   {
401
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
402
-    $params = array_merge($params, $optParams);
403
-    return $this->call('changePlan', array($params), "Google_Service_Reseller_Subscription");
401
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
402
+	$params = array_merge($params, $optParams);
403
+	return $this->call('changePlan', array($params), "Google_Service_Reseller_Subscription");
404 404
   }
405 405
 
406 406
   /**
@@ -416,9 +416,9 @@  discard block
 block discarded – undo
416 416
    */
417 417
   public function changeRenewalSettings($customerId, $subscriptionId, Google_Service_Reseller_RenewalSettings $postBody, $optParams = array())
418 418
   {
419
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
420
-    $params = array_merge($params, $optParams);
421
-    return $this->call('changeRenewalSettings', array($params), "Google_Service_Reseller_Subscription");
419
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
420
+	$params = array_merge($params, $optParams);
421
+	return $this->call('changeRenewalSettings', array($params), "Google_Service_Reseller_Subscription");
422 422
   }
423 423
 
424 424
   /**
@@ -433,9 +433,9 @@  discard block
 block discarded – undo
433 433
    */
434 434
   public function changeSeats($customerId, $subscriptionId, Google_Service_Reseller_Seats $postBody, $optParams = array())
435 435
   {
436
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
437
-    $params = array_merge($params, $optParams);
438
-    return $this->call('changeSeats', array($params), "Google_Service_Reseller_Subscription");
436
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'postBody' => $postBody);
437
+	$params = array_merge($params, $optParams);
438
+	return $this->call('changeSeats', array($params), "Google_Service_Reseller_Subscription");
439 439
   }
440 440
 
441 441
   /**
@@ -450,9 +450,9 @@  discard block
 block discarded – undo
450 450
    */
451 451
   public function delete($customerId, $subscriptionId, $deletionType, $optParams = array())
452 452
   {
453
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'deletionType' => $deletionType);
454
-    $params = array_merge($params, $optParams);
455
-    return $this->call('delete', array($params));
453
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId, 'deletionType' => $deletionType);
454
+	$params = array_merge($params, $optParams);
455
+	return $this->call('delete', array($params));
456 456
   }
457 457
 
458 458
   /**
@@ -466,9 +466,9 @@  discard block
 block discarded – undo
466 466
    */
467 467
   public function get($customerId, $subscriptionId, $optParams = array())
468 468
   {
469
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
470
-    $params = array_merge($params, $optParams);
471
-    return $this->call('get', array($params), "Google_Service_Reseller_Subscription");
469
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
470
+	$params = array_merge($params, $optParams);
471
+	return $this->call('get', array($params), "Google_Service_Reseller_Subscription");
472 472
   }
473 473
 
474 474
   /**
@@ -485,9 +485,9 @@  discard block
 block discarded – undo
485 485
    */
486 486
   public function insert($customerId, Google_Service_Reseller_Subscription $postBody, $optParams = array())
487 487
   {
488
-    $params = array('customerId' => $customerId, 'postBody' => $postBody);
489
-    $params = array_merge($params, $optParams);
490
-    return $this->call('insert', array($params), "Google_Service_Reseller_Subscription");
488
+	$params = array('customerId' => $customerId, 'postBody' => $postBody);
489
+	$params = array_merge($params, $optParams);
490
+	return $this->call('insert', array($params), "Google_Service_Reseller_Subscription");
491 491
   }
492 492
 
493 493
   /**
@@ -508,9 +508,9 @@  discard block
 block discarded – undo
508 508
    */
509 509
   public function listSubscriptions($optParams = array())
510 510
   {
511
-    $params = array();
512
-    $params = array_merge($params, $optParams);
513
-    return $this->call('list', array($params), "Google_Service_Reseller_Subscriptions");
511
+	$params = array();
512
+	$params = array_merge($params, $optParams);
513
+	return $this->call('list', array($params), "Google_Service_Reseller_Subscriptions");
514 514
   }
515 515
 
516 516
   /**
@@ -524,9 +524,9 @@  discard block
 block discarded – undo
524 524
    */
525 525
   public function startPaidService($customerId, $subscriptionId, $optParams = array())
526 526
   {
527
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
528
-    $params = array_merge($params, $optParams);
529
-    return $this->call('startPaidService', array($params), "Google_Service_Reseller_Subscription");
527
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
528
+	$params = array_merge($params, $optParams);
529
+	return $this->call('startPaidService', array($params), "Google_Service_Reseller_Subscription");
530 530
   }
531 531
 
532 532
   /**
@@ -540,9 +540,9 @@  discard block
 block discarded – undo
540 540
    */
541 541
   public function suspend($customerId, $subscriptionId, $optParams = array())
542 542
   {
543
-    $params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
544
-    $params = array_merge($params, $optParams);
545
-    return $this->call('suspend', array($params), "Google_Service_Reseller_Subscription");
543
+	$params = array('customerId' => $customerId, 'subscriptionId' => $subscriptionId);
544
+	$params = array_merge($params, $optParams);
545
+	return $this->call('suspend', array($params), "Google_Service_Reseller_Subscription");
546 546
   }
547 547
 }
548 548
 
@@ -567,83 +567,83 @@  discard block
 block discarded – undo
567 567
 
568 568
   public function setAddressLine1($addressLine1)
569 569
   {
570
-    $this->addressLine1 = $addressLine1;
570
+	$this->addressLine1 = $addressLine1;
571 571
   }
572 572
   public function getAddressLine1()
573 573
   {
574
-    return $this->addressLine1;
574
+	return $this->addressLine1;
575 575
   }
576 576
   public function setAddressLine2($addressLine2)
577 577
   {
578
-    $this->addressLine2 = $addressLine2;
578
+	$this->addressLine2 = $addressLine2;
579 579
   }
580 580
   public function getAddressLine2()
581 581
   {
582
-    return $this->addressLine2;
582
+	return $this->addressLine2;
583 583
   }
584 584
   public function setAddressLine3($addressLine3)
585 585
   {
586
-    $this->addressLine3 = $addressLine3;
586
+	$this->addressLine3 = $addressLine3;
587 587
   }
588 588
   public function getAddressLine3()
589 589
   {
590
-    return $this->addressLine3;
590
+	return $this->addressLine3;
591 591
   }
592 592
   public function setContactName($contactName)
593 593
   {
594
-    $this->contactName = $contactName;
594
+	$this->contactName = $contactName;
595 595
   }
596 596
   public function getContactName()
597 597
   {
598
-    return $this->contactName;
598
+	return $this->contactName;
599 599
   }
600 600
   public function setCountryCode($countryCode)
601 601
   {
602
-    $this->countryCode = $countryCode;
602
+	$this->countryCode = $countryCode;
603 603
   }
604 604
   public function getCountryCode()
605 605
   {
606
-    return $this->countryCode;
606
+	return $this->countryCode;
607 607
   }
608 608
   public function setKind($kind)
609 609
   {
610
-    $this->kind = $kind;
610
+	$this->kind = $kind;
611 611
   }
612 612
   public function getKind()
613 613
   {
614
-    return $this->kind;
614
+	return $this->kind;
615 615
   }
616 616
   public function setLocality($locality)
617 617
   {
618
-    $this->locality = $locality;
618
+	$this->locality = $locality;
619 619
   }
620 620
   public function getLocality()
621 621
   {
622
-    return $this->locality;
622
+	return $this->locality;
623 623
   }
624 624
   public function setOrganizationName($organizationName)
625 625
   {
626
-    $this->organizationName = $organizationName;
626
+	$this->organizationName = $organizationName;
627 627
   }
628 628
   public function getOrganizationName()
629 629
   {
630
-    return $this->organizationName;
630
+	return $this->organizationName;
631 631
   }
632 632
   public function setPostalCode($postalCode)
633 633
   {
634
-    $this->postalCode = $postalCode;
634
+	$this->postalCode = $postalCode;
635 635
   }
636 636
   public function getPostalCode()
637 637
   {
638
-    return $this->postalCode;
638
+	return $this->postalCode;
639 639
   }
640 640
   public function setRegion($region)
641 641
   {
642
-    $this->region = $region;
642
+	$this->region = $region;
643 643
   }
644 644
   public function getRegion()
645 645
   {
646
-    return $this->region;
646
+	return $this->region;
647 647
   }
648 648
 }
649 649
 
@@ -660,35 +660,35 @@  discard block
 block discarded – undo
660 660
 
661 661
   public function setKind($kind)
662 662
   {
663
-    $this->kind = $kind;
663
+	$this->kind = $kind;
664 664
   }
665 665
   public function getKind()
666 666
   {
667
-    return $this->kind;
667
+	return $this->kind;
668 668
   }
669 669
   public function setPlanName($planName)
670 670
   {
671
-    $this->planName = $planName;
671
+	$this->planName = $planName;
672 672
   }
673 673
   public function getPlanName()
674 674
   {
675
-    return $this->planName;
675
+	return $this->planName;
676 676
   }
677 677
   public function setPurchaseOrderId($purchaseOrderId)
678 678
   {
679
-    $this->purchaseOrderId = $purchaseOrderId;
679
+	$this->purchaseOrderId = $purchaseOrderId;
680 680
   }
681 681
   public function getPurchaseOrderId()
682 682
   {
683
-    return $this->purchaseOrderId;
683
+	return $this->purchaseOrderId;
684 684
   }
685 685
   public function setSeats(Google_Service_Reseller_Seats $seats)
686 686
   {
687
-    $this->seats = $seats;
687
+	$this->seats = $seats;
688 688
   }
689 689
   public function getSeats()
690 690
   {
691
-    return $this->seats;
691
+	return $this->seats;
692 692
   }
693 693
 }
694 694
 
@@ -708,59 +708,59 @@  discard block
 block discarded – undo
708 708
 
709 709
   public function setAlternateEmail($alternateEmail)
710 710
   {
711
-    $this->alternateEmail = $alternateEmail;
711
+	$this->alternateEmail = $alternateEmail;
712 712
   }
713 713
   public function getAlternateEmail()
714 714
   {
715
-    return $this->alternateEmail;
715
+	return $this->alternateEmail;
716 716
   }
717 717
   public function setCustomerDomain($customerDomain)
718 718
   {
719
-    $this->customerDomain = $customerDomain;
719
+	$this->customerDomain = $customerDomain;
720 720
   }
721 721
   public function getCustomerDomain()
722 722
   {
723
-    return $this->customerDomain;
723
+	return $this->customerDomain;
724 724
   }
725 725
   public function setCustomerId($customerId)
726 726
   {
727
-    $this->customerId = $customerId;
727
+	$this->customerId = $customerId;
728 728
   }
729 729
   public function getCustomerId()
730 730
   {
731
-    return $this->customerId;
731
+	return $this->customerId;
732 732
   }
733 733
   public function setKind($kind)
734 734
   {
735
-    $this->kind = $kind;
735
+	$this->kind = $kind;
736 736
   }
737 737
   public function getKind()
738 738
   {
739
-    return $this->kind;
739
+	return $this->kind;
740 740
   }
741 741
   public function setPhoneNumber($phoneNumber)
742 742
   {
743
-    $this->phoneNumber = $phoneNumber;
743
+	$this->phoneNumber = $phoneNumber;
744 744
   }
745 745
   public function getPhoneNumber()
746 746
   {
747
-    return $this->phoneNumber;
747
+	return $this->phoneNumber;
748 748
   }
749 749
   public function setPostalAddress(Google_Service_Reseller_Address $postalAddress)
750 750
   {
751
-    $this->postalAddress = $postalAddress;
751
+	$this->postalAddress = $postalAddress;
752 752
   }
753 753
   public function getPostalAddress()
754 754
   {
755
-    return $this->postalAddress;
755
+	return $this->postalAddress;
756 756
   }
757 757
   public function setResourceUiUrl($resourceUiUrl)
758 758
   {
759
-    $this->resourceUiUrl = $resourceUiUrl;
759
+	$this->resourceUiUrl = $resourceUiUrl;
760 760
   }
761 761
   public function getResourceUiUrl()
762 762
   {
763
-    return $this->resourceUiUrl;
763
+	return $this->resourceUiUrl;
764 764
   }
765 765
 }
766 766
 
@@ -774,19 +774,19 @@  discard block
 block discarded – undo
774 774
 
775 775
   public function setKind($kind)
776 776
   {
777
-    $this->kind = $kind;
777
+	$this->kind = $kind;
778 778
   }
779 779
   public function getKind()
780 780
   {
781
-    return $this->kind;
781
+	return $this->kind;
782 782
   }
783 783
   public function setRenewalType($renewalType)
784 784
   {
785
-    $this->renewalType = $renewalType;
785
+	$this->renewalType = $renewalType;
786 786
   }
787 787
   public function getRenewalType()
788 788
   {
789
-    return $this->renewalType;
789
+	return $this->renewalType;
790 790
   }
791 791
 }
792 792
 
@@ -802,35 +802,35 @@  discard block
 block discarded – undo
802 802
 
803 803
   public function setKind($kind)
804 804
   {
805
-    $this->kind = $kind;
805
+	$this->kind = $kind;
806 806
   }
807 807
   public function getKind()
808 808
   {
809
-    return $this->kind;
809
+	return $this->kind;
810 810
   }
811 811
   public function setLicensedNumberOfSeats($licensedNumberOfSeats)
812 812
   {
813
-    $this->licensedNumberOfSeats = $licensedNumberOfSeats;
813
+	$this->licensedNumberOfSeats = $licensedNumberOfSeats;
814 814
   }
815 815
   public function getLicensedNumberOfSeats()
816 816
   {
817
-    return $this->licensedNumberOfSeats;
817
+	return $this->licensedNumberOfSeats;
818 818
   }
819 819
   public function setMaximumNumberOfSeats($maximumNumberOfSeats)
820 820
   {
821
-    $this->maximumNumberOfSeats = $maximumNumberOfSeats;
821
+	$this->maximumNumberOfSeats = $maximumNumberOfSeats;
822 822
   }
823 823
   public function getMaximumNumberOfSeats()
824 824
   {
825
-    return $this->maximumNumberOfSeats;
825
+	return $this->maximumNumberOfSeats;
826 826
   }
827 827
   public function setNumberOfSeats($numberOfSeats)
828 828
   {
829
-    $this->numberOfSeats = $numberOfSeats;
829
+	$this->numberOfSeats = $numberOfSeats;
830 830
   }
831 831
   public function getNumberOfSeats()
832 832
   {
833
-    return $this->numberOfSeats;
833
+	return $this->numberOfSeats;
834 834
   }
835 835
 }
836 836
 
@@ -863,123 +863,123 @@  discard block
 block discarded – undo
863 863
 
864 864
   public function setBillingMethod($billingMethod)
865 865
   {
866
-    $this->billingMethod = $billingMethod;
866
+	$this->billingMethod = $billingMethod;
867 867
   }
868 868
   public function getBillingMethod()
869 869
   {
870
-    return $this->billingMethod;
870
+	return $this->billingMethod;
871 871
   }
872 872
   public function setCreationTime($creationTime)
873 873
   {
874
-    $this->creationTime = $creationTime;
874
+	$this->creationTime = $creationTime;
875 875
   }
876 876
   public function getCreationTime()
877 877
   {
878
-    return $this->creationTime;
878
+	return $this->creationTime;
879 879
   }
880 880
   public function setCustomerId($customerId)
881 881
   {
882
-    $this->customerId = $customerId;
882
+	$this->customerId = $customerId;
883 883
   }
884 884
   public function getCustomerId()
885 885
   {
886
-    return $this->customerId;
886
+	return $this->customerId;
887 887
   }
888 888
   public function setKind($kind)
889 889
   {
890
-    $this->kind = $kind;
890
+	$this->kind = $kind;
891 891
   }
892 892
   public function getKind()
893 893
   {
894
-    return $this->kind;
894
+	return $this->kind;
895 895
   }
896 896
   public function setPlan(Google_Service_Reseller_SubscriptionPlan $plan)
897 897
   {
898
-    $this->plan = $plan;
898
+	$this->plan = $plan;
899 899
   }
900 900
   public function getPlan()
901 901
   {
902
-    return $this->plan;
902
+	return $this->plan;
903 903
   }
904 904
   public function setPurchaseOrderId($purchaseOrderId)
905 905
   {
906
-    $this->purchaseOrderId = $purchaseOrderId;
906
+	$this->purchaseOrderId = $purchaseOrderId;
907 907
   }
908 908
   public function getPurchaseOrderId()
909 909
   {
910
-    return $this->purchaseOrderId;
910
+	return $this->purchaseOrderId;
911 911
   }
912 912
   public function setRenewalSettings(Google_Service_Reseller_RenewalSettings $renewalSettings)
913 913
   {
914
-    $this->renewalSettings = $renewalSettings;
914
+	$this->renewalSettings = $renewalSettings;
915 915
   }
916 916
   public function getRenewalSettings()
917 917
   {
918
-    return $this->renewalSettings;
918
+	return $this->renewalSettings;
919 919
   }
920 920
   public function setResourceUiUrl($resourceUiUrl)
921 921
   {
922
-    $this->resourceUiUrl = $resourceUiUrl;
922
+	$this->resourceUiUrl = $resourceUiUrl;
923 923
   }
924 924
   public function getResourceUiUrl()
925 925
   {
926
-    return $this->resourceUiUrl;
926
+	return $this->resourceUiUrl;
927 927
   }
928 928
   public function setSeats(Google_Service_Reseller_Seats $seats)
929 929
   {
930
-    $this->seats = $seats;
930
+	$this->seats = $seats;
931 931
   }
932 932
   public function getSeats()
933 933
   {
934
-    return $this->seats;
934
+	return $this->seats;
935 935
   }
936 936
   public function setSkuId($skuId)
937 937
   {
938
-    $this->skuId = $skuId;
938
+	$this->skuId = $skuId;
939 939
   }
940 940
   public function getSkuId()
941 941
   {
942
-    return $this->skuId;
942
+	return $this->skuId;
943 943
   }
944 944
   public function setStatus($status)
945 945
   {
946
-    $this->status = $status;
946
+	$this->status = $status;
947 947
   }
948 948
   public function getStatus()
949 949
   {
950
-    return $this->status;
950
+	return $this->status;
951 951
   }
952 952
   public function setSubscriptionId($subscriptionId)
953 953
   {
954
-    $this->subscriptionId = $subscriptionId;
954
+	$this->subscriptionId = $subscriptionId;
955 955
   }
956 956
   public function getSubscriptionId()
957 957
   {
958
-    return $this->subscriptionId;
958
+	return $this->subscriptionId;
959 959
   }
960 960
   public function setSuspensionReasons($suspensionReasons)
961 961
   {
962
-    $this->suspensionReasons = $suspensionReasons;
962
+	$this->suspensionReasons = $suspensionReasons;
963 963
   }
964 964
   public function getSuspensionReasons()
965 965
   {
966
-    return $this->suspensionReasons;
966
+	return $this->suspensionReasons;
967 967
   }
968 968
   public function setTransferInfo(Google_Service_Reseller_SubscriptionTransferInfo $transferInfo)
969 969
   {
970
-    $this->transferInfo = $transferInfo;
970
+	$this->transferInfo = $transferInfo;
971 971
   }
972 972
   public function getTransferInfo()
973 973
   {
974
-    return $this->transferInfo;
974
+	return $this->transferInfo;
975 975
   }
976 976
   public function setTrialSettings(Google_Service_Reseller_SubscriptionTrialSettings $trialSettings)
977 977
   {
978
-    $this->trialSettings = $trialSettings;
978
+	$this->trialSettings = $trialSettings;
979 979
   }
980 980
   public function getTrialSettings()
981 981
   {
982
-    return $this->trialSettings;
982
+	return $this->trialSettings;
983 983
   }
984 984
 }
985 985
 
@@ -995,27 +995,27 @@  discard block
 block discarded – undo
995 995
 
996 996
   public function setCommitmentInterval(Google_Service_Reseller_SubscriptionPlanCommitmentInterval $commitmentInterval)
997 997
   {
998
-    $this->commitmentInterval = $commitmentInterval;
998
+	$this->commitmentInterval = $commitmentInterval;
999 999
   }
1000 1000
   public function getCommitmentInterval()
1001 1001
   {
1002
-    return $this->commitmentInterval;
1002
+	return $this->commitmentInterval;
1003 1003
   }
1004 1004
   public function setIsCommitmentPlan($isCommitmentPlan)
1005 1005
   {
1006
-    $this->isCommitmentPlan = $isCommitmentPlan;
1006
+	$this->isCommitmentPlan = $isCommitmentPlan;
1007 1007
   }
1008 1008
   public function getIsCommitmentPlan()
1009 1009
   {
1010
-    return $this->isCommitmentPlan;
1010
+	return $this->isCommitmentPlan;
1011 1011
   }
1012 1012
   public function setPlanName($planName)
1013 1013
   {
1014
-    $this->planName = $planName;
1014
+	$this->planName = $planName;
1015 1015
   }
1016 1016
   public function getPlanName()
1017 1017
   {
1018
-    return $this->planName;
1018
+	return $this->planName;
1019 1019
   }
1020 1020
 }
1021 1021
 
@@ -1029,19 +1029,19 @@  discard block
 block discarded – undo
1029 1029
 
1030 1030
   public function setEndTime($endTime)
1031 1031
   {
1032
-    $this->endTime = $endTime;
1032
+	$this->endTime = $endTime;
1033 1033
   }
1034 1034
   public function getEndTime()
1035 1035
   {
1036
-    return $this->endTime;
1036
+	return $this->endTime;
1037 1037
   }
1038 1038
   public function setStartTime($startTime)
1039 1039
   {
1040
-    $this->startTime = $startTime;
1040
+	$this->startTime = $startTime;
1041 1041
   }
1042 1042
   public function getStartTime()
1043 1043
   {
1044
-    return $this->startTime;
1044
+	return $this->startTime;
1045 1045
   }
1046 1046
 }
1047 1047
 
@@ -1055,19 +1055,19 @@  discard block
 block discarded – undo
1055 1055
 
1056 1056
   public function setMinimumTransferableSeats($minimumTransferableSeats)
1057 1057
   {
1058
-    $this->minimumTransferableSeats = $minimumTransferableSeats;
1058
+	$this->minimumTransferableSeats = $minimumTransferableSeats;
1059 1059
   }
1060 1060
   public function getMinimumTransferableSeats()
1061 1061
   {
1062
-    return $this->minimumTransferableSeats;
1062
+	return $this->minimumTransferableSeats;
1063 1063
   }
1064 1064
   public function setTransferabilityExpirationTime($transferabilityExpirationTime)
1065 1065
   {
1066
-    $this->transferabilityExpirationTime = $transferabilityExpirationTime;
1066
+	$this->transferabilityExpirationTime = $transferabilityExpirationTime;
1067 1067
   }
1068 1068
   public function getTransferabilityExpirationTime()
1069 1069
   {
1070
-    return $this->transferabilityExpirationTime;
1070
+	return $this->transferabilityExpirationTime;
1071 1071
   }
1072 1072
 }
1073 1073
 
@@ -1081,19 +1081,19 @@  discard block
 block discarded – undo
1081 1081
 
1082 1082
   public function setIsInTrial($isInTrial)
1083 1083
   {
1084
-    $this->isInTrial = $isInTrial;
1084
+	$this->isInTrial = $isInTrial;
1085 1085
   }
1086 1086
   public function getIsInTrial()
1087 1087
   {
1088
-    return $this->isInTrial;
1088
+	return $this->isInTrial;
1089 1089
   }
1090 1090
   public function setTrialEndTime($trialEndTime)
1091 1091
   {
1092
-    $this->trialEndTime = $trialEndTime;
1092
+	$this->trialEndTime = $trialEndTime;
1093 1093
   }
1094 1094
   public function getTrialEndTime()
1095 1095
   {
1096
-    return $this->trialEndTime;
1096
+	return $this->trialEndTime;
1097 1097
   }
1098 1098
 }
1099 1099
 
@@ -1110,26 +1110,26 @@  discard block
 block discarded – undo
1110 1110
 
1111 1111
   public function setKind($kind)
1112 1112
   {
1113
-    $this->kind = $kind;
1113
+	$this->kind = $kind;
1114 1114
   }
1115 1115
   public function getKind()
1116 1116
   {
1117
-    return $this->kind;
1117
+	return $this->kind;
1118 1118
   }
1119 1119
   public function setNextPageToken($nextPageToken)
1120 1120
   {
1121
-    $this->nextPageToken = $nextPageToken;
1121
+	$this->nextPageToken = $nextPageToken;
1122 1122
   }
1123 1123
   public function getNextPageToken()
1124 1124
   {
1125
-    return $this->nextPageToken;
1125
+	return $this->nextPageToken;
1126 1126
   }
1127 1127
   public function setSubscriptions($subscriptions)
1128 1128
   {
1129
-    $this->subscriptions = $subscriptions;
1129
+	$this->subscriptions = $subscriptions;
1130 1130
   }
1131 1131
   public function getSubscriptions()
1132 1132
   {
1133
-    return $this->subscriptions;
1133
+	return $this->subscriptions;
1134 1134
   }
1135 1135
 }
Please login to merge, or discard this patch.
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                   'required' => true,
71 71
                 ),
72 72
               ),
73
-            ),'insert' => array(
73
+            ), 'insert' => array(
74 74
               'path' => 'customers',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
                   'type' => 'string',
80 80
                 ),
81 81
               ),
82
-            ),'patch' => array(
82
+            ), 'patch' => array(
83 83
               'path' => 'customers/{customerId}',
84 84
               'httpMethod' => 'PATCH',
85 85
               'parameters' => array(
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
                   'required' => true,
90 90
                 ),
91 91
               ),
92
-            ),'update' => array(
92
+            ), 'update' => array(
93 93
               'path' => 'customers/{customerId}',
94 94
               'httpMethod' => 'PUT',
95 95
               'parameters' => array(
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
                   'required' => true,
125 125
                 ),
126 126
               ),
127
-            ),'changePlan' => array(
127
+            ), 'changePlan' => array(
128 128
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changePlan',
129 129
               'httpMethod' => 'POST',
130 130
               'parameters' => array(
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                   'required' => true,
140 140
                 ),
141 141
               ),
142
-            ),'changeRenewalSettings' => array(
142
+            ), 'changeRenewalSettings' => array(
143 143
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeRenewalSettings',
144 144
               'httpMethod' => 'POST',
145 145
               'parameters' => array(
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                   'required' => true,
155 155
                 ),
156 156
               ),
157
-            ),'changeSeats' => array(
157
+            ), 'changeSeats' => array(
158 158
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/changeSeats',
159 159
               'httpMethod' => 'POST',
160 160
               'parameters' => array(
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                   'required' => true,
170 170
                 ),
171 171
               ),
172
-            ),'delete' => array(
172
+            ), 'delete' => array(
173 173
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
174 174
               'httpMethod' => 'DELETE',
175 175
               'parameters' => array(
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                   'required' => true,
190 190
                 ),
191 191
               ),
192
-            ),'get' => array(
192
+            ), 'get' => array(
193 193
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}',
194 194
               'httpMethod' => 'GET',
195 195
               'parameters' => array(
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
                   'required' => true,
205 205
                 ),
206 206
               ),
207
-            ),'insert' => array(
207
+            ), 'insert' => array(
208 208
               'path' => 'customers/{customerId}/subscriptions',
209 209
               'httpMethod' => 'POST',
210 210
               'parameters' => array(
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
                   'type' => 'string',
219 219
                 ),
220 220
               ),
221
-            ),'list' => array(
221
+            ), 'list' => array(
222 222
               'path' => 'subscriptions',
223 223
               'httpMethod' => 'GET',
224 224
               'parameters' => array(
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
                   'type' => 'string',
244 244
                 ),
245 245
               ),
246
-            ),'startPaidService' => array(
246
+            ), 'startPaidService' => array(
247 247
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/startPaidService',
248 248
               'httpMethod' => 'POST',
249 249
               'parameters' => array(
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
                   'required' => true,
259 259
                 ),
260 260
               ),
261
-            ),'suspend' => array(
261
+            ), 'suspend' => array(
262 262
               'path' => 'customers/{customerId}/subscriptions/{subscriptionId}/suspend',
263 263
               'httpMethod' => 'POST',
264 264
               'parameters' => array(
Please login to merge, or discard this patch.