Test Setup Failed
Push — master ( 2261e5...599f56 )
by Stiofan
02:03
created
geodirectory-admin/google-api-php-client/src/Google/Service/AdSense.php 2 patches
Indentation   +1366 added lines, -1366 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your AdSense data. */
35 35
   const ADSENSE =
36
-      "https://www.googleapis.com/auth/adsense";
36
+	  "https://www.googleapis.com/auth/adsense";
37 37
   /** View your AdSense data. */
38 38
   const ADSENSE_READONLY =
39
-      "https://www.googleapis.com/auth/adsense.readonly";
39
+	  "https://www.googleapis.com/auth/adsense.readonly";
40 40
 
41 41
   public $accounts;
42 42
   public $accounts_adclients;
@@ -72,992 +72,992 @@  discard block
 block discarded – undo
72 72
    */
73 73
   public function __construct(Google_Client $client)
74 74
   {
75
-    parent::__construct($client);
76
-    $this->rootUrl = 'https://www.googleapis.com/';
77
-    $this->servicePath = 'adsense/v1.4/';
78
-    $this->version = 'v1.4';
79
-    $this->serviceName = 'adsense';
80
-
81
-    $this->accounts = new Google_Service_AdSense_Accounts_Resource(
82
-        $this,
83
-        $this->serviceName,
84
-        'accounts',
85
-        array(
86
-          'methods' => array(
87
-            'get' => array(
88
-              'path' => 'accounts/{accountId}',
89
-              'httpMethod' => 'GET',
90
-              'parameters' => array(
91
-                'accountId' => array(
92
-                  'location' => 'path',
93
-                  'type' => 'string',
94
-                  'required' => true,
95
-                ),
96
-                'tree' => array(
97
-                  'location' => 'query',
98
-                  'type' => 'boolean',
99
-                ),
100
-              ),
101
-            ),'list' => array(
102
-              'path' => 'accounts',
103
-              'httpMethod' => 'GET',
104
-              'parameters' => array(
105
-                'pageToken' => array(
106
-                  'location' => 'query',
107
-                  'type' => 'string',
108
-                ),
109
-                'maxResults' => array(
110
-                  'location' => 'query',
111
-                  'type' => 'integer',
112
-                ),
113
-              ),
114
-            ),
115
-          )
116
-        )
117
-    );
118
-    $this->accounts_adclients = new Google_Service_AdSense_AccountsAdclients_Resource(
119
-        $this,
120
-        $this->serviceName,
121
-        'adclients',
122
-        array(
123
-          'methods' => array(
124
-            'list' => array(
125
-              'path' => 'accounts/{accountId}/adclients',
126
-              'httpMethod' => 'GET',
127
-              'parameters' => array(
128
-                'accountId' => array(
129
-                  'location' => 'path',
130
-                  'type' => 'string',
131
-                  'required' => true,
132
-                ),
133
-                'pageToken' => array(
134
-                  'location' => 'query',
135
-                  'type' => 'string',
136
-                ),
137
-                'maxResults' => array(
138
-                  'location' => 'query',
139
-                  'type' => 'integer',
140
-                ),
141
-              ),
142
-            ),
143
-          )
144
-        )
145
-    );
146
-    $this->accounts_adunits = new Google_Service_AdSense_AccountsAdunits_Resource(
147
-        $this,
148
-        $this->serviceName,
149
-        'adunits',
150
-        array(
151
-          'methods' => array(
152
-            'get' => array(
153
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
154
-              'httpMethod' => 'GET',
155
-              'parameters' => array(
156
-                'accountId' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-                'adClientId' => array(
162
-                  'location' => 'path',
163
-                  'type' => 'string',
164
-                  'required' => true,
165
-                ),
166
-                'adUnitId' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-              ),
172
-            ),'getAdCode' => array(
173
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
174
-              'httpMethod' => 'GET',
175
-              'parameters' => array(
176
-                'accountId' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-                'adClientId' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-                'adUnitId' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-              ),
192
-            ),'list' => array(
193
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
194
-              'httpMethod' => 'GET',
195
-              'parameters' => array(
196
-                'accountId' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-                'adClientId' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-                'includeInactive' => array(
207
-                  'location' => 'query',
208
-                  'type' => 'boolean',
209
-                ),
210
-                'pageToken' => array(
211
-                  'location' => 'query',
212
-                  'type' => 'string',
213
-                ),
214
-                'maxResults' => array(
215
-                  'location' => 'query',
216
-                  'type' => 'integer',
217
-                ),
218
-              ),
219
-            ),
220
-          )
221
-        )
222
-    );
223
-    $this->accounts_adunits_customchannels = new Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource(
224
-        $this,
225
-        $this->serviceName,
226
-        'customchannels',
227
-        array(
228
-          'methods' => array(
229
-            'list' => array(
230
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/customchannels',
231
-              'httpMethod' => 'GET',
232
-              'parameters' => array(
233
-                'accountId' => array(
234
-                  'location' => 'path',
235
-                  'type' => 'string',
236
-                  'required' => true,
237
-                ),
238
-                'adClientId' => array(
239
-                  'location' => 'path',
240
-                  'type' => 'string',
241
-                  'required' => true,
242
-                ),
243
-                'adUnitId' => array(
244
-                  'location' => 'path',
245
-                  'type' => 'string',
246
-                  'required' => true,
247
-                ),
248
-                'pageToken' => array(
249
-                  'location' => 'query',
250
-                  'type' => 'string',
251
-                ),
252
-                'maxResults' => array(
253
-                  'location' => 'query',
254
-                  'type' => 'integer',
255
-                ),
256
-              ),
257
-            ),
258
-          )
259
-        )
260
-    );
261
-    $this->accounts_alerts = new Google_Service_AdSense_AccountsAlerts_Resource(
262
-        $this,
263
-        $this->serviceName,
264
-        'alerts',
265
-        array(
266
-          'methods' => array(
267
-            'delete' => array(
268
-              'path' => 'accounts/{accountId}/alerts/{alertId}',
269
-              'httpMethod' => 'DELETE',
270
-              'parameters' => array(
271
-                'accountId' => array(
272
-                  'location' => 'path',
273
-                  'type' => 'string',
274
-                  'required' => true,
275
-                ),
276
-                'alertId' => array(
277
-                  'location' => 'path',
278
-                  'type' => 'string',
279
-                  'required' => true,
280
-                ),
281
-              ),
282
-            ),'list' => array(
283
-              'path' => 'accounts/{accountId}/alerts',
284
-              'httpMethod' => 'GET',
285
-              'parameters' => array(
286
-                'accountId' => array(
287
-                  'location' => 'path',
288
-                  'type' => 'string',
289
-                  'required' => true,
290
-                ),
291
-                'locale' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'string',
294
-                ),
295
-              ),
296
-            ),
297
-          )
298
-        )
299
-    );
300
-    $this->accounts_customchannels = new Google_Service_AdSense_AccountsCustomchannels_Resource(
301
-        $this,
302
-        $this->serviceName,
303
-        'customchannels',
304
-        array(
305
-          'methods' => array(
306
-            'get' => array(
307
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}',
308
-              'httpMethod' => 'GET',
309
-              'parameters' => array(
310
-                'accountId' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-                'adClientId' => array(
316
-                  'location' => 'path',
317
-                  'type' => 'string',
318
-                  'required' => true,
319
-                ),
320
-                'customChannelId' => array(
321
-                  'location' => 'path',
322
-                  'type' => 'string',
323
-                  'required' => true,
324
-                ),
325
-              ),
326
-            ),'list' => array(
327
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels',
328
-              'httpMethod' => 'GET',
329
-              'parameters' => array(
330
-                'accountId' => array(
331
-                  'location' => 'path',
332
-                  'type' => 'string',
333
-                  'required' => true,
334
-                ),
335
-                'adClientId' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-                'pageToken' => array(
341
-                  'location' => 'query',
342
-                  'type' => 'string',
343
-                ),
344
-                'maxResults' => array(
345
-                  'location' => 'query',
346
-                  'type' => 'integer',
347
-                ),
348
-              ),
349
-            ),
350
-          )
351
-        )
352
-    );
353
-    $this->accounts_customchannels_adunits = new Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource(
354
-        $this,
355
-        $this->serviceName,
356
-        'adunits',
357
-        array(
358
-          'methods' => array(
359
-            'list' => array(
360
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}/adunits',
361
-              'httpMethod' => 'GET',
362
-              'parameters' => array(
363
-                'accountId' => array(
364
-                  'location' => 'path',
365
-                  'type' => 'string',
366
-                  'required' => true,
367
-                ),
368
-                'adClientId' => array(
369
-                  'location' => 'path',
370
-                  'type' => 'string',
371
-                  'required' => true,
372
-                ),
373
-                'customChannelId' => array(
374
-                  'location' => 'path',
375
-                  'type' => 'string',
376
-                  'required' => true,
377
-                ),
378
-                'includeInactive' => array(
379
-                  'location' => 'query',
380
-                  'type' => 'boolean',
381
-                ),
382
-                'maxResults' => array(
383
-                  'location' => 'query',
384
-                  'type' => 'integer',
385
-                ),
386
-                'pageToken' => array(
387
-                  'location' => 'query',
388
-                  'type' => 'string',
389
-                ),
390
-              ),
391
-            ),
392
-          )
393
-        )
394
-    );
395
-    $this->accounts_payments = new Google_Service_AdSense_AccountsPayments_Resource(
396
-        $this,
397
-        $this->serviceName,
398
-        'payments',
399
-        array(
400
-          'methods' => array(
401
-            'list' => array(
402
-              'path' => 'accounts/{accountId}/payments',
403
-              'httpMethod' => 'GET',
404
-              'parameters' => array(
405
-                'accountId' => array(
406
-                  'location' => 'path',
407
-                  'type' => 'string',
408
-                  'required' => true,
409
-                ),
410
-              ),
411
-            ),
412
-          )
413
-        )
414
-    );
415
-    $this->accounts_reports = new Google_Service_AdSense_AccountsReports_Resource(
416
-        $this,
417
-        $this->serviceName,
418
-        'reports',
419
-        array(
420
-          'methods' => array(
421
-            'generate' => array(
422
-              'path' => 'accounts/{accountId}/reports',
423
-              'httpMethod' => 'GET',
424
-              'parameters' => array(
425
-                'accountId' => array(
426
-                  'location' => 'path',
427
-                  'type' => 'string',
428
-                  'required' => true,
429
-                ),
430
-                'startDate' => array(
431
-                  'location' => 'query',
432
-                  'type' => 'string',
433
-                  'required' => true,
434
-                ),
435
-                'endDate' => array(
436
-                  'location' => 'query',
437
-                  'type' => 'string',
438
-                  'required' => true,
439
-                ),
440
-                'sort' => array(
441
-                  'location' => 'query',
442
-                  'type' => 'string',
443
-                  'repeated' => true,
444
-                ),
445
-                'locale' => array(
446
-                  'location' => 'query',
447
-                  'type' => 'string',
448
-                ),
449
-                'metric' => array(
450
-                  'location' => 'query',
451
-                  'type' => 'string',
452
-                  'repeated' => true,
453
-                ),
454
-                'maxResults' => array(
455
-                  'location' => 'query',
456
-                  'type' => 'integer',
457
-                ),
458
-                'filter' => array(
459
-                  'location' => 'query',
460
-                  'type' => 'string',
461
-                  'repeated' => true,
462
-                ),
463
-                'currency' => array(
464
-                  'location' => 'query',
465
-                  'type' => 'string',
466
-                ),
467
-                'startIndex' => array(
468
-                  'location' => 'query',
469
-                  'type' => 'integer',
470
-                ),
471
-                'useTimezoneReporting' => array(
472
-                  'location' => 'query',
473
-                  'type' => 'boolean',
474
-                ),
475
-                'dimension' => array(
476
-                  'location' => 'query',
477
-                  'type' => 'string',
478
-                  'repeated' => true,
479
-                ),
480
-              ),
481
-            ),
482
-          )
483
-        )
484
-    );
485
-    $this->accounts_reports_saved = new Google_Service_AdSense_AccountsReportsSaved_Resource(
486
-        $this,
487
-        $this->serviceName,
488
-        'saved',
489
-        array(
490
-          'methods' => array(
491
-            'generate' => array(
492
-              'path' => 'accounts/{accountId}/reports/{savedReportId}',
493
-              'httpMethod' => 'GET',
494
-              'parameters' => array(
495
-                'accountId' => array(
496
-                  'location' => 'path',
497
-                  'type' => 'string',
498
-                  'required' => true,
499
-                ),
500
-                'savedReportId' => array(
501
-                  'location' => 'path',
502
-                  'type' => 'string',
503
-                  'required' => true,
504
-                ),
505
-                'locale' => array(
506
-                  'location' => 'query',
507
-                  'type' => 'string',
508
-                ),
509
-                'startIndex' => array(
510
-                  'location' => 'query',
511
-                  'type' => 'integer',
512
-                ),
513
-                'maxResults' => array(
514
-                  'location' => 'query',
515
-                  'type' => 'integer',
516
-                ),
517
-              ),
518
-            ),'list' => array(
519
-              'path' => 'accounts/{accountId}/reports/saved',
520
-              'httpMethod' => 'GET',
521
-              'parameters' => array(
522
-                'accountId' => array(
523
-                  'location' => 'path',
524
-                  'type' => 'string',
525
-                  'required' => true,
526
-                ),
527
-                'pageToken' => array(
528
-                  'location' => 'query',
529
-                  'type' => 'string',
530
-                ),
531
-                'maxResults' => array(
532
-                  'location' => 'query',
533
-                  'type' => 'integer',
534
-                ),
535
-              ),
536
-            ),
537
-          )
538
-        )
539
-    );
540
-    $this->accounts_savedadstyles = new Google_Service_AdSense_AccountsSavedadstyles_Resource(
541
-        $this,
542
-        $this->serviceName,
543
-        'savedadstyles',
544
-        array(
545
-          'methods' => array(
546
-            'get' => array(
547
-              'path' => 'accounts/{accountId}/savedadstyles/{savedAdStyleId}',
548
-              'httpMethod' => 'GET',
549
-              'parameters' => array(
550
-                'accountId' => array(
551
-                  'location' => 'path',
552
-                  'type' => 'string',
553
-                  'required' => true,
554
-                ),
555
-                'savedAdStyleId' => array(
556
-                  'location' => 'path',
557
-                  'type' => 'string',
558
-                  'required' => true,
559
-                ),
560
-              ),
561
-            ),'list' => array(
562
-              'path' => 'accounts/{accountId}/savedadstyles',
563
-              'httpMethod' => 'GET',
564
-              'parameters' => array(
565
-                'accountId' => array(
566
-                  'location' => 'path',
567
-                  'type' => 'string',
568
-                  'required' => true,
569
-                ),
570
-                'pageToken' => array(
571
-                  'location' => 'query',
572
-                  'type' => 'string',
573
-                ),
574
-                'maxResults' => array(
575
-                  'location' => 'query',
576
-                  'type' => 'integer',
577
-                ),
578
-              ),
579
-            ),
580
-          )
581
-        )
582
-    );
583
-    $this->accounts_urlchannels = new Google_Service_AdSense_AccountsUrlchannels_Resource(
584
-        $this,
585
-        $this->serviceName,
586
-        'urlchannels',
587
-        array(
588
-          'methods' => array(
589
-            'list' => array(
590
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels',
591
-              'httpMethod' => 'GET',
592
-              'parameters' => array(
593
-                'accountId' => array(
594
-                  'location' => 'path',
595
-                  'type' => 'string',
596
-                  'required' => true,
597
-                ),
598
-                'adClientId' => array(
599
-                  'location' => 'path',
600
-                  'type' => 'string',
601
-                  'required' => true,
602
-                ),
603
-                'pageToken' => array(
604
-                  'location' => 'query',
605
-                  'type' => 'string',
606
-                ),
607
-                'maxResults' => array(
608
-                  'location' => 'query',
609
-                  'type' => 'integer',
610
-                ),
611
-              ),
612
-            ),
613
-          )
614
-        )
615
-    );
616
-    $this->adclients = new Google_Service_AdSense_Adclients_Resource(
617
-        $this,
618
-        $this->serviceName,
619
-        'adclients',
620
-        array(
621
-          'methods' => array(
622
-            'list' => array(
623
-              'path' => 'adclients',
624
-              'httpMethod' => 'GET',
625
-              'parameters' => array(
626
-                'pageToken' => array(
627
-                  'location' => 'query',
628
-                  'type' => 'string',
629
-                ),
630
-                'maxResults' => array(
631
-                  'location' => 'query',
632
-                  'type' => 'integer',
633
-                ),
634
-              ),
635
-            ),
636
-          )
637
-        )
638
-    );
639
-    $this->adunits = new Google_Service_AdSense_Adunits_Resource(
640
-        $this,
641
-        $this->serviceName,
642
-        'adunits',
643
-        array(
644
-          'methods' => array(
645
-            'get' => array(
646
-              'path' => 'adclients/{adClientId}/adunits/{adUnitId}',
647
-              'httpMethod' => 'GET',
648
-              'parameters' => array(
649
-                'adClientId' => array(
650
-                  'location' => 'path',
651
-                  'type' => 'string',
652
-                  'required' => true,
653
-                ),
654
-                'adUnitId' => array(
655
-                  'location' => 'path',
656
-                  'type' => 'string',
657
-                  'required' => true,
658
-                ),
659
-              ),
660
-            ),'getAdCode' => array(
661
-              'path' => 'adclients/{adClientId}/adunits/{adUnitId}/adcode',
662
-              'httpMethod' => 'GET',
663
-              'parameters' => array(
664
-                'adClientId' => array(
665
-                  'location' => 'path',
666
-                  'type' => 'string',
667
-                  'required' => true,
668
-                ),
669
-                'adUnitId' => array(
670
-                  'location' => 'path',
671
-                  'type' => 'string',
672
-                  'required' => true,
673
-                ),
674
-              ),
675
-            ),'list' => array(
676
-              'path' => 'adclients/{adClientId}/adunits',
677
-              'httpMethod' => 'GET',
678
-              'parameters' => array(
679
-                'adClientId' => array(
680
-                  'location' => 'path',
681
-                  'type' => 'string',
682
-                  'required' => true,
683
-                ),
684
-                'includeInactive' => array(
685
-                  'location' => 'query',
686
-                  'type' => 'boolean',
687
-                ),
688
-                'pageToken' => array(
689
-                  'location' => 'query',
690
-                  'type' => 'string',
691
-                ),
692
-                'maxResults' => array(
693
-                  'location' => 'query',
694
-                  'type' => 'integer',
695
-                ),
696
-              ),
697
-            ),
698
-          )
699
-        )
700
-    );
701
-    $this->adunits_customchannels = new Google_Service_AdSense_AdunitsCustomchannels_Resource(
702
-        $this,
703
-        $this->serviceName,
704
-        'customchannels',
705
-        array(
706
-          'methods' => array(
707
-            'list' => array(
708
-              'path' => 'adclients/{adClientId}/adunits/{adUnitId}/customchannels',
709
-              'httpMethod' => 'GET',
710
-              'parameters' => array(
711
-                'adClientId' => array(
712
-                  'location' => 'path',
713
-                  'type' => 'string',
714
-                  'required' => true,
715
-                ),
716
-                'adUnitId' => array(
717
-                  'location' => 'path',
718
-                  'type' => 'string',
719
-                  'required' => true,
720
-                ),
721
-                'pageToken' => array(
722
-                  'location' => 'query',
723
-                  'type' => 'string',
724
-                ),
725
-                'maxResults' => array(
726
-                  'location' => 'query',
727
-                  'type' => 'integer',
728
-                ),
729
-              ),
730
-            ),
731
-          )
732
-        )
733
-    );
734
-    $this->alerts = new Google_Service_AdSense_Alerts_Resource(
735
-        $this,
736
-        $this->serviceName,
737
-        'alerts',
738
-        array(
739
-          'methods' => array(
740
-            'delete' => array(
741
-              'path' => 'alerts/{alertId}',
742
-              'httpMethod' => 'DELETE',
743
-              'parameters' => array(
744
-                'alertId' => array(
745
-                  'location' => 'path',
746
-                  'type' => 'string',
747
-                  'required' => true,
748
-                ),
749
-              ),
750
-            ),'list' => array(
751
-              'path' => 'alerts',
752
-              'httpMethod' => 'GET',
753
-              'parameters' => array(
754
-                'locale' => array(
755
-                  'location' => 'query',
756
-                  'type' => 'string',
757
-                ),
758
-              ),
759
-            ),
760
-          )
761
-        )
762
-    );
763
-    $this->customchannels = new Google_Service_AdSense_Customchannels_Resource(
764
-        $this,
765
-        $this->serviceName,
766
-        'customchannels',
767
-        array(
768
-          'methods' => array(
769
-            'get' => array(
770
-              'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
771
-              'httpMethod' => 'GET',
772
-              'parameters' => array(
773
-                'adClientId' => array(
774
-                  'location' => 'path',
775
-                  'type' => 'string',
776
-                  'required' => true,
777
-                ),
778
-                'customChannelId' => array(
779
-                  'location' => 'path',
780
-                  'type' => 'string',
781
-                  'required' => true,
782
-                ),
783
-              ),
784
-            ),'list' => array(
785
-              'path' => 'adclients/{adClientId}/customchannels',
786
-              'httpMethod' => 'GET',
787
-              'parameters' => array(
788
-                'adClientId' => array(
789
-                  'location' => 'path',
790
-                  'type' => 'string',
791
-                  'required' => true,
792
-                ),
793
-                'pageToken' => array(
794
-                  'location' => 'query',
795
-                  'type' => 'string',
796
-                ),
797
-                'maxResults' => array(
798
-                  'location' => 'query',
799
-                  'type' => 'integer',
800
-                ),
801
-              ),
802
-            ),
803
-          )
804
-        )
805
-    );
806
-    $this->customchannels_adunits = new Google_Service_AdSense_CustomchannelsAdunits_Resource(
807
-        $this,
808
-        $this->serviceName,
809
-        'adunits',
810
-        array(
811
-          'methods' => array(
812
-            'list' => array(
813
-              'path' => 'adclients/{adClientId}/customchannels/{customChannelId}/adunits',
814
-              'httpMethod' => 'GET',
815
-              'parameters' => array(
816
-                'adClientId' => array(
817
-                  'location' => 'path',
818
-                  'type' => 'string',
819
-                  'required' => true,
820
-                ),
821
-                'customChannelId' => array(
822
-                  'location' => 'path',
823
-                  'type' => 'string',
824
-                  'required' => true,
825
-                ),
826
-                'includeInactive' => array(
827
-                  'location' => 'query',
828
-                  'type' => 'boolean',
829
-                ),
830
-                'pageToken' => array(
831
-                  'location' => 'query',
832
-                  'type' => 'string',
833
-                ),
834
-                'maxResults' => array(
835
-                  'location' => 'query',
836
-                  'type' => 'integer',
837
-                ),
838
-              ),
839
-            ),
840
-          )
841
-        )
842
-    );
843
-    $this->metadata_dimensions = new Google_Service_AdSense_MetadataDimensions_Resource(
844
-        $this,
845
-        $this->serviceName,
846
-        'dimensions',
847
-        array(
848
-          'methods' => array(
849
-            'list' => array(
850
-              'path' => 'metadata/dimensions',
851
-              'httpMethod' => 'GET',
852
-              'parameters' => array(),
853
-            ),
854
-          )
855
-        )
856
-    );
857
-    $this->metadata_metrics = new Google_Service_AdSense_MetadataMetrics_Resource(
858
-        $this,
859
-        $this->serviceName,
860
-        'metrics',
861
-        array(
862
-          'methods' => array(
863
-            'list' => array(
864
-              'path' => 'metadata/metrics',
865
-              'httpMethod' => 'GET',
866
-              'parameters' => array(),
867
-            ),
868
-          )
869
-        )
870
-    );
871
-    $this->payments = new Google_Service_AdSense_Payments_Resource(
872
-        $this,
873
-        $this->serviceName,
874
-        'payments',
875
-        array(
876
-          'methods' => array(
877
-            'list' => array(
878
-              'path' => 'payments',
879
-              'httpMethod' => 'GET',
880
-              'parameters' => array(),
881
-            ),
882
-          )
883
-        )
884
-    );
885
-    $this->reports = new Google_Service_AdSense_Reports_Resource(
886
-        $this,
887
-        $this->serviceName,
888
-        'reports',
889
-        array(
890
-          'methods' => array(
891
-            'generate' => array(
892
-              'path' => 'reports',
893
-              'httpMethod' => 'GET',
894
-              'parameters' => array(
895
-                'startDate' => array(
896
-                  'location' => 'query',
897
-                  'type' => 'string',
898
-                  'required' => true,
899
-                ),
900
-                'endDate' => array(
901
-                  'location' => 'query',
902
-                  'type' => 'string',
903
-                  'required' => true,
904
-                ),
905
-                'sort' => array(
906
-                  'location' => 'query',
907
-                  'type' => 'string',
908
-                  'repeated' => true,
909
-                ),
910
-                'locale' => array(
911
-                  'location' => 'query',
912
-                  'type' => 'string',
913
-                ),
914
-                'metric' => array(
915
-                  'location' => 'query',
916
-                  'type' => 'string',
917
-                  'repeated' => true,
918
-                ),
919
-                'maxResults' => array(
920
-                  'location' => 'query',
921
-                  'type' => 'integer',
922
-                ),
923
-                'filter' => array(
924
-                  'location' => 'query',
925
-                  'type' => 'string',
926
-                  'repeated' => true,
927
-                ),
928
-                'currency' => array(
929
-                  'location' => 'query',
930
-                  'type' => 'string',
931
-                ),
932
-                'startIndex' => array(
933
-                  'location' => 'query',
934
-                  'type' => 'integer',
935
-                ),
936
-                'useTimezoneReporting' => array(
937
-                  'location' => 'query',
938
-                  'type' => 'boolean',
939
-                ),
940
-                'dimension' => array(
941
-                  'location' => 'query',
942
-                  'type' => 'string',
943
-                  'repeated' => true,
944
-                ),
945
-                'accountId' => array(
946
-                  'location' => 'query',
947
-                  'type' => 'string',
948
-                  'repeated' => true,
949
-                ),
950
-              ),
951
-            ),
952
-          )
953
-        )
954
-    );
955
-    $this->reports_saved = new Google_Service_AdSense_ReportsSaved_Resource(
956
-        $this,
957
-        $this->serviceName,
958
-        'saved',
959
-        array(
960
-          'methods' => array(
961
-            'generate' => array(
962
-              'path' => 'reports/{savedReportId}',
963
-              'httpMethod' => 'GET',
964
-              'parameters' => array(
965
-                'savedReportId' => array(
966
-                  'location' => 'path',
967
-                  'type' => 'string',
968
-                  'required' => true,
969
-                ),
970
-                'locale' => array(
971
-                  'location' => 'query',
972
-                  'type' => 'string',
973
-                ),
974
-                'startIndex' => array(
975
-                  'location' => 'query',
976
-                  'type' => 'integer',
977
-                ),
978
-                'maxResults' => array(
979
-                  'location' => 'query',
980
-                  'type' => 'integer',
981
-                ),
982
-              ),
983
-            ),'list' => array(
984
-              'path' => 'reports/saved',
985
-              'httpMethod' => 'GET',
986
-              'parameters' => array(
987
-                'pageToken' => array(
988
-                  'location' => 'query',
989
-                  'type' => 'string',
990
-                ),
991
-                'maxResults' => array(
992
-                  'location' => 'query',
993
-                  'type' => 'integer',
994
-                ),
995
-              ),
996
-            ),
997
-          )
998
-        )
999
-    );
1000
-    $this->savedadstyles = new Google_Service_AdSense_Savedadstyles_Resource(
1001
-        $this,
1002
-        $this->serviceName,
1003
-        'savedadstyles',
1004
-        array(
1005
-          'methods' => array(
1006
-            'get' => array(
1007
-              'path' => 'savedadstyles/{savedAdStyleId}',
1008
-              'httpMethod' => 'GET',
1009
-              'parameters' => array(
1010
-                'savedAdStyleId' => array(
1011
-                  'location' => 'path',
1012
-                  'type' => 'string',
1013
-                  'required' => true,
1014
-                ),
1015
-              ),
1016
-            ),'list' => array(
1017
-              'path' => 'savedadstyles',
1018
-              'httpMethod' => 'GET',
1019
-              'parameters' => array(
1020
-                'pageToken' => array(
1021
-                  'location' => 'query',
1022
-                  'type' => 'string',
1023
-                ),
1024
-                'maxResults' => array(
1025
-                  'location' => 'query',
1026
-                  'type' => 'integer',
1027
-                ),
1028
-              ),
1029
-            ),
1030
-          )
1031
-        )
1032
-    );
1033
-    $this->urlchannels = new Google_Service_AdSense_Urlchannels_Resource(
1034
-        $this,
1035
-        $this->serviceName,
1036
-        'urlchannels',
1037
-        array(
1038
-          'methods' => array(
1039
-            'list' => array(
1040
-              'path' => 'adclients/{adClientId}/urlchannels',
1041
-              'httpMethod' => 'GET',
1042
-              'parameters' => array(
1043
-                'adClientId' => array(
1044
-                  'location' => 'path',
1045
-                  'type' => 'string',
1046
-                  'required' => true,
1047
-                ),
1048
-                'pageToken' => array(
1049
-                  'location' => 'query',
1050
-                  'type' => 'string',
1051
-                ),
1052
-                'maxResults' => array(
1053
-                  'location' => 'query',
1054
-                  'type' => 'integer',
1055
-                ),
1056
-              ),
1057
-            ),
1058
-          )
1059
-        )
1060
-    );
75
+	parent::__construct($client);
76
+	$this->rootUrl = 'https://www.googleapis.com/';
77
+	$this->servicePath = 'adsense/v1.4/';
78
+	$this->version = 'v1.4';
79
+	$this->serviceName = 'adsense';
80
+
81
+	$this->accounts = new Google_Service_AdSense_Accounts_Resource(
82
+		$this,
83
+		$this->serviceName,
84
+		'accounts',
85
+		array(
86
+		  'methods' => array(
87
+			'get' => array(
88
+			  'path' => 'accounts/{accountId}',
89
+			  'httpMethod' => 'GET',
90
+			  'parameters' => array(
91
+				'accountId' => array(
92
+				  'location' => 'path',
93
+				  'type' => 'string',
94
+				  'required' => true,
95
+				),
96
+				'tree' => array(
97
+				  'location' => 'query',
98
+				  'type' => 'boolean',
99
+				),
100
+			  ),
101
+			),'list' => array(
102
+			  'path' => 'accounts',
103
+			  'httpMethod' => 'GET',
104
+			  'parameters' => array(
105
+				'pageToken' => array(
106
+				  'location' => 'query',
107
+				  'type' => 'string',
108
+				),
109
+				'maxResults' => array(
110
+				  'location' => 'query',
111
+				  'type' => 'integer',
112
+				),
113
+			  ),
114
+			),
115
+		  )
116
+		)
117
+	);
118
+	$this->accounts_adclients = new Google_Service_AdSense_AccountsAdclients_Resource(
119
+		$this,
120
+		$this->serviceName,
121
+		'adclients',
122
+		array(
123
+		  'methods' => array(
124
+			'list' => array(
125
+			  'path' => 'accounts/{accountId}/adclients',
126
+			  'httpMethod' => 'GET',
127
+			  'parameters' => array(
128
+				'accountId' => array(
129
+				  'location' => 'path',
130
+				  'type' => 'string',
131
+				  'required' => true,
132
+				),
133
+				'pageToken' => array(
134
+				  'location' => 'query',
135
+				  'type' => 'string',
136
+				),
137
+				'maxResults' => array(
138
+				  'location' => 'query',
139
+				  'type' => 'integer',
140
+				),
141
+			  ),
142
+			),
143
+		  )
144
+		)
145
+	);
146
+	$this->accounts_adunits = new Google_Service_AdSense_AccountsAdunits_Resource(
147
+		$this,
148
+		$this->serviceName,
149
+		'adunits',
150
+		array(
151
+		  'methods' => array(
152
+			'get' => array(
153
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
154
+			  'httpMethod' => 'GET',
155
+			  'parameters' => array(
156
+				'accountId' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+				'adClientId' => array(
162
+				  'location' => 'path',
163
+				  'type' => 'string',
164
+				  'required' => true,
165
+				),
166
+				'adUnitId' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+			  ),
172
+			),'getAdCode' => array(
173
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
174
+			  'httpMethod' => 'GET',
175
+			  'parameters' => array(
176
+				'accountId' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+				'adClientId' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+				'adUnitId' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+			  ),
192
+			),'list' => array(
193
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
194
+			  'httpMethod' => 'GET',
195
+			  'parameters' => array(
196
+				'accountId' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+				'adClientId' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+				'includeInactive' => array(
207
+				  'location' => 'query',
208
+				  'type' => 'boolean',
209
+				),
210
+				'pageToken' => array(
211
+				  'location' => 'query',
212
+				  'type' => 'string',
213
+				),
214
+				'maxResults' => array(
215
+				  'location' => 'query',
216
+				  'type' => 'integer',
217
+				),
218
+			  ),
219
+			),
220
+		  )
221
+		)
222
+	);
223
+	$this->accounts_adunits_customchannels = new Google_Service_AdSense_AccountsAdunitsCustomchannels_Resource(
224
+		$this,
225
+		$this->serviceName,
226
+		'customchannels',
227
+		array(
228
+		  'methods' => array(
229
+			'list' => array(
230
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/customchannels',
231
+			  'httpMethod' => 'GET',
232
+			  'parameters' => array(
233
+				'accountId' => array(
234
+				  'location' => 'path',
235
+				  'type' => 'string',
236
+				  'required' => true,
237
+				),
238
+				'adClientId' => array(
239
+				  'location' => 'path',
240
+				  'type' => 'string',
241
+				  'required' => true,
242
+				),
243
+				'adUnitId' => array(
244
+				  'location' => 'path',
245
+				  'type' => 'string',
246
+				  'required' => true,
247
+				),
248
+				'pageToken' => array(
249
+				  'location' => 'query',
250
+				  'type' => 'string',
251
+				),
252
+				'maxResults' => array(
253
+				  'location' => 'query',
254
+				  'type' => 'integer',
255
+				),
256
+			  ),
257
+			),
258
+		  )
259
+		)
260
+	);
261
+	$this->accounts_alerts = new Google_Service_AdSense_AccountsAlerts_Resource(
262
+		$this,
263
+		$this->serviceName,
264
+		'alerts',
265
+		array(
266
+		  'methods' => array(
267
+			'delete' => array(
268
+			  'path' => 'accounts/{accountId}/alerts/{alertId}',
269
+			  'httpMethod' => 'DELETE',
270
+			  'parameters' => array(
271
+				'accountId' => array(
272
+				  'location' => 'path',
273
+				  'type' => 'string',
274
+				  'required' => true,
275
+				),
276
+				'alertId' => array(
277
+				  'location' => 'path',
278
+				  'type' => 'string',
279
+				  'required' => true,
280
+				),
281
+			  ),
282
+			),'list' => array(
283
+			  'path' => 'accounts/{accountId}/alerts',
284
+			  'httpMethod' => 'GET',
285
+			  'parameters' => array(
286
+				'accountId' => array(
287
+				  'location' => 'path',
288
+				  'type' => 'string',
289
+				  'required' => true,
290
+				),
291
+				'locale' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'string',
294
+				),
295
+			  ),
296
+			),
297
+		  )
298
+		)
299
+	);
300
+	$this->accounts_customchannels = new Google_Service_AdSense_AccountsCustomchannels_Resource(
301
+		$this,
302
+		$this->serviceName,
303
+		'customchannels',
304
+		array(
305
+		  'methods' => array(
306
+			'get' => array(
307
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}',
308
+			  'httpMethod' => 'GET',
309
+			  'parameters' => array(
310
+				'accountId' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+				'adClientId' => array(
316
+				  'location' => 'path',
317
+				  'type' => 'string',
318
+				  'required' => true,
319
+				),
320
+				'customChannelId' => array(
321
+				  'location' => 'path',
322
+				  'type' => 'string',
323
+				  'required' => true,
324
+				),
325
+			  ),
326
+			),'list' => array(
327
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels',
328
+			  'httpMethod' => 'GET',
329
+			  'parameters' => array(
330
+				'accountId' => array(
331
+				  'location' => 'path',
332
+				  'type' => 'string',
333
+				  'required' => true,
334
+				),
335
+				'adClientId' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+				'pageToken' => array(
341
+				  'location' => 'query',
342
+				  'type' => 'string',
343
+				),
344
+				'maxResults' => array(
345
+				  'location' => 'query',
346
+				  'type' => 'integer',
347
+				),
348
+			  ),
349
+			),
350
+		  )
351
+		)
352
+	);
353
+	$this->accounts_customchannels_adunits = new Google_Service_AdSense_AccountsCustomchannelsAdunits_Resource(
354
+		$this,
355
+		$this->serviceName,
356
+		'adunits',
357
+		array(
358
+		  'methods' => array(
359
+			'list' => array(
360
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels/{customChannelId}/adunits',
361
+			  'httpMethod' => 'GET',
362
+			  'parameters' => array(
363
+				'accountId' => array(
364
+				  'location' => 'path',
365
+				  'type' => 'string',
366
+				  'required' => true,
367
+				),
368
+				'adClientId' => array(
369
+				  'location' => 'path',
370
+				  'type' => 'string',
371
+				  'required' => true,
372
+				),
373
+				'customChannelId' => array(
374
+				  'location' => 'path',
375
+				  'type' => 'string',
376
+				  'required' => true,
377
+				),
378
+				'includeInactive' => array(
379
+				  'location' => 'query',
380
+				  'type' => 'boolean',
381
+				),
382
+				'maxResults' => array(
383
+				  'location' => 'query',
384
+				  'type' => 'integer',
385
+				),
386
+				'pageToken' => array(
387
+				  'location' => 'query',
388
+				  'type' => 'string',
389
+				),
390
+			  ),
391
+			),
392
+		  )
393
+		)
394
+	);
395
+	$this->accounts_payments = new Google_Service_AdSense_AccountsPayments_Resource(
396
+		$this,
397
+		$this->serviceName,
398
+		'payments',
399
+		array(
400
+		  'methods' => array(
401
+			'list' => array(
402
+			  'path' => 'accounts/{accountId}/payments',
403
+			  'httpMethod' => 'GET',
404
+			  'parameters' => array(
405
+				'accountId' => array(
406
+				  'location' => 'path',
407
+				  'type' => 'string',
408
+				  'required' => true,
409
+				),
410
+			  ),
411
+			),
412
+		  )
413
+		)
414
+	);
415
+	$this->accounts_reports = new Google_Service_AdSense_AccountsReports_Resource(
416
+		$this,
417
+		$this->serviceName,
418
+		'reports',
419
+		array(
420
+		  'methods' => array(
421
+			'generate' => array(
422
+			  'path' => 'accounts/{accountId}/reports',
423
+			  'httpMethod' => 'GET',
424
+			  'parameters' => array(
425
+				'accountId' => array(
426
+				  'location' => 'path',
427
+				  'type' => 'string',
428
+				  'required' => true,
429
+				),
430
+				'startDate' => array(
431
+				  'location' => 'query',
432
+				  'type' => 'string',
433
+				  'required' => true,
434
+				),
435
+				'endDate' => array(
436
+				  'location' => 'query',
437
+				  'type' => 'string',
438
+				  'required' => true,
439
+				),
440
+				'sort' => array(
441
+				  'location' => 'query',
442
+				  'type' => 'string',
443
+				  'repeated' => true,
444
+				),
445
+				'locale' => array(
446
+				  'location' => 'query',
447
+				  'type' => 'string',
448
+				),
449
+				'metric' => array(
450
+				  'location' => 'query',
451
+				  'type' => 'string',
452
+				  'repeated' => true,
453
+				),
454
+				'maxResults' => array(
455
+				  'location' => 'query',
456
+				  'type' => 'integer',
457
+				),
458
+				'filter' => array(
459
+				  'location' => 'query',
460
+				  'type' => 'string',
461
+				  'repeated' => true,
462
+				),
463
+				'currency' => array(
464
+				  'location' => 'query',
465
+				  'type' => 'string',
466
+				),
467
+				'startIndex' => array(
468
+				  'location' => 'query',
469
+				  'type' => 'integer',
470
+				),
471
+				'useTimezoneReporting' => array(
472
+				  'location' => 'query',
473
+				  'type' => 'boolean',
474
+				),
475
+				'dimension' => array(
476
+				  'location' => 'query',
477
+				  'type' => 'string',
478
+				  'repeated' => true,
479
+				),
480
+			  ),
481
+			),
482
+		  )
483
+		)
484
+	);
485
+	$this->accounts_reports_saved = new Google_Service_AdSense_AccountsReportsSaved_Resource(
486
+		$this,
487
+		$this->serviceName,
488
+		'saved',
489
+		array(
490
+		  'methods' => array(
491
+			'generate' => array(
492
+			  'path' => 'accounts/{accountId}/reports/{savedReportId}',
493
+			  'httpMethod' => 'GET',
494
+			  'parameters' => array(
495
+				'accountId' => array(
496
+				  'location' => 'path',
497
+				  'type' => 'string',
498
+				  'required' => true,
499
+				),
500
+				'savedReportId' => array(
501
+				  'location' => 'path',
502
+				  'type' => 'string',
503
+				  'required' => true,
504
+				),
505
+				'locale' => array(
506
+				  'location' => 'query',
507
+				  'type' => 'string',
508
+				),
509
+				'startIndex' => array(
510
+				  'location' => 'query',
511
+				  'type' => 'integer',
512
+				),
513
+				'maxResults' => array(
514
+				  'location' => 'query',
515
+				  'type' => 'integer',
516
+				),
517
+			  ),
518
+			),'list' => array(
519
+			  'path' => 'accounts/{accountId}/reports/saved',
520
+			  'httpMethod' => 'GET',
521
+			  'parameters' => array(
522
+				'accountId' => array(
523
+				  'location' => 'path',
524
+				  'type' => 'string',
525
+				  'required' => true,
526
+				),
527
+				'pageToken' => array(
528
+				  'location' => 'query',
529
+				  'type' => 'string',
530
+				),
531
+				'maxResults' => array(
532
+				  'location' => 'query',
533
+				  'type' => 'integer',
534
+				),
535
+			  ),
536
+			),
537
+		  )
538
+		)
539
+	);
540
+	$this->accounts_savedadstyles = new Google_Service_AdSense_AccountsSavedadstyles_Resource(
541
+		$this,
542
+		$this->serviceName,
543
+		'savedadstyles',
544
+		array(
545
+		  'methods' => array(
546
+			'get' => array(
547
+			  'path' => 'accounts/{accountId}/savedadstyles/{savedAdStyleId}',
548
+			  'httpMethod' => 'GET',
549
+			  'parameters' => array(
550
+				'accountId' => array(
551
+				  'location' => 'path',
552
+				  'type' => 'string',
553
+				  'required' => true,
554
+				),
555
+				'savedAdStyleId' => array(
556
+				  'location' => 'path',
557
+				  'type' => 'string',
558
+				  'required' => true,
559
+				),
560
+			  ),
561
+			),'list' => array(
562
+			  'path' => 'accounts/{accountId}/savedadstyles',
563
+			  'httpMethod' => 'GET',
564
+			  'parameters' => array(
565
+				'accountId' => array(
566
+				  'location' => 'path',
567
+				  'type' => 'string',
568
+				  'required' => true,
569
+				),
570
+				'pageToken' => array(
571
+				  'location' => 'query',
572
+				  'type' => 'string',
573
+				),
574
+				'maxResults' => array(
575
+				  'location' => 'query',
576
+				  'type' => 'integer',
577
+				),
578
+			  ),
579
+			),
580
+		  )
581
+		)
582
+	);
583
+	$this->accounts_urlchannels = new Google_Service_AdSense_AccountsUrlchannels_Resource(
584
+		$this,
585
+		$this->serviceName,
586
+		'urlchannels',
587
+		array(
588
+		  'methods' => array(
589
+			'list' => array(
590
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/urlchannels',
591
+			  'httpMethod' => 'GET',
592
+			  'parameters' => array(
593
+				'accountId' => array(
594
+				  'location' => 'path',
595
+				  'type' => 'string',
596
+				  'required' => true,
597
+				),
598
+				'adClientId' => array(
599
+				  'location' => 'path',
600
+				  'type' => 'string',
601
+				  'required' => true,
602
+				),
603
+				'pageToken' => array(
604
+				  'location' => 'query',
605
+				  'type' => 'string',
606
+				),
607
+				'maxResults' => array(
608
+				  'location' => 'query',
609
+				  'type' => 'integer',
610
+				),
611
+			  ),
612
+			),
613
+		  )
614
+		)
615
+	);
616
+	$this->adclients = new Google_Service_AdSense_Adclients_Resource(
617
+		$this,
618
+		$this->serviceName,
619
+		'adclients',
620
+		array(
621
+		  'methods' => array(
622
+			'list' => array(
623
+			  'path' => 'adclients',
624
+			  'httpMethod' => 'GET',
625
+			  'parameters' => array(
626
+				'pageToken' => array(
627
+				  'location' => 'query',
628
+				  'type' => 'string',
629
+				),
630
+				'maxResults' => array(
631
+				  'location' => 'query',
632
+				  'type' => 'integer',
633
+				),
634
+			  ),
635
+			),
636
+		  )
637
+		)
638
+	);
639
+	$this->adunits = new Google_Service_AdSense_Adunits_Resource(
640
+		$this,
641
+		$this->serviceName,
642
+		'adunits',
643
+		array(
644
+		  'methods' => array(
645
+			'get' => array(
646
+			  'path' => 'adclients/{adClientId}/adunits/{adUnitId}',
647
+			  'httpMethod' => 'GET',
648
+			  'parameters' => array(
649
+				'adClientId' => array(
650
+				  'location' => 'path',
651
+				  'type' => 'string',
652
+				  'required' => true,
653
+				),
654
+				'adUnitId' => array(
655
+				  'location' => 'path',
656
+				  'type' => 'string',
657
+				  'required' => true,
658
+				),
659
+			  ),
660
+			),'getAdCode' => array(
661
+			  'path' => 'adclients/{adClientId}/adunits/{adUnitId}/adcode',
662
+			  'httpMethod' => 'GET',
663
+			  'parameters' => array(
664
+				'adClientId' => array(
665
+				  'location' => 'path',
666
+				  'type' => 'string',
667
+				  'required' => true,
668
+				),
669
+				'adUnitId' => array(
670
+				  'location' => 'path',
671
+				  'type' => 'string',
672
+				  'required' => true,
673
+				),
674
+			  ),
675
+			),'list' => array(
676
+			  'path' => 'adclients/{adClientId}/adunits',
677
+			  'httpMethod' => 'GET',
678
+			  'parameters' => array(
679
+				'adClientId' => array(
680
+				  'location' => 'path',
681
+				  'type' => 'string',
682
+				  'required' => true,
683
+				),
684
+				'includeInactive' => array(
685
+				  'location' => 'query',
686
+				  'type' => 'boolean',
687
+				),
688
+				'pageToken' => array(
689
+				  'location' => 'query',
690
+				  'type' => 'string',
691
+				),
692
+				'maxResults' => array(
693
+				  'location' => 'query',
694
+				  'type' => 'integer',
695
+				),
696
+			  ),
697
+			),
698
+		  )
699
+		)
700
+	);
701
+	$this->adunits_customchannels = new Google_Service_AdSense_AdunitsCustomchannels_Resource(
702
+		$this,
703
+		$this->serviceName,
704
+		'customchannels',
705
+		array(
706
+		  'methods' => array(
707
+			'list' => array(
708
+			  'path' => 'adclients/{adClientId}/adunits/{adUnitId}/customchannels',
709
+			  'httpMethod' => 'GET',
710
+			  'parameters' => array(
711
+				'adClientId' => array(
712
+				  'location' => 'path',
713
+				  'type' => 'string',
714
+				  'required' => true,
715
+				),
716
+				'adUnitId' => array(
717
+				  'location' => 'path',
718
+				  'type' => 'string',
719
+				  'required' => true,
720
+				),
721
+				'pageToken' => array(
722
+				  'location' => 'query',
723
+				  'type' => 'string',
724
+				),
725
+				'maxResults' => array(
726
+				  'location' => 'query',
727
+				  'type' => 'integer',
728
+				),
729
+			  ),
730
+			),
731
+		  )
732
+		)
733
+	);
734
+	$this->alerts = new Google_Service_AdSense_Alerts_Resource(
735
+		$this,
736
+		$this->serviceName,
737
+		'alerts',
738
+		array(
739
+		  'methods' => array(
740
+			'delete' => array(
741
+			  'path' => 'alerts/{alertId}',
742
+			  'httpMethod' => 'DELETE',
743
+			  'parameters' => array(
744
+				'alertId' => array(
745
+				  'location' => 'path',
746
+				  'type' => 'string',
747
+				  'required' => true,
748
+				),
749
+			  ),
750
+			),'list' => array(
751
+			  'path' => 'alerts',
752
+			  'httpMethod' => 'GET',
753
+			  'parameters' => array(
754
+				'locale' => array(
755
+				  'location' => 'query',
756
+				  'type' => 'string',
757
+				),
758
+			  ),
759
+			),
760
+		  )
761
+		)
762
+	);
763
+	$this->customchannels = new Google_Service_AdSense_Customchannels_Resource(
764
+		$this,
765
+		$this->serviceName,
766
+		'customchannels',
767
+		array(
768
+		  'methods' => array(
769
+			'get' => array(
770
+			  'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
771
+			  'httpMethod' => 'GET',
772
+			  'parameters' => array(
773
+				'adClientId' => array(
774
+				  'location' => 'path',
775
+				  'type' => 'string',
776
+				  'required' => true,
777
+				),
778
+				'customChannelId' => array(
779
+				  'location' => 'path',
780
+				  'type' => 'string',
781
+				  'required' => true,
782
+				),
783
+			  ),
784
+			),'list' => array(
785
+			  'path' => 'adclients/{adClientId}/customchannels',
786
+			  'httpMethod' => 'GET',
787
+			  'parameters' => array(
788
+				'adClientId' => array(
789
+				  'location' => 'path',
790
+				  'type' => 'string',
791
+				  'required' => true,
792
+				),
793
+				'pageToken' => array(
794
+				  'location' => 'query',
795
+				  'type' => 'string',
796
+				),
797
+				'maxResults' => array(
798
+				  'location' => 'query',
799
+				  'type' => 'integer',
800
+				),
801
+			  ),
802
+			),
803
+		  )
804
+		)
805
+	);
806
+	$this->customchannels_adunits = new Google_Service_AdSense_CustomchannelsAdunits_Resource(
807
+		$this,
808
+		$this->serviceName,
809
+		'adunits',
810
+		array(
811
+		  'methods' => array(
812
+			'list' => array(
813
+			  'path' => 'adclients/{adClientId}/customchannels/{customChannelId}/adunits',
814
+			  'httpMethod' => 'GET',
815
+			  'parameters' => array(
816
+				'adClientId' => array(
817
+				  'location' => 'path',
818
+				  'type' => 'string',
819
+				  'required' => true,
820
+				),
821
+				'customChannelId' => array(
822
+				  'location' => 'path',
823
+				  'type' => 'string',
824
+				  'required' => true,
825
+				),
826
+				'includeInactive' => array(
827
+				  'location' => 'query',
828
+				  'type' => 'boolean',
829
+				),
830
+				'pageToken' => array(
831
+				  'location' => 'query',
832
+				  'type' => 'string',
833
+				),
834
+				'maxResults' => array(
835
+				  'location' => 'query',
836
+				  'type' => 'integer',
837
+				),
838
+			  ),
839
+			),
840
+		  )
841
+		)
842
+	);
843
+	$this->metadata_dimensions = new Google_Service_AdSense_MetadataDimensions_Resource(
844
+		$this,
845
+		$this->serviceName,
846
+		'dimensions',
847
+		array(
848
+		  'methods' => array(
849
+			'list' => array(
850
+			  'path' => 'metadata/dimensions',
851
+			  'httpMethod' => 'GET',
852
+			  'parameters' => array(),
853
+			),
854
+		  )
855
+		)
856
+	);
857
+	$this->metadata_metrics = new Google_Service_AdSense_MetadataMetrics_Resource(
858
+		$this,
859
+		$this->serviceName,
860
+		'metrics',
861
+		array(
862
+		  'methods' => array(
863
+			'list' => array(
864
+			  'path' => 'metadata/metrics',
865
+			  'httpMethod' => 'GET',
866
+			  'parameters' => array(),
867
+			),
868
+		  )
869
+		)
870
+	);
871
+	$this->payments = new Google_Service_AdSense_Payments_Resource(
872
+		$this,
873
+		$this->serviceName,
874
+		'payments',
875
+		array(
876
+		  'methods' => array(
877
+			'list' => array(
878
+			  'path' => 'payments',
879
+			  'httpMethod' => 'GET',
880
+			  'parameters' => array(),
881
+			),
882
+		  )
883
+		)
884
+	);
885
+	$this->reports = new Google_Service_AdSense_Reports_Resource(
886
+		$this,
887
+		$this->serviceName,
888
+		'reports',
889
+		array(
890
+		  'methods' => array(
891
+			'generate' => array(
892
+			  'path' => 'reports',
893
+			  'httpMethod' => 'GET',
894
+			  'parameters' => array(
895
+				'startDate' => array(
896
+				  'location' => 'query',
897
+				  'type' => 'string',
898
+				  'required' => true,
899
+				),
900
+				'endDate' => array(
901
+				  'location' => 'query',
902
+				  'type' => 'string',
903
+				  'required' => true,
904
+				),
905
+				'sort' => array(
906
+				  'location' => 'query',
907
+				  'type' => 'string',
908
+				  'repeated' => true,
909
+				),
910
+				'locale' => array(
911
+				  'location' => 'query',
912
+				  'type' => 'string',
913
+				),
914
+				'metric' => array(
915
+				  'location' => 'query',
916
+				  'type' => 'string',
917
+				  'repeated' => true,
918
+				),
919
+				'maxResults' => array(
920
+				  'location' => 'query',
921
+				  'type' => 'integer',
922
+				),
923
+				'filter' => array(
924
+				  'location' => 'query',
925
+				  'type' => 'string',
926
+				  'repeated' => true,
927
+				),
928
+				'currency' => array(
929
+				  'location' => 'query',
930
+				  'type' => 'string',
931
+				),
932
+				'startIndex' => array(
933
+				  'location' => 'query',
934
+				  'type' => 'integer',
935
+				),
936
+				'useTimezoneReporting' => array(
937
+				  'location' => 'query',
938
+				  'type' => 'boolean',
939
+				),
940
+				'dimension' => array(
941
+				  'location' => 'query',
942
+				  'type' => 'string',
943
+				  'repeated' => true,
944
+				),
945
+				'accountId' => array(
946
+				  'location' => 'query',
947
+				  'type' => 'string',
948
+				  'repeated' => true,
949
+				),
950
+			  ),
951
+			),
952
+		  )
953
+		)
954
+	);
955
+	$this->reports_saved = new Google_Service_AdSense_ReportsSaved_Resource(
956
+		$this,
957
+		$this->serviceName,
958
+		'saved',
959
+		array(
960
+		  'methods' => array(
961
+			'generate' => array(
962
+			  'path' => 'reports/{savedReportId}',
963
+			  'httpMethod' => 'GET',
964
+			  'parameters' => array(
965
+				'savedReportId' => array(
966
+				  'location' => 'path',
967
+				  'type' => 'string',
968
+				  'required' => true,
969
+				),
970
+				'locale' => array(
971
+				  'location' => 'query',
972
+				  'type' => 'string',
973
+				),
974
+				'startIndex' => array(
975
+				  'location' => 'query',
976
+				  'type' => 'integer',
977
+				),
978
+				'maxResults' => array(
979
+				  'location' => 'query',
980
+				  'type' => 'integer',
981
+				),
982
+			  ),
983
+			),'list' => array(
984
+			  'path' => 'reports/saved',
985
+			  'httpMethod' => 'GET',
986
+			  'parameters' => array(
987
+				'pageToken' => array(
988
+				  'location' => 'query',
989
+				  'type' => 'string',
990
+				),
991
+				'maxResults' => array(
992
+				  'location' => 'query',
993
+				  'type' => 'integer',
994
+				),
995
+			  ),
996
+			),
997
+		  )
998
+		)
999
+	);
1000
+	$this->savedadstyles = new Google_Service_AdSense_Savedadstyles_Resource(
1001
+		$this,
1002
+		$this->serviceName,
1003
+		'savedadstyles',
1004
+		array(
1005
+		  'methods' => array(
1006
+			'get' => array(
1007
+			  'path' => 'savedadstyles/{savedAdStyleId}',
1008
+			  'httpMethod' => 'GET',
1009
+			  'parameters' => array(
1010
+				'savedAdStyleId' => array(
1011
+				  'location' => 'path',
1012
+				  'type' => 'string',
1013
+				  'required' => true,
1014
+				),
1015
+			  ),
1016
+			),'list' => array(
1017
+			  'path' => 'savedadstyles',
1018
+			  'httpMethod' => 'GET',
1019
+			  'parameters' => array(
1020
+				'pageToken' => array(
1021
+				  'location' => 'query',
1022
+				  'type' => 'string',
1023
+				),
1024
+				'maxResults' => array(
1025
+				  'location' => 'query',
1026
+				  'type' => 'integer',
1027
+				),
1028
+			  ),
1029
+			),
1030
+		  )
1031
+		)
1032
+	);
1033
+	$this->urlchannels = new Google_Service_AdSense_Urlchannels_Resource(
1034
+		$this,
1035
+		$this->serviceName,
1036
+		'urlchannels',
1037
+		array(
1038
+		  'methods' => array(
1039
+			'list' => array(
1040
+			  'path' => 'adclients/{adClientId}/urlchannels',
1041
+			  'httpMethod' => 'GET',
1042
+			  'parameters' => array(
1043
+				'adClientId' => array(
1044
+				  'location' => 'path',
1045
+				  'type' => 'string',
1046
+				  'required' => true,
1047
+				),
1048
+				'pageToken' => array(
1049
+				  'location' => 'query',
1050
+				  'type' => 'string',
1051
+				),
1052
+				'maxResults' => array(
1053
+				  'location' => 'query',
1054
+				  'type' => 'integer',
1055
+				),
1056
+			  ),
1057
+			),
1058
+		  )
1059
+		)
1060
+	);
1061 1061
   }
1062 1062
 }
1063 1063
 
@@ -1084,9 +1084,9 @@  discard block
 block discarded – undo
1084 1084
    */
1085 1085
   public function get($accountId, $optParams = array())
1086 1086
   {
1087
-    $params = array('accountId' => $accountId);
1088
-    $params = array_merge($params, $optParams);
1089
-    return $this->call('get', array($params), "Google_Service_AdSense_Account");
1087
+	$params = array('accountId' => $accountId);
1088
+	$params = array_merge($params, $optParams);
1089
+	return $this->call('get', array($params), "Google_Service_AdSense_Account");
1090 1090
   }
1091 1091
 
1092 1092
   /**
@@ -1103,9 +1103,9 @@  discard block
 block discarded – undo
1103 1103
    */
1104 1104
   public function listAccounts($optParams = array())
1105 1105
   {
1106
-    $params = array();
1107
-    $params = array_merge($params, $optParams);
1108
-    return $this->call('list', array($params), "Google_Service_AdSense_Accounts");
1106
+	$params = array();
1107
+	$params = array_merge($params, $optParams);
1108
+	return $this->call('list', array($params), "Google_Service_AdSense_Accounts");
1109 1109
   }
1110 1110
 }
1111 1111
 
@@ -1136,9 +1136,9 @@  discard block
 block discarded – undo
1136 1136
    */
1137 1137
   public function listAccountsAdclients($accountId, $optParams = array())
1138 1138
   {
1139
-    $params = array('accountId' => $accountId);
1140
-    $params = array_merge($params, $optParams);
1141
-    return $this->call('list', array($params), "Google_Service_AdSense_AdClients");
1139
+	$params = array('accountId' => $accountId);
1140
+	$params = array_merge($params, $optParams);
1141
+	return $this->call('list', array($params), "Google_Service_AdSense_AdClients");
1142 1142
   }
1143 1143
 }
1144 1144
 /**
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
    */
1165 1165
   public function get($accountId, $adClientId, $adUnitId, $optParams = array())
1166 1166
   {
1167
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1168
-    $params = array_merge($params, $optParams);
1169
-    return $this->call('get', array($params), "Google_Service_AdSense_AdUnit");
1167
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1168
+	$params = array_merge($params, $optParams);
1169
+	return $this->call('get', array($params), "Google_Service_AdSense_AdUnit");
1170 1170
   }
1171 1171
 
1172 1172
   /**
@@ -1180,9 +1180,9 @@  discard block
 block discarded – undo
1180 1180
    */
1181 1181
   public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array())
1182 1182
   {
1183
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1184
-    $params = array_merge($params, $optParams);
1185
-    return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode");
1183
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1184
+	$params = array_merge($params, $optParams);
1185
+	return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode");
1186 1186
   }
1187 1187
 
1188 1188
   /**
@@ -1204,9 +1204,9 @@  discard block
 block discarded – undo
1204 1204
    */
1205 1205
   public function listAccountsAdunits($accountId, $adClientId, $optParams = array())
1206 1206
   {
1207
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1208
-    $params = array_merge($params, $optParams);
1209
-    return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1207
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1208
+	$params = array_merge($params, $optParams);
1209
+	return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1210 1210
   }
1211 1211
 }
1212 1212
 
@@ -1239,9 +1239,9 @@  discard block
 block discarded – undo
1239 1239
    */
1240 1240
   public function listAccountsAdunitsCustomchannels($accountId, $adClientId, $adUnitId, $optParams = array())
1241 1241
   {
1242
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1243
-    $params = array_merge($params, $optParams);
1244
-    return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1242
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1243
+	$params = array_merge($params, $optParams);
1244
+	return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1245 1245
   }
1246 1246
 }
1247 1247
 /**
@@ -1265,9 +1265,9 @@  discard block
 block discarded – undo
1265 1265
    */
1266 1266
   public function delete($accountId, $alertId, $optParams = array())
1267 1267
   {
1268
-    $params = array('accountId' => $accountId, 'alertId' => $alertId);
1269
-    $params = array_merge($params, $optParams);
1270
-    return $this->call('delete', array($params));
1268
+	$params = array('accountId' => $accountId, 'alertId' => $alertId);
1269
+	$params = array_merge($params, $optParams);
1270
+	return $this->call('delete', array($params));
1271 1271
   }
1272 1272
 
1273 1273
   /**
@@ -1284,9 +1284,9 @@  discard block
 block discarded – undo
1284 1284
    */
1285 1285
   public function listAccountsAlerts($accountId, $optParams = array())
1286 1286
   {
1287
-    $params = array('accountId' => $accountId);
1288
-    $params = array_merge($params, $optParams);
1289
-    return $this->call('list', array($params), "Google_Service_AdSense_Alerts");
1287
+	$params = array('accountId' => $accountId);
1288
+	$params = array_merge($params, $optParams);
1289
+	return $this->call('list', array($params), "Google_Service_AdSense_Alerts");
1290 1290
   }
1291 1291
 }
1292 1292
 /**
@@ -1312,9 +1312,9 @@  discard block
 block discarded – undo
1312 1312
    */
1313 1313
   public function get($accountId, $adClientId, $customChannelId, $optParams = array())
1314 1314
   {
1315
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1316
-    $params = array_merge($params, $optParams);
1317
-    return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel");
1315
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1316
+	$params = array_merge($params, $optParams);
1317
+	return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel");
1318 1318
   }
1319 1319
 
1320 1320
   /**
@@ -1334,9 +1334,9 @@  discard block
 block discarded – undo
1334 1334
    */
1335 1335
   public function listAccountsCustomchannels($accountId, $adClientId, $optParams = array())
1336 1336
   {
1337
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1338
-    $params = array_merge($params, $optParams);
1339
-    return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1337
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1338
+	$params = array_merge($params, $optParams);
1339
+	return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1340 1340
   }
1341 1341
 }
1342 1342
 
@@ -1371,9 +1371,9 @@  discard block
 block discarded – undo
1371 1371
    */
1372 1372
   public function listAccountsCustomchannelsAdunits($accountId, $adClientId, $customChannelId, $optParams = array())
1373 1373
   {
1374
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1375
-    $params = array_merge($params, $optParams);
1376
-    return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1374
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1375
+	$params = array_merge($params, $optParams);
1376
+	return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1377 1377
   }
1378 1378
 }
1379 1379
 /**
@@ -1397,9 +1397,9 @@  discard block
 block discarded – undo
1397 1397
    */
1398 1398
   public function listAccountsPayments($accountId, $optParams = array())
1399 1399
   {
1400
-    $params = array('accountId' => $accountId);
1401
-    $params = array_merge($params, $optParams);
1402
-    return $this->call('list', array($params), "Google_Service_AdSense_Payments");
1400
+	$params = array('accountId' => $accountId);
1401
+	$params = array_merge($params, $optParams);
1402
+	return $this->call('list', array($params), "Google_Service_AdSense_Payments");
1403 1403
   }
1404 1404
 }
1405 1405
 /**
@@ -1445,9 +1445,9 @@  discard block
 block discarded – undo
1445 1445
    */
1446 1446
   public function generate($accountId, $startDate, $endDate, $optParams = array())
1447 1447
   {
1448
-    $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
1449
-    $params = array_merge($params, $optParams);
1450
-    return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1448
+	$params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
1449
+	$params = array_merge($params, $optParams);
1450
+	return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1451 1451
   }
1452 1452
 }
1453 1453
 
@@ -1479,9 +1479,9 @@  discard block
 block discarded – undo
1479 1479
    */
1480 1480
   public function generate($accountId, $savedReportId, $optParams = array())
1481 1481
   {
1482
-    $params = array('accountId' => $accountId, 'savedReportId' => $savedReportId);
1483
-    $params = array_merge($params, $optParams);
1484
-    return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1482
+	$params = array('accountId' => $accountId, 'savedReportId' => $savedReportId);
1483
+	$params = array_merge($params, $optParams);
1484
+	return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1485 1485
   }
1486 1486
 
1487 1487
   /**
@@ -1500,9 +1500,9 @@  discard block
 block discarded – undo
1500 1500
    */
1501 1501
   public function listAccountsReportsSaved($accountId, $optParams = array())
1502 1502
   {
1503
-    $params = array('accountId' => $accountId);
1504
-    $params = array_merge($params, $optParams);
1505
-    return $this->call('list', array($params), "Google_Service_AdSense_SavedReports");
1503
+	$params = array('accountId' => $accountId);
1504
+	$params = array_merge($params, $optParams);
1505
+	return $this->call('list', array($params), "Google_Service_AdSense_SavedReports");
1506 1506
   }
1507 1507
 }
1508 1508
 /**
@@ -1526,9 +1526,9 @@  discard block
 block discarded – undo
1526 1526
    */
1527 1527
   public function get($accountId, $savedAdStyleId, $optParams = array())
1528 1528
   {
1529
-    $params = array('accountId' => $accountId, 'savedAdStyleId' => $savedAdStyleId);
1530
-    $params = array_merge($params, $optParams);
1531
-    return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle");
1529
+	$params = array('accountId' => $accountId, 'savedAdStyleId' => $savedAdStyleId);
1530
+	$params = array_merge($params, $optParams);
1531
+	return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle");
1532 1532
   }
1533 1533
 
1534 1534
   /**
@@ -1547,9 +1547,9 @@  discard block
 block discarded – undo
1547 1547
    */
1548 1548
   public function listAccountsSavedadstyles($accountId, $optParams = array())
1549 1549
   {
1550
-    $params = array('accountId' => $accountId);
1551
-    $params = array_merge($params, $optParams);
1552
-    return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles");
1550
+	$params = array('accountId' => $accountId);
1551
+	$params = array_merge($params, $optParams);
1552
+	return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles");
1553 1553
   }
1554 1554
 }
1555 1555
 /**
@@ -1580,9 +1580,9 @@  discard block
 block discarded – undo
1580 1580
    */
1581 1581
   public function listAccountsUrlchannels($accountId, $adClientId, $optParams = array())
1582 1582
   {
1583
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1584
-    $params = array_merge($params, $optParams);
1585
-    return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels");
1583
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId);
1584
+	$params = array_merge($params, $optParams);
1585
+	return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels");
1586 1586
   }
1587 1587
 }
1588 1588
 
@@ -1611,9 +1611,9 @@  discard block
 block discarded – undo
1611 1611
    */
1612 1612
   public function listAdclients($optParams = array())
1613 1613
   {
1614
-    $params = array();
1615
-    $params = array_merge($params, $optParams);
1616
-    return $this->call('list', array($params), "Google_Service_AdSense_AdClients");
1614
+	$params = array();
1615
+	$params = array_merge($params, $optParams);
1616
+	return $this->call('list', array($params), "Google_Service_AdSense_AdClients");
1617 1617
   }
1618 1618
 }
1619 1619
 
@@ -1638,9 +1638,9 @@  discard block
 block discarded – undo
1638 1638
    */
1639 1639
   public function get($adClientId, $adUnitId, $optParams = array())
1640 1640
   {
1641
-    $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1642
-    $params = array_merge($params, $optParams);
1643
-    return $this->call('get', array($params), "Google_Service_AdSense_AdUnit");
1641
+	$params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1642
+	$params = array_merge($params, $optParams);
1643
+	return $this->call('get', array($params), "Google_Service_AdSense_AdUnit");
1644 1644
   }
1645 1645
 
1646 1646
   /**
@@ -1653,9 +1653,9 @@  discard block
 block discarded – undo
1653 1653
    */
1654 1654
   public function getAdCode($adClientId, $adUnitId, $optParams = array())
1655 1655
   {
1656
-    $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1657
-    $params = array_merge($params, $optParams);
1658
-    return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode");
1656
+	$params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1657
+	$params = array_merge($params, $optParams);
1658
+	return $this->call('getAdCode', array($params), "Google_Service_AdSense_AdCode");
1659 1659
   }
1660 1660
 
1661 1661
   /**
@@ -1676,9 +1676,9 @@  discard block
 block discarded – undo
1676 1676
    */
1677 1677
   public function listAdunits($adClientId, $optParams = array())
1678 1678
   {
1679
-    $params = array('adClientId' => $adClientId);
1680
-    $params = array_merge($params, $optParams);
1681
-    return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1679
+	$params = array('adClientId' => $adClientId);
1680
+	$params = array_merge($params, $optParams);
1681
+	return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1682 1682
   }
1683 1683
 }
1684 1684
 
@@ -1710,9 +1710,9 @@  discard block
 block discarded – undo
1710 1710
    */
1711 1711
   public function listAdunitsCustomchannels($adClientId, $adUnitId, $optParams = array())
1712 1712
   {
1713
-    $params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1714
-    $params = array_merge($params, $optParams);
1715
-    return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1713
+	$params = array('adClientId' => $adClientId, 'adUnitId' => $adUnitId);
1714
+	$params = array_merge($params, $optParams);
1715
+	return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1716 1716
   }
1717 1717
 }
1718 1718
 
@@ -1736,9 +1736,9 @@  discard block
 block discarded – undo
1736 1736
    */
1737 1737
   public function delete($alertId, $optParams = array())
1738 1738
   {
1739
-    $params = array('alertId' => $alertId);
1740
-    $params = array_merge($params, $optParams);
1741
-    return $this->call('delete', array($params));
1739
+	$params = array('alertId' => $alertId);
1740
+	$params = array_merge($params, $optParams);
1741
+	return $this->call('delete', array($params));
1742 1742
   }
1743 1743
 
1744 1744
   /**
@@ -1753,9 +1753,9 @@  discard block
 block discarded – undo
1753 1753
    */
1754 1754
   public function listAlerts($optParams = array())
1755 1755
   {
1756
-    $params = array();
1757
-    $params = array_merge($params, $optParams);
1758
-    return $this->call('list', array($params), "Google_Service_AdSense_Alerts");
1756
+	$params = array();
1757
+	$params = array_merge($params, $optParams);
1758
+	return $this->call('list', array($params), "Google_Service_AdSense_Alerts");
1759 1759
   }
1760 1760
 }
1761 1761
 
@@ -1781,9 +1781,9 @@  discard block
 block discarded – undo
1781 1781
    */
1782 1782
   public function get($adClientId, $customChannelId, $optParams = array())
1783 1783
   {
1784
-    $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1785
-    $params = array_merge($params, $optParams);
1786
-    return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel");
1784
+	$params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1785
+	$params = array_merge($params, $optParams);
1786
+	return $this->call('get', array($params), "Google_Service_AdSense_CustomChannel");
1787 1787
   }
1788 1788
 
1789 1789
   /**
@@ -1802,9 +1802,9 @@  discard block
 block discarded – undo
1802 1802
    */
1803 1803
   public function listCustomchannels($adClientId, $optParams = array())
1804 1804
   {
1805
-    $params = array('adClientId' => $adClientId);
1806
-    $params = array_merge($params, $optParams);
1807
-    return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1805
+	$params = array('adClientId' => $adClientId);
1806
+	$params = array_merge($params, $optParams);
1807
+	return $this->call('list', array($params), "Google_Service_AdSense_CustomChannels");
1808 1808
   }
1809 1809
 }
1810 1810
 
@@ -1838,9 +1838,9 @@  discard block
 block discarded – undo
1838 1838
    */
1839 1839
   public function listCustomchannelsAdunits($adClientId, $customChannelId, $optParams = array())
1840 1840
   {
1841
-    $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1842
-    $params = array_merge($params, $optParams);
1843
-    return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1841
+	$params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1842
+	$params = array_merge($params, $optParams);
1843
+	return $this->call('list', array($params), "Google_Service_AdSense_AdUnits");
1844 1844
   }
1845 1845
 }
1846 1846
 
@@ -1876,9 +1876,9 @@  discard block
 block discarded – undo
1876 1876
    */
1877 1877
   public function listMetadataDimensions($optParams = array())
1878 1878
   {
1879
-    $params = array();
1880
-    $params = array_merge($params, $optParams);
1881
-    return $this->call('list', array($params), "Google_Service_AdSense_Metadata");
1879
+	$params = array();
1880
+	$params = array_merge($params, $optParams);
1881
+	return $this->call('list', array($params), "Google_Service_AdSense_Metadata");
1882 1882
   }
1883 1883
 }
1884 1884
 /**
@@ -1901,9 +1901,9 @@  discard block
 block discarded – undo
1901 1901
    */
1902 1902
   public function listMetadataMetrics($optParams = array())
1903 1903
   {
1904
-    $params = array();
1905
-    $params = array_merge($params, $optParams);
1906
-    return $this->call('list', array($params), "Google_Service_AdSense_Metadata");
1904
+	$params = array();
1905
+	$params = array_merge($params, $optParams);
1906
+	return $this->call('list', array($params), "Google_Service_AdSense_Metadata");
1907 1907
   }
1908 1908
 }
1909 1909
 
@@ -1926,9 +1926,9 @@  discard block
 block discarded – undo
1926 1926
    */
1927 1927
   public function listPayments($optParams = array())
1928 1928
   {
1929
-    $params = array();
1930
-    $params = array_merge($params, $optParams);
1931
-    return $this->call('list', array($params), "Google_Service_AdSense_Payments");
1929
+	$params = array();
1930
+	$params = array_merge($params, $optParams);
1931
+	return $this->call('list', array($params), "Google_Service_AdSense_Payments");
1932 1932
   }
1933 1933
 }
1934 1934
 
@@ -1975,9 +1975,9 @@  discard block
 block discarded – undo
1975 1975
    */
1976 1976
   public function generate($startDate, $endDate, $optParams = array())
1977 1977
   {
1978
-    $params = array('startDate' => $startDate, 'endDate' => $endDate);
1979
-    $params = array_merge($params, $optParams);
1980
-    return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1978
+	$params = array('startDate' => $startDate, 'endDate' => $endDate);
1979
+	$params = array_merge($params, $optParams);
1980
+	return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
1981 1981
   }
1982 1982
 }
1983 1983
 
@@ -2008,9 +2008,9 @@  discard block
 block discarded – undo
2008 2008
    */
2009 2009
   public function generate($savedReportId, $optParams = array())
2010 2010
   {
2011
-    $params = array('savedReportId' => $savedReportId);
2012
-    $params = array_merge($params, $optParams);
2013
-    return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
2011
+	$params = array('savedReportId' => $savedReportId);
2012
+	$params = array_merge($params, $optParams);
2013
+	return $this->call('generate', array($params), "Google_Service_AdSense_AdsenseReportsGenerateResponse");
2014 2014
   }
2015 2015
 
2016 2016
   /**
@@ -2027,9 +2027,9 @@  discard block
 block discarded – undo
2027 2027
    */
2028 2028
   public function listReportsSaved($optParams = array())
2029 2029
   {
2030
-    $params = array();
2031
-    $params = array_merge($params, $optParams);
2032
-    return $this->call('list', array($params), "Google_Service_AdSense_SavedReports");
2030
+	$params = array();
2031
+	$params = array_merge($params, $optParams);
2032
+	return $this->call('list', array($params), "Google_Service_AdSense_SavedReports");
2033 2033
   }
2034 2034
 }
2035 2035
 
@@ -2053,9 +2053,9 @@  discard block
 block discarded – undo
2053 2053
    */
2054 2054
   public function get($savedAdStyleId, $optParams = array())
2055 2055
   {
2056
-    $params = array('savedAdStyleId' => $savedAdStyleId);
2057
-    $params = array_merge($params, $optParams);
2058
-    return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle");
2056
+	$params = array('savedAdStyleId' => $savedAdStyleId);
2057
+	$params = array_merge($params, $optParams);
2058
+	return $this->call('get', array($params), "Google_Service_AdSense_SavedAdStyle");
2059 2059
   }
2060 2060
 
2061 2061
   /**
@@ -2073,9 +2073,9 @@  discard block
 block discarded – undo
2073 2073
    */
2074 2074
   public function listSavedadstyles($optParams = array())
2075 2075
   {
2076
-    $params = array();
2077
-    $params = array_merge($params, $optParams);
2078
-    return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles");
2076
+	$params = array();
2077
+	$params = array_merge($params, $optParams);
2078
+	return $this->call('list', array($params), "Google_Service_AdSense_SavedAdStyles");
2079 2079
   }
2080 2080
 }
2081 2081
 
@@ -2106,9 +2106,9 @@  discard block
 block discarded – undo
2106 2106
    */
2107 2107
   public function listUrlchannels($adClientId, $optParams = array())
2108 2108
   {
2109
-    $params = array('adClientId' => $adClientId);
2110
-    $params = array_merge($params, $optParams);
2111
-    return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels");
2109
+	$params = array('adClientId' => $adClientId);
2110
+	$params = array_merge($params, $optParams);
2111
+	return $this->call('list', array($params), "Google_Service_AdSense_UrlChannels");
2112 2112
   }
2113 2113
 }
2114 2114
 
@@ -2131,51 +2131,51 @@  discard block
 block discarded – undo
2131 2131
 
2132 2132
   public function setId($id)
2133 2133
   {
2134
-    $this->id = $id;
2134
+	$this->id = $id;
2135 2135
   }
2136 2136
   public function getId()
2137 2137
   {
2138
-    return $this->id;
2138
+	return $this->id;
2139 2139
   }
2140 2140
   public function setKind($kind)
2141 2141
   {
2142
-    $this->kind = $kind;
2142
+	$this->kind = $kind;
2143 2143
   }
2144 2144
   public function getKind()
2145 2145
   {
2146
-    return $this->kind;
2146
+	return $this->kind;
2147 2147
   }
2148 2148
   public function setName($name)
2149 2149
   {
2150
-    $this->name = $name;
2150
+	$this->name = $name;
2151 2151
   }
2152 2152
   public function getName()
2153 2153
   {
2154
-    return $this->name;
2154
+	return $this->name;
2155 2155
   }
2156 2156
   public function setPremium($premium)
2157 2157
   {
2158
-    $this->premium = $premium;
2158
+	$this->premium = $premium;
2159 2159
   }
2160 2160
   public function getPremium()
2161 2161
   {
2162
-    return $this->premium;
2162
+	return $this->premium;
2163 2163
   }
2164 2164
   public function setSubAccounts($subAccounts)
2165 2165
   {
2166
-    $this->subAccounts = $subAccounts;
2166
+	$this->subAccounts = $subAccounts;
2167 2167
   }
2168 2168
   public function getSubAccounts()
2169 2169
   {
2170
-    return $this->subAccounts;
2170
+	return $this->subAccounts;
2171 2171
   }
2172 2172
   public function setTimezone($timezone)
2173 2173
   {
2174
-    $this->timezone = $timezone;
2174
+	$this->timezone = $timezone;
2175 2175
   }
2176 2176
   public function getTimezone()
2177 2177
   {
2178
-    return $this->timezone;
2178
+	return $this->timezone;
2179 2179
   }
2180 2180
 }
2181 2181
 
@@ -2193,35 +2193,35 @@  discard block
 block discarded – undo
2193 2193
 
2194 2194
   public function setEtag($etag)
2195 2195
   {
2196
-    $this->etag = $etag;
2196
+	$this->etag = $etag;
2197 2197
   }
2198 2198
   public function getEtag()
2199 2199
   {
2200
-    return $this->etag;
2200
+	return $this->etag;
2201 2201
   }
2202 2202
   public function setItems($items)
2203 2203
   {
2204
-    $this->items = $items;
2204
+	$this->items = $items;
2205 2205
   }
2206 2206
   public function getItems()
2207 2207
   {
2208
-    return $this->items;
2208
+	return $this->items;
2209 2209
   }
2210 2210
   public function setKind($kind)
2211 2211
   {
2212
-    $this->kind = $kind;
2212
+	$this->kind = $kind;
2213 2213
   }
2214 2214
   public function getKind()
2215 2215
   {
2216
-    return $this->kind;
2216
+	return $this->kind;
2217 2217
   }
2218 2218
   public function setNextPageToken($nextPageToken)
2219 2219
   {
2220
-    $this->nextPageToken = $nextPageToken;
2220
+	$this->nextPageToken = $nextPageToken;
2221 2221
   }
2222 2222
   public function getNextPageToken()
2223 2223
   {
2224
-    return $this->nextPageToken;
2224
+	return $this->nextPageToken;
2225 2225
   }
2226 2226
 }
2227 2227
 
@@ -2239,51 +2239,51 @@  discard block
 block discarded – undo
2239 2239
 
2240 2240
   public function setArcOptIn($arcOptIn)
2241 2241
   {
2242
-    $this->arcOptIn = $arcOptIn;
2242
+	$this->arcOptIn = $arcOptIn;
2243 2243
   }
2244 2244
   public function getArcOptIn()
2245 2245
   {
2246
-    return $this->arcOptIn;
2246
+	return $this->arcOptIn;
2247 2247
   }
2248 2248
   public function setArcReviewMode($arcReviewMode)
2249 2249
   {
2250
-    $this->arcReviewMode = $arcReviewMode;
2250
+	$this->arcReviewMode = $arcReviewMode;
2251 2251
   }
2252 2252
   public function getArcReviewMode()
2253 2253
   {
2254
-    return $this->arcReviewMode;
2254
+	return $this->arcReviewMode;
2255 2255
   }
2256 2256
   public function setId($id)
2257 2257
   {
2258
-    $this->id = $id;
2258
+	$this->id = $id;
2259 2259
   }
2260 2260
   public function getId()
2261 2261
   {
2262
-    return $this->id;
2262
+	return $this->id;
2263 2263
   }
2264 2264
   public function setKind($kind)
2265 2265
   {
2266
-    $this->kind = $kind;
2266
+	$this->kind = $kind;
2267 2267
   }
2268 2268
   public function getKind()
2269 2269
   {
2270
-    return $this->kind;
2270
+	return $this->kind;
2271 2271
   }
2272 2272
   public function setProductCode($productCode)
2273 2273
   {
2274
-    $this->productCode = $productCode;
2274
+	$this->productCode = $productCode;
2275 2275
   }
2276 2276
   public function getProductCode()
2277 2277
   {
2278
-    return $this->productCode;
2278
+	return $this->productCode;
2279 2279
   }
2280 2280
   public function setSupportsReporting($supportsReporting)
2281 2281
   {
2282
-    $this->supportsReporting = $supportsReporting;
2282
+	$this->supportsReporting = $supportsReporting;
2283 2283
   }
2284 2284
   public function getSupportsReporting()
2285 2285
   {
2286
-    return $this->supportsReporting;
2286
+	return $this->supportsReporting;
2287 2287
   }
2288 2288
 }
2289 2289
 
@@ -2301,35 +2301,35 @@  discard block
 block discarded – undo
2301 2301
 
2302 2302
   public function setEtag($etag)
2303 2303
   {
2304
-    $this->etag = $etag;
2304
+	$this->etag = $etag;
2305 2305
   }
2306 2306
   public function getEtag()
2307 2307
   {
2308
-    return $this->etag;
2308
+	return $this->etag;
2309 2309
   }
2310 2310
   public function setItems($items)
2311 2311
   {
2312
-    $this->items = $items;
2312
+	$this->items = $items;
2313 2313
   }
2314 2314
   public function getItems()
2315 2315
   {
2316
-    return $this->items;
2316
+	return $this->items;
2317 2317
   }
2318 2318
   public function setKind($kind)
2319 2319
   {
2320
-    $this->kind = $kind;
2320
+	$this->kind = $kind;
2321 2321
   }
2322 2322
   public function getKind()
2323 2323
   {
2324
-    return $this->kind;
2324
+	return $this->kind;
2325 2325
   }
2326 2326
   public function setNextPageToken($nextPageToken)
2327 2327
   {
2328
-    $this->nextPageToken = $nextPageToken;
2328
+	$this->nextPageToken = $nextPageToken;
2329 2329
   }
2330 2330
   public function getNextPageToken()
2331 2331
   {
2332
-    return $this->nextPageToken;
2332
+	return $this->nextPageToken;
2333 2333
   }
2334 2334
 }
2335 2335
 
@@ -2343,19 +2343,19 @@  discard block
 block discarded – undo
2343 2343
 
2344 2344
   public function setAdCode($adCode)
2345 2345
   {
2346
-    $this->adCode = $adCode;
2346
+	$this->adCode = $adCode;
2347 2347
   }
2348 2348
   public function getAdCode()
2349 2349
   {
2350
-    return $this->adCode;
2350
+	return $this->adCode;
2351 2351
   }
2352 2352
   public function setKind($kind)
2353 2353
   {
2354
-    $this->kind = $kind;
2354
+	$this->kind = $kind;
2355 2355
   }
2356 2356
   public function getKind()
2357 2357
   {
2358
-    return $this->kind;
2358
+	return $this->kind;
2359 2359
   }
2360 2360
 }
2361 2361
 
@@ -2373,35 +2373,35 @@  discard block
 block discarded – undo
2373 2373
 
2374 2374
   public function setColors(Google_Service_AdSense_AdStyleColors $colors)
2375 2375
   {
2376
-    $this->colors = $colors;
2376
+	$this->colors = $colors;
2377 2377
   }
2378 2378
   public function getColors()
2379 2379
   {
2380
-    return $this->colors;
2380
+	return $this->colors;
2381 2381
   }
2382 2382
   public function setCorners($corners)
2383 2383
   {
2384
-    $this->corners = $corners;
2384
+	$this->corners = $corners;
2385 2385
   }
2386 2386
   public function getCorners()
2387 2387
   {
2388
-    return $this->corners;
2388
+	return $this->corners;
2389 2389
   }
2390 2390
   public function setFont(Google_Service_AdSense_AdStyleFont $font)
2391 2391
   {
2392
-    $this->font = $font;
2392
+	$this->font = $font;
2393 2393
   }
2394 2394
   public function getFont()
2395 2395
   {
2396
-    return $this->font;
2396
+	return $this->font;
2397 2397
   }
2398 2398
   public function setKind($kind)
2399 2399
   {
2400
-    $this->kind = $kind;
2400
+	$this->kind = $kind;
2401 2401
   }
2402 2402
   public function getKind()
2403 2403
   {
2404
-    return $this->kind;
2404
+	return $this->kind;
2405 2405
   }
2406 2406
 }
2407 2407
 
@@ -2418,43 +2418,43 @@  discard block
 block discarded – undo
2418 2418
 
2419 2419
   public function setBackground($background)
2420 2420
   {
2421
-    $this->background = $background;
2421
+	$this->background = $background;
2422 2422
   }
2423 2423
   public function getBackground()
2424 2424
   {
2425
-    return $this->background;
2425
+	return $this->background;
2426 2426
   }
2427 2427
   public function setBorder($border)
2428 2428
   {
2429
-    $this->border = $border;
2429
+	$this->border = $border;
2430 2430
   }
2431 2431
   public function getBorder()
2432 2432
   {
2433
-    return $this->border;
2433
+	return $this->border;
2434 2434
   }
2435 2435
   public function setText($text)
2436 2436
   {
2437
-    $this->text = $text;
2437
+	$this->text = $text;
2438 2438
   }
2439 2439
   public function getText()
2440 2440
   {
2441
-    return $this->text;
2441
+	return $this->text;
2442 2442
   }
2443 2443
   public function setTitle($title)
2444 2444
   {
2445
-    $this->title = $title;
2445
+	$this->title = $title;
2446 2446
   }
2447 2447
   public function getTitle()
2448 2448
   {
2449
-    return $this->title;
2449
+	return $this->title;
2450 2450
   }
2451 2451
   public function setUrl($url)
2452 2452
   {
2453
-    $this->url = $url;
2453
+	$this->url = $url;
2454 2454
   }
2455 2455
   public function getUrl()
2456 2456
   {
2457
-    return $this->url;
2457
+	return $this->url;
2458 2458
   }
2459 2459
 }
2460 2460
 
@@ -2468,19 +2468,19 @@  discard block
 block discarded – undo
2468 2468
 
2469 2469
   public function setFamily($family)
2470 2470
   {
2471
-    $this->family = $family;
2471
+	$this->family = $family;
2472 2472
   }
2473 2473
   public function getFamily()
2474 2474
   {
2475
-    return $this->family;
2475
+	return $this->family;
2476 2476
   }
2477 2477
   public function setSize($size)
2478 2478
   {
2479
-    $this->size = $size;
2479
+	$this->size = $size;
2480 2480
   }
2481 2481
   public function getSize()
2482 2482
   {
2483
-    return $this->size;
2483
+	return $this->size;
2484 2484
   }
2485 2485
 }
2486 2486
 
@@ -2506,83 +2506,83 @@  discard block
 block discarded – undo
2506 2506
 
2507 2507
   public function setCode($code)
2508 2508
   {
2509
-    $this->code = $code;
2509
+	$this->code = $code;
2510 2510
   }
2511 2511
   public function getCode()
2512 2512
   {
2513
-    return $this->code;
2513
+	return $this->code;
2514 2514
   }
2515 2515
   public function setContentAdsSettings(Google_Service_AdSense_AdUnitContentAdsSettings $contentAdsSettings)
2516 2516
   {
2517
-    $this->contentAdsSettings = $contentAdsSettings;
2517
+	$this->contentAdsSettings = $contentAdsSettings;
2518 2518
   }
2519 2519
   public function getContentAdsSettings()
2520 2520
   {
2521
-    return $this->contentAdsSettings;
2521
+	return $this->contentAdsSettings;
2522 2522
   }
2523 2523
   public function setCustomStyle(Google_Service_AdSense_AdStyle $customStyle)
2524 2524
   {
2525
-    $this->customStyle = $customStyle;
2525
+	$this->customStyle = $customStyle;
2526 2526
   }
2527 2527
   public function getCustomStyle()
2528 2528
   {
2529
-    return $this->customStyle;
2529
+	return $this->customStyle;
2530 2530
   }
2531 2531
   public function setFeedAdsSettings(Google_Service_AdSense_AdUnitFeedAdsSettings $feedAdsSettings)
2532 2532
   {
2533
-    $this->feedAdsSettings = $feedAdsSettings;
2533
+	$this->feedAdsSettings = $feedAdsSettings;
2534 2534
   }
2535 2535
   public function getFeedAdsSettings()
2536 2536
   {
2537
-    return $this->feedAdsSettings;
2537
+	return $this->feedAdsSettings;
2538 2538
   }
2539 2539
   public function setId($id)
2540 2540
   {
2541
-    $this->id = $id;
2541
+	$this->id = $id;
2542 2542
   }
2543 2543
   public function getId()
2544 2544
   {
2545
-    return $this->id;
2545
+	return $this->id;
2546 2546
   }
2547 2547
   public function setKind($kind)
2548 2548
   {
2549
-    $this->kind = $kind;
2549
+	$this->kind = $kind;
2550 2550
   }
2551 2551
   public function getKind()
2552 2552
   {
2553
-    return $this->kind;
2553
+	return $this->kind;
2554 2554
   }
2555 2555
   public function setMobileContentAdsSettings(Google_Service_AdSense_AdUnitMobileContentAdsSettings $mobileContentAdsSettings)
2556 2556
   {
2557
-    $this->mobileContentAdsSettings = $mobileContentAdsSettings;
2557
+	$this->mobileContentAdsSettings = $mobileContentAdsSettings;
2558 2558
   }
2559 2559
   public function getMobileContentAdsSettings()
2560 2560
   {
2561
-    return $this->mobileContentAdsSettings;
2561
+	return $this->mobileContentAdsSettings;
2562 2562
   }
2563 2563
   public function setName($name)
2564 2564
   {
2565
-    $this->name = $name;
2565
+	$this->name = $name;
2566 2566
   }
2567 2567
   public function getName()
2568 2568
   {
2569
-    return $this->name;
2569
+	return $this->name;
2570 2570
   }
2571 2571
   public function setSavedStyleId($savedStyleId)
2572 2572
   {
2573
-    $this->savedStyleId = $savedStyleId;
2573
+	$this->savedStyleId = $savedStyleId;
2574 2574
   }
2575 2575
   public function getSavedStyleId()
2576 2576
   {
2577
-    return $this->savedStyleId;
2577
+	return $this->savedStyleId;
2578 2578
   }
2579 2579
   public function setStatus($status)
2580 2580
   {
2581
-    $this->status = $status;
2581
+	$this->status = $status;
2582 2582
   }
2583 2583
   public function getStatus()
2584 2584
   {
2585
-    return $this->status;
2585
+	return $this->status;
2586 2586
   }
2587 2587
 }
2588 2588
 
@@ -2598,27 +2598,27 @@  discard block
 block discarded – undo
2598 2598
 
2599 2599
   public function setBackupOption(Google_Service_AdSense_AdUnitContentAdsSettingsBackupOption $backupOption)
2600 2600
   {
2601
-    $this->backupOption = $backupOption;
2601
+	$this->backupOption = $backupOption;
2602 2602
   }
2603 2603
   public function getBackupOption()
2604 2604
   {
2605
-    return $this->backupOption;
2605
+	return $this->backupOption;
2606 2606
   }
2607 2607
   public function setSize($size)
2608 2608
   {
2609
-    $this->size = $size;
2609
+	$this->size = $size;
2610 2610
   }
2611 2611
   public function getSize()
2612 2612
   {
2613
-    return $this->size;
2613
+	return $this->size;
2614 2614
   }
2615 2615
   public function setType($type)
2616 2616
   {
2617
-    $this->type = $type;
2617
+	$this->type = $type;
2618 2618
   }
2619 2619
   public function getType()
2620 2620
   {
2621
-    return $this->type;
2621
+	return $this->type;
2622 2622
   }
2623 2623
 }
2624 2624
 
@@ -2633,27 +2633,27 @@  discard block
 block discarded – undo
2633 2633
 
2634 2634
   public function setColor($color)
2635 2635
   {
2636
-    $this->color = $color;
2636
+	$this->color = $color;
2637 2637
   }
2638 2638
   public function getColor()
2639 2639
   {
2640
-    return $this->color;
2640
+	return $this->color;
2641 2641
   }
2642 2642
   public function setType($type)
2643 2643
   {
2644
-    $this->type = $type;
2644
+	$this->type = $type;
2645 2645
   }
2646 2646
   public function getType()
2647 2647
   {
2648
-    return $this->type;
2648
+	return $this->type;
2649 2649
   }
2650 2650
   public function setUrl($url)
2651 2651
   {
2652
-    $this->url = $url;
2652
+	$this->url = $url;
2653 2653
   }
2654 2654
   public function getUrl()
2655 2655
   {
2656
-    return $this->url;
2656
+	return $this->url;
2657 2657
   }
2658 2658
 }
2659 2659
 
@@ -2669,35 +2669,35 @@  discard block
 block discarded – undo
2669 2669
 
2670 2670
   public function setAdPosition($adPosition)
2671 2671
   {
2672
-    $this->adPosition = $adPosition;
2672
+	$this->adPosition = $adPosition;
2673 2673
   }
2674 2674
   public function getAdPosition()
2675 2675
   {
2676
-    return $this->adPosition;
2676
+	return $this->adPosition;
2677 2677
   }
2678 2678
   public function setFrequency($frequency)
2679 2679
   {
2680
-    $this->frequency = $frequency;
2680
+	$this->frequency = $frequency;
2681 2681
   }
2682 2682
   public function getFrequency()
2683 2683
   {
2684
-    return $this->frequency;
2684
+	return $this->frequency;
2685 2685
   }
2686 2686
   public function setMinimumWordCount($minimumWordCount)
2687 2687
   {
2688
-    $this->minimumWordCount = $minimumWordCount;
2688
+	$this->minimumWordCount = $minimumWordCount;
2689 2689
   }
2690 2690
   public function getMinimumWordCount()
2691 2691
   {
2692
-    return $this->minimumWordCount;
2692
+	return $this->minimumWordCount;
2693 2693
   }
2694 2694
   public function setType($type)
2695 2695
   {
2696
-    $this->type = $type;
2696
+	$this->type = $type;
2697 2697
   }
2698 2698
   public function getType()
2699 2699
   {
2700
-    return $this->type;
2700
+	return $this->type;
2701 2701
   }
2702 2702
 }
2703 2703
 
@@ -2713,35 +2713,35 @@  discard block
 block discarded – undo
2713 2713
 
2714 2714
   public function setMarkupLanguage($markupLanguage)
2715 2715
   {
2716
-    $this->markupLanguage = $markupLanguage;
2716
+	$this->markupLanguage = $markupLanguage;
2717 2717
   }
2718 2718
   public function getMarkupLanguage()
2719 2719
   {
2720
-    return $this->markupLanguage;
2720
+	return $this->markupLanguage;
2721 2721
   }
2722 2722
   public function setScriptingLanguage($scriptingLanguage)
2723 2723
   {
2724
-    $this->scriptingLanguage = $scriptingLanguage;
2724
+	$this->scriptingLanguage = $scriptingLanguage;
2725 2725
   }
2726 2726
   public function getScriptingLanguage()
2727 2727
   {
2728
-    return $this->scriptingLanguage;
2728
+	return $this->scriptingLanguage;
2729 2729
   }
2730 2730
   public function setSize($size)
2731 2731
   {
2732
-    $this->size = $size;
2732
+	$this->size = $size;
2733 2733
   }
2734 2734
   public function getSize()
2735 2735
   {
2736
-    return $this->size;
2736
+	return $this->size;
2737 2737
   }
2738 2738
   public function setType($type)
2739 2739
   {
2740
-    $this->type = $type;
2740
+	$this->type = $type;
2741 2741
   }
2742 2742
   public function getType()
2743 2743
   {
2744
-    return $this->type;
2744
+	return $this->type;
2745 2745
   }
2746 2746
 }
2747 2747
 
@@ -2759,35 +2759,35 @@  discard block
 block discarded – undo
2759 2759
 
2760 2760
   public function setEtag($etag)
2761 2761
   {
2762
-    $this->etag = $etag;
2762
+	$this->etag = $etag;
2763 2763
   }
2764 2764
   public function getEtag()
2765 2765
   {
2766
-    return $this->etag;
2766
+	return $this->etag;
2767 2767
   }
2768 2768
   public function setItems($items)
2769 2769
   {
2770
-    $this->items = $items;
2770
+	$this->items = $items;
2771 2771
   }
2772 2772
   public function getItems()
2773 2773
   {
2774
-    return $this->items;
2774
+	return $this->items;
2775 2775
   }
2776 2776
   public function setKind($kind)
2777 2777
   {
2778
-    $this->kind = $kind;
2778
+	$this->kind = $kind;
2779 2779
   }
2780 2780
   public function getKind()
2781 2781
   {
2782
-    return $this->kind;
2782
+	return $this->kind;
2783 2783
   }
2784 2784
   public function setNextPageToken($nextPageToken)
2785 2785
   {
2786
-    $this->nextPageToken = $nextPageToken;
2786
+	$this->nextPageToken = $nextPageToken;
2787 2787
   }
2788 2788
   public function getNextPageToken()
2789 2789
   {
2790
-    return $this->nextPageToken;
2790
+	return $this->nextPageToken;
2791 2791
   }
2792 2792
 }
2793 2793
 
@@ -2810,75 +2810,75 @@  discard block
 block discarded – undo
2810 2810
 
2811 2811
   public function setAverages($averages)
2812 2812
   {
2813
-    $this->averages = $averages;
2813
+	$this->averages = $averages;
2814 2814
   }
2815 2815
   public function getAverages()
2816 2816
   {
2817
-    return $this->averages;
2817
+	return $this->averages;
2818 2818
   }
2819 2819
   public function setEndDate($endDate)
2820 2820
   {
2821
-    $this->endDate = $endDate;
2821
+	$this->endDate = $endDate;
2822 2822
   }
2823 2823
   public function getEndDate()
2824 2824
   {
2825
-    return $this->endDate;
2825
+	return $this->endDate;
2826 2826
   }
2827 2827
   public function setHeaders($headers)
2828 2828
   {
2829
-    $this->headers = $headers;
2829
+	$this->headers = $headers;
2830 2830
   }
2831 2831
   public function getHeaders()
2832 2832
   {
2833
-    return $this->headers;
2833
+	return $this->headers;
2834 2834
   }
2835 2835
   public function setKind($kind)
2836 2836
   {
2837
-    $this->kind = $kind;
2837
+	$this->kind = $kind;
2838 2838
   }
2839 2839
   public function getKind()
2840 2840
   {
2841
-    return $this->kind;
2841
+	return $this->kind;
2842 2842
   }
2843 2843
   public function setRows($rows)
2844 2844
   {
2845
-    $this->rows = $rows;
2845
+	$this->rows = $rows;
2846 2846
   }
2847 2847
   public function getRows()
2848 2848
   {
2849
-    return $this->rows;
2849
+	return $this->rows;
2850 2850
   }
2851 2851
   public function setStartDate($startDate)
2852 2852
   {
2853
-    $this->startDate = $startDate;
2853
+	$this->startDate = $startDate;
2854 2854
   }
2855 2855
   public function getStartDate()
2856 2856
   {
2857
-    return $this->startDate;
2857
+	return $this->startDate;
2858 2858
   }
2859 2859
   public function setTotalMatchedRows($totalMatchedRows)
2860 2860
   {
2861
-    $this->totalMatchedRows = $totalMatchedRows;
2861
+	$this->totalMatchedRows = $totalMatchedRows;
2862 2862
   }
2863 2863
   public function getTotalMatchedRows()
2864 2864
   {
2865
-    return $this->totalMatchedRows;
2865
+	return $this->totalMatchedRows;
2866 2866
   }
2867 2867
   public function setTotals($totals)
2868 2868
   {
2869
-    $this->totals = $totals;
2869
+	$this->totals = $totals;
2870 2870
   }
2871 2871
   public function getTotals()
2872 2872
   {
2873
-    return $this->totals;
2873
+	return $this->totals;
2874 2874
   }
2875 2875
   public function setWarnings($warnings)
2876 2876
   {
2877
-    $this->warnings = $warnings;
2877
+	$this->warnings = $warnings;
2878 2878
   }
2879 2879
   public function getWarnings()
2880 2880
   {
2881
-    return $this->warnings;
2881
+	return $this->warnings;
2882 2882
   }
2883 2883
 }
2884 2884
 
@@ -2893,27 +2893,27 @@  discard block
 block discarded – undo
2893 2893
 
2894 2894
   public function setCurrency($currency)
2895 2895
   {
2896
-    $this->currency = $currency;
2896
+	$this->currency = $currency;
2897 2897
   }
2898 2898
   public function getCurrency()
2899 2899
   {
2900
-    return $this->currency;
2900
+	return $this->currency;
2901 2901
   }
2902 2902
   public function setName($name)
2903 2903
   {
2904
-    $this->name = $name;
2904
+	$this->name = $name;
2905 2905
   }
2906 2906
   public function getName()
2907 2907
   {
2908
-    return $this->name;
2908
+	return $this->name;
2909 2909
   }
2910 2910
   public function setType($type)
2911 2911
   {
2912
-    $this->type = $type;
2912
+	$this->type = $type;
2913 2913
   }
2914 2914
   public function getType()
2915 2915
   {
2916
-    return $this->type;
2916
+	return $this->type;
2917 2917
   }
2918 2918
 }
2919 2919
 
@@ -2931,51 +2931,51 @@  discard block
 block discarded – undo
2931 2931
 
2932 2932
   public function setId($id)
2933 2933
   {
2934
-    $this->id = $id;
2934
+	$this->id = $id;
2935 2935
   }
2936 2936
   public function getId()
2937 2937
   {
2938
-    return $this->id;
2938
+	return $this->id;
2939 2939
   }
2940 2940
   public function setIsDismissible($isDismissible)
2941 2941
   {
2942
-    $this->isDismissible = $isDismissible;
2942
+	$this->isDismissible = $isDismissible;
2943 2943
   }
2944 2944
   public function getIsDismissible()
2945 2945
   {
2946
-    return $this->isDismissible;
2946
+	return $this->isDismissible;
2947 2947
   }
2948 2948
   public function setKind($kind)
2949 2949
   {
2950
-    $this->kind = $kind;
2950
+	$this->kind = $kind;
2951 2951
   }
2952 2952
   public function getKind()
2953 2953
   {
2954
-    return $this->kind;
2954
+	return $this->kind;
2955 2955
   }
2956 2956
   public function setMessage($message)
2957 2957
   {
2958
-    $this->message = $message;
2958
+	$this->message = $message;
2959 2959
   }
2960 2960
   public function getMessage()
2961 2961
   {
2962
-    return $this->message;
2962
+	return $this->message;
2963 2963
   }
2964 2964
   public function setSeverity($severity)
2965 2965
   {
2966
-    $this->severity = $severity;
2966
+	$this->severity = $severity;
2967 2967
   }
2968 2968
   public function getSeverity()
2969 2969
   {
2970
-    return $this->severity;
2970
+	return $this->severity;
2971 2971
   }
2972 2972
   public function setType($type)
2973 2973
   {
2974
-    $this->type = $type;
2974
+	$this->type = $type;
2975 2975
   }
2976 2976
   public function getType()
2977 2977
   {
2978
-    return $this->type;
2978
+	return $this->type;
2979 2979
   }
2980 2980
 }
2981 2981
 
@@ -2991,19 +2991,19 @@  discard block
 block discarded – undo
2991 2991
 
2992 2992
   public function setItems($items)
2993 2993
   {
2994
-    $this->items = $items;
2994
+	$this->items = $items;
2995 2995
   }
2996 2996
   public function getItems()
2997 2997
   {
2998
-    return $this->items;
2998
+	return $this->items;
2999 2999
   }
3000 3000
   public function setKind($kind)
3001 3001
   {
3002
-    $this->kind = $kind;
3002
+	$this->kind = $kind;
3003 3003
   }
3004 3004
   public function getKind()
3005 3005
   {
3006
-    return $this->kind;
3006
+	return $this->kind;
3007 3007
   }
3008 3008
 }
3009 3009
 
@@ -3021,43 +3021,43 @@  discard block
 block discarded – undo
3021 3021
 
3022 3022
   public function setCode($code)
3023 3023
   {
3024
-    $this->code = $code;
3024
+	$this->code = $code;
3025 3025
   }
3026 3026
   public function getCode()
3027 3027
   {
3028
-    return $this->code;
3028
+	return $this->code;
3029 3029
   }
3030 3030
   public function setId($id)
3031 3031
   {
3032
-    $this->id = $id;
3032
+	$this->id = $id;
3033 3033
   }
3034 3034
   public function getId()
3035 3035
   {
3036
-    return $this->id;
3036
+	return $this->id;
3037 3037
   }
3038 3038
   public function setKind($kind)
3039 3039
   {
3040
-    $this->kind = $kind;
3040
+	$this->kind = $kind;
3041 3041
   }
3042 3042
   public function getKind()
3043 3043
   {
3044
-    return $this->kind;
3044
+	return $this->kind;
3045 3045
   }
3046 3046
   public function setName($name)
3047 3047
   {
3048
-    $this->name = $name;
3048
+	$this->name = $name;
3049 3049
   }
3050 3050
   public function getName()
3051 3051
   {
3052
-    return $this->name;
3052
+	return $this->name;
3053 3053
   }
3054 3054
   public function setTargetingInfo(Google_Service_AdSense_CustomChannelTargetingInfo $targetingInfo)
3055 3055
   {
3056
-    $this->targetingInfo = $targetingInfo;
3056
+	$this->targetingInfo = $targetingInfo;
3057 3057
   }
3058 3058
   public function getTargetingInfo()
3059 3059
   {
3060
-    return $this->targetingInfo;
3060
+	return $this->targetingInfo;
3061 3061
   }
3062 3062
 }
3063 3063
 
@@ -3073,35 +3073,35 @@  discard block
 block discarded – undo
3073 3073
 
3074 3074
   public function setAdsAppearOn($adsAppearOn)
3075 3075
   {
3076
-    $this->adsAppearOn = $adsAppearOn;
3076
+	$this->adsAppearOn = $adsAppearOn;
3077 3077
   }
3078 3078
   public function getAdsAppearOn()
3079 3079
   {
3080
-    return $this->adsAppearOn;
3080
+	return $this->adsAppearOn;
3081 3081
   }
3082 3082
   public function setDescription($description)
3083 3083
   {
3084
-    $this->description = $description;
3084
+	$this->description = $description;
3085 3085
   }
3086 3086
   public function getDescription()
3087 3087
   {
3088
-    return $this->description;
3088
+	return $this->description;
3089 3089
   }
3090 3090
   public function setLocation($location)
3091 3091
   {
3092
-    $this->location = $location;
3092
+	$this->location = $location;
3093 3093
   }
3094 3094
   public function getLocation()
3095 3095
   {
3096
-    return $this->location;
3096
+	return $this->location;
3097 3097
   }
3098 3098
   public function setSiteLanguage($siteLanguage)
3099 3099
   {
3100
-    $this->siteLanguage = $siteLanguage;
3100
+	$this->siteLanguage = $siteLanguage;
3101 3101
   }
3102 3102
   public function getSiteLanguage()
3103 3103
   {
3104
-    return $this->siteLanguage;
3104
+	return $this->siteLanguage;
3105 3105
   }
3106 3106
 }
3107 3107
 
@@ -3119,35 +3119,35 @@  discard block
 block discarded – undo
3119 3119
 
3120 3120
   public function setEtag($etag)
3121 3121
   {
3122
-    $this->etag = $etag;
3122
+	$this->etag = $etag;
3123 3123
   }
3124 3124
   public function getEtag()
3125 3125
   {
3126
-    return $this->etag;
3126
+	return $this->etag;
3127 3127
   }
3128 3128
   public function setItems($items)
3129 3129
   {
3130
-    $this->items = $items;
3130
+	$this->items = $items;
3131 3131
   }
3132 3132
   public function getItems()
3133 3133
   {
3134
-    return $this->items;
3134
+	return $this->items;
3135 3135
   }
3136 3136
   public function setKind($kind)
3137 3137
   {
3138
-    $this->kind = $kind;
3138
+	$this->kind = $kind;
3139 3139
   }
3140 3140
   public function getKind()
3141 3141
   {
3142
-    return $this->kind;
3142
+	return $this->kind;
3143 3143
   }
3144 3144
   public function setNextPageToken($nextPageToken)
3145 3145
   {
3146
-    $this->nextPageToken = $nextPageToken;
3146
+	$this->nextPageToken = $nextPageToken;
3147 3147
   }
3148 3148
   public function getNextPageToken()
3149 3149
   {
3150
-    return $this->nextPageToken;
3150
+	return $this->nextPageToken;
3151 3151
   }
3152 3152
 }
3153 3153
 
@@ -3163,19 +3163,19 @@  discard block
 block discarded – undo
3163 3163
 
3164 3164
   public function setItems($items)
3165 3165
   {
3166
-    $this->items = $items;
3166
+	$this->items = $items;
3167 3167
   }
3168 3168
   public function getItems()
3169 3169
   {
3170
-    return $this->items;
3170
+	return $this->items;
3171 3171
   }
3172 3172
   public function setKind($kind)
3173 3173
   {
3174
-    $this->kind = $kind;
3174
+	$this->kind = $kind;
3175 3175
   }
3176 3176
   public function getKind()
3177 3177
   {
3178
-    return $this->kind;
3178
+	return $this->kind;
3179 3179
   }
3180 3180
 }
3181 3181
 
@@ -3192,43 +3192,43 @@  discard block
 block discarded – undo
3192 3192
 
3193 3193
   public function setId($id)
3194 3194
   {
3195
-    $this->id = $id;
3195
+	$this->id = $id;
3196 3196
   }
3197 3197
   public function getId()
3198 3198
   {
3199
-    return $this->id;
3199
+	return $this->id;
3200 3200
   }
3201 3201
   public function setKind($kind)
3202 3202
   {
3203
-    $this->kind = $kind;
3203
+	$this->kind = $kind;
3204 3204
   }
3205 3205
   public function getKind()
3206 3206
   {
3207
-    return $this->kind;
3207
+	return $this->kind;
3208 3208
   }
3209 3209
   public function setPaymentAmount($paymentAmount)
3210 3210
   {
3211
-    $this->paymentAmount = $paymentAmount;
3211
+	$this->paymentAmount = $paymentAmount;
3212 3212
   }
3213 3213
   public function getPaymentAmount()
3214 3214
   {
3215
-    return $this->paymentAmount;
3215
+	return $this->paymentAmount;
3216 3216
   }
3217 3217
   public function setPaymentAmountCurrencyCode($paymentAmountCurrencyCode)
3218 3218
   {
3219
-    $this->paymentAmountCurrencyCode = $paymentAmountCurrencyCode;
3219
+	$this->paymentAmountCurrencyCode = $paymentAmountCurrencyCode;
3220 3220
   }
3221 3221
   public function getPaymentAmountCurrencyCode()
3222 3222
   {
3223
-    return $this->paymentAmountCurrencyCode;
3223
+	return $this->paymentAmountCurrencyCode;
3224 3224
   }
3225 3225
   public function setPaymentDate($paymentDate)
3226 3226
   {
3227
-    $this->paymentDate = $paymentDate;
3227
+	$this->paymentDate = $paymentDate;
3228 3228
   }
3229 3229
   public function getPaymentDate()
3230 3230
   {
3231
-    return $this->paymentDate;
3231
+	return $this->paymentDate;
3232 3232
   }
3233 3233
 }
3234 3234
 
@@ -3244,19 +3244,19 @@  discard block
 block discarded – undo
3244 3244
 
3245 3245
   public function setItems($items)
3246 3246
   {
3247
-    $this->items = $items;
3247
+	$this->items = $items;
3248 3248
   }
3249 3249
   public function getItems()
3250 3250
   {
3251
-    return $this->items;
3251
+	return $this->items;
3252 3252
   }
3253 3253
   public function setKind($kind)
3254 3254
   {
3255
-    $this->kind = $kind;
3255
+	$this->kind = $kind;
3256 3256
   }
3257 3257
   public function getKind()
3258 3258
   {
3259
-    return $this->kind;
3259
+	return $this->kind;
3260 3260
   }
3261 3261
 }
3262 3262
 
@@ -3276,59 +3276,59 @@  discard block
 block discarded – undo
3276 3276
 
3277 3277
   public function setCompatibleDimensions($compatibleDimensions)
3278 3278
   {
3279
-    $this->compatibleDimensions = $compatibleDimensions;
3279
+	$this->compatibleDimensions = $compatibleDimensions;
3280 3280
   }
3281 3281
   public function getCompatibleDimensions()
3282 3282
   {
3283
-    return $this->compatibleDimensions;
3283
+	return $this->compatibleDimensions;
3284 3284
   }
3285 3285
   public function setCompatibleMetrics($compatibleMetrics)
3286 3286
   {
3287
-    $this->compatibleMetrics = $compatibleMetrics;
3287
+	$this->compatibleMetrics = $compatibleMetrics;
3288 3288
   }
3289 3289
   public function getCompatibleMetrics()
3290 3290
   {
3291
-    return $this->compatibleMetrics;
3291
+	return $this->compatibleMetrics;
3292 3292
   }
3293 3293
   public function setId($id)
3294 3294
   {
3295
-    $this->id = $id;
3295
+	$this->id = $id;
3296 3296
   }
3297 3297
   public function getId()
3298 3298
   {
3299
-    return $this->id;
3299
+	return $this->id;
3300 3300
   }
3301 3301
   public function setKind($kind)
3302 3302
   {
3303
-    $this->kind = $kind;
3303
+	$this->kind = $kind;
3304 3304
   }
3305 3305
   public function getKind()
3306 3306
   {
3307
-    return $this->kind;
3307
+	return $this->kind;
3308 3308
   }
3309 3309
   public function setRequiredDimensions($requiredDimensions)
3310 3310
   {
3311
-    $this->requiredDimensions = $requiredDimensions;
3311
+	$this->requiredDimensions = $requiredDimensions;
3312 3312
   }
3313 3313
   public function getRequiredDimensions()
3314 3314
   {
3315
-    return $this->requiredDimensions;
3315
+	return $this->requiredDimensions;
3316 3316
   }
3317 3317
   public function setRequiredMetrics($requiredMetrics)
3318 3318
   {
3319
-    $this->requiredMetrics = $requiredMetrics;
3319
+	$this->requiredMetrics = $requiredMetrics;
3320 3320
   }
3321 3321
   public function getRequiredMetrics()
3322 3322
   {
3323
-    return $this->requiredMetrics;
3323
+	return $this->requiredMetrics;
3324 3324
   }
3325 3325
   public function setSupportedProducts($supportedProducts)
3326 3326
   {
3327
-    $this->supportedProducts = $supportedProducts;
3327
+	$this->supportedProducts = $supportedProducts;
3328 3328
   }
3329 3329
   public function getSupportedProducts()
3330 3330
   {
3331
-    return $this->supportedProducts;
3331
+	return $this->supportedProducts;
3332 3332
   }
3333 3333
 }
3334 3334
 
@@ -3345,35 +3345,35 @@  discard block
 block discarded – undo
3345 3345
 
3346 3346
   public function setAdStyle(Google_Service_AdSense_AdStyle $adStyle)
3347 3347
   {
3348
-    $this->adStyle = $adStyle;
3348
+	$this->adStyle = $adStyle;
3349 3349
   }
3350 3350
   public function getAdStyle()
3351 3351
   {
3352
-    return $this->adStyle;
3352
+	return $this->adStyle;
3353 3353
   }
3354 3354
   public function setId($id)
3355 3355
   {
3356
-    $this->id = $id;
3356
+	$this->id = $id;
3357 3357
   }
3358 3358
   public function getId()
3359 3359
   {
3360
-    return $this->id;
3360
+	return $this->id;
3361 3361
   }
3362 3362
   public function setKind($kind)
3363 3363
   {
3364
-    $this->kind = $kind;
3364
+	$this->kind = $kind;
3365 3365
   }
3366 3366
   public function getKind()
3367 3367
   {
3368
-    return $this->kind;
3368
+	return $this->kind;
3369 3369
   }
3370 3370
   public function setName($name)
3371 3371
   {
3372
-    $this->name = $name;
3372
+	$this->name = $name;
3373 3373
   }
3374 3374
   public function getName()
3375 3375
   {
3376
-    return $this->name;
3376
+	return $this->name;
3377 3377
   }
3378 3378
 }
3379 3379
 
@@ -3391,35 +3391,35 @@  discard block
 block discarded – undo
3391 3391
 
3392 3392
   public function setEtag($etag)
3393 3393
   {
3394
-    $this->etag = $etag;
3394
+	$this->etag = $etag;
3395 3395
   }
3396 3396
   public function getEtag()
3397 3397
   {
3398
-    return $this->etag;
3398
+	return $this->etag;
3399 3399
   }
3400 3400
   public function setItems($items)
3401 3401
   {
3402
-    $this->items = $items;
3402
+	$this->items = $items;
3403 3403
   }
3404 3404
   public function getItems()
3405 3405
   {
3406
-    return $this->items;
3406
+	return $this->items;
3407 3407
   }
3408 3408
   public function setKind($kind)
3409 3409
   {
3410
-    $this->kind = $kind;
3410
+	$this->kind = $kind;
3411 3411
   }
3412 3412
   public function getKind()
3413 3413
   {
3414
-    return $this->kind;
3414
+	return $this->kind;
3415 3415
   }
3416 3416
   public function setNextPageToken($nextPageToken)
3417 3417
   {
3418
-    $this->nextPageToken = $nextPageToken;
3418
+	$this->nextPageToken = $nextPageToken;
3419 3419
   }
3420 3420
   public function getNextPageToken()
3421 3421
   {
3422
-    return $this->nextPageToken;
3422
+	return $this->nextPageToken;
3423 3423
   }
3424 3424
 }
3425 3425
 
@@ -3434,27 +3434,27 @@  discard block
 block discarded – undo
3434 3434
 
3435 3435
   public function setId($id)
3436 3436
   {
3437
-    $this->id = $id;
3437
+	$this->id = $id;
3438 3438
   }
3439 3439
   public function getId()
3440 3440
   {
3441
-    return $this->id;
3441
+	return $this->id;
3442 3442
   }
3443 3443
   public function setKind($kind)
3444 3444
   {
3445
-    $this->kind = $kind;
3445
+	$this->kind = $kind;
3446 3446
   }
3447 3447
   public function getKind()
3448 3448
   {
3449
-    return $this->kind;
3449
+	return $this->kind;
3450 3450
   }
3451 3451
   public function setName($name)
3452 3452
   {
3453
-    $this->name = $name;
3453
+	$this->name = $name;
3454 3454
   }
3455 3455
   public function getName()
3456 3456
   {
3457
-    return $this->name;
3457
+	return $this->name;
3458 3458
   }
3459 3459
 }
3460 3460
 
@@ -3472,35 +3472,35 @@  discard block
 block discarded – undo
3472 3472
 
3473 3473
   public function setEtag($etag)
3474 3474
   {
3475
-    $this->etag = $etag;
3475
+	$this->etag = $etag;
3476 3476
   }
3477 3477
   public function getEtag()
3478 3478
   {
3479
-    return $this->etag;
3479
+	return $this->etag;
3480 3480
   }
3481 3481
   public function setItems($items)
3482 3482
   {
3483
-    $this->items = $items;
3483
+	$this->items = $items;
3484 3484
   }
3485 3485
   public function getItems()
3486 3486
   {
3487
-    return $this->items;
3487
+	return $this->items;
3488 3488
   }
3489 3489
   public function setKind($kind)
3490 3490
   {
3491
-    $this->kind = $kind;
3491
+	$this->kind = $kind;
3492 3492
   }
3493 3493
   public function getKind()
3494 3494
   {
3495
-    return $this->kind;
3495
+	return $this->kind;
3496 3496
   }
3497 3497
   public function setNextPageToken($nextPageToken)
3498 3498
   {
3499
-    $this->nextPageToken = $nextPageToken;
3499
+	$this->nextPageToken = $nextPageToken;
3500 3500
   }
3501 3501
   public function getNextPageToken()
3502 3502
   {
3503
-    return $this->nextPageToken;
3503
+	return $this->nextPageToken;
3504 3504
   }
3505 3505
 }
3506 3506
 
@@ -3515,27 +3515,27 @@  discard block
 block discarded – undo
3515 3515
 
3516 3516
   public function setId($id)
3517 3517
   {
3518
-    $this->id = $id;
3518
+	$this->id = $id;
3519 3519
   }
3520 3520
   public function getId()
3521 3521
   {
3522
-    return $this->id;
3522
+	return $this->id;
3523 3523
   }
3524 3524
   public function setKind($kind)
3525 3525
   {
3526
-    $this->kind = $kind;
3526
+	$this->kind = $kind;
3527 3527
   }
3528 3528
   public function getKind()
3529 3529
   {
3530
-    return $this->kind;
3530
+	return $this->kind;
3531 3531
   }
3532 3532
   public function setUrlPattern($urlPattern)
3533 3533
   {
3534
-    $this->urlPattern = $urlPattern;
3534
+	$this->urlPattern = $urlPattern;
3535 3535
   }
3536 3536
   public function getUrlPattern()
3537 3537
   {
3538
-    return $this->urlPattern;
3538
+	return $this->urlPattern;
3539 3539
   }
3540 3540
 }
3541 3541
 
@@ -3553,34 +3553,34 @@  discard block
 block discarded – undo
3553 3553
 
3554 3554
   public function setEtag($etag)
3555 3555
   {
3556
-    $this->etag = $etag;
3556
+	$this->etag = $etag;
3557 3557
   }
3558 3558
   public function getEtag()
3559 3559
   {
3560
-    return $this->etag;
3560
+	return $this->etag;
3561 3561
   }
3562 3562
   public function setItems($items)
3563 3563
   {
3564
-    $this->items = $items;
3564
+	$this->items = $items;
3565 3565
   }
3566 3566
   public function getItems()
3567 3567
   {
3568
-    return $this->items;
3568
+	return $this->items;
3569 3569
   }
3570 3570
   public function setKind($kind)
3571 3571
   {
3572
-    $this->kind = $kind;
3572
+	$this->kind = $kind;
3573 3573
   }
3574 3574
   public function getKind()
3575 3575
   {
3576
-    return $this->kind;
3576
+	return $this->kind;
3577 3577
   }
3578 3578
   public function setNextPageToken($nextPageToken)
3579 3579
   {
3580
-    $this->nextPageToken = $nextPageToken;
3580
+	$this->nextPageToken = $nextPageToken;
3581 3581
   }
3582 3582
   public function getNextPageToken()
3583 3583
   {
3584
-    return $this->nextPageToken;
3584
+	return $this->nextPageToken;
3585 3585
   }
3586 3586
 }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                   'type' => 'boolean',
99 99
                 ),
100 100
               ),
101
-            ),'list' => array(
101
+            ), 'list' => array(
102 102
               'path' => 'accounts',
103 103
               'httpMethod' => 'GET',
104 104
               'parameters' => array(
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
                   'required' => true,
170 170
                 ),
171 171
               ),
172
-            ),'getAdCode' => array(
172
+            ), 'getAdCode' => array(
173 173
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
174 174
               'httpMethod' => 'GET',
175 175
               'parameters' => array(
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                   'required' => true,
190 190
                 ),
191 191
               ),
192
-            ),'list' => array(
192
+            ), 'list' => array(
193 193
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
194 194
               'httpMethod' => 'GET',
195 195
               'parameters' => array(
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
                   'required' => true,
280 280
                 ),
281 281
               ),
282
-            ),'list' => array(
282
+            ), 'list' => array(
283 283
               'path' => 'accounts/{accountId}/alerts',
284 284
               'httpMethod' => 'GET',
285 285
               'parameters' => array(
@@ -323,7 +323,7 @@  discard block
 block discarded – undo
323 323
                   'required' => true,
324 324
                 ),
325 325
               ),
326
-            ),'list' => array(
326
+            ), 'list' => array(
327 327
               'path' => 'accounts/{accountId}/adclients/{adClientId}/customchannels',
328 328
               'httpMethod' => 'GET',
329 329
               'parameters' => array(
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
                   'type' => 'integer',
516 516
                 ),
517 517
               ),
518
-            ),'list' => array(
518
+            ), 'list' => array(
519 519
               'path' => 'accounts/{accountId}/reports/saved',
520 520
               'httpMethod' => 'GET',
521 521
               'parameters' => array(
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
                   'required' => true,
559 559
                 ),
560 560
               ),
561
-            ),'list' => array(
561
+            ), 'list' => array(
562 562
               'path' => 'accounts/{accountId}/savedadstyles',
563 563
               'httpMethod' => 'GET',
564 564
               'parameters' => array(
@@ -657,7 +657,7 @@  discard block
 block discarded – undo
657 657
                   'required' => true,
658 658
                 ),
659 659
               ),
660
-            ),'getAdCode' => array(
660
+            ), 'getAdCode' => array(
661 661
               'path' => 'adclients/{adClientId}/adunits/{adUnitId}/adcode',
662 662
               'httpMethod' => 'GET',
663 663
               'parameters' => array(
@@ -672,7 +672,7 @@  discard block
 block discarded – undo
672 672
                   'required' => true,
673 673
                 ),
674 674
               ),
675
-            ),'list' => array(
675
+            ), 'list' => array(
676 676
               'path' => 'adclients/{adClientId}/adunits',
677 677
               'httpMethod' => 'GET',
678 678
               'parameters' => array(
@@ -747,7 +747,7 @@  discard block
 block discarded – undo
747 747
                   'required' => true,
748 748
                 ),
749 749
               ),
750
-            ),'list' => array(
750
+            ), 'list' => array(
751 751
               'path' => 'alerts',
752 752
               'httpMethod' => 'GET',
753 753
               'parameters' => array(
@@ -781,7 +781,7 @@  discard block
 block discarded – undo
781 781
                   'required' => true,
782 782
                 ),
783 783
               ),
784
-            ),'list' => array(
784
+            ), 'list' => array(
785 785
               'path' => 'adclients/{adClientId}/customchannels',
786 786
               'httpMethod' => 'GET',
787 787
               'parameters' => array(
@@ -980,7 +980,7 @@  discard block
 block discarded – undo
980 980
                   'type' => 'integer',
981 981
                 ),
982 982
               ),
983
-            ),'list' => array(
983
+            ), 'list' => array(
984 984
               'path' => 'reports/saved',
985 985
               'httpMethod' => 'GET',
986 986
               'parameters' => array(
@@ -1013,7 +1013,7 @@  discard block
 block discarded – undo
1013 1013
                   'required' => true,
1014 1014
                 ),
1015 1015
               ),
1016
-            ),'list' => array(
1016
+            ), 'list' => array(
1017 1017
               'path' => 'savedadstyles',
1018 1018
               'httpMethod' => 'GET',
1019 1019
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Reseller.php 2 patches
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.
geodirectory-admin/google-api-php-client/src/Google/Service/Spectrum.php 2 patches
Indentation   +330 added lines, -330 removed lines patch added patch discarded remove patch
@@ -42,46 +42,46 @@  discard block
 block discarded – undo
42 42
    */
43 43
   public function __construct(Google_Client $client)
44 44
   {
45
-    parent::__construct($client);
46
-    $this->rootUrl = 'https://www.googleapis.com/';
47
-    $this->servicePath = 'spectrum/v1explorer/paws/';
48
-    $this->version = 'v1explorer';
49
-    $this->serviceName = 'spectrum';
50
-
51
-    $this->paws = new Google_Service_Spectrum_Paws_Resource(
52
-        $this,
53
-        $this->serviceName,
54
-        'paws',
55
-        array(
56
-          'methods' => array(
57
-            'getSpectrum' => array(
58
-              'path' => 'getSpectrum',
59
-              'httpMethod' => 'POST',
60
-              'parameters' => array(),
61
-            ),'getSpectrumBatch' => array(
62
-              'path' => 'getSpectrumBatch',
63
-              'httpMethod' => 'POST',
64
-              'parameters' => array(),
65
-            ),'init' => array(
66
-              'path' => 'init',
67
-              'httpMethod' => 'POST',
68
-              'parameters' => array(),
69
-            ),'notifySpectrumUse' => array(
70
-              'path' => 'notifySpectrumUse',
71
-              'httpMethod' => 'POST',
72
-              'parameters' => array(),
73
-            ),'register' => array(
74
-              'path' => 'register',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(),
77
-            ),'verifyDevice' => array(
78
-              'path' => 'verifyDevice',
79
-              'httpMethod' => 'POST',
80
-              'parameters' => array(),
81
-            ),
82
-          )
83
-        )
84
-    );
45
+	parent::__construct($client);
46
+	$this->rootUrl = 'https://www.googleapis.com/';
47
+	$this->servicePath = 'spectrum/v1explorer/paws/';
48
+	$this->version = 'v1explorer';
49
+	$this->serviceName = 'spectrum';
50
+
51
+	$this->paws = new Google_Service_Spectrum_Paws_Resource(
52
+		$this,
53
+		$this->serviceName,
54
+		'paws',
55
+		array(
56
+		  'methods' => array(
57
+			'getSpectrum' => array(
58
+			  'path' => 'getSpectrum',
59
+			  'httpMethod' => 'POST',
60
+			  'parameters' => array(),
61
+			),'getSpectrumBatch' => array(
62
+			  'path' => 'getSpectrumBatch',
63
+			  'httpMethod' => 'POST',
64
+			  'parameters' => array(),
65
+			),'init' => array(
66
+			  'path' => 'init',
67
+			  'httpMethod' => 'POST',
68
+			  'parameters' => array(),
69
+			),'notifySpectrumUse' => array(
70
+			  'path' => 'notifySpectrumUse',
71
+			  'httpMethod' => 'POST',
72
+			  'parameters' => array(),
73
+			),'register' => array(
74
+			  'path' => 'register',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(),
77
+			),'verifyDevice' => array(
78
+			  'path' => 'verifyDevice',
79
+			  'httpMethod' => 'POST',
80
+			  'parameters' => array(),
81
+			),
82
+		  )
83
+		)
84
+	);
85 85
   }
86 86
 }
87 87
 
@@ -108,9 +108,9 @@  discard block
 block discarded – undo
108 108
    */
109 109
   public function getSpectrum(Google_Service_Spectrum_PawsGetSpectrumRequest $postBody, $optParams = array())
110 110
   {
111
-    $params = array('postBody' => $postBody);
112
-    $params = array_merge($params, $optParams);
113
-    return $this->call('getSpectrum', array($params), "Google_Service_Spectrum_PawsGetSpectrumResponse");
111
+	$params = array('postBody' => $postBody);
112
+	$params = array_merge($params, $optParams);
113
+	return $this->call('getSpectrum', array($params), "Google_Service_Spectrum_PawsGetSpectrumResponse");
114 114
   }
115 115
 
116 116
   /**
@@ -123,9 +123,9 @@  discard block
 block discarded – undo
123 123
    */
124 124
   public function getSpectrumBatch(Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody, $optParams = array())
125 125
   {
126
-    $params = array('postBody' => $postBody);
127
-    $params = array_merge($params, $optParams);
128
-    return $this->call('getSpectrumBatch', array($params), "Google_Service_Spectrum_PawsGetSpectrumBatchResponse");
126
+	$params = array('postBody' => $postBody);
127
+	$params = array_merge($params, $optParams);
128
+	return $this->call('getSpectrumBatch', array($params), "Google_Service_Spectrum_PawsGetSpectrumBatchResponse");
129 129
   }
130 130
 
131 131
   /**
@@ -138,9 +138,9 @@  discard block
 block discarded – undo
138 138
    */
139 139
   public function init(Google_Service_Spectrum_PawsInitRequest $postBody, $optParams = array())
140 140
   {
141
-    $params = array('postBody' => $postBody);
142
-    $params = array_merge($params, $optParams);
143
-    return $this->call('init', array($params), "Google_Service_Spectrum_PawsInitResponse");
141
+	$params = array('postBody' => $postBody);
142
+	$params = array_merge($params, $optParams);
143
+	return $this->call('init', array($params), "Google_Service_Spectrum_PawsInitResponse");
144 144
   }
145 145
 
146 146
   /**
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
    */
157 157
   public function notifySpectrumUse(Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody, $optParams = array())
158 158
   {
159
-    $params = array('postBody' => $postBody);
160
-    $params = array_merge($params, $optParams);
161
-    return $this->call('notifySpectrumUse', array($params), "Google_Service_Spectrum_PawsNotifySpectrumUseResponse");
159
+	$params = array('postBody' => $postBody);
160
+	$params = array_merge($params, $optParams);
161
+	return $this->call('notifySpectrumUse', array($params), "Google_Service_Spectrum_PawsNotifySpectrumUseResponse");
162 162
   }
163 163
 
164 164
   /**
@@ -171,9 +171,9 @@  discard block
 block discarded – undo
171 171
    */
172 172
   public function register(Google_Service_Spectrum_PawsRegisterRequest $postBody, $optParams = array())
173 173
   {
174
-    $params = array('postBody' => $postBody);
175
-    $params = array_merge($params, $optParams);
176
-    return $this->call('register', array($params), "Google_Service_Spectrum_PawsRegisterResponse");
174
+	$params = array('postBody' => $postBody);
175
+	$params = array_merge($params, $optParams);
176
+	return $this->call('register', array($params), "Google_Service_Spectrum_PawsRegisterResponse");
177 177
   }
178 178
 
179 179
   /**
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
    */
188 188
   public function verifyDevice(Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody, $optParams = array())
189 189
   {
190
-    $params = array('postBody' => $postBody);
191
-    $params = array_merge($params, $optParams);
192
-    return $this->call('verifyDevice', array($params), "Google_Service_Spectrum_PawsVerifyDeviceResponse");
190
+	$params = array('postBody' => $postBody);
191
+	$params = array_merge($params, $optParams);
192
+	return $this->call('verifyDevice', array($params), "Google_Service_Spectrum_PawsVerifyDeviceResponse");
193 193
   }
194 194
 }
195 195
 
@@ -207,27 +207,27 @@  discard block
 block discarded – undo
207 207
 
208 208
   public function setHeight($height)
209 209
   {
210
-    $this->height = $height;
210
+	$this->height = $height;
211 211
   }
212 212
   public function getHeight()
213 213
   {
214
-    return $this->height;
214
+	return $this->height;
215 215
   }
216 216
   public function setHeightType($heightType)
217 217
   {
218
-    $this->heightType = $heightType;
218
+	$this->heightType = $heightType;
219 219
   }
220 220
   public function getHeightType()
221 221
   {
222
-    return $this->heightType;
222
+	return $this->heightType;
223 223
   }
224 224
   public function setHeightUncertainty($heightUncertainty)
225 225
   {
226
-    $this->heightUncertainty = $heightUncertainty;
226
+	$this->heightUncertainty = $heightUncertainty;
227 227
   }
228 228
   public function getHeightUncertainty()
229 229
   {
230
-    return $this->heightUncertainty;
230
+	return $this->heightUncertainty;
231 231
   }
232 232
 }
233 233
 
@@ -241,19 +241,19 @@  discard block
 block discarded – undo
241 241
 
242 242
   public function setName($name)
243 243
   {
244
-    $this->name = $name;
244
+	$this->name = $name;
245 245
   }
246 246
   public function getName()
247 247
   {
248
-    return $this->name;
248
+	return $this->name;
249 249
   }
250 250
   public function setUri($uri)
251 251
   {
252
-    $this->uri = $uri;
252
+	$this->uri = $uri;
253 253
   }
254 254
   public function getUri()
255 255
   {
256
-    return $this->uri;
256
+	return $this->uri;
257 257
   }
258 258
 }
259 259
 
@@ -268,11 +268,11 @@  discard block
 block discarded – undo
268 268
 
269 269
   public function setDatabases($databases)
270 270
   {
271
-    $this->databases = $databases;
271
+	$this->databases = $databases;
272 272
   }
273 273
   public function getDatabases()
274 274
   {
275
-    return $this->databases;
275
+	return $this->databases;
276 276
   }
277 277
 }
278 278
 
@@ -287,11 +287,11 @@  discard block
 block discarded – undo
287 287
 
288 288
   public function setFrequencyRanges($frequencyRanges)
289 289
   {
290
-    $this->frequencyRanges = $frequencyRanges;
290
+	$this->frequencyRanges = $frequencyRanges;
291 291
   }
292 292
   public function getFrequencyRanges()
293 293
   {
294
-    return $this->frequencyRanges;
294
+	return $this->frequencyRanges;
295 295
   }
296 296
 }
297 297
 
@@ -314,83 +314,83 @@  discard block
 block discarded – undo
314 314
 
315 315
   public function setEtsiEnDeviceCategory($etsiEnDeviceCategory)
316 316
   {
317
-    $this->etsiEnDeviceCategory = $etsiEnDeviceCategory;
317
+	$this->etsiEnDeviceCategory = $etsiEnDeviceCategory;
318 318
   }
319 319
   public function getEtsiEnDeviceCategory()
320 320
   {
321
-    return $this->etsiEnDeviceCategory;
321
+	return $this->etsiEnDeviceCategory;
322 322
   }
323 323
   public function setEtsiEnDeviceEmissionsClass($etsiEnDeviceEmissionsClass)
324 324
   {
325
-    $this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass;
325
+	$this->etsiEnDeviceEmissionsClass = $etsiEnDeviceEmissionsClass;
326 326
   }
327 327
   public function getEtsiEnDeviceEmissionsClass()
328 328
   {
329
-    return $this->etsiEnDeviceEmissionsClass;
329
+	return $this->etsiEnDeviceEmissionsClass;
330 330
   }
331 331
   public function setEtsiEnDeviceType($etsiEnDeviceType)
332 332
   {
333
-    $this->etsiEnDeviceType = $etsiEnDeviceType;
333
+	$this->etsiEnDeviceType = $etsiEnDeviceType;
334 334
   }
335 335
   public function getEtsiEnDeviceType()
336 336
   {
337
-    return $this->etsiEnDeviceType;
337
+	return $this->etsiEnDeviceType;
338 338
   }
339 339
   public function setEtsiEnTechnologyId($etsiEnTechnologyId)
340 340
   {
341
-    $this->etsiEnTechnologyId = $etsiEnTechnologyId;
341
+	$this->etsiEnTechnologyId = $etsiEnTechnologyId;
342 342
   }
343 343
   public function getEtsiEnTechnologyId()
344 344
   {
345
-    return $this->etsiEnTechnologyId;
345
+	return $this->etsiEnTechnologyId;
346 346
   }
347 347
   public function setFccId($fccId)
348 348
   {
349
-    $this->fccId = $fccId;
349
+	$this->fccId = $fccId;
350 350
   }
351 351
   public function getFccId()
352 352
   {
353
-    return $this->fccId;
353
+	return $this->fccId;
354 354
   }
355 355
   public function setFccTvbdDeviceType($fccTvbdDeviceType)
356 356
   {
357
-    $this->fccTvbdDeviceType = $fccTvbdDeviceType;
357
+	$this->fccTvbdDeviceType = $fccTvbdDeviceType;
358 358
   }
359 359
   public function getFccTvbdDeviceType()
360 360
   {
361
-    return $this->fccTvbdDeviceType;
361
+	return $this->fccTvbdDeviceType;
362 362
   }
363 363
   public function setManufacturerId($manufacturerId)
364 364
   {
365
-    $this->manufacturerId = $manufacturerId;
365
+	$this->manufacturerId = $manufacturerId;
366 366
   }
367 367
   public function getManufacturerId()
368 368
   {
369
-    return $this->manufacturerId;
369
+	return $this->manufacturerId;
370 370
   }
371 371
   public function setModelId($modelId)
372 372
   {
373
-    $this->modelId = $modelId;
373
+	$this->modelId = $modelId;
374 374
   }
375 375
   public function getModelId()
376 376
   {
377
-    return $this->modelId;
377
+	return $this->modelId;
378 378
   }
379 379
   public function setRulesetIds($rulesetIds)
380 380
   {
381
-    $this->rulesetIds = $rulesetIds;
381
+	$this->rulesetIds = $rulesetIds;
382 382
   }
383 383
   public function getRulesetIds()
384 384
   {
385
-    return $this->rulesetIds;
385
+	return $this->rulesetIds;
386 386
   }
387 387
   public function setSerialNumber($serialNumber)
388 388
   {
389
-    $this->serialNumber = $serialNumber;
389
+	$this->serialNumber = $serialNumber;
390 390
   }
391 391
   public function getSerialNumber()
392 392
   {
393
-    return $this->serialNumber;
393
+	return $this->serialNumber;
394 394
   }
395 395
 }
396 396
 
@@ -406,19 +406,19 @@  discard block
 block discarded – undo
406 406
 
407 407
   public function setOperator(Google_Service_Spectrum_Vcard $operator)
408 408
   {
409
-    $this->operator = $operator;
409
+	$this->operator = $operator;
410 410
   }
411 411
   public function getOperator()
412 412
   {
413
-    return $this->operator;
413
+	return $this->operator;
414 414
   }
415 415
   public function setOwner(Google_Service_Spectrum_Vcard $owner)
416 416
   {
417
-    $this->owner = $owner;
417
+	$this->owner = $owner;
418 418
   }
419 419
   public function getOwner()
420 420
   {
421
-    return $this->owner;
421
+	return $this->owner;
422 422
   }
423 423
 }
424 424
 
@@ -434,27 +434,27 @@  discard block
 block discarded – undo
434 434
 
435 435
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
436 436
   {
437
-    $this->deviceDesc = $deviceDesc;
437
+	$this->deviceDesc = $deviceDesc;
438 438
   }
439 439
   public function getDeviceDesc()
440 440
   {
441
-    return $this->deviceDesc;
441
+	return $this->deviceDesc;
442 442
   }
443 443
   public function setIsValid($isValid)
444 444
   {
445
-    $this->isValid = $isValid;
445
+	$this->isValid = $isValid;
446 446
   }
447 447
   public function getIsValid()
448 448
   {
449
-    return $this->isValid;
449
+	return $this->isValid;
450 450
   }
451 451
   public function setReason($reason)
452 452
   {
453
-    $this->reason = $reason;
453
+	$this->reason = $reason;
454 454
   }
455 455
   public function getReason()
456 456
   {
457
-    return $this->reason;
457
+	return $this->reason;
458 458
   }
459 459
 }
460 460
 
@@ -468,19 +468,19 @@  discard block
 block discarded – undo
468 468
 
469 469
   public function setStartTime($startTime)
470 470
   {
471
-    $this->startTime = $startTime;
471
+	$this->startTime = $startTime;
472 472
   }
473 473
   public function getStartTime()
474 474
   {
475
-    return $this->startTime;
475
+	return $this->startTime;
476 476
   }
477 477
   public function setStopTime($stopTime)
478 478
   {
479
-    $this->stopTime = $stopTime;
479
+	$this->stopTime = $stopTime;
480 480
   }
481 481
   public function getStopTime()
482 482
   {
483
-    return $this->stopTime;
483
+	return $this->stopTime;
484 484
   }
485 485
 }
486 486
 
@@ -496,35 +496,35 @@  discard block
 block discarded – undo
496 496
 
497 497
   public function setChannelId($channelId)
498 498
   {
499
-    $this->channelId = $channelId;
499
+	$this->channelId = $channelId;
500 500
   }
501 501
   public function getChannelId()
502 502
   {
503
-    return $this->channelId;
503
+	return $this->channelId;
504 504
   }
505 505
   public function setMaxPowerDBm($maxPowerDBm)
506 506
   {
507
-    $this->maxPowerDBm = $maxPowerDBm;
507
+	$this->maxPowerDBm = $maxPowerDBm;
508 508
   }
509 509
   public function getMaxPowerDBm()
510 510
   {
511
-    return $this->maxPowerDBm;
511
+	return $this->maxPowerDBm;
512 512
   }
513 513
   public function setStartHz($startHz)
514 514
   {
515
-    $this->startHz = $startHz;
515
+	$this->startHz = $startHz;
516 516
   }
517 517
   public function getStartHz()
518 518
   {
519
-    return $this->startHz;
519
+	return $this->startHz;
520 520
   }
521 521
   public function setStopHz($stopHz)
522 522
   {
523
-    $this->stopHz = $stopHz;
523
+	$this->stopHz = $stopHz;
524 524
   }
525 525
   public function getStopHz()
526 526
   {
527
-    return $this->stopHz;
527
+	return $this->stopHz;
528 528
   }
529 529
 }
530 530
 
@@ -541,27 +541,27 @@  discard block
 block discarded – undo
541 541
 
542 542
   public function setConfidence($confidence)
543 543
   {
544
-    $this->confidence = $confidence;
544
+	$this->confidence = $confidence;
545 545
   }
546 546
   public function getConfidence()
547 547
   {
548
-    return $this->confidence;
548
+	return $this->confidence;
549 549
   }
550 550
   public function setPoint(Google_Service_Spectrum_GeoLocationEllipse $point)
551 551
   {
552
-    $this->point = $point;
552
+	$this->point = $point;
553 553
   }
554 554
   public function getPoint()
555 555
   {
556
-    return $this->point;
556
+	return $this->point;
557 557
   }
558 558
   public function setRegion(Google_Service_Spectrum_GeoLocationPolygon $region)
559 559
   {
560
-    $this->region = $region;
560
+	$this->region = $region;
561 561
   }
562 562
   public function getRegion()
563 563
   {
564
-    return $this->region;
564
+	return $this->region;
565 565
   }
566 566
 }
567 567
 
@@ -578,35 +578,35 @@  discard block
 block discarded – undo
578 578
 
579 579
   public function setCenter(Google_Service_Spectrum_GeoLocationPoint $center)
580 580
   {
581
-    $this->center = $center;
581
+	$this->center = $center;
582 582
   }
583 583
   public function getCenter()
584 584
   {
585
-    return $this->center;
585
+	return $this->center;
586 586
   }
587 587
   public function setOrientation($orientation)
588 588
   {
589
-    $this->orientation = $orientation;
589
+	$this->orientation = $orientation;
590 590
   }
591 591
   public function getOrientation()
592 592
   {
593
-    return $this->orientation;
593
+	return $this->orientation;
594 594
   }
595 595
   public function setSemiMajorAxis($semiMajorAxis)
596 596
   {
597
-    $this->semiMajorAxis = $semiMajorAxis;
597
+	$this->semiMajorAxis = $semiMajorAxis;
598 598
   }
599 599
   public function getSemiMajorAxis()
600 600
   {
601
-    return $this->semiMajorAxis;
601
+	return $this->semiMajorAxis;
602 602
   }
603 603
   public function setSemiMinorAxis($semiMinorAxis)
604 604
   {
605
-    $this->semiMinorAxis = $semiMinorAxis;
605
+	$this->semiMinorAxis = $semiMinorAxis;
606 606
   }
607 607
   public function getSemiMinorAxis()
608 608
   {
609
-    return $this->semiMinorAxis;
609
+	return $this->semiMinorAxis;
610 610
   }
611 611
 }
612 612
 
@@ -620,19 +620,19 @@  discard block
 block discarded – undo
620 620
 
621 621
   public function setLatitude($latitude)
622 622
   {
623
-    $this->latitude = $latitude;
623
+	$this->latitude = $latitude;
624 624
   }
625 625
   public function getLatitude()
626 626
   {
627
-    return $this->latitude;
627
+	return $this->latitude;
628 628
   }
629 629
   public function setLongitude($longitude)
630 630
   {
631
-    $this->longitude = $longitude;
631
+	$this->longitude = $longitude;
632 632
   }
633 633
   public function getLongitude()
634 634
   {
635
-    return $this->longitude;
635
+	return $this->longitude;
636 636
   }
637 637
 }
638 638
 
@@ -647,11 +647,11 @@  discard block
 block discarded – undo
647 647
 
648 648
   public function setExterior($exterior)
649 649
   {
650
-    $this->exterior = $exterior;
650
+	$this->exterior = $exterior;
651 651
   }
652 652
   public function getExterior()
653 653
   {
654
-    return $this->exterior;
654
+	return $this->exterior;
655 655
   }
656 656
 }
657 657
 
@@ -668,19 +668,19 @@  discard block
 block discarded – undo
668 668
 
669 669
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
670 670
   {
671
-    $this->location = $location;
671
+	$this->location = $location;
672 672
   }
673 673
   public function getLocation()
674 674
   {
675
-    return $this->location;
675
+	return $this->location;
676 676
   }
677 677
   public function setSpectrumSchedules($spectrumSchedules)
678 678
   {
679
-    $this->spectrumSchedules = $spectrumSchedules;
679
+	$this->spectrumSchedules = $spectrumSchedules;
680 680
   }
681 681
   public function getSpectrumSchedules()
682 682
   {
683
-    return $this->spectrumSchedules;
683
+	return $this->spectrumSchedules;
684 684
   }
685 685
 }
686 686
 
@@ -708,75 +708,75 @@  discard block
 block discarded – undo
708 708
 
709 709
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
710 710
   {
711
-    $this->antenna = $antenna;
711
+	$this->antenna = $antenna;
712 712
   }
713 713
   public function getAntenna()
714 714
   {
715
-    return $this->antenna;
715
+	return $this->antenna;
716 716
   }
717 717
   public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities)
718 718
   {
719
-    $this->capabilities = $capabilities;
719
+	$this->capabilities = $capabilities;
720 720
   }
721 721
   public function getCapabilities()
722 722
   {
723
-    return $this->capabilities;
723
+	return $this->capabilities;
724 724
   }
725 725
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
726 726
   {
727
-    $this->deviceDesc = $deviceDesc;
727
+	$this->deviceDesc = $deviceDesc;
728 728
   }
729 729
   public function getDeviceDesc()
730 730
   {
731
-    return $this->deviceDesc;
731
+	return $this->deviceDesc;
732 732
   }
733 733
   public function setLocations($locations)
734 734
   {
735
-    $this->locations = $locations;
735
+	$this->locations = $locations;
736 736
   }
737 737
   public function getLocations()
738 738
   {
739
-    return $this->locations;
739
+	return $this->locations;
740 740
   }
741 741
   public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
742 742
   {
743
-    $this->masterDeviceDesc = $masterDeviceDesc;
743
+	$this->masterDeviceDesc = $masterDeviceDesc;
744 744
   }
745 745
   public function getMasterDeviceDesc()
746 746
   {
747
-    return $this->masterDeviceDesc;
747
+	return $this->masterDeviceDesc;
748 748
   }
749 749
   public function setOwner(Google_Service_Spectrum_DeviceOwner $owner)
750 750
   {
751
-    $this->owner = $owner;
751
+	$this->owner = $owner;
752 752
   }
753 753
   public function getOwner()
754 754
   {
755
-    return $this->owner;
755
+	return $this->owner;
756 756
   }
757 757
   public function setRequestType($requestType)
758 758
   {
759
-    $this->requestType = $requestType;
759
+	$this->requestType = $requestType;
760 760
   }
761 761
   public function getRequestType()
762 762
   {
763
-    return $this->requestType;
763
+	return $this->requestType;
764 764
   }
765 765
   public function setType($type)
766 766
   {
767
-    $this->type = $type;
767
+	$this->type = $type;
768 768
   }
769 769
   public function getType()
770 770
   {
771
-    return $this->type;
771
+	return $this->type;
772 772
   }
773 773
   public function setVersion($version)
774 774
   {
775
-    $this->version = $version;
775
+	$this->version = $version;
776 776
   }
777 777
   public function getVersion()
778 778
   {
779
-    return $this->version;
779
+	return $this->version;
780 780
   }
781 781
 }
782 782
 
@@ -804,91 +804,91 @@  discard block
 block discarded – undo
804 804
 
805 805
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
806 806
   {
807
-    $this->databaseChange = $databaseChange;
807
+	$this->databaseChange = $databaseChange;
808 808
   }
809 809
   public function getDatabaseChange()
810 810
   {
811
-    return $this->databaseChange;
811
+	return $this->databaseChange;
812 812
   }
813 813
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
814 814
   {
815
-    $this->deviceDesc = $deviceDesc;
815
+	$this->deviceDesc = $deviceDesc;
816 816
   }
817 817
   public function getDeviceDesc()
818 818
   {
819
-    return $this->deviceDesc;
819
+	return $this->deviceDesc;
820 820
   }
821 821
   public function setGeoSpectrumSchedules($geoSpectrumSchedules)
822 822
   {
823
-    $this->geoSpectrumSchedules = $geoSpectrumSchedules;
823
+	$this->geoSpectrumSchedules = $geoSpectrumSchedules;
824 824
   }
825 825
   public function getGeoSpectrumSchedules()
826 826
   {
827
-    return $this->geoSpectrumSchedules;
827
+	return $this->geoSpectrumSchedules;
828 828
   }
829 829
   public function setKind($kind)
830 830
   {
831
-    $this->kind = $kind;
831
+	$this->kind = $kind;
832 832
   }
833 833
   public function getKind()
834 834
   {
835
-    return $this->kind;
835
+	return $this->kind;
836 836
   }
837 837
   public function setMaxContiguousBwHz($maxContiguousBwHz)
838 838
   {
839
-    $this->maxContiguousBwHz = $maxContiguousBwHz;
839
+	$this->maxContiguousBwHz = $maxContiguousBwHz;
840 840
   }
841 841
   public function getMaxContiguousBwHz()
842 842
   {
843
-    return $this->maxContiguousBwHz;
843
+	return $this->maxContiguousBwHz;
844 844
   }
845 845
   public function setMaxTotalBwHz($maxTotalBwHz)
846 846
   {
847
-    $this->maxTotalBwHz = $maxTotalBwHz;
847
+	$this->maxTotalBwHz = $maxTotalBwHz;
848 848
   }
849 849
   public function getMaxTotalBwHz()
850 850
   {
851
-    return $this->maxTotalBwHz;
851
+	return $this->maxTotalBwHz;
852 852
   }
853 853
   public function setNeedsSpectrumReport($needsSpectrumReport)
854 854
   {
855
-    $this->needsSpectrumReport = $needsSpectrumReport;
855
+	$this->needsSpectrumReport = $needsSpectrumReport;
856 856
   }
857 857
   public function getNeedsSpectrumReport()
858 858
   {
859
-    return $this->needsSpectrumReport;
859
+	return $this->needsSpectrumReport;
860 860
   }
861 861
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
862 862
   {
863
-    $this->rulesetInfo = $rulesetInfo;
863
+	$this->rulesetInfo = $rulesetInfo;
864 864
   }
865 865
   public function getRulesetInfo()
866 866
   {
867
-    return $this->rulesetInfo;
867
+	return $this->rulesetInfo;
868 868
   }
869 869
   public function setTimestamp($timestamp)
870 870
   {
871
-    $this->timestamp = $timestamp;
871
+	$this->timestamp = $timestamp;
872 872
   }
873 873
   public function getTimestamp()
874 874
   {
875
-    return $this->timestamp;
875
+	return $this->timestamp;
876 876
   }
877 877
   public function setType($type)
878 878
   {
879
-    $this->type = $type;
879
+	$this->type = $type;
880 880
   }
881 881
   public function getType()
882 882
   {
883
-    return $this->type;
883
+	return $this->type;
884 884
   }
885 885
   public function setVersion($version)
886 886
   {
887
-    $this->version = $version;
887
+	$this->version = $version;
888 888
   }
889 889
   public function getVersion()
890 890
   {
891
-    return $this->version;
891
+	return $this->version;
892 892
   }
893 893
 }
894 894
 
@@ -915,75 +915,75 @@  discard block
 block discarded – undo
915 915
 
916 916
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
917 917
   {
918
-    $this->antenna = $antenna;
918
+	$this->antenna = $antenna;
919 919
   }
920 920
   public function getAntenna()
921 921
   {
922
-    return $this->antenna;
922
+	return $this->antenna;
923 923
   }
924 924
   public function setCapabilities(Google_Service_Spectrum_DeviceCapabilities $capabilities)
925 925
   {
926
-    $this->capabilities = $capabilities;
926
+	$this->capabilities = $capabilities;
927 927
   }
928 928
   public function getCapabilities()
929 929
   {
930
-    return $this->capabilities;
930
+	return $this->capabilities;
931 931
   }
932 932
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
933 933
   {
934
-    $this->deviceDesc = $deviceDesc;
934
+	$this->deviceDesc = $deviceDesc;
935 935
   }
936 936
   public function getDeviceDesc()
937 937
   {
938
-    return $this->deviceDesc;
938
+	return $this->deviceDesc;
939 939
   }
940 940
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
941 941
   {
942
-    $this->location = $location;
942
+	$this->location = $location;
943 943
   }
944 944
   public function getLocation()
945 945
   {
946
-    return $this->location;
946
+	return $this->location;
947 947
   }
948 948
   public function setMasterDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $masterDeviceDesc)
949 949
   {
950
-    $this->masterDeviceDesc = $masterDeviceDesc;
950
+	$this->masterDeviceDesc = $masterDeviceDesc;
951 951
   }
952 952
   public function getMasterDeviceDesc()
953 953
   {
954
-    return $this->masterDeviceDesc;
954
+	return $this->masterDeviceDesc;
955 955
   }
956 956
   public function setOwner(Google_Service_Spectrum_DeviceOwner $owner)
957 957
   {
958
-    $this->owner = $owner;
958
+	$this->owner = $owner;
959 959
   }
960 960
   public function getOwner()
961 961
   {
962
-    return $this->owner;
962
+	return $this->owner;
963 963
   }
964 964
   public function setRequestType($requestType)
965 965
   {
966
-    $this->requestType = $requestType;
966
+	$this->requestType = $requestType;
967 967
   }
968 968
   public function getRequestType()
969 969
   {
970
-    return $this->requestType;
970
+	return $this->requestType;
971 971
   }
972 972
   public function setType($type)
973 973
   {
974
-    $this->type = $type;
974
+	$this->type = $type;
975 975
   }
976 976
   public function getType()
977 977
   {
978
-    return $this->type;
978
+	return $this->type;
979 979
   }
980 980
   public function setVersion($version)
981 981
   {
982
-    $this->version = $version;
982
+	$this->version = $version;
983 983
   }
984 984
   public function getVersion()
985 985
   {
986
-    return $this->version;
986
+	return $this->version;
987 987
   }
988 988
 }
989 989
 
@@ -1011,91 +1011,91 @@  discard block
 block discarded – undo
1011 1011
 
1012 1012
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1013 1013
   {
1014
-    $this->databaseChange = $databaseChange;
1014
+	$this->databaseChange = $databaseChange;
1015 1015
   }
1016 1016
   public function getDatabaseChange()
1017 1017
   {
1018
-    return $this->databaseChange;
1018
+	return $this->databaseChange;
1019 1019
   }
1020 1020
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1021 1021
   {
1022
-    $this->deviceDesc = $deviceDesc;
1022
+	$this->deviceDesc = $deviceDesc;
1023 1023
   }
1024 1024
   public function getDeviceDesc()
1025 1025
   {
1026
-    return $this->deviceDesc;
1026
+	return $this->deviceDesc;
1027 1027
   }
1028 1028
   public function setKind($kind)
1029 1029
   {
1030
-    $this->kind = $kind;
1030
+	$this->kind = $kind;
1031 1031
   }
1032 1032
   public function getKind()
1033 1033
   {
1034
-    return $this->kind;
1034
+	return $this->kind;
1035 1035
   }
1036 1036
   public function setMaxContiguousBwHz($maxContiguousBwHz)
1037 1037
   {
1038
-    $this->maxContiguousBwHz = $maxContiguousBwHz;
1038
+	$this->maxContiguousBwHz = $maxContiguousBwHz;
1039 1039
   }
1040 1040
   public function getMaxContiguousBwHz()
1041 1041
   {
1042
-    return $this->maxContiguousBwHz;
1042
+	return $this->maxContiguousBwHz;
1043 1043
   }
1044 1044
   public function setMaxTotalBwHz($maxTotalBwHz)
1045 1045
   {
1046
-    $this->maxTotalBwHz = $maxTotalBwHz;
1046
+	$this->maxTotalBwHz = $maxTotalBwHz;
1047 1047
   }
1048 1048
   public function getMaxTotalBwHz()
1049 1049
   {
1050
-    return $this->maxTotalBwHz;
1050
+	return $this->maxTotalBwHz;
1051 1051
   }
1052 1052
   public function setNeedsSpectrumReport($needsSpectrumReport)
1053 1053
   {
1054
-    $this->needsSpectrumReport = $needsSpectrumReport;
1054
+	$this->needsSpectrumReport = $needsSpectrumReport;
1055 1055
   }
1056 1056
   public function getNeedsSpectrumReport()
1057 1057
   {
1058
-    return $this->needsSpectrumReport;
1058
+	return $this->needsSpectrumReport;
1059 1059
   }
1060 1060
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
1061 1061
   {
1062
-    $this->rulesetInfo = $rulesetInfo;
1062
+	$this->rulesetInfo = $rulesetInfo;
1063 1063
   }
1064 1064
   public function getRulesetInfo()
1065 1065
   {
1066
-    return $this->rulesetInfo;
1066
+	return $this->rulesetInfo;
1067 1067
   }
1068 1068
   public function setSpectrumSchedules($spectrumSchedules)
1069 1069
   {
1070
-    $this->spectrumSchedules = $spectrumSchedules;
1070
+	$this->spectrumSchedules = $spectrumSchedules;
1071 1071
   }
1072 1072
   public function getSpectrumSchedules()
1073 1073
   {
1074
-    return $this->spectrumSchedules;
1074
+	return $this->spectrumSchedules;
1075 1075
   }
1076 1076
   public function setTimestamp($timestamp)
1077 1077
   {
1078
-    $this->timestamp = $timestamp;
1078
+	$this->timestamp = $timestamp;
1079 1079
   }
1080 1080
   public function getTimestamp()
1081 1081
   {
1082
-    return $this->timestamp;
1082
+	return $this->timestamp;
1083 1083
   }
1084 1084
   public function setType($type)
1085 1085
   {
1086
-    $this->type = $type;
1086
+	$this->type = $type;
1087 1087
   }
1088 1088
   public function getType()
1089 1089
   {
1090
-    return $this->type;
1090
+	return $this->type;
1091 1091
   }
1092 1092
   public function setVersion($version)
1093 1093
   {
1094
-    $this->version = $version;
1094
+	$this->version = $version;
1095 1095
   }
1096 1096
   public function getVersion()
1097 1097
   {
1098
-    return $this->version;
1098
+	return $this->version;
1099 1099
   }
1100 1100
 }
1101 1101
 
@@ -1113,35 +1113,35 @@  discard block
 block discarded – undo
1113 1113
 
1114 1114
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1115 1115
   {
1116
-    $this->deviceDesc = $deviceDesc;
1116
+	$this->deviceDesc = $deviceDesc;
1117 1117
   }
1118 1118
   public function getDeviceDesc()
1119 1119
   {
1120
-    return $this->deviceDesc;
1120
+	return $this->deviceDesc;
1121 1121
   }
1122 1122
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1123 1123
   {
1124
-    $this->location = $location;
1124
+	$this->location = $location;
1125 1125
   }
1126 1126
   public function getLocation()
1127 1127
   {
1128
-    return $this->location;
1128
+	return $this->location;
1129 1129
   }
1130 1130
   public function setType($type)
1131 1131
   {
1132
-    $this->type = $type;
1132
+	$this->type = $type;
1133 1133
   }
1134 1134
   public function getType()
1135 1135
   {
1136
-    return $this->type;
1136
+	return $this->type;
1137 1137
   }
1138 1138
   public function setVersion($version)
1139 1139
   {
1140
-    $this->version = $version;
1140
+	$this->version = $version;
1141 1141
   }
1142 1142
   public function getVersion()
1143 1143
   {
1144
-    return $this->version;
1144
+	return $this->version;
1145 1145
   }
1146 1146
 }
1147 1147
 
@@ -1160,43 +1160,43 @@  discard block
 block discarded – undo
1160 1160
 
1161 1161
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1162 1162
   {
1163
-    $this->databaseChange = $databaseChange;
1163
+	$this->databaseChange = $databaseChange;
1164 1164
   }
1165 1165
   public function getDatabaseChange()
1166 1166
   {
1167
-    return $this->databaseChange;
1167
+	return $this->databaseChange;
1168 1168
   }
1169 1169
   public function setKind($kind)
1170 1170
   {
1171
-    $this->kind = $kind;
1171
+	$this->kind = $kind;
1172 1172
   }
1173 1173
   public function getKind()
1174 1174
   {
1175
-    return $this->kind;
1175
+	return $this->kind;
1176 1176
   }
1177 1177
   public function setRulesetInfo(Google_Service_Spectrum_RulesetInfo $rulesetInfo)
1178 1178
   {
1179
-    $this->rulesetInfo = $rulesetInfo;
1179
+	$this->rulesetInfo = $rulesetInfo;
1180 1180
   }
1181 1181
   public function getRulesetInfo()
1182 1182
   {
1183
-    return $this->rulesetInfo;
1183
+	return $this->rulesetInfo;
1184 1184
   }
1185 1185
   public function setType($type)
1186 1186
   {
1187
-    $this->type = $type;
1187
+	$this->type = $type;
1188 1188
   }
1189 1189
   public function getType()
1190 1190
   {
1191
-    return $this->type;
1191
+	return $this->type;
1192 1192
   }
1193 1193
   public function setVersion($version)
1194 1194
   {
1195
-    $this->version = $version;
1195
+	$this->version = $version;
1196 1196
   }
1197 1197
   public function getVersion()
1198 1198
   {
1199
-    return $this->version;
1199
+	return $this->version;
1200 1200
   }
1201 1201
 }
1202 1202
 
@@ -1217,43 +1217,43 @@  discard block
 block discarded – undo
1217 1217
 
1218 1218
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1219 1219
   {
1220
-    $this->deviceDesc = $deviceDesc;
1220
+	$this->deviceDesc = $deviceDesc;
1221 1221
   }
1222 1222
   public function getDeviceDesc()
1223 1223
   {
1224
-    return $this->deviceDesc;
1224
+	return $this->deviceDesc;
1225 1225
   }
1226 1226
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1227 1227
   {
1228
-    $this->location = $location;
1228
+	$this->location = $location;
1229 1229
   }
1230 1230
   public function getLocation()
1231 1231
   {
1232
-    return $this->location;
1232
+	return $this->location;
1233 1233
   }
1234 1234
   public function setSpectra($spectra)
1235 1235
   {
1236
-    $this->spectra = $spectra;
1236
+	$this->spectra = $spectra;
1237 1237
   }
1238 1238
   public function getSpectra()
1239 1239
   {
1240
-    return $this->spectra;
1240
+	return $this->spectra;
1241 1241
   }
1242 1242
   public function setType($type)
1243 1243
   {
1244
-    $this->type = $type;
1244
+	$this->type = $type;
1245 1245
   }
1246 1246
   public function getType()
1247 1247
   {
1248
-    return $this->type;
1248
+	return $this->type;
1249 1249
   }
1250 1250
   public function setVersion($version)
1251 1251
   {
1252
-    $this->version = $version;
1252
+	$this->version = $version;
1253 1253
   }
1254 1254
   public function getVersion()
1255 1255
   {
1256
-    return $this->version;
1256
+	return $this->version;
1257 1257
   }
1258 1258
 }
1259 1259
 
@@ -1268,27 +1268,27 @@  discard block
 block discarded – undo
1268 1268
 
1269 1269
   public function setKind($kind)
1270 1270
   {
1271
-    $this->kind = $kind;
1271
+	$this->kind = $kind;
1272 1272
   }
1273 1273
   public function getKind()
1274 1274
   {
1275
-    return $this->kind;
1275
+	return $this->kind;
1276 1276
   }
1277 1277
   public function setType($type)
1278 1278
   {
1279
-    $this->type = $type;
1279
+	$this->type = $type;
1280 1280
   }
1281 1281
   public function getType()
1282 1282
   {
1283
-    return $this->type;
1283
+	return $this->type;
1284 1284
   }
1285 1285
   public function setVersion($version)
1286 1286
   {
1287
-    $this->version = $version;
1287
+	$this->version = $version;
1288 1288
   }
1289 1289
   public function getVersion()
1290 1290
   {
1291
-    return $this->version;
1291
+	return $this->version;
1292 1292
   }
1293 1293
 }
1294 1294
 
@@ -1310,51 +1310,51 @@  discard block
 block discarded – undo
1310 1310
 
1311 1311
   public function setAntenna(Google_Service_Spectrum_AntennaCharacteristics $antenna)
1312 1312
   {
1313
-    $this->antenna = $antenna;
1313
+	$this->antenna = $antenna;
1314 1314
   }
1315 1315
   public function getAntenna()
1316 1316
   {
1317
-    return $this->antenna;
1317
+	return $this->antenna;
1318 1318
   }
1319 1319
   public function setDeviceDesc(Google_Service_Spectrum_DeviceDescriptor $deviceDesc)
1320 1320
   {
1321
-    $this->deviceDesc = $deviceDesc;
1321
+	$this->deviceDesc = $deviceDesc;
1322 1322
   }
1323 1323
   public function getDeviceDesc()
1324 1324
   {
1325
-    return $this->deviceDesc;
1325
+	return $this->deviceDesc;
1326 1326
   }
1327 1327
   public function setDeviceOwner(Google_Service_Spectrum_DeviceOwner $deviceOwner)
1328 1328
   {
1329
-    $this->deviceOwner = $deviceOwner;
1329
+	$this->deviceOwner = $deviceOwner;
1330 1330
   }
1331 1331
   public function getDeviceOwner()
1332 1332
   {
1333
-    return $this->deviceOwner;
1333
+	return $this->deviceOwner;
1334 1334
   }
1335 1335
   public function setLocation(Google_Service_Spectrum_GeoLocation $location)
1336 1336
   {
1337
-    $this->location = $location;
1337
+	$this->location = $location;
1338 1338
   }
1339 1339
   public function getLocation()
1340 1340
   {
1341
-    return $this->location;
1341
+	return $this->location;
1342 1342
   }
1343 1343
   public function setType($type)
1344 1344
   {
1345
-    $this->type = $type;
1345
+	$this->type = $type;
1346 1346
   }
1347 1347
   public function getType()
1348 1348
   {
1349
-    return $this->type;
1349
+	return $this->type;
1350 1350
   }
1351 1351
   public function setVersion($version)
1352 1352
   {
1353
-    $this->version = $version;
1353
+	$this->version = $version;
1354 1354
   }
1355 1355
   public function getVersion()
1356 1356
   {
1357
-    return $this->version;
1357
+	return $this->version;
1358 1358
   }
1359 1359
 }
1360 1360
 
@@ -1371,35 +1371,35 @@  discard block
 block discarded – undo
1371 1371
 
1372 1372
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1373 1373
   {
1374
-    $this->databaseChange = $databaseChange;
1374
+	$this->databaseChange = $databaseChange;
1375 1375
   }
1376 1376
   public function getDatabaseChange()
1377 1377
   {
1378
-    return $this->databaseChange;
1378
+	return $this->databaseChange;
1379 1379
   }
1380 1380
   public function setKind($kind)
1381 1381
   {
1382
-    $this->kind = $kind;
1382
+	$this->kind = $kind;
1383 1383
   }
1384 1384
   public function getKind()
1385 1385
   {
1386
-    return $this->kind;
1386
+	return $this->kind;
1387 1387
   }
1388 1388
   public function setType($type)
1389 1389
   {
1390
-    $this->type = $type;
1390
+	$this->type = $type;
1391 1391
   }
1392 1392
   public function getType()
1393 1393
   {
1394
-    return $this->type;
1394
+	return $this->type;
1395 1395
   }
1396 1396
   public function setVersion($version)
1397 1397
   {
1398
-    $this->version = $version;
1398
+	$this->version = $version;
1399 1399
   }
1400 1400
   public function getVersion()
1401 1401
   {
1402
-    return $this->version;
1402
+	return $this->version;
1403 1403
   }
1404 1404
 }
1405 1405
 
@@ -1416,27 +1416,27 @@  discard block
 block discarded – undo
1416 1416
 
1417 1417
   public function setDeviceDescs($deviceDescs)
1418 1418
   {
1419
-    $this->deviceDescs = $deviceDescs;
1419
+	$this->deviceDescs = $deviceDescs;
1420 1420
   }
1421 1421
   public function getDeviceDescs()
1422 1422
   {
1423
-    return $this->deviceDescs;
1423
+	return $this->deviceDescs;
1424 1424
   }
1425 1425
   public function setType($type)
1426 1426
   {
1427
-    $this->type = $type;
1427
+	$this->type = $type;
1428 1428
   }
1429 1429
   public function getType()
1430 1430
   {
1431
-    return $this->type;
1431
+	return $this->type;
1432 1432
   }
1433 1433
   public function setVersion($version)
1434 1434
   {
1435
-    $this->version = $version;
1435
+	$this->version = $version;
1436 1436
   }
1437 1437
   public function getVersion()
1438 1438
   {
1439
-    return $this->version;
1439
+	return $this->version;
1440 1440
   }
1441 1441
 }
1442 1442
 
@@ -1456,43 +1456,43 @@  discard block
 block discarded – undo
1456 1456
 
1457 1457
   public function setDatabaseChange(Google_Service_Spectrum_DbUpdateSpec $databaseChange)
1458 1458
   {
1459
-    $this->databaseChange = $databaseChange;
1459
+	$this->databaseChange = $databaseChange;
1460 1460
   }
1461 1461
   public function getDatabaseChange()
1462 1462
   {
1463
-    return $this->databaseChange;
1463
+	return $this->databaseChange;
1464 1464
   }
1465 1465
   public function setDeviceValidities($deviceValidities)
1466 1466
   {
1467
-    $this->deviceValidities = $deviceValidities;
1467
+	$this->deviceValidities = $deviceValidities;
1468 1468
   }
1469 1469
   public function getDeviceValidities()
1470 1470
   {
1471
-    return $this->deviceValidities;
1471
+	return $this->deviceValidities;
1472 1472
   }
1473 1473
   public function setKind($kind)
1474 1474
   {
1475
-    $this->kind = $kind;
1475
+	$this->kind = $kind;
1476 1476
   }
1477 1477
   public function getKind()
1478 1478
   {
1479
-    return $this->kind;
1479
+	return $this->kind;
1480 1480
   }
1481 1481
   public function setType($type)
1482 1482
   {
1483
-    $this->type = $type;
1483
+	$this->type = $type;
1484 1484
   }
1485 1485
   public function getType()
1486 1486
   {
1487
-    return $this->type;
1487
+	return $this->type;
1488 1488
   }
1489 1489
   public function setVersion($version)
1490 1490
   {
1491
-    $this->version = $version;
1491
+	$this->version = $version;
1492 1492
   }
1493 1493
   public function getVersion()
1494 1494
   {
1495
-    return $this->version;
1495
+	return $this->version;
1496 1496
   }
1497 1497
 }
1498 1498
 
@@ -1509,35 +1509,35 @@  discard block
 block discarded – undo
1509 1509
 
1510 1510
   public function setAuthority($authority)
1511 1511
   {
1512
-    $this->authority = $authority;
1512
+	$this->authority = $authority;
1513 1513
   }
1514 1514
   public function getAuthority()
1515 1515
   {
1516
-    return $this->authority;
1516
+	return $this->authority;
1517 1517
   }
1518 1518
   public function setMaxLocationChange($maxLocationChange)
1519 1519
   {
1520
-    $this->maxLocationChange = $maxLocationChange;
1520
+	$this->maxLocationChange = $maxLocationChange;
1521 1521
   }
1522 1522
   public function getMaxLocationChange()
1523 1523
   {
1524
-    return $this->maxLocationChange;
1524
+	return $this->maxLocationChange;
1525 1525
   }
1526 1526
   public function setMaxPollingSecs($maxPollingSecs)
1527 1527
   {
1528
-    $this->maxPollingSecs = $maxPollingSecs;
1528
+	$this->maxPollingSecs = $maxPollingSecs;
1529 1529
   }
1530 1530
   public function getMaxPollingSecs()
1531 1531
   {
1532
-    return $this->maxPollingSecs;
1532
+	return $this->maxPollingSecs;
1533 1533
   }
1534 1534
   public function setRulesetIds($rulesetIds)
1535 1535
   {
1536
-    $this->rulesetIds = $rulesetIds;
1536
+	$this->rulesetIds = $rulesetIds;
1537 1537
   }
1538 1538
   public function getRulesetIds()
1539 1539
   {
1540
-    return $this->rulesetIds;
1540
+	return $this->rulesetIds;
1541 1541
   }
1542 1542
 }
1543 1543
 
@@ -1553,19 +1553,19 @@  discard block
 block discarded – undo
1553 1553
 
1554 1554
   public function setBandwidth($bandwidth)
1555 1555
   {
1556
-    $this->bandwidth = $bandwidth;
1556
+	$this->bandwidth = $bandwidth;
1557 1557
   }
1558 1558
   public function getBandwidth()
1559 1559
   {
1560
-    return $this->bandwidth;
1560
+	return $this->bandwidth;
1561 1561
   }
1562 1562
   public function setFrequencyRanges($frequencyRanges)
1563 1563
   {
1564
-    $this->frequencyRanges = $frequencyRanges;
1564
+	$this->frequencyRanges = $frequencyRanges;
1565 1565
   }
1566 1566
   public function getFrequencyRanges()
1567 1567
   {
1568
-    return $this->frequencyRanges;
1568
+	return $this->frequencyRanges;
1569 1569
   }
1570 1570
 }
1571 1571
 
@@ -1582,19 +1582,19 @@  discard block
 block discarded – undo
1582 1582
 
1583 1583
   public function setEventTime(Google_Service_Spectrum_EventTime $eventTime)
1584 1584
   {
1585
-    $this->eventTime = $eventTime;
1585
+	$this->eventTime = $eventTime;
1586 1586
   }
1587 1587
   public function getEventTime()
1588 1588
   {
1589
-    return $this->eventTime;
1589
+	return $this->eventTime;
1590 1590
   }
1591 1591
   public function setSpectra($spectra)
1592 1592
   {
1593
-    $this->spectra = $spectra;
1593
+	$this->spectra = $spectra;
1594 1594
   }
1595 1595
   public function getSpectra()
1596 1596
   {
1597
-    return $this->spectra;
1597
+	return $this->spectra;
1598 1598
   }
1599 1599
 }
1600 1600
 
@@ -1615,43 +1615,43 @@  discard block
 block discarded – undo
1615 1615
 
1616 1616
   public function setAdr(Google_Service_Spectrum_VcardAddress $adr)
1617 1617
   {
1618
-    $this->adr = $adr;
1618
+	$this->adr = $adr;
1619 1619
   }
1620 1620
   public function getAdr()
1621 1621
   {
1622
-    return $this->adr;
1622
+	return $this->adr;
1623 1623
   }
1624 1624
   public function setEmail(Google_Service_Spectrum_VcardTypedText $email)
1625 1625
   {
1626
-    $this->email = $email;
1626
+	$this->email = $email;
1627 1627
   }
1628 1628
   public function getEmail()
1629 1629
   {
1630
-    return $this->email;
1630
+	return $this->email;
1631 1631
   }
1632 1632
   public function setFn($fn)
1633 1633
   {
1634
-    $this->fn = $fn;
1634
+	$this->fn = $fn;
1635 1635
   }
1636 1636
   public function getFn()
1637 1637
   {
1638
-    return $this->fn;
1638
+	return $this->fn;
1639 1639
   }
1640 1640
   public function setOrg(Google_Service_Spectrum_VcardTypedText $org)
1641 1641
   {
1642
-    $this->org = $org;
1642
+	$this->org = $org;
1643 1643
   }
1644 1644
   public function getOrg()
1645 1645
   {
1646
-    return $this->org;
1646
+	return $this->org;
1647 1647
   }
1648 1648
   public function setTel(Google_Service_Spectrum_VcardTelephone $tel)
1649 1649
   {
1650
-    $this->tel = $tel;
1650
+	$this->tel = $tel;
1651 1651
   }
1652 1652
   public function getTel()
1653 1653
   {
1654
-    return $this->tel;
1654
+	return $this->tel;
1655 1655
   }
1656 1656
 }
1657 1657
 
@@ -1669,51 +1669,51 @@  discard block
 block discarded – undo
1669 1669
 
1670 1670
   public function setCode($code)
1671 1671
   {
1672
-    $this->code = $code;
1672
+	$this->code = $code;
1673 1673
   }
1674 1674
   public function getCode()
1675 1675
   {
1676
-    return $this->code;
1676
+	return $this->code;
1677 1677
   }
1678 1678
   public function setCountry($country)
1679 1679
   {
1680
-    $this->country = $country;
1680
+	$this->country = $country;
1681 1681
   }
1682 1682
   public function getCountry()
1683 1683
   {
1684
-    return $this->country;
1684
+	return $this->country;
1685 1685
   }
1686 1686
   public function setLocality($locality)
1687 1687
   {
1688
-    $this->locality = $locality;
1688
+	$this->locality = $locality;
1689 1689
   }
1690 1690
   public function getLocality()
1691 1691
   {
1692
-    return $this->locality;
1692
+	return $this->locality;
1693 1693
   }
1694 1694
   public function setPobox($pobox)
1695 1695
   {
1696
-    $this->pobox = $pobox;
1696
+	$this->pobox = $pobox;
1697 1697
   }
1698 1698
   public function getPobox()
1699 1699
   {
1700
-    return $this->pobox;
1700
+	return $this->pobox;
1701 1701
   }
1702 1702
   public function setRegion($region)
1703 1703
   {
1704
-    $this->region = $region;
1704
+	$this->region = $region;
1705 1705
   }
1706 1706
   public function getRegion()
1707 1707
   {
1708
-    return $this->region;
1708
+	return $this->region;
1709 1709
   }
1710 1710
   public function setStreet($street)
1711 1711
   {
1712
-    $this->street = $street;
1712
+	$this->street = $street;
1713 1713
   }
1714 1714
   public function getStreet()
1715 1715
   {
1716
-    return $this->street;
1716
+	return $this->street;
1717 1717
   }
1718 1718
 }
1719 1719
 
@@ -1726,11 +1726,11 @@  discard block
 block discarded – undo
1726 1726
 
1727 1727
   public function setUri($uri)
1728 1728
   {
1729
-    $this->uri = $uri;
1729
+	$this->uri = $uri;
1730 1730
   }
1731 1731
   public function getUri()
1732 1732
   {
1733
-    return $this->uri;
1733
+	return $this->uri;
1734 1734
   }
1735 1735
 }
1736 1736
 
@@ -1743,10 +1743,10 @@  discard block
 block discarded – undo
1743 1743
 
1744 1744
   public function setText($text)
1745 1745
   {
1746
-    $this->text = $text;
1746
+	$this->text = $text;
1747 1747
   }
1748 1748
   public function getText()
1749 1749
   {
1750
-    return $this->text;
1750
+	return $this->text;
1751 1751
   }
1752 1752
 }
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -58,23 +58,23 @@
 block discarded – undo
58 58
               'path' => 'getSpectrum',
59 59
               'httpMethod' => 'POST',
60 60
               'parameters' => array(),
61
-            ),'getSpectrumBatch' => array(
61
+            ), 'getSpectrumBatch' => array(
62 62
               'path' => 'getSpectrumBatch',
63 63
               'httpMethod' => 'POST',
64 64
               'parameters' => array(),
65
-            ),'init' => array(
65
+            ), 'init' => array(
66 66
               'path' => 'init',
67 67
               'httpMethod' => 'POST',
68 68
               'parameters' => array(),
69
-            ),'notifySpectrumUse' => array(
69
+            ), 'notifySpectrumUse' => array(
70 70
               'path' => 'notifySpectrumUse',
71 71
               'httpMethod' => 'POST',
72 72
               'parameters' => array(),
73
-            ),'register' => array(
73
+            ), 'register' => array(
74 74
               'path' => 'register',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(),
77
-            ),'verifyDevice' => array(
77
+            ), 'verifyDevice' => array(
78 78
               'path' => 'verifyDevice',
79 79
               'httpMethod' => 'POST',
80 80
               'parameters' => array(),
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Coordinate.php 2 patches
Indentation   +578 added lines, -578 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 Google Maps Coordinate jobs. */
34 34
   const COORDINATE =
35
-      "https://www.googleapis.com/auth/coordinate";
35
+	  "https://www.googleapis.com/auth/coordinate";
36 36
   /** View your Google Coordinate jobs. */
37 37
   const COORDINATE_READONLY =
38
-      "https://www.googleapis.com/auth/coordinate.readonly";
38
+	  "https://www.googleapis.com/auth/coordinate.readonly";
39 39
 
40 40
   public $customFieldDef;
41 41
   public $jobs;
@@ -52,414 +52,414 @@  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 = 'coordinate/v1/';
58
-    $this->version = 'v1';
59
-    $this->serviceName = 'coordinate';
60
-
61
-    $this->customFieldDef = new Google_Service_Coordinate_CustomFieldDef_Resource(
62
-        $this,
63
-        $this->serviceName,
64
-        'customFieldDef',
65
-        array(
66
-          'methods' => array(
67
-            'list' => array(
68
-              'path' => 'teams/{teamId}/custom_fields',
69
-              'httpMethod' => 'GET',
70
-              'parameters' => array(
71
-                'teamId' => array(
72
-                  'location' => 'path',
73
-                  'type' => 'string',
74
-                  'required' => true,
75
-                ),
76
-              ),
77
-            ),
78
-          )
79
-        )
80
-    );
81
-    $this->jobs = new Google_Service_Coordinate_Jobs_Resource(
82
-        $this,
83
-        $this->serviceName,
84
-        'jobs',
85
-        array(
86
-          'methods' => array(
87
-            'get' => array(
88
-              'path' => 'teams/{teamId}/jobs/{jobId}',
89
-              'httpMethod' => 'GET',
90
-              'parameters' => array(
91
-                'teamId' => array(
92
-                  'location' => 'path',
93
-                  'type' => 'string',
94
-                  'required' => true,
95
-                ),
96
-                'jobId' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-              ),
102
-            ),'insert' => array(
103
-              'path' => 'teams/{teamId}/jobs',
104
-              'httpMethod' => 'POST',
105
-              'parameters' => array(
106
-                'teamId' => array(
107
-                  'location' => 'path',
108
-                  'type' => 'string',
109
-                  'required' => true,
110
-                ),
111
-                'address' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                  'required' => true,
115
-                ),
116
-                'lat' => array(
117
-                  'location' => 'query',
118
-                  'type' => 'number',
119
-                  'required' => true,
120
-                ),
121
-                'lng' => array(
122
-                  'location' => 'query',
123
-                  'type' => 'number',
124
-                  'required' => true,
125
-                ),
126
-                'title' => array(
127
-                  'location' => 'query',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-                'customerName' => array(
132
-                  'location' => 'query',
133
-                  'type' => 'string',
134
-                ),
135
-                'note' => array(
136
-                  'location' => 'query',
137
-                  'type' => 'string',
138
-                ),
139
-                'assignee' => array(
140
-                  'location' => 'query',
141
-                  'type' => 'string',
142
-                ),
143
-                'customerPhoneNumber' => array(
144
-                  'location' => 'query',
145
-                  'type' => 'string',
146
-                ),
147
-                'customField' => array(
148
-                  'location' => 'query',
149
-                  'type' => 'string',
150
-                  'repeated' => true,
151
-                ),
152
-              ),
153
-            ),'list' => array(
154
-              'path' => 'teams/{teamId}/jobs',
155
-              'httpMethod' => 'GET',
156
-              'parameters' => array(
157
-                'teamId' => array(
158
-                  'location' => 'path',
159
-                  'type' => 'string',
160
-                  'required' => true,
161
-                ),
162
-                'minModifiedTimestampMs' => array(
163
-                  'location' => 'query',
164
-                  'type' => 'string',
165
-                ),
166
-                'maxResults' => array(
167
-                  'location' => 'query',
168
-                  'type' => 'integer',
169
-                ),
170
-                'pageToken' => array(
171
-                  'location' => 'query',
172
-                  'type' => 'string',
173
-                ),
174
-              ),
175
-            ),'patch' => array(
176
-              'path' => 'teams/{teamId}/jobs/{jobId}',
177
-              'httpMethod' => 'PATCH',
178
-              'parameters' => array(
179
-                'teamId' => array(
180
-                  'location' => 'path',
181
-                  'type' => 'string',
182
-                  'required' => true,
183
-                ),
184
-                'jobId' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-                'customerName' => array(
190
-                  'location' => 'query',
191
-                  'type' => 'string',
192
-                ),
193
-                'title' => array(
194
-                  'location' => 'query',
195
-                  'type' => 'string',
196
-                ),
197
-                'note' => array(
198
-                  'location' => 'query',
199
-                  'type' => 'string',
200
-                ),
201
-                'assignee' => array(
202
-                  'location' => 'query',
203
-                  'type' => 'string',
204
-                ),
205
-                'customerPhoneNumber' => array(
206
-                  'location' => 'query',
207
-                  'type' => 'string',
208
-                ),
209
-                'address' => array(
210
-                  'location' => 'query',
211
-                  'type' => 'string',
212
-                ),
213
-                'lat' => array(
214
-                  'location' => 'query',
215
-                  'type' => 'number',
216
-                ),
217
-                'progress' => array(
218
-                  'location' => 'query',
219
-                  'type' => 'string',
220
-                ),
221
-                'lng' => array(
222
-                  'location' => 'query',
223
-                  'type' => 'number',
224
-                ),
225
-                'customField' => array(
226
-                  'location' => 'query',
227
-                  'type' => 'string',
228
-                  'repeated' => true,
229
-                ),
230
-              ),
231
-            ),'update' => array(
232
-              'path' => 'teams/{teamId}/jobs/{jobId}',
233
-              'httpMethod' => 'PUT',
234
-              'parameters' => array(
235
-                'teamId' => array(
236
-                  'location' => 'path',
237
-                  'type' => 'string',
238
-                  'required' => true,
239
-                ),
240
-                'jobId' => array(
241
-                  'location' => 'path',
242
-                  'type' => 'string',
243
-                  'required' => true,
244
-                ),
245
-                'customerName' => array(
246
-                  'location' => 'query',
247
-                  'type' => 'string',
248
-                ),
249
-                'title' => array(
250
-                  'location' => 'query',
251
-                  'type' => 'string',
252
-                ),
253
-                'note' => array(
254
-                  'location' => 'query',
255
-                  'type' => 'string',
256
-                ),
257
-                'assignee' => array(
258
-                  'location' => 'query',
259
-                  'type' => 'string',
260
-                ),
261
-                'customerPhoneNumber' => array(
262
-                  'location' => 'query',
263
-                  'type' => 'string',
264
-                ),
265
-                'address' => array(
266
-                  'location' => 'query',
267
-                  'type' => 'string',
268
-                ),
269
-                'lat' => array(
270
-                  'location' => 'query',
271
-                  'type' => 'number',
272
-                ),
273
-                'progress' => array(
274
-                  'location' => 'query',
275
-                  'type' => 'string',
276
-                ),
277
-                'lng' => array(
278
-                  'location' => 'query',
279
-                  'type' => 'number',
280
-                ),
281
-                'customField' => array(
282
-                  'location' => 'query',
283
-                  'type' => 'string',
284
-                  'repeated' => true,
285
-                ),
286
-              ),
287
-            ),
288
-          )
289
-        )
290
-    );
291
-    $this->location = new Google_Service_Coordinate_Location_Resource(
292
-        $this,
293
-        $this->serviceName,
294
-        'location',
295
-        array(
296
-          'methods' => array(
297
-            'list' => array(
298
-              'path' => 'teams/{teamId}/workers/{workerEmail}/locations',
299
-              'httpMethod' => 'GET',
300
-              'parameters' => array(
301
-                'teamId' => array(
302
-                  'location' => 'path',
303
-                  'type' => 'string',
304
-                  'required' => true,
305
-                ),
306
-                'workerEmail' => array(
307
-                  'location' => 'path',
308
-                  'type' => 'string',
309
-                  'required' => true,
310
-                ),
311
-                'startTimestampMs' => array(
312
-                  'location' => 'query',
313
-                  'type' => 'string',
314
-                  'required' => true,
315
-                ),
316
-                'pageToken' => array(
317
-                  'location' => 'query',
318
-                  'type' => 'string',
319
-                ),
320
-                'maxResults' => array(
321
-                  'location' => 'query',
322
-                  'type' => 'integer',
323
-                ),
324
-              ),
325
-            ),
326
-          )
327
-        )
328
-    );
329
-    $this->schedule = new Google_Service_Coordinate_Schedule_Resource(
330
-        $this,
331
-        $this->serviceName,
332
-        'schedule',
333
-        array(
334
-          'methods' => array(
335
-            'get' => array(
336
-              'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
337
-              'httpMethod' => 'GET',
338
-              'parameters' => array(
339
-                'teamId' => array(
340
-                  'location' => 'path',
341
-                  'type' => 'string',
342
-                  'required' => true,
343
-                ),
344
-                'jobId' => array(
345
-                  'location' => 'path',
346
-                  'type' => 'string',
347
-                  'required' => true,
348
-                ),
349
-              ),
350
-            ),'patch' => array(
351
-              'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
352
-              'httpMethod' => 'PATCH',
353
-              'parameters' => array(
354
-                'teamId' => array(
355
-                  'location' => 'path',
356
-                  'type' => 'string',
357
-                  'required' => true,
358
-                ),
359
-                'jobId' => array(
360
-                  'location' => 'path',
361
-                  'type' => 'string',
362
-                  'required' => true,
363
-                ),
364
-                'allDay' => array(
365
-                  'location' => 'query',
366
-                  'type' => 'boolean',
367
-                ),
368
-                'startTime' => array(
369
-                  'location' => 'query',
370
-                  'type' => 'string',
371
-                ),
372
-                'duration' => array(
373
-                  'location' => 'query',
374
-                  'type' => 'string',
375
-                ),
376
-                'endTime' => array(
377
-                  'location' => 'query',
378
-                  'type' => 'string',
379
-                ),
380
-              ),
381
-            ),'update' => array(
382
-              'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
383
-              'httpMethod' => 'PUT',
384
-              'parameters' => array(
385
-                'teamId' => array(
386
-                  'location' => 'path',
387
-                  'type' => 'string',
388
-                  'required' => true,
389
-                ),
390
-                'jobId' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'allDay' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'boolean',
398
-                ),
399
-                'startTime' => array(
400
-                  'location' => 'query',
401
-                  'type' => 'string',
402
-                ),
403
-                'duration' => array(
404
-                  'location' => 'query',
405
-                  'type' => 'string',
406
-                ),
407
-                'endTime' => array(
408
-                  'location' => 'query',
409
-                  'type' => 'string',
410
-                ),
411
-              ),
412
-            ),
413
-          )
414
-        )
415
-    );
416
-    $this->team = new Google_Service_Coordinate_Team_Resource(
417
-        $this,
418
-        $this->serviceName,
419
-        'team',
420
-        array(
421
-          'methods' => array(
422
-            'list' => array(
423
-              'path' => 'teams',
424
-              'httpMethod' => 'GET',
425
-              'parameters' => array(
426
-                'admin' => array(
427
-                  'location' => 'query',
428
-                  'type' => 'boolean',
429
-                ),
430
-                'worker' => array(
431
-                  'location' => 'query',
432
-                  'type' => 'boolean',
433
-                ),
434
-                'dispatcher' => array(
435
-                  'location' => 'query',
436
-                  'type' => 'boolean',
437
-                ),
438
-              ),
439
-            ),
440
-          )
441
-        )
442
-    );
443
-    $this->worker = new Google_Service_Coordinate_Worker_Resource(
444
-        $this,
445
-        $this->serviceName,
446
-        'worker',
447
-        array(
448
-          'methods' => array(
449
-            'list' => array(
450
-              'path' => 'teams/{teamId}/workers',
451
-              'httpMethod' => 'GET',
452
-              'parameters' => array(
453
-                'teamId' => array(
454
-                  'location' => 'path',
455
-                  'type' => 'string',
456
-                  'required' => true,
457
-                ),
458
-              ),
459
-            ),
460
-          )
461
-        )
462
-    );
55
+	parent::__construct($client);
56
+	$this->rootUrl = 'https://www.googleapis.com/';
57
+	$this->servicePath = 'coordinate/v1/';
58
+	$this->version = 'v1';
59
+	$this->serviceName = 'coordinate';
60
+
61
+	$this->customFieldDef = new Google_Service_Coordinate_CustomFieldDef_Resource(
62
+		$this,
63
+		$this->serviceName,
64
+		'customFieldDef',
65
+		array(
66
+		  'methods' => array(
67
+			'list' => array(
68
+			  'path' => 'teams/{teamId}/custom_fields',
69
+			  'httpMethod' => 'GET',
70
+			  'parameters' => array(
71
+				'teamId' => array(
72
+				  'location' => 'path',
73
+				  'type' => 'string',
74
+				  'required' => true,
75
+				),
76
+			  ),
77
+			),
78
+		  )
79
+		)
80
+	);
81
+	$this->jobs = new Google_Service_Coordinate_Jobs_Resource(
82
+		$this,
83
+		$this->serviceName,
84
+		'jobs',
85
+		array(
86
+		  'methods' => array(
87
+			'get' => array(
88
+			  'path' => 'teams/{teamId}/jobs/{jobId}',
89
+			  'httpMethod' => 'GET',
90
+			  'parameters' => array(
91
+				'teamId' => array(
92
+				  'location' => 'path',
93
+				  'type' => 'string',
94
+				  'required' => true,
95
+				),
96
+				'jobId' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+			  ),
102
+			),'insert' => array(
103
+			  'path' => 'teams/{teamId}/jobs',
104
+			  'httpMethod' => 'POST',
105
+			  'parameters' => array(
106
+				'teamId' => array(
107
+				  'location' => 'path',
108
+				  'type' => 'string',
109
+				  'required' => true,
110
+				),
111
+				'address' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				  'required' => true,
115
+				),
116
+				'lat' => array(
117
+				  'location' => 'query',
118
+				  'type' => 'number',
119
+				  'required' => true,
120
+				),
121
+				'lng' => array(
122
+				  'location' => 'query',
123
+				  'type' => 'number',
124
+				  'required' => true,
125
+				),
126
+				'title' => array(
127
+				  'location' => 'query',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+				'customerName' => array(
132
+				  'location' => 'query',
133
+				  'type' => 'string',
134
+				),
135
+				'note' => array(
136
+				  'location' => 'query',
137
+				  'type' => 'string',
138
+				),
139
+				'assignee' => array(
140
+				  'location' => 'query',
141
+				  'type' => 'string',
142
+				),
143
+				'customerPhoneNumber' => array(
144
+				  'location' => 'query',
145
+				  'type' => 'string',
146
+				),
147
+				'customField' => array(
148
+				  'location' => 'query',
149
+				  'type' => 'string',
150
+				  'repeated' => true,
151
+				),
152
+			  ),
153
+			),'list' => array(
154
+			  'path' => 'teams/{teamId}/jobs',
155
+			  'httpMethod' => 'GET',
156
+			  'parameters' => array(
157
+				'teamId' => array(
158
+				  'location' => 'path',
159
+				  'type' => 'string',
160
+				  'required' => true,
161
+				),
162
+				'minModifiedTimestampMs' => array(
163
+				  'location' => 'query',
164
+				  'type' => 'string',
165
+				),
166
+				'maxResults' => array(
167
+				  'location' => 'query',
168
+				  'type' => 'integer',
169
+				),
170
+				'pageToken' => array(
171
+				  'location' => 'query',
172
+				  'type' => 'string',
173
+				),
174
+			  ),
175
+			),'patch' => array(
176
+			  'path' => 'teams/{teamId}/jobs/{jobId}',
177
+			  'httpMethod' => 'PATCH',
178
+			  'parameters' => array(
179
+				'teamId' => array(
180
+				  'location' => 'path',
181
+				  'type' => 'string',
182
+				  'required' => true,
183
+				),
184
+				'jobId' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+				'customerName' => array(
190
+				  'location' => 'query',
191
+				  'type' => 'string',
192
+				),
193
+				'title' => array(
194
+				  'location' => 'query',
195
+				  'type' => 'string',
196
+				),
197
+				'note' => array(
198
+				  'location' => 'query',
199
+				  'type' => 'string',
200
+				),
201
+				'assignee' => array(
202
+				  'location' => 'query',
203
+				  'type' => 'string',
204
+				),
205
+				'customerPhoneNumber' => array(
206
+				  'location' => 'query',
207
+				  'type' => 'string',
208
+				),
209
+				'address' => array(
210
+				  'location' => 'query',
211
+				  'type' => 'string',
212
+				),
213
+				'lat' => array(
214
+				  'location' => 'query',
215
+				  'type' => 'number',
216
+				),
217
+				'progress' => array(
218
+				  'location' => 'query',
219
+				  'type' => 'string',
220
+				),
221
+				'lng' => array(
222
+				  'location' => 'query',
223
+				  'type' => 'number',
224
+				),
225
+				'customField' => array(
226
+				  'location' => 'query',
227
+				  'type' => 'string',
228
+				  'repeated' => true,
229
+				),
230
+			  ),
231
+			),'update' => array(
232
+			  'path' => 'teams/{teamId}/jobs/{jobId}',
233
+			  'httpMethod' => 'PUT',
234
+			  'parameters' => array(
235
+				'teamId' => array(
236
+				  'location' => 'path',
237
+				  'type' => 'string',
238
+				  'required' => true,
239
+				),
240
+				'jobId' => array(
241
+				  'location' => 'path',
242
+				  'type' => 'string',
243
+				  'required' => true,
244
+				),
245
+				'customerName' => array(
246
+				  'location' => 'query',
247
+				  'type' => 'string',
248
+				),
249
+				'title' => array(
250
+				  'location' => 'query',
251
+				  'type' => 'string',
252
+				),
253
+				'note' => array(
254
+				  'location' => 'query',
255
+				  'type' => 'string',
256
+				),
257
+				'assignee' => array(
258
+				  'location' => 'query',
259
+				  'type' => 'string',
260
+				),
261
+				'customerPhoneNumber' => array(
262
+				  'location' => 'query',
263
+				  'type' => 'string',
264
+				),
265
+				'address' => array(
266
+				  'location' => 'query',
267
+				  'type' => 'string',
268
+				),
269
+				'lat' => array(
270
+				  'location' => 'query',
271
+				  'type' => 'number',
272
+				),
273
+				'progress' => array(
274
+				  'location' => 'query',
275
+				  'type' => 'string',
276
+				),
277
+				'lng' => array(
278
+				  'location' => 'query',
279
+				  'type' => 'number',
280
+				),
281
+				'customField' => array(
282
+				  'location' => 'query',
283
+				  'type' => 'string',
284
+				  'repeated' => true,
285
+				),
286
+			  ),
287
+			),
288
+		  )
289
+		)
290
+	);
291
+	$this->location = new Google_Service_Coordinate_Location_Resource(
292
+		$this,
293
+		$this->serviceName,
294
+		'location',
295
+		array(
296
+		  'methods' => array(
297
+			'list' => array(
298
+			  'path' => 'teams/{teamId}/workers/{workerEmail}/locations',
299
+			  'httpMethod' => 'GET',
300
+			  'parameters' => array(
301
+				'teamId' => array(
302
+				  'location' => 'path',
303
+				  'type' => 'string',
304
+				  'required' => true,
305
+				),
306
+				'workerEmail' => array(
307
+				  'location' => 'path',
308
+				  'type' => 'string',
309
+				  'required' => true,
310
+				),
311
+				'startTimestampMs' => array(
312
+				  'location' => 'query',
313
+				  'type' => 'string',
314
+				  'required' => true,
315
+				),
316
+				'pageToken' => array(
317
+				  'location' => 'query',
318
+				  'type' => 'string',
319
+				),
320
+				'maxResults' => array(
321
+				  'location' => 'query',
322
+				  'type' => 'integer',
323
+				),
324
+			  ),
325
+			),
326
+		  )
327
+		)
328
+	);
329
+	$this->schedule = new Google_Service_Coordinate_Schedule_Resource(
330
+		$this,
331
+		$this->serviceName,
332
+		'schedule',
333
+		array(
334
+		  'methods' => array(
335
+			'get' => array(
336
+			  'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
337
+			  'httpMethod' => 'GET',
338
+			  'parameters' => array(
339
+				'teamId' => array(
340
+				  'location' => 'path',
341
+				  'type' => 'string',
342
+				  'required' => true,
343
+				),
344
+				'jobId' => array(
345
+				  'location' => 'path',
346
+				  'type' => 'string',
347
+				  'required' => true,
348
+				),
349
+			  ),
350
+			),'patch' => array(
351
+			  'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
352
+			  'httpMethod' => 'PATCH',
353
+			  'parameters' => array(
354
+				'teamId' => array(
355
+				  'location' => 'path',
356
+				  'type' => 'string',
357
+				  'required' => true,
358
+				),
359
+				'jobId' => array(
360
+				  'location' => 'path',
361
+				  'type' => 'string',
362
+				  'required' => true,
363
+				),
364
+				'allDay' => array(
365
+				  'location' => 'query',
366
+				  'type' => 'boolean',
367
+				),
368
+				'startTime' => array(
369
+				  'location' => 'query',
370
+				  'type' => 'string',
371
+				),
372
+				'duration' => array(
373
+				  'location' => 'query',
374
+				  'type' => 'string',
375
+				),
376
+				'endTime' => array(
377
+				  'location' => 'query',
378
+				  'type' => 'string',
379
+				),
380
+			  ),
381
+			),'update' => array(
382
+			  'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
383
+			  'httpMethod' => 'PUT',
384
+			  'parameters' => array(
385
+				'teamId' => array(
386
+				  'location' => 'path',
387
+				  'type' => 'string',
388
+				  'required' => true,
389
+				),
390
+				'jobId' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'allDay' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'boolean',
398
+				),
399
+				'startTime' => array(
400
+				  'location' => 'query',
401
+				  'type' => 'string',
402
+				),
403
+				'duration' => array(
404
+				  'location' => 'query',
405
+				  'type' => 'string',
406
+				),
407
+				'endTime' => array(
408
+				  'location' => 'query',
409
+				  'type' => 'string',
410
+				),
411
+			  ),
412
+			),
413
+		  )
414
+		)
415
+	);
416
+	$this->team = new Google_Service_Coordinate_Team_Resource(
417
+		$this,
418
+		$this->serviceName,
419
+		'team',
420
+		array(
421
+		  'methods' => array(
422
+			'list' => array(
423
+			  'path' => 'teams',
424
+			  'httpMethod' => 'GET',
425
+			  'parameters' => array(
426
+				'admin' => array(
427
+				  'location' => 'query',
428
+				  'type' => 'boolean',
429
+				),
430
+				'worker' => array(
431
+				  'location' => 'query',
432
+				  'type' => 'boolean',
433
+				),
434
+				'dispatcher' => array(
435
+				  'location' => 'query',
436
+				  'type' => 'boolean',
437
+				),
438
+			  ),
439
+			),
440
+		  )
441
+		)
442
+	);
443
+	$this->worker = new Google_Service_Coordinate_Worker_Resource(
444
+		$this,
445
+		$this->serviceName,
446
+		'worker',
447
+		array(
448
+		  'methods' => array(
449
+			'list' => array(
450
+			  'path' => 'teams/{teamId}/workers',
451
+			  'httpMethod' => 'GET',
452
+			  'parameters' => array(
453
+				'teamId' => array(
454
+				  'location' => 'path',
455
+				  'type' => 'string',
456
+				  'required' => true,
457
+				),
458
+			  ),
459
+			),
460
+		  )
461
+		)
462
+	);
463 463
   }
464 464
 }
465 465
 
@@ -485,9 +485,9 @@  discard block
 block discarded – undo
485 485
    */
486 486
   public function listCustomFieldDef($teamId, $optParams = array())
487 487
   {
488
-    $params = array('teamId' => $teamId);
489
-    $params = array_merge($params, $optParams);
490
-    return $this->call('list', array($params), "Google_Service_Coordinate_CustomFieldDefListResponse");
488
+	$params = array('teamId' => $teamId);
489
+	$params = array_merge($params, $optParams);
490
+	return $this->call('list', array($params), "Google_Service_Coordinate_CustomFieldDefListResponse");
491 491
   }
492 492
 }
493 493
 
@@ -512,9 +512,9 @@  discard block
 block discarded – undo
512 512
    */
513 513
   public function get($teamId, $jobId, $optParams = array())
514 514
   {
515
-    $params = array('teamId' => $teamId, 'jobId' => $jobId);
516
-    $params = array_merge($params, $optParams);
517
-    return $this->call('get', array($params), "Google_Service_Coordinate_Job");
515
+	$params = array('teamId' => $teamId, 'jobId' => $jobId);
516
+	$params = array_merge($params, $optParams);
517
+	return $this->call('get', array($params), "Google_Service_Coordinate_Job");
518 518
   }
519 519
 
520 520
   /**
@@ -544,9 +544,9 @@  discard block
 block discarded – undo
544 544
    */
545 545
   public function insert($teamId, $address, $lat, $lng, $title, Google_Service_Coordinate_Job $postBody, $optParams = array())
546 546
   {
547
-    $params = array('teamId' => $teamId, 'address' => $address, 'lat' => $lat, 'lng' => $lng, 'title' => $title, 'postBody' => $postBody);
548
-    $params = array_merge($params, $optParams);
549
-    return $this->call('insert', array($params), "Google_Service_Coordinate_Job");
547
+	$params = array('teamId' => $teamId, 'address' => $address, 'lat' => $lat, 'lng' => $lng, 'title' => $title, 'postBody' => $postBody);
548
+	$params = array_merge($params, $optParams);
549
+	return $this->call('insert', array($params), "Google_Service_Coordinate_Job");
550 550
   }
551 551
 
552 552
   /**
@@ -563,9 +563,9 @@  discard block
 block discarded – undo
563 563
    */
564 564
   public function listJobs($teamId, $optParams = array())
565 565
   {
566
-    $params = array('teamId' => $teamId);
567
-    $params = array_merge($params, $optParams);
568
-    return $this->call('list', array($params), "Google_Service_Coordinate_JobListResponse");
566
+	$params = array('teamId' => $teamId);
567
+	$params = array_merge($params, $optParams);
568
+	return $this->call('list', array($params), "Google_Service_Coordinate_JobListResponse");
569 569
   }
570 570
 
571 571
   /**
@@ -597,9 +597,9 @@  discard block
 block discarded – undo
597 597
    */
598 598
   public function patch($teamId, $jobId, Google_Service_Coordinate_Job $postBody, $optParams = array())
599 599
   {
600
-    $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
601
-    $params = array_merge($params, $optParams);
602
-    return $this->call('patch', array($params), "Google_Service_Coordinate_Job");
600
+	$params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
601
+	$params = array_merge($params, $optParams);
602
+	return $this->call('patch', array($params), "Google_Service_Coordinate_Job");
603 603
   }
604 604
 
605 605
   /**
@@ -631,9 +631,9 @@  discard block
 block discarded – undo
631 631
    */
632 632
   public function update($teamId, $jobId, Google_Service_Coordinate_Job $postBody, $optParams = array())
633 633
   {
634
-    $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
635
-    $params = array_merge($params, $optParams);
636
-    return $this->call('update', array($params), "Google_Service_Coordinate_Job");
634
+	$params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
635
+	$params = array_merge($params, $optParams);
636
+	return $this->call('update', array($params), "Google_Service_Coordinate_Job");
637 637
   }
638 638
 }
639 639
 
@@ -663,9 +663,9 @@  discard block
 block discarded – undo
663 663
    */
664 664
   public function listLocation($teamId, $workerEmail, $startTimestampMs, $optParams = array())
665 665
   {
666
-    $params = array('teamId' => $teamId, 'workerEmail' => $workerEmail, 'startTimestampMs' => $startTimestampMs);
667
-    $params = array_merge($params, $optParams);
668
-    return $this->call('list', array($params), "Google_Service_Coordinate_LocationListResponse");
666
+	$params = array('teamId' => $teamId, 'workerEmail' => $workerEmail, 'startTimestampMs' => $startTimestampMs);
667
+	$params = array_merge($params, $optParams);
668
+	return $this->call('list', array($params), "Google_Service_Coordinate_LocationListResponse");
669 669
   }
670 670
 }
671 671
 
@@ -690,9 +690,9 @@  discard block
 block discarded – undo
690 690
    */
691 691
   public function get($teamId, $jobId, $optParams = array())
692 692
   {
693
-    $params = array('teamId' => $teamId, 'jobId' => $jobId);
694
-    $params = array_merge($params, $optParams);
695
-    return $this->call('get', array($params), "Google_Service_Coordinate_Schedule");
693
+	$params = array('teamId' => $teamId, 'jobId' => $jobId);
694
+	$params = array_merge($params, $optParams);
695
+	return $this->call('get', array($params), "Google_Service_Coordinate_Schedule");
696 696
   }
697 697
 
698 698
   /**
@@ -713,9 +713,9 @@  discard block
 block discarded – undo
713 713
    */
714 714
   public function patch($teamId, $jobId, Google_Service_Coordinate_Schedule $postBody, $optParams = array())
715 715
   {
716
-    $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
717
-    $params = array_merge($params, $optParams);
718
-    return $this->call('patch', array($params), "Google_Service_Coordinate_Schedule");
716
+	$params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
717
+	$params = array_merge($params, $optParams);
718
+	return $this->call('patch', array($params), "Google_Service_Coordinate_Schedule");
719 719
   }
720 720
 
721 721
   /**
@@ -735,9 +735,9 @@  discard block
 block discarded – undo
735 735
    */
736 736
   public function update($teamId, $jobId, Google_Service_Coordinate_Schedule $postBody, $optParams = array())
737 737
   {
738
-    $params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
739
-    $params = array_merge($params, $optParams);
740
-    return $this->call('update', array($params), "Google_Service_Coordinate_Schedule");
738
+	$params = array('teamId' => $teamId, 'jobId' => $jobId, 'postBody' => $postBody);
739
+	$params = array_merge($params, $optParams);
740
+	return $this->call('update', array($params), "Google_Service_Coordinate_Schedule");
741 741
   }
742 742
 }
743 743
 
@@ -767,9 +767,9 @@  discard block
 block discarded – undo
767 767
    */
768 768
   public function listTeam($optParams = array())
769 769
   {
770
-    $params = array();
771
-    $params = array_merge($params, $optParams);
772
-    return $this->call('list', array($params), "Google_Service_Coordinate_TeamListResponse");
770
+	$params = array();
771
+	$params = array_merge($params, $optParams);
772
+	return $this->call('list', array($params), "Google_Service_Coordinate_TeamListResponse");
773 773
   }
774 774
 }
775 775
 
@@ -793,9 +793,9 @@  discard block
 block discarded – undo
793 793
    */
794 794
   public function listWorker($teamId, $optParams = array())
795 795
   {
796
-    $params = array('teamId' => $teamId);
797
-    $params = array_merge($params, $optParams);
798
-    return $this->call('list', array($params), "Google_Service_Coordinate_WorkerListResponse");
796
+	$params = array('teamId' => $teamId);
797
+	$params = array_merge($params, $optParams);
798
+	return $this->call('list', array($params), "Google_Service_Coordinate_WorkerListResponse");
799 799
   }
800 800
 }
801 801
 
@@ -813,27 +813,27 @@  discard block
 block discarded – undo
813 813
 
814 814
   public function setCustomFieldId($customFieldId)
815 815
   {
816
-    $this->customFieldId = $customFieldId;
816
+	$this->customFieldId = $customFieldId;
817 817
   }
818 818
   public function getCustomFieldId()
819 819
   {
820
-    return $this->customFieldId;
820
+	return $this->customFieldId;
821 821
   }
822 822
   public function setKind($kind)
823 823
   {
824
-    $this->kind = $kind;
824
+	$this->kind = $kind;
825 825
   }
826 826
   public function getKind()
827 827
   {
828
-    return $this->kind;
828
+	return $this->kind;
829 829
   }
830 830
   public function setValue($value)
831 831
   {
832
-    $this->value = $value;
832
+	$this->value = $value;
833 833
   }
834 834
   public function getValue()
835 835
   {
836
-    return $this->value;
836
+	return $this->value;
837 837
   }
838 838
 }
839 839
 
@@ -854,59 +854,59 @@  discard block
 block discarded – undo
854 854
 
855 855
   public function setEnabled($enabled)
856 856
   {
857
-    $this->enabled = $enabled;
857
+	$this->enabled = $enabled;
858 858
   }
859 859
   public function getEnabled()
860 860
   {
861
-    return $this->enabled;
861
+	return $this->enabled;
862 862
   }
863 863
   public function setEnumitems($enumitems)
864 864
   {
865
-    $this->enumitems = $enumitems;
865
+	$this->enumitems = $enumitems;
866 866
   }
867 867
   public function getEnumitems()
868 868
   {
869
-    return $this->enumitems;
869
+	return $this->enumitems;
870 870
   }
871 871
   public function setId($id)
872 872
   {
873
-    $this->id = $id;
873
+	$this->id = $id;
874 874
   }
875 875
   public function getId()
876 876
   {
877
-    return $this->id;
877
+	return $this->id;
878 878
   }
879 879
   public function setKind($kind)
880 880
   {
881
-    $this->kind = $kind;
881
+	$this->kind = $kind;
882 882
   }
883 883
   public function getKind()
884 884
   {
885
-    return $this->kind;
885
+	return $this->kind;
886 886
   }
887 887
   public function setName($name)
888 888
   {
889
-    $this->name = $name;
889
+	$this->name = $name;
890 890
   }
891 891
   public function getName()
892 892
   {
893
-    return $this->name;
893
+	return $this->name;
894 894
   }
895 895
   public function setRequiredForCheckout($requiredForCheckout)
896 896
   {
897
-    $this->requiredForCheckout = $requiredForCheckout;
897
+	$this->requiredForCheckout = $requiredForCheckout;
898 898
   }
899 899
   public function getRequiredForCheckout()
900 900
   {
901
-    return $this->requiredForCheckout;
901
+	return $this->requiredForCheckout;
902 902
   }
903 903
   public function setType($type)
904 904
   {
905
-    $this->type = $type;
905
+	$this->type = $type;
906 906
   }
907 907
   public function getType()
908 908
   {
909
-    return $this->type;
909
+	return $this->type;
910 910
   }
911 911
 }
912 912
 
@@ -922,19 +922,19 @@  discard block
 block discarded – undo
922 922
 
923 923
   public function setItems($items)
924 924
   {
925
-    $this->items = $items;
925
+	$this->items = $items;
926 926
   }
927 927
   public function getItems()
928 928
   {
929
-    return $this->items;
929
+	return $this->items;
930 930
   }
931 931
   public function setKind($kind)
932 932
   {
933
-    $this->kind = $kind;
933
+	$this->kind = $kind;
934 934
   }
935 935
   public function getKind()
936 936
   {
937
-    return $this->kind;
937
+	return $this->kind;
938 938
   }
939 939
 }
940 940
 
@@ -950,19 +950,19 @@  discard block
 block discarded – undo
950 950
 
951 951
   public function setCustomField($customField)
952 952
   {
953
-    $this->customField = $customField;
953
+	$this->customField = $customField;
954 954
   }
955 955
   public function getCustomField()
956 956
   {
957
-    return $this->customField;
957
+	return $this->customField;
958 958
   }
959 959
   public function setKind($kind)
960 960
   {
961
-    $this->kind = $kind;
961
+	$this->kind = $kind;
962 962
   }
963 963
   public function getKind()
964 964
   {
965
-    return $this->kind;
965
+	return $this->kind;
966 966
   }
967 967
 }
968 968
 
@@ -977,27 +977,27 @@  discard block
 block discarded – undo
977 977
 
978 978
   public function setActive($active)
979 979
   {
980
-    $this->active = $active;
980
+	$this->active = $active;
981 981
   }
982 982
   public function getActive()
983 983
   {
984
-    return $this->active;
984
+	return $this->active;
985 985
   }
986 986
   public function setKind($kind)
987 987
   {
988
-    $this->kind = $kind;
988
+	$this->kind = $kind;
989 989
   }
990 990
   public function getKind()
991 991
   {
992
-    return $this->kind;
992
+	return $this->kind;
993 993
   }
994 994
   public function setValue($value)
995 995
   {
996
-    $this->value = $value;
996
+	$this->value = $value;
997 997
   }
998 998
   public function getValue()
999 999
   {
1000
-    return $this->value;
1000
+	return $this->value;
1001 1001
   }
1002 1002
 }
1003 1003
 
@@ -1016,35 +1016,35 @@  discard block
 block discarded – undo
1016 1016
 
1017 1017
   public function setId($id)
1018 1018
   {
1019
-    $this->id = $id;
1019
+	$this->id = $id;
1020 1020
   }
1021 1021
   public function getId()
1022 1022
   {
1023
-    return $this->id;
1023
+	return $this->id;
1024 1024
   }
1025 1025
   public function setJobChange($jobChange)
1026 1026
   {
1027
-    $this->jobChange = $jobChange;
1027
+	$this->jobChange = $jobChange;
1028 1028
   }
1029 1029
   public function getJobChange()
1030 1030
   {
1031
-    return $this->jobChange;
1031
+	return $this->jobChange;
1032 1032
   }
1033 1033
   public function setKind($kind)
1034 1034
   {
1035
-    $this->kind = $kind;
1035
+	$this->kind = $kind;
1036 1036
   }
1037 1037
   public function getKind()
1038 1038
   {
1039
-    return $this->kind;
1039
+	return $this->kind;
1040 1040
   }
1041 1041
   public function setState(Google_Service_Coordinate_JobState $state)
1042 1042
   {
1043
-    $this->state = $state;
1043
+	$this->state = $state;
1044 1044
   }
1045 1045
   public function getState()
1046 1046
   {
1047
-    return $this->state;
1047
+	return $this->state;
1048 1048
   }
1049 1049
 }
1050 1050
 
@@ -1060,27 +1060,27 @@  discard block
 block discarded – undo
1060 1060
 
1061 1061
   public function setKind($kind)
1062 1062
   {
1063
-    $this->kind = $kind;
1063
+	$this->kind = $kind;
1064 1064
   }
1065 1065
   public function getKind()
1066 1066
   {
1067
-    return $this->kind;
1067
+	return $this->kind;
1068 1068
   }
1069 1069
   public function setState(Google_Service_Coordinate_JobState $state)
1070 1070
   {
1071
-    $this->state = $state;
1071
+	$this->state = $state;
1072 1072
   }
1073 1073
   public function getState()
1074 1074
   {
1075
-    return $this->state;
1075
+	return $this->state;
1076 1076
   }
1077 1077
   public function setTimestamp($timestamp)
1078 1078
   {
1079
-    $this->timestamp = $timestamp;
1079
+	$this->timestamp = $timestamp;
1080 1080
   }
1081 1081
   public function getTimestamp()
1082 1082
   {
1083
-    return $this->timestamp;
1083
+	return $this->timestamp;
1084 1084
   }
1085 1085
 }
1086 1086
 
@@ -1097,27 +1097,27 @@  discard block
 block discarded – undo
1097 1097
 
1098 1098
   public function setItems($items)
1099 1099
   {
1100
-    $this->items = $items;
1100
+	$this->items = $items;
1101 1101
   }
1102 1102
   public function getItems()
1103 1103
   {
1104
-    return $this->items;
1104
+	return $this->items;
1105 1105
   }
1106 1106
   public function setKind($kind)
1107 1107
   {
1108
-    $this->kind = $kind;
1108
+	$this->kind = $kind;
1109 1109
   }
1110 1110
   public function getKind()
1111 1111
   {
1112
-    return $this->kind;
1112
+	return $this->kind;
1113 1113
   }
1114 1114
   public function setNextPageToken($nextPageToken)
1115 1115
   {
1116
-    $this->nextPageToken = $nextPageToken;
1116
+	$this->nextPageToken = $nextPageToken;
1117 1117
   }
1118 1118
   public function getNextPageToken()
1119 1119
   {
1120
-    return $this->nextPageToken;
1120
+	return $this->nextPageToken;
1121 1121
   }
1122 1122
 }
1123 1123
 
@@ -1141,75 +1141,75 @@  discard block
 block discarded – undo
1141 1141
 
1142 1142
   public function setAssignee($assignee)
1143 1143
   {
1144
-    $this->assignee = $assignee;
1144
+	$this->assignee = $assignee;
1145 1145
   }
1146 1146
   public function getAssignee()
1147 1147
   {
1148
-    return $this->assignee;
1148
+	return $this->assignee;
1149 1149
   }
1150 1150
   public function setCustomFields(Google_Service_Coordinate_CustomFields $customFields)
1151 1151
   {
1152
-    $this->customFields = $customFields;
1152
+	$this->customFields = $customFields;
1153 1153
   }
1154 1154
   public function getCustomFields()
1155 1155
   {
1156
-    return $this->customFields;
1156
+	return $this->customFields;
1157 1157
   }
1158 1158
   public function setCustomerName($customerName)
1159 1159
   {
1160
-    $this->customerName = $customerName;
1160
+	$this->customerName = $customerName;
1161 1161
   }
1162 1162
   public function getCustomerName()
1163 1163
   {
1164
-    return $this->customerName;
1164
+	return $this->customerName;
1165 1165
   }
1166 1166
   public function setCustomerPhoneNumber($customerPhoneNumber)
1167 1167
   {
1168
-    $this->customerPhoneNumber = $customerPhoneNumber;
1168
+	$this->customerPhoneNumber = $customerPhoneNumber;
1169 1169
   }
1170 1170
   public function getCustomerPhoneNumber()
1171 1171
   {
1172
-    return $this->customerPhoneNumber;
1172
+	return $this->customerPhoneNumber;
1173 1173
   }
1174 1174
   public function setKind($kind)
1175 1175
   {
1176
-    $this->kind = $kind;
1176
+	$this->kind = $kind;
1177 1177
   }
1178 1178
   public function getKind()
1179 1179
   {
1180
-    return $this->kind;
1180
+	return $this->kind;
1181 1181
   }
1182 1182
   public function setLocation(Google_Service_Coordinate_Location $location)
1183 1183
   {
1184
-    $this->location = $location;
1184
+	$this->location = $location;
1185 1185
   }
1186 1186
   public function getLocation()
1187 1187
   {
1188
-    return $this->location;
1188
+	return $this->location;
1189 1189
   }
1190 1190
   public function setNote($note)
1191 1191
   {
1192
-    $this->note = $note;
1192
+	$this->note = $note;
1193 1193
   }
1194 1194
   public function getNote()
1195 1195
   {
1196
-    return $this->note;
1196
+	return $this->note;
1197 1197
   }
1198 1198
   public function setProgress($progress)
1199 1199
   {
1200
-    $this->progress = $progress;
1200
+	$this->progress = $progress;
1201 1201
   }
1202 1202
   public function getProgress()
1203 1203
   {
1204
-    return $this->progress;
1204
+	return $this->progress;
1205 1205
   }
1206 1206
   public function setTitle($title)
1207 1207
   {
1208
-    $this->title = $title;
1208
+	$this->title = $title;
1209 1209
   }
1210 1210
   public function getTitle()
1211 1211
   {
1212
-    return $this->title;
1212
+	return $this->title;
1213 1213
   }
1214 1214
 }
1215 1215
 
@@ -1226,35 +1226,35 @@  discard block
 block discarded – undo
1226 1226
 
1227 1227
   public function setAddressLine($addressLine)
1228 1228
   {
1229
-    $this->addressLine = $addressLine;
1229
+	$this->addressLine = $addressLine;
1230 1230
   }
1231 1231
   public function getAddressLine()
1232 1232
   {
1233
-    return $this->addressLine;
1233
+	return $this->addressLine;
1234 1234
   }
1235 1235
   public function setKind($kind)
1236 1236
   {
1237
-    $this->kind = $kind;
1237
+	$this->kind = $kind;
1238 1238
   }
1239 1239
   public function getKind()
1240 1240
   {
1241
-    return $this->kind;
1241
+	return $this->kind;
1242 1242
   }
1243 1243
   public function setLat($lat)
1244 1244
   {
1245
-    $this->lat = $lat;
1245
+	$this->lat = $lat;
1246 1246
   }
1247 1247
   public function getLat()
1248 1248
   {
1249
-    return $this->lat;
1249
+	return $this->lat;
1250 1250
   }
1251 1251
   public function setLng($lng)
1252 1252
   {
1253
-    $this->lng = $lng;
1253
+	$this->lng = $lng;
1254 1254
   }
1255 1255
   public function getLng()
1256 1256
   {
1257
-    return $this->lng;
1257
+	return $this->lng;
1258 1258
   }
1259 1259
 }
1260 1260
 
@@ -1273,35 +1273,35 @@  discard block
 block discarded – undo
1273 1273
 
1274 1274
   public function setItems($items)
1275 1275
   {
1276
-    $this->items = $items;
1276
+	$this->items = $items;
1277 1277
   }
1278 1278
   public function getItems()
1279 1279
   {
1280
-    return $this->items;
1280
+	return $this->items;
1281 1281
   }
1282 1282
   public function setKind($kind)
1283 1283
   {
1284
-    $this->kind = $kind;
1284
+	$this->kind = $kind;
1285 1285
   }
1286 1286
   public function getKind()
1287 1287
   {
1288
-    return $this->kind;
1288
+	return $this->kind;
1289 1289
   }
1290 1290
   public function setNextPageToken($nextPageToken)
1291 1291
   {
1292
-    $this->nextPageToken = $nextPageToken;
1292
+	$this->nextPageToken = $nextPageToken;
1293 1293
   }
1294 1294
   public function getNextPageToken()
1295 1295
   {
1296
-    return $this->nextPageToken;
1296
+	return $this->nextPageToken;
1297 1297
   }
1298 1298
   public function setTokenPagination(Google_Service_Coordinate_TokenPagination $tokenPagination)
1299 1299
   {
1300
-    $this->tokenPagination = $tokenPagination;
1300
+	$this->tokenPagination = $tokenPagination;
1301 1301
   }
1302 1302
   public function getTokenPagination()
1303 1303
   {
1304
-    return $this->tokenPagination;
1304
+	return $this->tokenPagination;
1305 1305
   }
1306 1306
 }
1307 1307
 
@@ -1318,43 +1318,43 @@  discard block
 block discarded – undo
1318 1318
 
1319 1319
   public function setCollectionTime($collectionTime)
1320 1320
   {
1321
-    $this->collectionTime = $collectionTime;
1321
+	$this->collectionTime = $collectionTime;
1322 1322
   }
1323 1323
   public function getCollectionTime()
1324 1324
   {
1325
-    return $this->collectionTime;
1325
+	return $this->collectionTime;
1326 1326
   }
1327 1327
   public function setConfidenceRadius($confidenceRadius)
1328 1328
   {
1329
-    $this->confidenceRadius = $confidenceRadius;
1329
+	$this->confidenceRadius = $confidenceRadius;
1330 1330
   }
1331 1331
   public function getConfidenceRadius()
1332 1332
   {
1333
-    return $this->confidenceRadius;
1333
+	return $this->confidenceRadius;
1334 1334
   }
1335 1335
   public function setKind($kind)
1336 1336
   {
1337
-    $this->kind = $kind;
1337
+	$this->kind = $kind;
1338 1338
   }
1339 1339
   public function getKind()
1340 1340
   {
1341
-    return $this->kind;
1341
+	return $this->kind;
1342 1342
   }
1343 1343
   public function setLatitude($latitude)
1344 1344
   {
1345
-    $this->latitude = $latitude;
1345
+	$this->latitude = $latitude;
1346 1346
   }
1347 1347
   public function getLatitude()
1348 1348
   {
1349
-    return $this->latitude;
1349
+	return $this->latitude;
1350 1350
   }
1351 1351
   public function setLongitude($longitude)
1352 1352
   {
1353
-    $this->longitude = $longitude;
1353
+	$this->longitude = $longitude;
1354 1354
   }
1355 1355
   public function getLongitude()
1356 1356
   {
1357
-    return $this->longitude;
1357
+	return $this->longitude;
1358 1358
   }
1359 1359
 }
1360 1360
 
@@ -1371,43 +1371,43 @@  discard block
 block discarded – undo
1371 1371
 
1372 1372
   public function setAllDay($allDay)
1373 1373
   {
1374
-    $this->allDay = $allDay;
1374
+	$this->allDay = $allDay;
1375 1375
   }
1376 1376
   public function getAllDay()
1377 1377
   {
1378
-    return $this->allDay;
1378
+	return $this->allDay;
1379 1379
   }
1380 1380
   public function setDuration($duration)
1381 1381
   {
1382
-    $this->duration = $duration;
1382
+	$this->duration = $duration;
1383 1383
   }
1384 1384
   public function getDuration()
1385 1385
   {
1386
-    return $this->duration;
1386
+	return $this->duration;
1387 1387
   }
1388 1388
   public function setEndTime($endTime)
1389 1389
   {
1390
-    $this->endTime = $endTime;
1390
+	$this->endTime = $endTime;
1391 1391
   }
1392 1392
   public function getEndTime()
1393 1393
   {
1394
-    return $this->endTime;
1394
+	return $this->endTime;
1395 1395
   }
1396 1396
   public function setKind($kind)
1397 1397
   {
1398
-    $this->kind = $kind;
1398
+	$this->kind = $kind;
1399 1399
   }
1400 1400
   public function getKind()
1401 1401
   {
1402
-    return $this->kind;
1402
+	return $this->kind;
1403 1403
   }
1404 1404
   public function setStartTime($startTime)
1405 1405
   {
1406
-    $this->startTime = $startTime;
1406
+	$this->startTime = $startTime;
1407 1407
   }
1408 1408
   public function getStartTime()
1409 1409
   {
1410
-    return $this->startTime;
1410
+	return $this->startTime;
1411 1411
   }
1412 1412
 }
1413 1413
 
@@ -1422,27 +1422,27 @@  discard block
 block discarded – undo
1422 1422
 
1423 1423
   public function setId($id)
1424 1424
   {
1425
-    $this->id = $id;
1425
+	$this->id = $id;
1426 1426
   }
1427 1427
   public function getId()
1428 1428
   {
1429
-    return $this->id;
1429
+	return $this->id;
1430 1430
   }
1431 1431
   public function setKind($kind)
1432 1432
   {
1433
-    $this->kind = $kind;
1433
+	$this->kind = $kind;
1434 1434
   }
1435 1435
   public function getKind()
1436 1436
   {
1437
-    return $this->kind;
1437
+	return $this->kind;
1438 1438
   }
1439 1439
   public function setName($name)
1440 1440
   {
1441
-    $this->name = $name;
1441
+	$this->name = $name;
1442 1442
   }
1443 1443
   public function getName()
1444 1444
   {
1445
-    return $this->name;
1445
+	return $this->name;
1446 1446
   }
1447 1447
 }
1448 1448
 
@@ -1458,19 +1458,19 @@  discard block
 block discarded – undo
1458 1458
 
1459 1459
   public function setItems($items)
1460 1460
   {
1461
-    $this->items = $items;
1461
+	$this->items = $items;
1462 1462
   }
1463 1463
   public function getItems()
1464 1464
   {
1465
-    return $this->items;
1465
+	return $this->items;
1466 1466
   }
1467 1467
   public function setKind($kind)
1468 1468
   {
1469
-    $this->kind = $kind;
1469
+	$this->kind = $kind;
1470 1470
   }
1471 1471
   public function getKind()
1472 1472
   {
1473
-    return $this->kind;
1473
+	return $this->kind;
1474 1474
   }
1475 1475
 }
1476 1476
 
@@ -1485,27 +1485,27 @@  discard block
 block discarded – undo
1485 1485
 
1486 1486
   public function setKind($kind)
1487 1487
   {
1488
-    $this->kind = $kind;
1488
+	$this->kind = $kind;
1489 1489
   }
1490 1490
   public function getKind()
1491 1491
   {
1492
-    return $this->kind;
1492
+	return $this->kind;
1493 1493
   }
1494 1494
   public function setNextPageToken($nextPageToken)
1495 1495
   {
1496
-    $this->nextPageToken = $nextPageToken;
1496
+	$this->nextPageToken = $nextPageToken;
1497 1497
   }
1498 1498
   public function getNextPageToken()
1499 1499
   {
1500
-    return $this->nextPageToken;
1500
+	return $this->nextPageToken;
1501 1501
   }
1502 1502
   public function setPreviousPageToken($previousPageToken)
1503 1503
   {
1504
-    $this->previousPageToken = $previousPageToken;
1504
+	$this->previousPageToken = $previousPageToken;
1505 1505
   }
1506 1506
   public function getPreviousPageToken()
1507 1507
   {
1508
-    return $this->previousPageToken;
1508
+	return $this->previousPageToken;
1509 1509
   }
1510 1510
 }
1511 1511
 
@@ -1519,19 +1519,19 @@  discard block
 block discarded – undo
1519 1519
 
1520 1520
   public function setId($id)
1521 1521
   {
1522
-    $this->id = $id;
1522
+	$this->id = $id;
1523 1523
   }
1524 1524
   public function getId()
1525 1525
   {
1526
-    return $this->id;
1526
+	return $this->id;
1527 1527
   }
1528 1528
   public function setKind($kind)
1529 1529
   {
1530
-    $this->kind = $kind;
1530
+	$this->kind = $kind;
1531 1531
   }
1532 1532
   public function getKind()
1533 1533
   {
1534
-    return $this->kind;
1534
+	return $this->kind;
1535 1535
   }
1536 1536
 }
1537 1537
 
@@ -1547,18 +1547,18 @@  discard block
 block discarded – undo
1547 1547
 
1548 1548
   public function setItems($items)
1549 1549
   {
1550
-    $this->items = $items;
1550
+	$this->items = $items;
1551 1551
   }
1552 1552
   public function getItems()
1553 1553
   {
1554
-    return $this->items;
1554
+	return $this->items;
1555 1555
   }
1556 1556
   public function setKind($kind)
1557 1557
   {
1558
-    $this->kind = $kind;
1558
+	$this->kind = $kind;
1559 1559
   }
1560 1560
   public function getKind()
1561 1561
   {
1562
-    return $this->kind;
1562
+	return $this->kind;
1563 1563
   }
1564 1564
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
                   'required' => true,
100 100
                 ),
101 101
               ),
102
-            ),'insert' => array(
102
+            ), 'insert' => array(
103 103
               'path' => 'teams/{teamId}/jobs',
104 104
               'httpMethod' => 'POST',
105 105
               'parameters' => array(
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
                   'repeated' => true,
151 151
                 ),
152 152
               ),
153
-            ),'list' => array(
153
+            ), 'list' => array(
154 154
               'path' => 'teams/{teamId}/jobs',
155 155
               'httpMethod' => 'GET',
156 156
               'parameters' => array(
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                   'type' => 'string',
173 173
                 ),
174 174
               ),
175
-            ),'patch' => array(
175
+            ), 'patch' => array(
176 176
               'path' => 'teams/{teamId}/jobs/{jobId}',
177 177
               'httpMethod' => 'PATCH',
178 178
               'parameters' => array(
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
                   'repeated' => true,
229 229
                 ),
230 230
               ),
231
-            ),'update' => array(
231
+            ), 'update' => array(
232 232
               'path' => 'teams/{teamId}/jobs/{jobId}',
233 233
               'httpMethod' => 'PUT',
234 234
               'parameters' => array(
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
                   'required' => true,
348 348
                 ),
349 349
               ),
350
-            ),'patch' => array(
350
+            ), 'patch' => array(
351 351
               'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
352 352
               'httpMethod' => 'PATCH',
353 353
               'parameters' => array(
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
                   'type' => 'string',
379 379
                 ),
380 380
               ),
381
-            ),'update' => array(
381
+            ), 'update' => array(
382 382
               'path' => 'teams/{teamId}/jobs/{jobId}/schedule',
383 383
               'httpMethod' => 'PUT',
384 384
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/MapsEngine.php 2 patches
Indentation   +2224 added lines, -2224 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your Google My Maps data. */
35 35
   const MAPSENGINE =
36
-      "https://www.googleapis.com/auth/mapsengine";
36
+	  "https://www.googleapis.com/auth/mapsengine";
37 37
   /** View your Google My Maps data. */
38 38
   const MAPSENGINE_READONLY =
39
-      "https://www.googleapis.com/auth/mapsengine.readonly";
39
+	  "https://www.googleapis.com/auth/mapsengine.readonly";
40 40
 
41 41
   public $assets;
42 42
   public $assets_parents;
@@ -70,1448 +70,1448 @@  discard block
 block discarded – undo
70 70
    */
71 71
   public function __construct(Google_Client $client)
72 72
   {
73
-    parent::__construct($client);
74
-    $this->rootUrl = 'https://www.googleapis.com/';
75
-    $this->servicePath = 'mapsengine/v1/';
76
-    $this->version = 'v1';
77
-    $this->serviceName = 'mapsengine';
78
-
79
-    $this->assets = new Google_Service_MapsEngine_Assets_Resource(
80
-        $this,
81
-        $this->serviceName,
82
-        'assets',
83
-        array(
84
-          'methods' => array(
85
-            'get' => array(
86
-              'path' => 'assets/{id}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'id' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-              ),
95
-            ),'list' => array(
96
-              'path' => 'assets',
97
-              'httpMethod' => 'GET',
98
-              'parameters' => array(
99
-                'modifiedAfter' => array(
100
-                  'location' => 'query',
101
-                  'type' => 'string',
102
-                ),
103
-                'createdAfter' => array(
104
-                  'location' => 'query',
105
-                  'type' => 'string',
106
-                ),
107
-                'tags' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'string',
110
-                ),
111
-                'projectId' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-                'search' => array(
116
-                  'location' => 'query',
117
-                  'type' => 'string',
118
-                ),
119
-                'maxResults' => array(
120
-                  'location' => 'query',
121
-                  'type' => 'integer',
122
-                ),
123
-                'pageToken' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                ),
127
-                'creatorEmail' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'string',
130
-                ),
131
-                'bbox' => array(
132
-                  'location' => 'query',
133
-                  'type' => 'string',
134
-                ),
135
-                'modifiedBefore' => array(
136
-                  'location' => 'query',
137
-                  'type' => 'string',
138
-                ),
139
-                'createdBefore' => array(
140
-                  'location' => 'query',
141
-                  'type' => 'string',
142
-                ),
143
-                'role' => array(
144
-                  'location' => 'query',
145
-                  'type' => 'string',
146
-                ),
147
-                'type' => array(
148
-                  'location' => 'query',
149
-                  'type' => 'string',
150
-                ),
151
-              ),
152
-            ),
153
-          )
154
-        )
155
-    );
156
-    $this->assets_parents = new Google_Service_MapsEngine_AssetsParents_Resource(
157
-        $this,
158
-        $this->serviceName,
159
-        'parents',
160
-        array(
161
-          'methods' => array(
162
-            'list' => array(
163
-              'path' => 'assets/{id}/parents',
164
-              'httpMethod' => 'GET',
165
-              'parameters' => array(
166
-                'id' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'pageToken' => array(
172
-                  'location' => 'query',
173
-                  'type' => 'string',
174
-                ),
175
-                'maxResults' => array(
176
-                  'location' => 'query',
177
-                  'type' => 'integer',
178
-                ),
179
-              ),
180
-            ),
181
-          )
182
-        )
183
-    );
184
-    $this->assets_permissions = new Google_Service_MapsEngine_AssetsPermissions_Resource(
185
-        $this,
186
-        $this->serviceName,
187
-        'permissions',
188
-        array(
189
-          'methods' => array(
190
-            'list' => array(
191
-              'path' => 'assets/{id}/permissions',
192
-              'httpMethod' => 'GET',
193
-              'parameters' => array(
194
-                'id' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-              ),
200
-            ),
201
-          )
202
-        )
203
-    );
204
-    $this->layers = new Google_Service_MapsEngine_Layers_Resource(
205
-        $this,
206
-        $this->serviceName,
207
-        'layers',
208
-        array(
209
-          'methods' => array(
210
-            'cancelProcessing' => array(
211
-              'path' => 'layers/{id}/cancelProcessing',
212
-              'httpMethod' => 'POST',
213
-              'parameters' => array(
214
-                'id' => array(
215
-                  'location' => 'path',
216
-                  'type' => 'string',
217
-                  'required' => true,
218
-                ),
219
-              ),
220
-            ),'create' => array(
221
-              'path' => 'layers',
222
-              'httpMethod' => 'POST',
223
-              'parameters' => array(
224
-                'process' => array(
225
-                  'location' => 'query',
226
-                  'type' => 'boolean',
227
-                ),
228
-              ),
229
-            ),'delete' => array(
230
-              'path' => 'layers/{id}',
231
-              'httpMethod' => 'DELETE',
232
-              'parameters' => array(
233
-                'id' => array(
234
-                  'location' => 'path',
235
-                  'type' => 'string',
236
-                  'required' => true,
237
-                ),
238
-              ),
239
-            ),'get' => array(
240
-              'path' => 'layers/{id}',
241
-              'httpMethod' => 'GET',
242
-              'parameters' => array(
243
-                'id' => array(
244
-                  'location' => 'path',
245
-                  'type' => 'string',
246
-                  'required' => true,
247
-                ),
248
-                'version' => array(
249
-                  'location' => 'query',
250
-                  'type' => 'string',
251
-                ),
252
-              ),
253
-            ),'getPublished' => array(
254
-              'path' => 'layers/{id}/published',
255
-              'httpMethod' => 'GET',
256
-              'parameters' => array(
257
-                'id' => array(
258
-                  'location' => 'path',
259
-                  'type' => 'string',
260
-                  'required' => true,
261
-                ),
262
-              ),
263
-            ),'list' => array(
264
-              'path' => 'layers',
265
-              'httpMethod' => 'GET',
266
-              'parameters' => array(
267
-                'modifiedAfter' => array(
268
-                  'location' => 'query',
269
-                  'type' => 'string',
270
-                ),
271
-                'createdAfter' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'string',
274
-                ),
275
-                'processingStatus' => array(
276
-                  'location' => 'query',
277
-                  'type' => 'string',
278
-                ),
279
-                'projectId' => array(
280
-                  'location' => 'query',
281
-                  'type' => 'string',
282
-                ),
283
-                'tags' => array(
284
-                  'location' => 'query',
285
-                  'type' => 'string',
286
-                ),
287
-                'search' => array(
288
-                  'location' => 'query',
289
-                  'type' => 'string',
290
-                ),
291
-                'maxResults' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'integer',
294
-                ),
295
-                'pageToken' => array(
296
-                  'location' => 'query',
297
-                  'type' => 'string',
298
-                ),
299
-                'creatorEmail' => array(
300
-                  'location' => 'query',
301
-                  'type' => 'string',
302
-                ),
303
-                'bbox' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'string',
306
-                ),
307
-                'modifiedBefore' => array(
308
-                  'location' => 'query',
309
-                  'type' => 'string',
310
-                ),
311
-                'createdBefore' => array(
312
-                  'location' => 'query',
313
-                  'type' => 'string',
314
-                ),
315
-                'role' => array(
316
-                  'location' => 'query',
317
-                  'type' => 'string',
318
-                ),
319
-              ),
320
-            ),'listPublished' => array(
321
-              'path' => 'layers/published',
322
-              'httpMethod' => 'GET',
323
-              'parameters' => array(
324
-                'pageToken' => array(
325
-                  'location' => 'query',
326
-                  'type' => 'string',
327
-                ),
328
-                'maxResults' => array(
329
-                  'location' => 'query',
330
-                  'type' => 'integer',
331
-                ),
332
-                'projectId' => array(
333
-                  'location' => 'query',
334
-                  'type' => 'string',
335
-                ),
336
-              ),
337
-            ),'patch' => array(
338
-              'path' => 'layers/{id}',
339
-              'httpMethod' => 'PATCH',
340
-              'parameters' => array(
341
-                'id' => array(
342
-                  'location' => 'path',
343
-                  'type' => 'string',
344
-                  'required' => true,
345
-                ),
346
-              ),
347
-            ),'process' => array(
348
-              'path' => 'layers/{id}/process',
349
-              'httpMethod' => 'POST',
350
-              'parameters' => array(
351
-                'id' => array(
352
-                  'location' => 'path',
353
-                  'type' => 'string',
354
-                  'required' => true,
355
-                ),
356
-              ),
357
-            ),'publish' => array(
358
-              'path' => 'layers/{id}/publish',
359
-              'httpMethod' => 'POST',
360
-              'parameters' => array(
361
-                'id' => array(
362
-                  'location' => 'path',
363
-                  'type' => 'string',
364
-                  'required' => true,
365
-                ),
366
-                'force' => array(
367
-                  'location' => 'query',
368
-                  'type' => 'boolean',
369
-                ),
370
-              ),
371
-            ),'unpublish' => array(
372
-              'path' => 'layers/{id}/unpublish',
373
-              'httpMethod' => 'POST',
374
-              'parameters' => array(
375
-                'id' => array(
376
-                  'location' => 'path',
377
-                  'type' => 'string',
378
-                  'required' => true,
379
-                ),
380
-              ),
381
-            ),
382
-          )
383
-        )
384
-    );
385
-    $this->layers_parents = new Google_Service_MapsEngine_LayersParents_Resource(
386
-        $this,
387
-        $this->serviceName,
388
-        'parents',
389
-        array(
390
-          'methods' => array(
391
-            'list' => array(
392
-              'path' => 'layers/{id}/parents',
393
-              'httpMethod' => 'GET',
394
-              'parameters' => array(
395
-                'id' => array(
396
-                  'location' => 'path',
397
-                  'type' => 'string',
398
-                  'required' => true,
399
-                ),
400
-                'pageToken' => array(
401
-                  'location' => 'query',
402
-                  'type' => 'string',
403
-                ),
404
-                'maxResults' => array(
405
-                  'location' => 'query',
406
-                  'type' => 'integer',
407
-                ),
408
-              ),
409
-            ),
410
-          )
411
-        )
412
-    );
413
-    $this->layers_permissions = new Google_Service_MapsEngine_LayersPermissions_Resource(
414
-        $this,
415
-        $this->serviceName,
416
-        'permissions',
417
-        array(
418
-          'methods' => array(
419
-            'batchDelete' => array(
420
-              'path' => 'layers/{id}/permissions/batchDelete',
421
-              'httpMethod' => 'POST',
422
-              'parameters' => array(
423
-                'id' => array(
424
-                  'location' => 'path',
425
-                  'type' => 'string',
426
-                  'required' => true,
427
-                ),
428
-              ),
429
-            ),'batchUpdate' => array(
430
-              'path' => 'layers/{id}/permissions/batchUpdate',
431
-              'httpMethod' => 'POST',
432
-              'parameters' => array(
433
-                'id' => array(
434
-                  'location' => 'path',
435
-                  'type' => 'string',
436
-                  'required' => true,
437
-                ),
438
-              ),
439
-            ),'list' => array(
440
-              'path' => 'layers/{id}/permissions',
441
-              'httpMethod' => 'GET',
442
-              'parameters' => array(
443
-                'id' => array(
444
-                  'location' => 'path',
445
-                  'type' => 'string',
446
-                  'required' => true,
447
-                ),
448
-              ),
449
-            ),
450
-          )
451
-        )
452
-    );
453
-    $this->maps = new Google_Service_MapsEngine_Maps_Resource(
454
-        $this,
455
-        $this->serviceName,
456
-        'maps',
457
-        array(
458
-          'methods' => array(
459
-            'create' => array(
460
-              'path' => 'maps',
461
-              'httpMethod' => 'POST',
462
-              'parameters' => array(),
463
-            ),'delete' => array(
464
-              'path' => 'maps/{id}',
465
-              'httpMethod' => 'DELETE',
466
-              'parameters' => array(
467
-                'id' => array(
468
-                  'location' => 'path',
469
-                  'type' => 'string',
470
-                  'required' => true,
471
-                ),
472
-              ),
473
-            ),'get' => array(
474
-              'path' => 'maps/{id}',
475
-              'httpMethod' => 'GET',
476
-              'parameters' => array(
477
-                'id' => array(
478
-                  'location' => 'path',
479
-                  'type' => 'string',
480
-                  'required' => true,
481
-                ),
482
-                'version' => array(
483
-                  'location' => 'query',
484
-                  'type' => 'string',
485
-                ),
486
-              ),
487
-            ),'getPublished' => array(
488
-              'path' => 'maps/{id}/published',
489
-              'httpMethod' => 'GET',
490
-              'parameters' => array(
491
-                'id' => array(
492
-                  'location' => 'path',
493
-                  'type' => 'string',
494
-                  'required' => true,
495
-                ),
496
-              ),
497
-            ),'list' => array(
498
-              'path' => 'maps',
499
-              'httpMethod' => 'GET',
500
-              'parameters' => array(
501
-                'modifiedAfter' => array(
502
-                  'location' => 'query',
503
-                  'type' => 'string',
504
-                ),
505
-                'createdAfter' => array(
506
-                  'location' => 'query',
507
-                  'type' => 'string',
508
-                ),
509
-                'processingStatus' => array(
510
-                  'location' => 'query',
511
-                  'type' => 'string',
512
-                ),
513
-                'projectId' => array(
514
-                  'location' => 'query',
515
-                  'type' => 'string',
516
-                ),
517
-                'tags' => array(
518
-                  'location' => 'query',
519
-                  'type' => 'string',
520
-                ),
521
-                'search' => array(
522
-                  'location' => 'query',
523
-                  'type' => 'string',
524
-                ),
525
-                'maxResults' => array(
526
-                  'location' => 'query',
527
-                  'type' => 'integer',
528
-                ),
529
-                'pageToken' => array(
530
-                  'location' => 'query',
531
-                  'type' => 'string',
532
-                ),
533
-                'creatorEmail' => array(
534
-                  'location' => 'query',
535
-                  'type' => 'string',
536
-                ),
537
-                'bbox' => array(
538
-                  'location' => 'query',
539
-                  'type' => 'string',
540
-                ),
541
-                'modifiedBefore' => array(
542
-                  'location' => 'query',
543
-                  'type' => 'string',
544
-                ),
545
-                'createdBefore' => array(
546
-                  'location' => 'query',
547
-                  'type' => 'string',
548
-                ),
549
-                'role' => array(
550
-                  'location' => 'query',
551
-                  'type' => 'string',
552
-                ),
553
-              ),
554
-            ),'listPublished' => array(
555
-              'path' => 'maps/published',
556
-              'httpMethod' => 'GET',
557
-              'parameters' => array(
558
-                'pageToken' => array(
559
-                  'location' => 'query',
560
-                  'type' => 'string',
561
-                ),
562
-                'maxResults' => array(
563
-                  'location' => 'query',
564
-                  'type' => 'integer',
565
-                ),
566
-                'projectId' => array(
567
-                  'location' => 'query',
568
-                  'type' => 'string',
569
-                ),
570
-              ),
571
-            ),'patch' => array(
572
-              'path' => 'maps/{id}',
573
-              'httpMethod' => 'PATCH',
574
-              'parameters' => array(
575
-                'id' => array(
576
-                  'location' => 'path',
577
-                  'type' => 'string',
578
-                  'required' => true,
579
-                ),
580
-              ),
581
-            ),'publish' => array(
582
-              'path' => 'maps/{id}/publish',
583
-              'httpMethod' => 'POST',
584
-              'parameters' => array(
585
-                'id' => array(
586
-                  'location' => 'path',
587
-                  'type' => 'string',
588
-                  'required' => true,
589
-                ),
590
-                'force' => array(
591
-                  'location' => 'query',
592
-                  'type' => 'boolean',
593
-                ),
594
-              ),
595
-            ),'unpublish' => array(
596
-              'path' => 'maps/{id}/unpublish',
597
-              'httpMethod' => 'POST',
598
-              'parameters' => array(
599
-                'id' => array(
600
-                  'location' => 'path',
601
-                  'type' => 'string',
602
-                  'required' => true,
603
-                ),
604
-              ),
605
-            ),
606
-          )
607
-        )
608
-    );
609
-    $this->maps_permissions = new Google_Service_MapsEngine_MapsPermissions_Resource(
610
-        $this,
611
-        $this->serviceName,
612
-        'permissions',
613
-        array(
614
-          'methods' => array(
615
-            'batchDelete' => array(
616
-              'path' => 'maps/{id}/permissions/batchDelete',
617
-              'httpMethod' => 'POST',
618
-              'parameters' => array(
619
-                'id' => array(
620
-                  'location' => 'path',
621
-                  'type' => 'string',
622
-                  'required' => true,
623
-                ),
624
-              ),
625
-            ),'batchUpdate' => array(
626
-              'path' => 'maps/{id}/permissions/batchUpdate',
627
-              'httpMethod' => 'POST',
628
-              'parameters' => array(
629
-                'id' => array(
630
-                  'location' => 'path',
631
-                  'type' => 'string',
632
-                  'required' => true,
633
-                ),
634
-              ),
635
-            ),'list' => array(
636
-              'path' => 'maps/{id}/permissions',
637
-              'httpMethod' => 'GET',
638
-              'parameters' => array(
639
-                'id' => array(
640
-                  'location' => 'path',
641
-                  'type' => 'string',
642
-                  'required' => true,
643
-                ),
644
-              ),
645
-            ),
646
-          )
647
-        )
648
-    );
649
-    $this->projects = new Google_Service_MapsEngine_Projects_Resource(
650
-        $this,
651
-        $this->serviceName,
652
-        'projects',
653
-        array(
654
-          'methods' => array(
655
-            'list' => array(
656
-              'path' => 'projects',
657
-              'httpMethod' => 'GET',
658
-              'parameters' => array(),
659
-            ),
660
-          )
661
-        )
662
-    );
663
-    $this->projects_icons = new Google_Service_MapsEngine_ProjectsIcons_Resource(
664
-        $this,
665
-        $this->serviceName,
666
-        'icons',
667
-        array(
668
-          'methods' => array(
669
-            'create' => array(
670
-              'path' => 'projects/{projectId}/icons',
671
-              'httpMethod' => 'POST',
672
-              'parameters' => array(
673
-                'projectId' => array(
674
-                  'location' => 'path',
675
-                  'type' => 'string',
676
-                  'required' => true,
677
-                ),
678
-              ),
679
-            ),'get' => array(
680
-              'path' => 'projects/{projectId}/icons/{id}',
681
-              'httpMethod' => 'GET',
682
-              'parameters' => array(
683
-                'projectId' => array(
684
-                  'location' => 'path',
685
-                  'type' => 'string',
686
-                  'required' => true,
687
-                ),
688
-                'id' => array(
689
-                  'location' => 'path',
690
-                  'type' => 'string',
691
-                  'required' => true,
692
-                ),
693
-              ),
694
-            ),'list' => array(
695
-              'path' => 'projects/{projectId}/icons',
696
-              'httpMethod' => 'GET',
697
-              'parameters' => array(
698
-                'projectId' => array(
699
-                  'location' => 'path',
700
-                  'type' => 'string',
701
-                  'required' => true,
702
-                ),
703
-                'pageToken' => array(
704
-                  'location' => 'query',
705
-                  'type' => 'string',
706
-                ),
707
-                'maxResults' => array(
708
-                  'location' => 'query',
709
-                  'type' => 'integer',
710
-                ),
711
-              ),
712
-            ),
713
-          )
714
-        )
715
-    );
716
-    $this->rasterCollections = new Google_Service_MapsEngine_RasterCollections_Resource(
717
-        $this,
718
-        $this->serviceName,
719
-        'rasterCollections',
720
-        array(
721
-          'methods' => array(
722
-            'cancelProcessing' => array(
723
-              'path' => 'rasterCollections/{id}/cancelProcessing',
724
-              'httpMethod' => 'POST',
725
-              'parameters' => array(
726
-                'id' => array(
727
-                  'location' => 'path',
728
-                  'type' => 'string',
729
-                  'required' => true,
730
-                ),
731
-              ),
732
-            ),'create' => array(
733
-              'path' => 'rasterCollections',
734
-              'httpMethod' => 'POST',
735
-              'parameters' => array(),
736
-            ),'delete' => array(
737
-              'path' => 'rasterCollections/{id}',
738
-              'httpMethod' => 'DELETE',
739
-              'parameters' => array(
740
-                'id' => array(
741
-                  'location' => 'path',
742
-                  'type' => 'string',
743
-                  'required' => true,
744
-                ),
745
-              ),
746
-            ),'get' => array(
747
-              'path' => 'rasterCollections/{id}',
748
-              'httpMethod' => 'GET',
749
-              'parameters' => array(
750
-                'id' => array(
751
-                  'location' => 'path',
752
-                  'type' => 'string',
753
-                  'required' => true,
754
-                ),
755
-              ),
756
-            ),'list' => array(
757
-              'path' => 'rasterCollections',
758
-              'httpMethod' => 'GET',
759
-              'parameters' => array(
760
-                'modifiedAfter' => array(
761
-                  'location' => 'query',
762
-                  'type' => 'string',
763
-                ),
764
-                'createdAfter' => array(
765
-                  'location' => 'query',
766
-                  'type' => 'string',
767
-                ),
768
-                'processingStatus' => array(
769
-                  'location' => 'query',
770
-                  'type' => 'string',
771
-                ),
772
-                'projectId' => array(
773
-                  'location' => 'query',
774
-                  'type' => 'string',
775
-                ),
776
-                'tags' => array(
777
-                  'location' => 'query',
778
-                  'type' => 'string',
779
-                ),
780
-                'search' => array(
781
-                  'location' => 'query',
782
-                  'type' => 'string',
783
-                ),
784
-                'maxResults' => array(
785
-                  'location' => 'query',
786
-                  'type' => 'integer',
787
-                ),
788
-                'pageToken' => array(
789
-                  'location' => 'query',
790
-                  'type' => 'string',
791
-                ),
792
-                'creatorEmail' => array(
793
-                  'location' => 'query',
794
-                  'type' => 'string',
795
-                ),
796
-                'bbox' => array(
797
-                  'location' => 'query',
798
-                  'type' => 'string',
799
-                ),
800
-                'modifiedBefore' => array(
801
-                  'location' => 'query',
802
-                  'type' => 'string',
803
-                ),
804
-                'createdBefore' => array(
805
-                  'location' => 'query',
806
-                  'type' => 'string',
807
-                ),
808
-                'role' => array(
809
-                  'location' => 'query',
810
-                  'type' => 'string',
811
-                ),
812
-              ),
813
-            ),'patch' => array(
814
-              'path' => 'rasterCollections/{id}',
815
-              'httpMethod' => 'PATCH',
816
-              'parameters' => array(
817
-                'id' => array(
818
-                  'location' => 'path',
819
-                  'type' => 'string',
820
-                  'required' => true,
821
-                ),
822
-              ),
823
-            ),'process' => array(
824
-              'path' => 'rasterCollections/{id}/process',
825
-              'httpMethod' => 'POST',
826
-              'parameters' => array(
827
-                'id' => array(
828
-                  'location' => 'path',
829
-                  'type' => 'string',
830
-                  'required' => true,
831
-                ),
832
-              ),
833
-            ),
834
-          )
835
-        )
836
-    );
837
-    $this->rasterCollections_parents = new Google_Service_MapsEngine_RasterCollectionsParents_Resource(
838
-        $this,
839
-        $this->serviceName,
840
-        'parents',
841
-        array(
842
-          'methods' => array(
843
-            'list' => array(
844
-              'path' => 'rasterCollections/{id}/parents',
845
-              'httpMethod' => 'GET',
846
-              'parameters' => array(
847
-                'id' => array(
848
-                  'location' => 'path',
849
-                  'type' => 'string',
850
-                  'required' => true,
851
-                ),
852
-                'pageToken' => array(
853
-                  'location' => 'query',
854
-                  'type' => 'string',
855
-                ),
856
-                'maxResults' => array(
857
-                  'location' => 'query',
858
-                  'type' => 'integer',
859
-                ),
860
-              ),
861
-            ),
862
-          )
863
-        )
864
-    );
865
-    $this->rasterCollections_permissions = new Google_Service_MapsEngine_RasterCollectionsPermissions_Resource(
866
-        $this,
867
-        $this->serviceName,
868
-        'permissions',
869
-        array(
870
-          'methods' => array(
871
-            'batchDelete' => array(
872
-              'path' => 'rasterCollections/{id}/permissions/batchDelete',
873
-              'httpMethod' => 'POST',
874
-              'parameters' => array(
875
-                'id' => array(
876
-                  'location' => 'path',
877
-                  'type' => 'string',
878
-                  'required' => true,
879
-                ),
880
-              ),
881
-            ),'batchUpdate' => array(
882
-              'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883
-              'httpMethod' => 'POST',
884
-              'parameters' => array(
885
-                'id' => array(
886
-                  'location' => 'path',
887
-                  'type' => 'string',
888
-                  'required' => true,
889
-                ),
890
-              ),
891
-            ),'list' => array(
892
-              'path' => 'rasterCollections/{id}/permissions',
893
-              'httpMethod' => 'GET',
894
-              'parameters' => array(
895
-                'id' => array(
896
-                  'location' => 'path',
897
-                  'type' => 'string',
898
-                  'required' => true,
899
-                ),
900
-              ),
901
-            ),
902
-          )
903
-        )
904
-    );
905
-    $this->rasterCollections_rasters = new Google_Service_MapsEngine_RasterCollectionsRasters_Resource(
906
-        $this,
907
-        $this->serviceName,
908
-        'rasters',
909
-        array(
910
-          'methods' => array(
911
-            'batchDelete' => array(
912
-              'path' => 'rasterCollections/{id}/rasters/batchDelete',
913
-              'httpMethod' => 'POST',
914
-              'parameters' => array(
915
-                'id' => array(
916
-                  'location' => 'path',
917
-                  'type' => 'string',
918
-                  'required' => true,
919
-                ),
920
-              ),
921
-            ),'batchInsert' => array(
922
-              'path' => 'rasterCollections/{id}/rasters/batchInsert',
923
-              'httpMethod' => 'POST',
924
-              'parameters' => array(
925
-                'id' => array(
926
-                  'location' => 'path',
927
-                  'type' => 'string',
928
-                  'required' => true,
929
-                ),
930
-              ),
931
-            ),'list' => array(
932
-              'path' => 'rasterCollections/{id}/rasters',
933
-              'httpMethod' => 'GET',
934
-              'parameters' => array(
935
-                'id' => array(
936
-                  'location' => 'path',
937
-                  'type' => 'string',
938
-                  'required' => true,
939
-                ),
940
-                'modifiedAfter' => array(
941
-                  'location' => 'query',
942
-                  'type' => 'string',
943
-                ),
944
-                'createdAfter' => array(
945
-                  'location' => 'query',
946
-                  'type' => 'string',
947
-                ),
948
-                'tags' => array(
949
-                  'location' => 'query',
950
-                  'type' => 'string',
951
-                ),
952
-                'search' => array(
953
-                  'location' => 'query',
954
-                  'type' => 'string',
955
-                ),
956
-                'maxResults' => array(
957
-                  'location' => 'query',
958
-                  'type' => 'integer',
959
-                ),
960
-                'pageToken' => array(
961
-                  'location' => 'query',
962
-                  'type' => 'string',
963
-                ),
964
-                'creatorEmail' => array(
965
-                  'location' => 'query',
966
-                  'type' => 'string',
967
-                ),
968
-                'bbox' => array(
969
-                  'location' => 'query',
970
-                  'type' => 'string',
971
-                ),
972
-                'modifiedBefore' => array(
973
-                  'location' => 'query',
974
-                  'type' => 'string',
975
-                ),
976
-                'createdBefore' => array(
977
-                  'location' => 'query',
978
-                  'type' => 'string',
979
-                ),
980
-                'role' => array(
981
-                  'location' => 'query',
982
-                  'type' => 'string',
983
-                ),
984
-              ),
985
-            ),
986
-          )
987
-        )
988
-    );
989
-    $this->rasters = new Google_Service_MapsEngine_Rasters_Resource(
990
-        $this,
991
-        $this->serviceName,
992
-        'rasters',
993
-        array(
994
-          'methods' => array(
995
-            'delete' => array(
996
-              'path' => 'rasters/{id}',
997
-              'httpMethod' => 'DELETE',
998
-              'parameters' => array(
999
-                'id' => array(
1000
-                  'location' => 'path',
1001
-                  'type' => 'string',
1002
-                  'required' => true,
1003
-                ),
1004
-              ),
1005
-            ),'get' => array(
1006
-              'path' => 'rasters/{id}',
1007
-              'httpMethod' => 'GET',
1008
-              'parameters' => array(
1009
-                'id' => array(
1010
-                  'location' => 'path',
1011
-                  'type' => 'string',
1012
-                  'required' => true,
1013
-                ),
1014
-              ),
1015
-            ),'list' => array(
1016
-              'path' => 'rasters',
1017
-              'httpMethod' => 'GET',
1018
-              'parameters' => array(
1019
-                'projectId' => array(
1020
-                  'location' => 'query',
1021
-                  'type' => 'string',
1022
-                  'required' => true,
1023
-                ),
1024
-                'modifiedAfter' => array(
1025
-                  'location' => 'query',
1026
-                  'type' => 'string',
1027
-                ),
1028
-                'createdAfter' => array(
1029
-                  'location' => 'query',
1030
-                  'type' => 'string',
1031
-                ),
1032
-                'processingStatus' => array(
1033
-                  'location' => 'query',
1034
-                  'type' => 'string',
1035
-                ),
1036
-                'tags' => array(
1037
-                  'location' => 'query',
1038
-                  'type' => 'string',
1039
-                ),
1040
-                'search' => array(
1041
-                  'location' => 'query',
1042
-                  'type' => 'string',
1043
-                ),
1044
-                'maxResults' => array(
1045
-                  'location' => 'query',
1046
-                  'type' => 'integer',
1047
-                ),
1048
-                'pageToken' => array(
1049
-                  'location' => 'query',
1050
-                  'type' => 'string',
1051
-                ),
1052
-                'creatorEmail' => array(
1053
-                  'location' => 'query',
1054
-                  'type' => 'string',
1055
-                ),
1056
-                'bbox' => array(
1057
-                  'location' => 'query',
1058
-                  'type' => 'string',
1059
-                ),
1060
-                'modifiedBefore' => array(
1061
-                  'location' => 'query',
1062
-                  'type' => 'string',
1063
-                ),
1064
-                'createdBefore' => array(
1065
-                  'location' => 'query',
1066
-                  'type' => 'string',
1067
-                ),
1068
-                'role' => array(
1069
-                  'location' => 'query',
1070
-                  'type' => 'string',
1071
-                ),
1072
-              ),
1073
-            ),'patch' => array(
1074
-              'path' => 'rasters/{id}',
1075
-              'httpMethod' => 'PATCH',
1076
-              'parameters' => array(
1077
-                'id' => array(
1078
-                  'location' => 'path',
1079
-                  'type' => 'string',
1080
-                  'required' => true,
1081
-                ),
1082
-              ),
1083
-            ),'process' => array(
1084
-              'path' => 'rasters/{id}/process',
1085
-              'httpMethod' => 'POST',
1086
-              'parameters' => array(
1087
-                'id' => array(
1088
-                  'location' => 'path',
1089
-                  'type' => 'string',
1090
-                  'required' => true,
1091
-                ),
1092
-              ),
1093
-            ),'upload' => array(
1094
-              'path' => 'rasters/upload',
1095
-              'httpMethod' => 'POST',
1096
-              'parameters' => array(),
1097
-            ),
1098
-          )
1099
-        )
1100
-    );
1101
-    $this->rasters_files = new Google_Service_MapsEngine_RastersFiles_Resource(
1102
-        $this,
1103
-        $this->serviceName,
1104
-        'files',
1105
-        array(
1106
-          'methods' => array(
1107
-            'insert' => array(
1108
-              'path' => 'rasters/{id}/files',
1109
-              'httpMethod' => 'POST',
1110
-              'parameters' => array(
1111
-                'id' => array(
1112
-                  'location' => 'path',
1113
-                  'type' => 'string',
1114
-                  'required' => true,
1115
-                ),
1116
-                'filename' => array(
1117
-                  'location' => 'query',
1118
-                  'type' => 'string',
1119
-                  'required' => true,
1120
-                ),
1121
-              ),
1122
-            ),
1123
-          )
1124
-        )
1125
-    );
1126
-    $this->rasters_parents = new Google_Service_MapsEngine_RastersParents_Resource(
1127
-        $this,
1128
-        $this->serviceName,
1129
-        'parents',
1130
-        array(
1131
-          'methods' => array(
1132
-            'list' => array(
1133
-              'path' => 'rasters/{id}/parents',
1134
-              'httpMethod' => 'GET',
1135
-              'parameters' => array(
1136
-                'id' => array(
1137
-                  'location' => 'path',
1138
-                  'type' => 'string',
1139
-                  'required' => true,
1140
-                ),
1141
-                'pageToken' => array(
1142
-                  'location' => 'query',
1143
-                  'type' => 'string',
1144
-                ),
1145
-                'maxResults' => array(
1146
-                  'location' => 'query',
1147
-                  'type' => 'integer',
1148
-                ),
1149
-              ),
1150
-            ),
1151
-          )
1152
-        )
1153
-    );
1154
-    $this->rasters_permissions = new Google_Service_MapsEngine_RastersPermissions_Resource(
1155
-        $this,
1156
-        $this->serviceName,
1157
-        'permissions',
1158
-        array(
1159
-          'methods' => array(
1160
-            'batchDelete' => array(
1161
-              'path' => 'rasters/{id}/permissions/batchDelete',
1162
-              'httpMethod' => 'POST',
1163
-              'parameters' => array(
1164
-                'id' => array(
1165
-                  'location' => 'path',
1166
-                  'type' => 'string',
1167
-                  'required' => true,
1168
-                ),
1169
-              ),
1170
-            ),'batchUpdate' => array(
1171
-              'path' => 'rasters/{id}/permissions/batchUpdate',
1172
-              'httpMethod' => 'POST',
1173
-              'parameters' => array(
1174
-                'id' => array(
1175
-                  'location' => 'path',
1176
-                  'type' => 'string',
1177
-                  'required' => true,
1178
-                ),
1179
-              ),
1180
-            ),'list' => array(
1181
-              'path' => 'rasters/{id}/permissions',
1182
-              'httpMethod' => 'GET',
1183
-              'parameters' => array(
1184
-                'id' => array(
1185
-                  'location' => 'path',
1186
-                  'type' => 'string',
1187
-                  'required' => true,
1188
-                ),
1189
-              ),
1190
-            ),
1191
-          )
1192
-        )
1193
-    );
1194
-    $this->tables = new Google_Service_MapsEngine_Tables_Resource(
1195
-        $this,
1196
-        $this->serviceName,
1197
-        'tables',
1198
-        array(
1199
-          'methods' => array(
1200
-            'create' => array(
1201
-              'path' => 'tables',
1202
-              'httpMethod' => 'POST',
1203
-              'parameters' => array(),
1204
-            ),'delete' => array(
1205
-              'path' => 'tables/{id}',
1206
-              'httpMethod' => 'DELETE',
1207
-              'parameters' => array(
1208
-                'id' => array(
1209
-                  'location' => 'path',
1210
-                  'type' => 'string',
1211
-                  'required' => true,
1212
-                ),
1213
-              ),
1214
-            ),'get' => array(
1215
-              'path' => 'tables/{id}',
1216
-              'httpMethod' => 'GET',
1217
-              'parameters' => array(
1218
-                'id' => array(
1219
-                  'location' => 'path',
1220
-                  'type' => 'string',
1221
-                  'required' => true,
1222
-                ),
1223
-                'version' => array(
1224
-                  'location' => 'query',
1225
-                  'type' => 'string',
1226
-                ),
1227
-              ),
1228
-            ),'list' => array(
1229
-              'path' => 'tables',
1230
-              'httpMethod' => 'GET',
1231
-              'parameters' => array(
1232
-                'modifiedAfter' => array(
1233
-                  'location' => 'query',
1234
-                  'type' => 'string',
1235
-                ),
1236
-                'createdAfter' => array(
1237
-                  'location' => 'query',
1238
-                  'type' => 'string',
1239
-                ),
1240
-                'processingStatus' => array(
1241
-                  'location' => 'query',
1242
-                  'type' => 'string',
1243
-                ),
1244
-                'projectId' => array(
1245
-                  'location' => 'query',
1246
-                  'type' => 'string',
1247
-                ),
1248
-                'tags' => array(
1249
-                  'location' => 'query',
1250
-                  'type' => 'string',
1251
-                ),
1252
-                'search' => array(
1253
-                  'location' => 'query',
1254
-                  'type' => 'string',
1255
-                ),
1256
-                'maxResults' => array(
1257
-                  'location' => 'query',
1258
-                  'type' => 'integer',
1259
-                ),
1260
-                'pageToken' => array(
1261
-                  'location' => 'query',
1262
-                  'type' => 'string',
1263
-                ),
1264
-                'creatorEmail' => array(
1265
-                  'location' => 'query',
1266
-                  'type' => 'string',
1267
-                ),
1268
-                'bbox' => array(
1269
-                  'location' => 'query',
1270
-                  'type' => 'string',
1271
-                ),
1272
-                'modifiedBefore' => array(
1273
-                  'location' => 'query',
1274
-                  'type' => 'string',
1275
-                ),
1276
-                'createdBefore' => array(
1277
-                  'location' => 'query',
1278
-                  'type' => 'string',
1279
-                ),
1280
-                'role' => array(
1281
-                  'location' => 'query',
1282
-                  'type' => 'string',
1283
-                ),
1284
-              ),
1285
-            ),'patch' => array(
1286
-              'path' => 'tables/{id}',
1287
-              'httpMethod' => 'PATCH',
1288
-              'parameters' => array(
1289
-                'id' => array(
1290
-                  'location' => 'path',
1291
-                  'type' => 'string',
1292
-                  'required' => true,
1293
-                ),
1294
-              ),
1295
-            ),'process' => array(
1296
-              'path' => 'tables/{id}/process',
1297
-              'httpMethod' => 'POST',
1298
-              'parameters' => array(
1299
-                'id' => array(
1300
-                  'location' => 'path',
1301
-                  'type' => 'string',
1302
-                  'required' => true,
1303
-                ),
1304
-              ),
1305
-            ),'upload' => array(
1306
-              'path' => 'tables/upload',
1307
-              'httpMethod' => 'POST',
1308
-              'parameters' => array(),
1309
-            ),
1310
-          )
1311
-        )
1312
-    );
1313
-    $this->tables_features = new Google_Service_MapsEngine_TablesFeatures_Resource(
1314
-        $this,
1315
-        $this->serviceName,
1316
-        'features',
1317
-        array(
1318
-          'methods' => array(
1319
-            'batchDelete' => array(
1320
-              'path' => 'tables/{id}/features/batchDelete',
1321
-              'httpMethod' => 'POST',
1322
-              'parameters' => array(
1323
-                'id' => array(
1324
-                  'location' => 'path',
1325
-                  'type' => 'string',
1326
-                  'required' => true,
1327
-                ),
1328
-              ),
1329
-            ),'batchInsert' => array(
1330
-              'path' => 'tables/{id}/features/batchInsert',
1331
-              'httpMethod' => 'POST',
1332
-              'parameters' => array(
1333
-                'id' => array(
1334
-                  'location' => 'path',
1335
-                  'type' => 'string',
1336
-                  'required' => true,
1337
-                ),
1338
-              ),
1339
-            ),'batchPatch' => array(
1340
-              'path' => 'tables/{id}/features/batchPatch',
1341
-              'httpMethod' => 'POST',
1342
-              'parameters' => array(
1343
-                'id' => array(
1344
-                  'location' => 'path',
1345
-                  'type' => 'string',
1346
-                  'required' => true,
1347
-                ),
1348
-              ),
1349
-            ),'get' => array(
1350
-              'path' => 'tables/{tableId}/features/{id}',
1351
-              'httpMethod' => 'GET',
1352
-              'parameters' => array(
1353
-                'tableId' => array(
1354
-                  'location' => 'path',
1355
-                  'type' => 'string',
1356
-                  'required' => true,
1357
-                ),
1358
-                'id' => array(
1359
-                  'location' => 'path',
1360
-                  'type' => 'string',
1361
-                  'required' => true,
1362
-                ),
1363
-                'version' => array(
1364
-                  'location' => 'query',
1365
-                  'type' => 'string',
1366
-                ),
1367
-                'select' => array(
1368
-                  'location' => 'query',
1369
-                  'type' => 'string',
1370
-                ),
1371
-              ),
1372
-            ),'list' => array(
1373
-              'path' => 'tables/{id}/features',
1374
-              'httpMethod' => 'GET',
1375
-              'parameters' => array(
1376
-                'id' => array(
1377
-                  'location' => 'path',
1378
-                  'type' => 'string',
1379
-                  'required' => true,
1380
-                ),
1381
-                'orderBy' => array(
1382
-                  'location' => 'query',
1383
-                  'type' => 'string',
1384
-                ),
1385
-                'intersects' => array(
1386
-                  'location' => 'query',
1387
-                  'type' => 'string',
1388
-                ),
1389
-                'maxResults' => array(
1390
-                  'location' => 'query',
1391
-                  'type' => 'integer',
1392
-                ),
1393
-                'pageToken' => array(
1394
-                  'location' => 'query',
1395
-                  'type' => 'string',
1396
-                ),
1397
-                'version' => array(
1398
-                  'location' => 'query',
1399
-                  'type' => 'string',
1400
-                ),
1401
-                'limit' => array(
1402
-                  'location' => 'query',
1403
-                  'type' => 'integer',
1404
-                ),
1405
-                'include' => array(
1406
-                  'location' => 'query',
1407
-                  'type' => 'string',
1408
-                ),
1409
-                'where' => array(
1410
-                  'location' => 'query',
1411
-                  'type' => 'string',
1412
-                ),
1413
-                'select' => array(
1414
-                  'location' => 'query',
1415
-                  'type' => 'string',
1416
-                ),
1417
-              ),
1418
-            ),
1419
-          )
1420
-        )
1421
-    );
1422
-    $this->tables_files = new Google_Service_MapsEngine_TablesFiles_Resource(
1423
-        $this,
1424
-        $this->serviceName,
1425
-        'files',
1426
-        array(
1427
-          'methods' => array(
1428
-            'insert' => array(
1429
-              'path' => 'tables/{id}/files',
1430
-              'httpMethod' => 'POST',
1431
-              'parameters' => array(
1432
-                'id' => array(
1433
-                  'location' => 'path',
1434
-                  'type' => 'string',
1435
-                  'required' => true,
1436
-                ),
1437
-                'filename' => array(
1438
-                  'location' => 'query',
1439
-                  'type' => 'string',
1440
-                  'required' => true,
1441
-                ),
1442
-              ),
1443
-            ),
1444
-          )
1445
-        )
1446
-    );
1447
-    $this->tables_parents = new Google_Service_MapsEngine_TablesParents_Resource(
1448
-        $this,
1449
-        $this->serviceName,
1450
-        'parents',
1451
-        array(
1452
-          'methods' => array(
1453
-            'list' => array(
1454
-              'path' => 'tables/{id}/parents',
1455
-              'httpMethod' => 'GET',
1456
-              'parameters' => array(
1457
-                'id' => array(
1458
-                  'location' => 'path',
1459
-                  'type' => 'string',
1460
-                  'required' => true,
1461
-                ),
1462
-                'pageToken' => array(
1463
-                  'location' => 'query',
1464
-                  'type' => 'string',
1465
-                ),
1466
-                'maxResults' => array(
1467
-                  'location' => 'query',
1468
-                  'type' => 'integer',
1469
-                ),
1470
-              ),
1471
-            ),
1472
-          )
1473
-        )
1474
-    );
1475
-    $this->tables_permissions = new Google_Service_MapsEngine_TablesPermissions_Resource(
1476
-        $this,
1477
-        $this->serviceName,
1478
-        'permissions',
1479
-        array(
1480
-          'methods' => array(
1481
-            'batchDelete' => array(
1482
-              'path' => 'tables/{id}/permissions/batchDelete',
1483
-              'httpMethod' => 'POST',
1484
-              'parameters' => array(
1485
-                'id' => array(
1486
-                  'location' => 'path',
1487
-                  'type' => 'string',
1488
-                  'required' => true,
1489
-                ),
1490
-              ),
1491
-            ),'batchUpdate' => array(
1492
-              'path' => 'tables/{id}/permissions/batchUpdate',
1493
-              'httpMethod' => 'POST',
1494
-              'parameters' => array(
1495
-                'id' => array(
1496
-                  'location' => 'path',
1497
-                  'type' => 'string',
1498
-                  'required' => true,
1499
-                ),
1500
-              ),
1501
-            ),'list' => array(
1502
-              'path' => 'tables/{id}/permissions',
1503
-              'httpMethod' => 'GET',
1504
-              'parameters' => array(
1505
-                'id' => array(
1506
-                  'location' => 'path',
1507
-                  'type' => 'string',
1508
-                  'required' => true,
1509
-                ),
1510
-              ),
1511
-            ),
1512
-          )
1513
-        )
1514
-    );
73
+	parent::__construct($client);
74
+	$this->rootUrl = 'https://www.googleapis.com/';
75
+	$this->servicePath = 'mapsengine/v1/';
76
+	$this->version = 'v1';
77
+	$this->serviceName = 'mapsengine';
78
+
79
+	$this->assets = new Google_Service_MapsEngine_Assets_Resource(
80
+		$this,
81
+		$this->serviceName,
82
+		'assets',
83
+		array(
84
+		  'methods' => array(
85
+			'get' => array(
86
+			  'path' => 'assets/{id}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'id' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+			  ),
95
+			),'list' => array(
96
+			  'path' => 'assets',
97
+			  'httpMethod' => 'GET',
98
+			  'parameters' => array(
99
+				'modifiedAfter' => array(
100
+				  'location' => 'query',
101
+				  'type' => 'string',
102
+				),
103
+				'createdAfter' => array(
104
+				  'location' => 'query',
105
+				  'type' => 'string',
106
+				),
107
+				'tags' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'string',
110
+				),
111
+				'projectId' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+				'search' => array(
116
+				  'location' => 'query',
117
+				  'type' => 'string',
118
+				),
119
+				'maxResults' => array(
120
+				  'location' => 'query',
121
+				  'type' => 'integer',
122
+				),
123
+				'pageToken' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				),
127
+				'creatorEmail' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'string',
130
+				),
131
+				'bbox' => array(
132
+				  'location' => 'query',
133
+				  'type' => 'string',
134
+				),
135
+				'modifiedBefore' => array(
136
+				  'location' => 'query',
137
+				  'type' => 'string',
138
+				),
139
+				'createdBefore' => array(
140
+				  'location' => 'query',
141
+				  'type' => 'string',
142
+				),
143
+				'role' => array(
144
+				  'location' => 'query',
145
+				  'type' => 'string',
146
+				),
147
+				'type' => array(
148
+				  'location' => 'query',
149
+				  'type' => 'string',
150
+				),
151
+			  ),
152
+			),
153
+		  )
154
+		)
155
+	);
156
+	$this->assets_parents = new Google_Service_MapsEngine_AssetsParents_Resource(
157
+		$this,
158
+		$this->serviceName,
159
+		'parents',
160
+		array(
161
+		  'methods' => array(
162
+			'list' => array(
163
+			  'path' => 'assets/{id}/parents',
164
+			  'httpMethod' => 'GET',
165
+			  'parameters' => array(
166
+				'id' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'pageToken' => array(
172
+				  'location' => 'query',
173
+				  'type' => 'string',
174
+				),
175
+				'maxResults' => array(
176
+				  'location' => 'query',
177
+				  'type' => 'integer',
178
+				),
179
+			  ),
180
+			),
181
+		  )
182
+		)
183
+	);
184
+	$this->assets_permissions = new Google_Service_MapsEngine_AssetsPermissions_Resource(
185
+		$this,
186
+		$this->serviceName,
187
+		'permissions',
188
+		array(
189
+		  'methods' => array(
190
+			'list' => array(
191
+			  'path' => 'assets/{id}/permissions',
192
+			  'httpMethod' => 'GET',
193
+			  'parameters' => array(
194
+				'id' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+			  ),
200
+			),
201
+		  )
202
+		)
203
+	);
204
+	$this->layers = new Google_Service_MapsEngine_Layers_Resource(
205
+		$this,
206
+		$this->serviceName,
207
+		'layers',
208
+		array(
209
+		  'methods' => array(
210
+			'cancelProcessing' => array(
211
+			  'path' => 'layers/{id}/cancelProcessing',
212
+			  'httpMethod' => 'POST',
213
+			  'parameters' => array(
214
+				'id' => array(
215
+				  'location' => 'path',
216
+				  'type' => 'string',
217
+				  'required' => true,
218
+				),
219
+			  ),
220
+			),'create' => array(
221
+			  'path' => 'layers',
222
+			  'httpMethod' => 'POST',
223
+			  'parameters' => array(
224
+				'process' => array(
225
+				  'location' => 'query',
226
+				  'type' => 'boolean',
227
+				),
228
+			  ),
229
+			),'delete' => array(
230
+			  'path' => 'layers/{id}',
231
+			  'httpMethod' => 'DELETE',
232
+			  'parameters' => array(
233
+				'id' => array(
234
+				  'location' => 'path',
235
+				  'type' => 'string',
236
+				  'required' => true,
237
+				),
238
+			  ),
239
+			),'get' => array(
240
+			  'path' => 'layers/{id}',
241
+			  'httpMethod' => 'GET',
242
+			  'parameters' => array(
243
+				'id' => array(
244
+				  'location' => 'path',
245
+				  'type' => 'string',
246
+				  'required' => true,
247
+				),
248
+				'version' => array(
249
+				  'location' => 'query',
250
+				  'type' => 'string',
251
+				),
252
+			  ),
253
+			),'getPublished' => array(
254
+			  'path' => 'layers/{id}/published',
255
+			  'httpMethod' => 'GET',
256
+			  'parameters' => array(
257
+				'id' => array(
258
+				  'location' => 'path',
259
+				  'type' => 'string',
260
+				  'required' => true,
261
+				),
262
+			  ),
263
+			),'list' => array(
264
+			  'path' => 'layers',
265
+			  'httpMethod' => 'GET',
266
+			  'parameters' => array(
267
+				'modifiedAfter' => array(
268
+				  'location' => 'query',
269
+				  'type' => 'string',
270
+				),
271
+				'createdAfter' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'string',
274
+				),
275
+				'processingStatus' => array(
276
+				  'location' => 'query',
277
+				  'type' => 'string',
278
+				),
279
+				'projectId' => array(
280
+				  'location' => 'query',
281
+				  'type' => 'string',
282
+				),
283
+				'tags' => array(
284
+				  'location' => 'query',
285
+				  'type' => 'string',
286
+				),
287
+				'search' => array(
288
+				  'location' => 'query',
289
+				  'type' => 'string',
290
+				),
291
+				'maxResults' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'integer',
294
+				),
295
+				'pageToken' => array(
296
+				  'location' => 'query',
297
+				  'type' => 'string',
298
+				),
299
+				'creatorEmail' => array(
300
+				  'location' => 'query',
301
+				  'type' => 'string',
302
+				),
303
+				'bbox' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'string',
306
+				),
307
+				'modifiedBefore' => array(
308
+				  'location' => 'query',
309
+				  'type' => 'string',
310
+				),
311
+				'createdBefore' => array(
312
+				  'location' => 'query',
313
+				  'type' => 'string',
314
+				),
315
+				'role' => array(
316
+				  'location' => 'query',
317
+				  'type' => 'string',
318
+				),
319
+			  ),
320
+			),'listPublished' => array(
321
+			  'path' => 'layers/published',
322
+			  'httpMethod' => 'GET',
323
+			  'parameters' => array(
324
+				'pageToken' => array(
325
+				  'location' => 'query',
326
+				  'type' => 'string',
327
+				),
328
+				'maxResults' => array(
329
+				  'location' => 'query',
330
+				  'type' => 'integer',
331
+				),
332
+				'projectId' => array(
333
+				  'location' => 'query',
334
+				  'type' => 'string',
335
+				),
336
+			  ),
337
+			),'patch' => array(
338
+			  'path' => 'layers/{id}',
339
+			  'httpMethod' => 'PATCH',
340
+			  'parameters' => array(
341
+				'id' => array(
342
+				  'location' => 'path',
343
+				  'type' => 'string',
344
+				  'required' => true,
345
+				),
346
+			  ),
347
+			),'process' => array(
348
+			  'path' => 'layers/{id}/process',
349
+			  'httpMethod' => 'POST',
350
+			  'parameters' => array(
351
+				'id' => array(
352
+				  'location' => 'path',
353
+				  'type' => 'string',
354
+				  'required' => true,
355
+				),
356
+			  ),
357
+			),'publish' => array(
358
+			  'path' => 'layers/{id}/publish',
359
+			  'httpMethod' => 'POST',
360
+			  'parameters' => array(
361
+				'id' => array(
362
+				  'location' => 'path',
363
+				  'type' => 'string',
364
+				  'required' => true,
365
+				),
366
+				'force' => array(
367
+				  'location' => 'query',
368
+				  'type' => 'boolean',
369
+				),
370
+			  ),
371
+			),'unpublish' => array(
372
+			  'path' => 'layers/{id}/unpublish',
373
+			  'httpMethod' => 'POST',
374
+			  'parameters' => array(
375
+				'id' => array(
376
+				  'location' => 'path',
377
+				  'type' => 'string',
378
+				  'required' => true,
379
+				),
380
+			  ),
381
+			),
382
+		  )
383
+		)
384
+	);
385
+	$this->layers_parents = new Google_Service_MapsEngine_LayersParents_Resource(
386
+		$this,
387
+		$this->serviceName,
388
+		'parents',
389
+		array(
390
+		  'methods' => array(
391
+			'list' => array(
392
+			  'path' => 'layers/{id}/parents',
393
+			  'httpMethod' => 'GET',
394
+			  'parameters' => array(
395
+				'id' => array(
396
+				  'location' => 'path',
397
+				  'type' => 'string',
398
+				  'required' => true,
399
+				),
400
+				'pageToken' => array(
401
+				  'location' => 'query',
402
+				  'type' => 'string',
403
+				),
404
+				'maxResults' => array(
405
+				  'location' => 'query',
406
+				  'type' => 'integer',
407
+				),
408
+			  ),
409
+			),
410
+		  )
411
+		)
412
+	);
413
+	$this->layers_permissions = new Google_Service_MapsEngine_LayersPermissions_Resource(
414
+		$this,
415
+		$this->serviceName,
416
+		'permissions',
417
+		array(
418
+		  'methods' => array(
419
+			'batchDelete' => array(
420
+			  'path' => 'layers/{id}/permissions/batchDelete',
421
+			  'httpMethod' => 'POST',
422
+			  'parameters' => array(
423
+				'id' => array(
424
+				  'location' => 'path',
425
+				  'type' => 'string',
426
+				  'required' => true,
427
+				),
428
+			  ),
429
+			),'batchUpdate' => array(
430
+			  'path' => 'layers/{id}/permissions/batchUpdate',
431
+			  'httpMethod' => 'POST',
432
+			  'parameters' => array(
433
+				'id' => array(
434
+				  'location' => 'path',
435
+				  'type' => 'string',
436
+				  'required' => true,
437
+				),
438
+			  ),
439
+			),'list' => array(
440
+			  'path' => 'layers/{id}/permissions',
441
+			  'httpMethod' => 'GET',
442
+			  'parameters' => array(
443
+				'id' => array(
444
+				  'location' => 'path',
445
+				  'type' => 'string',
446
+				  'required' => true,
447
+				),
448
+			  ),
449
+			),
450
+		  )
451
+		)
452
+	);
453
+	$this->maps = new Google_Service_MapsEngine_Maps_Resource(
454
+		$this,
455
+		$this->serviceName,
456
+		'maps',
457
+		array(
458
+		  'methods' => array(
459
+			'create' => array(
460
+			  'path' => 'maps',
461
+			  'httpMethod' => 'POST',
462
+			  'parameters' => array(),
463
+			),'delete' => array(
464
+			  'path' => 'maps/{id}',
465
+			  'httpMethod' => 'DELETE',
466
+			  'parameters' => array(
467
+				'id' => array(
468
+				  'location' => 'path',
469
+				  'type' => 'string',
470
+				  'required' => true,
471
+				),
472
+			  ),
473
+			),'get' => array(
474
+			  'path' => 'maps/{id}',
475
+			  'httpMethod' => 'GET',
476
+			  'parameters' => array(
477
+				'id' => array(
478
+				  'location' => 'path',
479
+				  'type' => 'string',
480
+				  'required' => true,
481
+				),
482
+				'version' => array(
483
+				  'location' => 'query',
484
+				  'type' => 'string',
485
+				),
486
+			  ),
487
+			),'getPublished' => array(
488
+			  'path' => 'maps/{id}/published',
489
+			  'httpMethod' => 'GET',
490
+			  'parameters' => array(
491
+				'id' => array(
492
+				  'location' => 'path',
493
+				  'type' => 'string',
494
+				  'required' => true,
495
+				),
496
+			  ),
497
+			),'list' => array(
498
+			  'path' => 'maps',
499
+			  'httpMethod' => 'GET',
500
+			  'parameters' => array(
501
+				'modifiedAfter' => array(
502
+				  'location' => 'query',
503
+				  'type' => 'string',
504
+				),
505
+				'createdAfter' => array(
506
+				  'location' => 'query',
507
+				  'type' => 'string',
508
+				),
509
+				'processingStatus' => array(
510
+				  'location' => 'query',
511
+				  'type' => 'string',
512
+				),
513
+				'projectId' => array(
514
+				  'location' => 'query',
515
+				  'type' => 'string',
516
+				),
517
+				'tags' => array(
518
+				  'location' => 'query',
519
+				  'type' => 'string',
520
+				),
521
+				'search' => array(
522
+				  'location' => 'query',
523
+				  'type' => 'string',
524
+				),
525
+				'maxResults' => array(
526
+				  'location' => 'query',
527
+				  'type' => 'integer',
528
+				),
529
+				'pageToken' => array(
530
+				  'location' => 'query',
531
+				  'type' => 'string',
532
+				),
533
+				'creatorEmail' => array(
534
+				  'location' => 'query',
535
+				  'type' => 'string',
536
+				),
537
+				'bbox' => array(
538
+				  'location' => 'query',
539
+				  'type' => 'string',
540
+				),
541
+				'modifiedBefore' => array(
542
+				  'location' => 'query',
543
+				  'type' => 'string',
544
+				),
545
+				'createdBefore' => array(
546
+				  'location' => 'query',
547
+				  'type' => 'string',
548
+				),
549
+				'role' => array(
550
+				  'location' => 'query',
551
+				  'type' => 'string',
552
+				),
553
+			  ),
554
+			),'listPublished' => array(
555
+			  'path' => 'maps/published',
556
+			  'httpMethod' => 'GET',
557
+			  'parameters' => array(
558
+				'pageToken' => array(
559
+				  'location' => 'query',
560
+				  'type' => 'string',
561
+				),
562
+				'maxResults' => array(
563
+				  'location' => 'query',
564
+				  'type' => 'integer',
565
+				),
566
+				'projectId' => array(
567
+				  'location' => 'query',
568
+				  'type' => 'string',
569
+				),
570
+			  ),
571
+			),'patch' => array(
572
+			  'path' => 'maps/{id}',
573
+			  'httpMethod' => 'PATCH',
574
+			  'parameters' => array(
575
+				'id' => array(
576
+				  'location' => 'path',
577
+				  'type' => 'string',
578
+				  'required' => true,
579
+				),
580
+			  ),
581
+			),'publish' => array(
582
+			  'path' => 'maps/{id}/publish',
583
+			  'httpMethod' => 'POST',
584
+			  'parameters' => array(
585
+				'id' => array(
586
+				  'location' => 'path',
587
+				  'type' => 'string',
588
+				  'required' => true,
589
+				),
590
+				'force' => array(
591
+				  'location' => 'query',
592
+				  'type' => 'boolean',
593
+				),
594
+			  ),
595
+			),'unpublish' => array(
596
+			  'path' => 'maps/{id}/unpublish',
597
+			  'httpMethod' => 'POST',
598
+			  'parameters' => array(
599
+				'id' => array(
600
+				  'location' => 'path',
601
+				  'type' => 'string',
602
+				  'required' => true,
603
+				),
604
+			  ),
605
+			),
606
+		  )
607
+		)
608
+	);
609
+	$this->maps_permissions = new Google_Service_MapsEngine_MapsPermissions_Resource(
610
+		$this,
611
+		$this->serviceName,
612
+		'permissions',
613
+		array(
614
+		  'methods' => array(
615
+			'batchDelete' => array(
616
+			  'path' => 'maps/{id}/permissions/batchDelete',
617
+			  'httpMethod' => 'POST',
618
+			  'parameters' => array(
619
+				'id' => array(
620
+				  'location' => 'path',
621
+				  'type' => 'string',
622
+				  'required' => true,
623
+				),
624
+			  ),
625
+			),'batchUpdate' => array(
626
+			  'path' => 'maps/{id}/permissions/batchUpdate',
627
+			  'httpMethod' => 'POST',
628
+			  'parameters' => array(
629
+				'id' => array(
630
+				  'location' => 'path',
631
+				  'type' => 'string',
632
+				  'required' => true,
633
+				),
634
+			  ),
635
+			),'list' => array(
636
+			  'path' => 'maps/{id}/permissions',
637
+			  'httpMethod' => 'GET',
638
+			  'parameters' => array(
639
+				'id' => array(
640
+				  'location' => 'path',
641
+				  'type' => 'string',
642
+				  'required' => true,
643
+				),
644
+			  ),
645
+			),
646
+		  )
647
+		)
648
+	);
649
+	$this->projects = new Google_Service_MapsEngine_Projects_Resource(
650
+		$this,
651
+		$this->serviceName,
652
+		'projects',
653
+		array(
654
+		  'methods' => array(
655
+			'list' => array(
656
+			  'path' => 'projects',
657
+			  'httpMethod' => 'GET',
658
+			  'parameters' => array(),
659
+			),
660
+		  )
661
+		)
662
+	);
663
+	$this->projects_icons = new Google_Service_MapsEngine_ProjectsIcons_Resource(
664
+		$this,
665
+		$this->serviceName,
666
+		'icons',
667
+		array(
668
+		  'methods' => array(
669
+			'create' => array(
670
+			  'path' => 'projects/{projectId}/icons',
671
+			  'httpMethod' => 'POST',
672
+			  'parameters' => array(
673
+				'projectId' => array(
674
+				  'location' => 'path',
675
+				  'type' => 'string',
676
+				  'required' => true,
677
+				),
678
+			  ),
679
+			),'get' => array(
680
+			  'path' => 'projects/{projectId}/icons/{id}',
681
+			  'httpMethod' => 'GET',
682
+			  'parameters' => array(
683
+				'projectId' => array(
684
+				  'location' => 'path',
685
+				  'type' => 'string',
686
+				  'required' => true,
687
+				),
688
+				'id' => array(
689
+				  'location' => 'path',
690
+				  'type' => 'string',
691
+				  'required' => true,
692
+				),
693
+			  ),
694
+			),'list' => array(
695
+			  'path' => 'projects/{projectId}/icons',
696
+			  'httpMethod' => 'GET',
697
+			  'parameters' => array(
698
+				'projectId' => array(
699
+				  'location' => 'path',
700
+				  'type' => 'string',
701
+				  'required' => true,
702
+				),
703
+				'pageToken' => array(
704
+				  'location' => 'query',
705
+				  'type' => 'string',
706
+				),
707
+				'maxResults' => array(
708
+				  'location' => 'query',
709
+				  'type' => 'integer',
710
+				),
711
+			  ),
712
+			),
713
+		  )
714
+		)
715
+	);
716
+	$this->rasterCollections = new Google_Service_MapsEngine_RasterCollections_Resource(
717
+		$this,
718
+		$this->serviceName,
719
+		'rasterCollections',
720
+		array(
721
+		  'methods' => array(
722
+			'cancelProcessing' => array(
723
+			  'path' => 'rasterCollections/{id}/cancelProcessing',
724
+			  'httpMethod' => 'POST',
725
+			  'parameters' => array(
726
+				'id' => array(
727
+				  'location' => 'path',
728
+				  'type' => 'string',
729
+				  'required' => true,
730
+				),
731
+			  ),
732
+			),'create' => array(
733
+			  'path' => 'rasterCollections',
734
+			  'httpMethod' => 'POST',
735
+			  'parameters' => array(),
736
+			),'delete' => array(
737
+			  'path' => 'rasterCollections/{id}',
738
+			  'httpMethod' => 'DELETE',
739
+			  'parameters' => array(
740
+				'id' => array(
741
+				  'location' => 'path',
742
+				  'type' => 'string',
743
+				  'required' => true,
744
+				),
745
+			  ),
746
+			),'get' => array(
747
+			  'path' => 'rasterCollections/{id}',
748
+			  'httpMethod' => 'GET',
749
+			  'parameters' => array(
750
+				'id' => array(
751
+				  'location' => 'path',
752
+				  'type' => 'string',
753
+				  'required' => true,
754
+				),
755
+			  ),
756
+			),'list' => array(
757
+			  'path' => 'rasterCollections',
758
+			  'httpMethod' => 'GET',
759
+			  'parameters' => array(
760
+				'modifiedAfter' => array(
761
+				  'location' => 'query',
762
+				  'type' => 'string',
763
+				),
764
+				'createdAfter' => array(
765
+				  'location' => 'query',
766
+				  'type' => 'string',
767
+				),
768
+				'processingStatus' => array(
769
+				  'location' => 'query',
770
+				  'type' => 'string',
771
+				),
772
+				'projectId' => array(
773
+				  'location' => 'query',
774
+				  'type' => 'string',
775
+				),
776
+				'tags' => array(
777
+				  'location' => 'query',
778
+				  'type' => 'string',
779
+				),
780
+				'search' => array(
781
+				  'location' => 'query',
782
+				  'type' => 'string',
783
+				),
784
+				'maxResults' => array(
785
+				  'location' => 'query',
786
+				  'type' => 'integer',
787
+				),
788
+				'pageToken' => array(
789
+				  'location' => 'query',
790
+				  'type' => 'string',
791
+				),
792
+				'creatorEmail' => array(
793
+				  'location' => 'query',
794
+				  'type' => 'string',
795
+				),
796
+				'bbox' => array(
797
+				  'location' => 'query',
798
+				  'type' => 'string',
799
+				),
800
+				'modifiedBefore' => array(
801
+				  'location' => 'query',
802
+				  'type' => 'string',
803
+				),
804
+				'createdBefore' => array(
805
+				  'location' => 'query',
806
+				  'type' => 'string',
807
+				),
808
+				'role' => array(
809
+				  'location' => 'query',
810
+				  'type' => 'string',
811
+				),
812
+			  ),
813
+			),'patch' => array(
814
+			  'path' => 'rasterCollections/{id}',
815
+			  'httpMethod' => 'PATCH',
816
+			  'parameters' => array(
817
+				'id' => array(
818
+				  'location' => 'path',
819
+				  'type' => 'string',
820
+				  'required' => true,
821
+				),
822
+			  ),
823
+			),'process' => array(
824
+			  'path' => 'rasterCollections/{id}/process',
825
+			  'httpMethod' => 'POST',
826
+			  'parameters' => array(
827
+				'id' => array(
828
+				  'location' => 'path',
829
+				  'type' => 'string',
830
+				  'required' => true,
831
+				),
832
+			  ),
833
+			),
834
+		  )
835
+		)
836
+	);
837
+	$this->rasterCollections_parents = new Google_Service_MapsEngine_RasterCollectionsParents_Resource(
838
+		$this,
839
+		$this->serviceName,
840
+		'parents',
841
+		array(
842
+		  'methods' => array(
843
+			'list' => array(
844
+			  'path' => 'rasterCollections/{id}/parents',
845
+			  'httpMethod' => 'GET',
846
+			  'parameters' => array(
847
+				'id' => array(
848
+				  'location' => 'path',
849
+				  'type' => 'string',
850
+				  'required' => true,
851
+				),
852
+				'pageToken' => array(
853
+				  'location' => 'query',
854
+				  'type' => 'string',
855
+				),
856
+				'maxResults' => array(
857
+				  'location' => 'query',
858
+				  'type' => 'integer',
859
+				),
860
+			  ),
861
+			),
862
+		  )
863
+		)
864
+	);
865
+	$this->rasterCollections_permissions = new Google_Service_MapsEngine_RasterCollectionsPermissions_Resource(
866
+		$this,
867
+		$this->serviceName,
868
+		'permissions',
869
+		array(
870
+		  'methods' => array(
871
+			'batchDelete' => array(
872
+			  'path' => 'rasterCollections/{id}/permissions/batchDelete',
873
+			  'httpMethod' => 'POST',
874
+			  'parameters' => array(
875
+				'id' => array(
876
+				  'location' => 'path',
877
+				  'type' => 'string',
878
+				  'required' => true,
879
+				),
880
+			  ),
881
+			),'batchUpdate' => array(
882
+			  'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883
+			  'httpMethod' => 'POST',
884
+			  'parameters' => array(
885
+				'id' => array(
886
+				  'location' => 'path',
887
+				  'type' => 'string',
888
+				  'required' => true,
889
+				),
890
+			  ),
891
+			),'list' => array(
892
+			  'path' => 'rasterCollections/{id}/permissions',
893
+			  'httpMethod' => 'GET',
894
+			  'parameters' => array(
895
+				'id' => array(
896
+				  'location' => 'path',
897
+				  'type' => 'string',
898
+				  'required' => true,
899
+				),
900
+			  ),
901
+			),
902
+		  )
903
+		)
904
+	);
905
+	$this->rasterCollections_rasters = new Google_Service_MapsEngine_RasterCollectionsRasters_Resource(
906
+		$this,
907
+		$this->serviceName,
908
+		'rasters',
909
+		array(
910
+		  'methods' => array(
911
+			'batchDelete' => array(
912
+			  'path' => 'rasterCollections/{id}/rasters/batchDelete',
913
+			  'httpMethod' => 'POST',
914
+			  'parameters' => array(
915
+				'id' => array(
916
+				  'location' => 'path',
917
+				  'type' => 'string',
918
+				  'required' => true,
919
+				),
920
+			  ),
921
+			),'batchInsert' => array(
922
+			  'path' => 'rasterCollections/{id}/rasters/batchInsert',
923
+			  'httpMethod' => 'POST',
924
+			  'parameters' => array(
925
+				'id' => array(
926
+				  'location' => 'path',
927
+				  'type' => 'string',
928
+				  'required' => true,
929
+				),
930
+			  ),
931
+			),'list' => array(
932
+			  'path' => 'rasterCollections/{id}/rasters',
933
+			  'httpMethod' => 'GET',
934
+			  'parameters' => array(
935
+				'id' => array(
936
+				  'location' => 'path',
937
+				  'type' => 'string',
938
+				  'required' => true,
939
+				),
940
+				'modifiedAfter' => array(
941
+				  'location' => 'query',
942
+				  'type' => 'string',
943
+				),
944
+				'createdAfter' => array(
945
+				  'location' => 'query',
946
+				  'type' => 'string',
947
+				),
948
+				'tags' => array(
949
+				  'location' => 'query',
950
+				  'type' => 'string',
951
+				),
952
+				'search' => array(
953
+				  'location' => 'query',
954
+				  'type' => 'string',
955
+				),
956
+				'maxResults' => array(
957
+				  'location' => 'query',
958
+				  'type' => 'integer',
959
+				),
960
+				'pageToken' => array(
961
+				  'location' => 'query',
962
+				  'type' => 'string',
963
+				),
964
+				'creatorEmail' => array(
965
+				  'location' => 'query',
966
+				  'type' => 'string',
967
+				),
968
+				'bbox' => array(
969
+				  'location' => 'query',
970
+				  'type' => 'string',
971
+				),
972
+				'modifiedBefore' => array(
973
+				  'location' => 'query',
974
+				  'type' => 'string',
975
+				),
976
+				'createdBefore' => array(
977
+				  'location' => 'query',
978
+				  'type' => 'string',
979
+				),
980
+				'role' => array(
981
+				  'location' => 'query',
982
+				  'type' => 'string',
983
+				),
984
+			  ),
985
+			),
986
+		  )
987
+		)
988
+	);
989
+	$this->rasters = new Google_Service_MapsEngine_Rasters_Resource(
990
+		$this,
991
+		$this->serviceName,
992
+		'rasters',
993
+		array(
994
+		  'methods' => array(
995
+			'delete' => array(
996
+			  'path' => 'rasters/{id}',
997
+			  'httpMethod' => 'DELETE',
998
+			  'parameters' => array(
999
+				'id' => array(
1000
+				  'location' => 'path',
1001
+				  'type' => 'string',
1002
+				  'required' => true,
1003
+				),
1004
+			  ),
1005
+			),'get' => array(
1006
+			  'path' => 'rasters/{id}',
1007
+			  'httpMethod' => 'GET',
1008
+			  'parameters' => array(
1009
+				'id' => array(
1010
+				  'location' => 'path',
1011
+				  'type' => 'string',
1012
+				  'required' => true,
1013
+				),
1014
+			  ),
1015
+			),'list' => array(
1016
+			  'path' => 'rasters',
1017
+			  'httpMethod' => 'GET',
1018
+			  'parameters' => array(
1019
+				'projectId' => array(
1020
+				  'location' => 'query',
1021
+				  'type' => 'string',
1022
+				  'required' => true,
1023
+				),
1024
+				'modifiedAfter' => array(
1025
+				  'location' => 'query',
1026
+				  'type' => 'string',
1027
+				),
1028
+				'createdAfter' => array(
1029
+				  'location' => 'query',
1030
+				  'type' => 'string',
1031
+				),
1032
+				'processingStatus' => array(
1033
+				  'location' => 'query',
1034
+				  'type' => 'string',
1035
+				),
1036
+				'tags' => array(
1037
+				  'location' => 'query',
1038
+				  'type' => 'string',
1039
+				),
1040
+				'search' => array(
1041
+				  'location' => 'query',
1042
+				  'type' => 'string',
1043
+				),
1044
+				'maxResults' => array(
1045
+				  'location' => 'query',
1046
+				  'type' => 'integer',
1047
+				),
1048
+				'pageToken' => array(
1049
+				  'location' => 'query',
1050
+				  'type' => 'string',
1051
+				),
1052
+				'creatorEmail' => array(
1053
+				  'location' => 'query',
1054
+				  'type' => 'string',
1055
+				),
1056
+				'bbox' => array(
1057
+				  'location' => 'query',
1058
+				  'type' => 'string',
1059
+				),
1060
+				'modifiedBefore' => array(
1061
+				  'location' => 'query',
1062
+				  'type' => 'string',
1063
+				),
1064
+				'createdBefore' => array(
1065
+				  'location' => 'query',
1066
+				  'type' => 'string',
1067
+				),
1068
+				'role' => array(
1069
+				  'location' => 'query',
1070
+				  'type' => 'string',
1071
+				),
1072
+			  ),
1073
+			),'patch' => array(
1074
+			  'path' => 'rasters/{id}',
1075
+			  'httpMethod' => 'PATCH',
1076
+			  'parameters' => array(
1077
+				'id' => array(
1078
+				  'location' => 'path',
1079
+				  'type' => 'string',
1080
+				  'required' => true,
1081
+				),
1082
+			  ),
1083
+			),'process' => array(
1084
+			  'path' => 'rasters/{id}/process',
1085
+			  'httpMethod' => 'POST',
1086
+			  'parameters' => array(
1087
+				'id' => array(
1088
+				  'location' => 'path',
1089
+				  'type' => 'string',
1090
+				  'required' => true,
1091
+				),
1092
+			  ),
1093
+			),'upload' => array(
1094
+			  'path' => 'rasters/upload',
1095
+			  'httpMethod' => 'POST',
1096
+			  'parameters' => array(),
1097
+			),
1098
+		  )
1099
+		)
1100
+	);
1101
+	$this->rasters_files = new Google_Service_MapsEngine_RastersFiles_Resource(
1102
+		$this,
1103
+		$this->serviceName,
1104
+		'files',
1105
+		array(
1106
+		  'methods' => array(
1107
+			'insert' => array(
1108
+			  'path' => 'rasters/{id}/files',
1109
+			  'httpMethod' => 'POST',
1110
+			  'parameters' => array(
1111
+				'id' => array(
1112
+				  'location' => 'path',
1113
+				  'type' => 'string',
1114
+				  'required' => true,
1115
+				),
1116
+				'filename' => array(
1117
+				  'location' => 'query',
1118
+				  'type' => 'string',
1119
+				  'required' => true,
1120
+				),
1121
+			  ),
1122
+			),
1123
+		  )
1124
+		)
1125
+	);
1126
+	$this->rasters_parents = new Google_Service_MapsEngine_RastersParents_Resource(
1127
+		$this,
1128
+		$this->serviceName,
1129
+		'parents',
1130
+		array(
1131
+		  'methods' => array(
1132
+			'list' => array(
1133
+			  'path' => 'rasters/{id}/parents',
1134
+			  'httpMethod' => 'GET',
1135
+			  'parameters' => array(
1136
+				'id' => array(
1137
+				  'location' => 'path',
1138
+				  'type' => 'string',
1139
+				  'required' => true,
1140
+				),
1141
+				'pageToken' => array(
1142
+				  'location' => 'query',
1143
+				  'type' => 'string',
1144
+				),
1145
+				'maxResults' => array(
1146
+				  'location' => 'query',
1147
+				  'type' => 'integer',
1148
+				),
1149
+			  ),
1150
+			),
1151
+		  )
1152
+		)
1153
+	);
1154
+	$this->rasters_permissions = new Google_Service_MapsEngine_RastersPermissions_Resource(
1155
+		$this,
1156
+		$this->serviceName,
1157
+		'permissions',
1158
+		array(
1159
+		  'methods' => array(
1160
+			'batchDelete' => array(
1161
+			  'path' => 'rasters/{id}/permissions/batchDelete',
1162
+			  'httpMethod' => 'POST',
1163
+			  'parameters' => array(
1164
+				'id' => array(
1165
+				  'location' => 'path',
1166
+				  'type' => 'string',
1167
+				  'required' => true,
1168
+				),
1169
+			  ),
1170
+			),'batchUpdate' => array(
1171
+			  'path' => 'rasters/{id}/permissions/batchUpdate',
1172
+			  'httpMethod' => 'POST',
1173
+			  'parameters' => array(
1174
+				'id' => array(
1175
+				  'location' => 'path',
1176
+				  'type' => 'string',
1177
+				  'required' => true,
1178
+				),
1179
+			  ),
1180
+			),'list' => array(
1181
+			  'path' => 'rasters/{id}/permissions',
1182
+			  'httpMethod' => 'GET',
1183
+			  'parameters' => array(
1184
+				'id' => array(
1185
+				  'location' => 'path',
1186
+				  'type' => 'string',
1187
+				  'required' => true,
1188
+				),
1189
+			  ),
1190
+			),
1191
+		  )
1192
+		)
1193
+	);
1194
+	$this->tables = new Google_Service_MapsEngine_Tables_Resource(
1195
+		$this,
1196
+		$this->serviceName,
1197
+		'tables',
1198
+		array(
1199
+		  'methods' => array(
1200
+			'create' => array(
1201
+			  'path' => 'tables',
1202
+			  'httpMethod' => 'POST',
1203
+			  'parameters' => array(),
1204
+			),'delete' => array(
1205
+			  'path' => 'tables/{id}',
1206
+			  'httpMethod' => 'DELETE',
1207
+			  'parameters' => array(
1208
+				'id' => array(
1209
+				  'location' => 'path',
1210
+				  'type' => 'string',
1211
+				  'required' => true,
1212
+				),
1213
+			  ),
1214
+			),'get' => array(
1215
+			  'path' => 'tables/{id}',
1216
+			  'httpMethod' => 'GET',
1217
+			  'parameters' => array(
1218
+				'id' => array(
1219
+				  'location' => 'path',
1220
+				  'type' => 'string',
1221
+				  'required' => true,
1222
+				),
1223
+				'version' => array(
1224
+				  'location' => 'query',
1225
+				  'type' => 'string',
1226
+				),
1227
+			  ),
1228
+			),'list' => array(
1229
+			  'path' => 'tables',
1230
+			  'httpMethod' => 'GET',
1231
+			  'parameters' => array(
1232
+				'modifiedAfter' => array(
1233
+				  'location' => 'query',
1234
+				  'type' => 'string',
1235
+				),
1236
+				'createdAfter' => array(
1237
+				  'location' => 'query',
1238
+				  'type' => 'string',
1239
+				),
1240
+				'processingStatus' => array(
1241
+				  'location' => 'query',
1242
+				  'type' => 'string',
1243
+				),
1244
+				'projectId' => array(
1245
+				  'location' => 'query',
1246
+				  'type' => 'string',
1247
+				),
1248
+				'tags' => array(
1249
+				  'location' => 'query',
1250
+				  'type' => 'string',
1251
+				),
1252
+				'search' => array(
1253
+				  'location' => 'query',
1254
+				  'type' => 'string',
1255
+				),
1256
+				'maxResults' => array(
1257
+				  'location' => 'query',
1258
+				  'type' => 'integer',
1259
+				),
1260
+				'pageToken' => array(
1261
+				  'location' => 'query',
1262
+				  'type' => 'string',
1263
+				),
1264
+				'creatorEmail' => array(
1265
+				  'location' => 'query',
1266
+				  'type' => 'string',
1267
+				),
1268
+				'bbox' => array(
1269
+				  'location' => 'query',
1270
+				  'type' => 'string',
1271
+				),
1272
+				'modifiedBefore' => array(
1273
+				  'location' => 'query',
1274
+				  'type' => 'string',
1275
+				),
1276
+				'createdBefore' => array(
1277
+				  'location' => 'query',
1278
+				  'type' => 'string',
1279
+				),
1280
+				'role' => array(
1281
+				  'location' => 'query',
1282
+				  'type' => 'string',
1283
+				),
1284
+			  ),
1285
+			),'patch' => array(
1286
+			  'path' => 'tables/{id}',
1287
+			  'httpMethod' => 'PATCH',
1288
+			  'parameters' => array(
1289
+				'id' => array(
1290
+				  'location' => 'path',
1291
+				  'type' => 'string',
1292
+				  'required' => true,
1293
+				),
1294
+			  ),
1295
+			),'process' => array(
1296
+			  'path' => 'tables/{id}/process',
1297
+			  'httpMethod' => 'POST',
1298
+			  'parameters' => array(
1299
+				'id' => array(
1300
+				  'location' => 'path',
1301
+				  'type' => 'string',
1302
+				  'required' => true,
1303
+				),
1304
+			  ),
1305
+			),'upload' => array(
1306
+			  'path' => 'tables/upload',
1307
+			  'httpMethod' => 'POST',
1308
+			  'parameters' => array(),
1309
+			),
1310
+		  )
1311
+		)
1312
+	);
1313
+	$this->tables_features = new Google_Service_MapsEngine_TablesFeatures_Resource(
1314
+		$this,
1315
+		$this->serviceName,
1316
+		'features',
1317
+		array(
1318
+		  'methods' => array(
1319
+			'batchDelete' => array(
1320
+			  'path' => 'tables/{id}/features/batchDelete',
1321
+			  'httpMethod' => 'POST',
1322
+			  'parameters' => array(
1323
+				'id' => array(
1324
+				  'location' => 'path',
1325
+				  'type' => 'string',
1326
+				  'required' => true,
1327
+				),
1328
+			  ),
1329
+			),'batchInsert' => array(
1330
+			  'path' => 'tables/{id}/features/batchInsert',
1331
+			  'httpMethod' => 'POST',
1332
+			  'parameters' => array(
1333
+				'id' => array(
1334
+				  'location' => 'path',
1335
+				  'type' => 'string',
1336
+				  'required' => true,
1337
+				),
1338
+			  ),
1339
+			),'batchPatch' => array(
1340
+			  'path' => 'tables/{id}/features/batchPatch',
1341
+			  'httpMethod' => 'POST',
1342
+			  'parameters' => array(
1343
+				'id' => array(
1344
+				  'location' => 'path',
1345
+				  'type' => 'string',
1346
+				  'required' => true,
1347
+				),
1348
+			  ),
1349
+			),'get' => array(
1350
+			  'path' => 'tables/{tableId}/features/{id}',
1351
+			  'httpMethod' => 'GET',
1352
+			  'parameters' => array(
1353
+				'tableId' => array(
1354
+				  'location' => 'path',
1355
+				  'type' => 'string',
1356
+				  'required' => true,
1357
+				),
1358
+				'id' => array(
1359
+				  'location' => 'path',
1360
+				  'type' => 'string',
1361
+				  'required' => true,
1362
+				),
1363
+				'version' => array(
1364
+				  'location' => 'query',
1365
+				  'type' => 'string',
1366
+				),
1367
+				'select' => array(
1368
+				  'location' => 'query',
1369
+				  'type' => 'string',
1370
+				),
1371
+			  ),
1372
+			),'list' => array(
1373
+			  'path' => 'tables/{id}/features',
1374
+			  'httpMethod' => 'GET',
1375
+			  'parameters' => array(
1376
+				'id' => array(
1377
+				  'location' => 'path',
1378
+				  'type' => 'string',
1379
+				  'required' => true,
1380
+				),
1381
+				'orderBy' => array(
1382
+				  'location' => 'query',
1383
+				  'type' => 'string',
1384
+				),
1385
+				'intersects' => array(
1386
+				  'location' => 'query',
1387
+				  'type' => 'string',
1388
+				),
1389
+				'maxResults' => array(
1390
+				  'location' => 'query',
1391
+				  'type' => 'integer',
1392
+				),
1393
+				'pageToken' => array(
1394
+				  'location' => 'query',
1395
+				  'type' => 'string',
1396
+				),
1397
+				'version' => array(
1398
+				  'location' => 'query',
1399
+				  'type' => 'string',
1400
+				),
1401
+				'limit' => array(
1402
+				  'location' => 'query',
1403
+				  'type' => 'integer',
1404
+				),
1405
+				'include' => array(
1406
+				  'location' => 'query',
1407
+				  'type' => 'string',
1408
+				),
1409
+				'where' => array(
1410
+				  'location' => 'query',
1411
+				  'type' => 'string',
1412
+				),
1413
+				'select' => array(
1414
+				  'location' => 'query',
1415
+				  'type' => 'string',
1416
+				),
1417
+			  ),
1418
+			),
1419
+		  )
1420
+		)
1421
+	);
1422
+	$this->tables_files = new Google_Service_MapsEngine_TablesFiles_Resource(
1423
+		$this,
1424
+		$this->serviceName,
1425
+		'files',
1426
+		array(
1427
+		  'methods' => array(
1428
+			'insert' => array(
1429
+			  'path' => 'tables/{id}/files',
1430
+			  'httpMethod' => 'POST',
1431
+			  'parameters' => array(
1432
+				'id' => array(
1433
+				  'location' => 'path',
1434
+				  'type' => 'string',
1435
+				  'required' => true,
1436
+				),
1437
+				'filename' => array(
1438
+				  'location' => 'query',
1439
+				  'type' => 'string',
1440
+				  'required' => true,
1441
+				),
1442
+			  ),
1443
+			),
1444
+		  )
1445
+		)
1446
+	);
1447
+	$this->tables_parents = new Google_Service_MapsEngine_TablesParents_Resource(
1448
+		$this,
1449
+		$this->serviceName,
1450
+		'parents',
1451
+		array(
1452
+		  'methods' => array(
1453
+			'list' => array(
1454
+			  'path' => 'tables/{id}/parents',
1455
+			  'httpMethod' => 'GET',
1456
+			  'parameters' => array(
1457
+				'id' => array(
1458
+				  'location' => 'path',
1459
+				  'type' => 'string',
1460
+				  'required' => true,
1461
+				),
1462
+				'pageToken' => array(
1463
+				  'location' => 'query',
1464
+				  'type' => 'string',
1465
+				),
1466
+				'maxResults' => array(
1467
+				  'location' => 'query',
1468
+				  'type' => 'integer',
1469
+				),
1470
+			  ),
1471
+			),
1472
+		  )
1473
+		)
1474
+	);
1475
+	$this->tables_permissions = new Google_Service_MapsEngine_TablesPermissions_Resource(
1476
+		$this,
1477
+		$this->serviceName,
1478
+		'permissions',
1479
+		array(
1480
+		  'methods' => array(
1481
+			'batchDelete' => array(
1482
+			  'path' => 'tables/{id}/permissions/batchDelete',
1483
+			  'httpMethod' => 'POST',
1484
+			  'parameters' => array(
1485
+				'id' => array(
1486
+				  'location' => 'path',
1487
+				  'type' => 'string',
1488
+				  'required' => true,
1489
+				),
1490
+			  ),
1491
+			),'batchUpdate' => array(
1492
+			  'path' => 'tables/{id}/permissions/batchUpdate',
1493
+			  'httpMethod' => 'POST',
1494
+			  'parameters' => array(
1495
+				'id' => array(
1496
+				  'location' => 'path',
1497
+				  'type' => 'string',
1498
+				  'required' => true,
1499
+				),
1500
+			  ),
1501
+			),'list' => array(
1502
+			  'path' => 'tables/{id}/permissions',
1503
+			  'httpMethod' => 'GET',
1504
+			  'parameters' => array(
1505
+				'id' => array(
1506
+				  'location' => 'path',
1507
+				  'type' => 'string',
1508
+				  'required' => true,
1509
+				),
1510
+			  ),
1511
+			),
1512
+		  )
1513
+		)
1514
+	);
1515 1515
   }
1516 1516
 }
1517 1517
 
@@ -1536,9 +1536,9 @@  discard block
 block discarded – undo
1536 1536
    */
1537 1537
   public function get($id, $optParams = array())
1538 1538
   {
1539
-    $params = array('id' => $id);
1540
-    $params = array_merge($params, $optParams);
1541
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Asset");
1539
+	$params = array('id' => $id);
1540
+	$params = array_merge($params, $optParams);
1541
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Asset");
1542 1542
   }
1543 1543
 
1544 1544
   /**
@@ -1585,9 +1585,9 @@  discard block
 block discarded – undo
1585 1585
    */
1586 1586
   public function listAssets($optParams = array())
1587 1587
   {
1588
-    $params = array();
1589
-    $params = array_merge($params, $optParams);
1590
-    return $this->call('list', array($params), "Google_Service_MapsEngine_AssetsListResponse");
1588
+	$params = array();
1589
+	$params = array_merge($params, $optParams);
1590
+	return $this->call('list', array($params), "Google_Service_MapsEngine_AssetsListResponse");
1591 1591
   }
1592 1592
 }
1593 1593
 
@@ -1617,9 +1617,9 @@  discard block
 block discarded – undo
1617 1617
    */
1618 1618
   public function listAssetsParents($id, $optParams = array())
1619 1619
   {
1620
-    $params = array('id' => $id);
1621
-    $params = array_merge($params, $optParams);
1622
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1620
+	$params = array('id' => $id);
1621
+	$params = array_merge($params, $optParams);
1622
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1623 1623
   }
1624 1624
 }
1625 1625
 /**
@@ -1643,9 +1643,9 @@  discard block
 block discarded – undo
1643 1643
    */
1644 1644
   public function listAssetsPermissions($id, $optParams = array())
1645 1645
   {
1646
-    $params = array('id' => $id);
1647
-    $params = array_merge($params, $optParams);
1648
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1646
+	$params = array('id' => $id);
1647
+	$params = array_merge($params, $optParams);
1648
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1649 1649
   }
1650 1650
 }
1651 1651
 
@@ -1669,9 +1669,9 @@  discard block
 block discarded – undo
1669 1669
    */
1670 1670
   public function cancelProcessing($id, $optParams = array())
1671 1671
   {
1672
-    $params = array('id' => $id);
1673
-    $params = array_merge($params, $optParams);
1674
-    return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
1672
+	$params = array('id' => $id);
1673
+	$params = array_merge($params, $optParams);
1674
+	return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
1675 1675
   }
1676 1676
 
1677 1677
   /**
@@ -1685,9 +1685,9 @@  discard block
 block discarded – undo
1685 1685
    */
1686 1686
   public function create(Google_Service_MapsEngine_Layer $postBody, $optParams = array())
1687 1687
   {
1688
-    $params = array('postBody' => $postBody);
1689
-    $params = array_merge($params, $optParams);
1690
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Layer");
1688
+	$params = array('postBody' => $postBody);
1689
+	$params = array_merge($params, $optParams);
1690
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Layer");
1691 1691
   }
1692 1692
 
1693 1693
   /**
@@ -1701,9 +1701,9 @@  discard block
 block discarded – undo
1701 1701
    */
1702 1702
   public function delete($id, $optParams = array())
1703 1703
   {
1704
-    $params = array('id' => $id);
1705
-    $params = array_merge($params, $optParams);
1706
-    return $this->call('delete', array($params));
1704
+	$params = array('id' => $id);
1705
+	$params = array_merge($params, $optParams);
1706
+	return $this->call('delete', array($params));
1707 1707
   }
1708 1708
 
1709 1709
   /**
@@ -1720,9 +1720,9 @@  discard block
 block discarded – undo
1720 1720
    */
1721 1721
   public function get($id, $optParams = array())
1722 1722
   {
1723
-    $params = array('id' => $id);
1724
-    $params = array_merge($params, $optParams);
1725
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Layer");
1723
+	$params = array('id' => $id);
1724
+	$params = array_merge($params, $optParams);
1725
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Layer");
1726 1726
   }
1727 1727
 
1728 1728
   /**
@@ -1734,9 +1734,9 @@  discard block
 block discarded – undo
1734 1734
    */
1735 1735
   public function getPublished($id, $optParams = array())
1736 1736
   {
1737
-    $params = array('id' => $id);
1738
-    $params = array_merge($params, $optParams);
1739
-    return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedLayer");
1737
+	$params = array('id' => $id);
1738
+	$params = array_merge($params, $optParams);
1739
+	return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedLayer");
1740 1740
   }
1741 1741
 
1742 1742
   /**
@@ -1781,9 +1781,9 @@  discard block
 block discarded – undo
1781 1781
    */
1782 1782
   public function listLayers($optParams = array())
1783 1783
   {
1784
-    $params = array();
1785
-    $params = array_merge($params, $optParams);
1786
-    return $this->call('list', array($params), "Google_Service_MapsEngine_LayersListResponse");
1784
+	$params = array();
1785
+	$params = array_merge($params, $optParams);
1786
+	return $this->call('list', array($params), "Google_Service_MapsEngine_LayersListResponse");
1787 1787
   }
1788 1788
 
1789 1789
   /**
@@ -1805,9 +1805,9 @@  discard block
 block discarded – undo
1805 1805
    */
1806 1806
   public function listPublished($optParams = array())
1807 1807
   {
1808
-    $params = array();
1809
-    $params = array_merge($params, $optParams);
1810
-    return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedLayersListResponse");
1808
+	$params = array();
1809
+	$params = array_merge($params, $optParams);
1810
+	return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedLayersListResponse");
1811 1811
   }
1812 1812
 
1813 1813
   /**
@@ -1819,9 +1819,9 @@  discard block
 block discarded – undo
1819 1819
    */
1820 1820
   public function patch($id, Google_Service_MapsEngine_Layer $postBody, $optParams = array())
1821 1821
   {
1822
-    $params = array('id' => $id, 'postBody' => $postBody);
1823
-    $params = array_merge($params, $optParams);
1824
-    return $this->call('patch', array($params));
1822
+	$params = array('id' => $id, 'postBody' => $postBody);
1823
+	$params = array_merge($params, $optParams);
1824
+	return $this->call('patch', array($params));
1825 1825
   }
1826 1826
 
1827 1827
   /**
@@ -1833,9 +1833,9 @@  discard block
 block discarded – undo
1833 1833
    */
1834 1834
   public function process($id, $optParams = array())
1835 1835
   {
1836
-    $params = array('id' => $id);
1837
-    $params = array_merge($params, $optParams);
1838
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
1836
+	$params = array('id' => $id);
1837
+	$params = array_merge($params, $optParams);
1838
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
1839 1839
   }
1840 1840
 
1841 1841
   /**
@@ -1851,9 +1851,9 @@  discard block
 block discarded – undo
1851 1851
    */
1852 1852
   public function publish($id, $optParams = array())
1853 1853
   {
1854
-    $params = array('id' => $id);
1855
-    $params = array_merge($params, $optParams);
1856
-    return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
1854
+	$params = array('id' => $id);
1855
+	$params = array_merge($params, $optParams);
1856
+	return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
1857 1857
   }
1858 1858
 
1859 1859
   /**
@@ -1865,9 +1865,9 @@  discard block
 block discarded – undo
1865 1865
    */
1866 1866
   public function unpublish($id, $optParams = array())
1867 1867
   {
1868
-    $params = array('id' => $id);
1869
-    $params = array_merge($params, $optParams);
1870
-    return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
1868
+	$params = array('id' => $id);
1869
+	$params = array_merge($params, $optParams);
1870
+	return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
1871 1871
   }
1872 1872
 }
1873 1873
 
@@ -1897,9 +1897,9 @@  discard block
 block discarded – undo
1897 1897
    */
1898 1898
   public function listLayersParents($id, $optParams = array())
1899 1899
   {
1900
-    $params = array('id' => $id);
1901
-    $params = array_merge($params, $optParams);
1902
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1900
+	$params = array('id' => $id);
1901
+	$params = array_merge($params, $optParams);
1902
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1903 1903
   }
1904 1904
 }
1905 1905
 /**
@@ -1924,9 +1924,9 @@  discard block
 block discarded – undo
1924 1924
    */
1925 1925
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
1926 1926
   {
1927
-    $params = array('id' => $id, 'postBody' => $postBody);
1928
-    $params = array_merge($params, $optParams);
1929
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
1927
+	$params = array('id' => $id, 'postBody' => $postBody);
1928
+	$params = array_merge($params, $optParams);
1929
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
1930 1930
   }
1931 1931
 
1932 1932
   /**
@@ -1942,9 +1942,9 @@  discard block
 block discarded – undo
1942 1942
    */
1943 1943
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
1944 1944
   {
1945
-    $params = array('id' => $id, 'postBody' => $postBody);
1946
-    $params = array_merge($params, $optParams);
1947
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
1945
+	$params = array('id' => $id, 'postBody' => $postBody);
1946
+	$params = array_merge($params, $optParams);
1947
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
1948 1948
   }
1949 1949
 
1950 1950
   /**
@@ -1957,9 +1957,9 @@  discard block
 block discarded – undo
1957 1957
    */
1958 1958
   public function listLayersPermissions($id, $optParams = array())
1959 1959
   {
1960
-    $params = array('id' => $id);
1961
-    $params = array_merge($params, $optParams);
1962
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1960
+	$params = array('id' => $id);
1961
+	$params = array_merge($params, $optParams);
1962
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1963 1963
   }
1964 1964
 }
1965 1965
 
@@ -1983,9 +1983,9 @@  discard block
 block discarded – undo
1983 1983
    */
1984 1984
   public function create(Google_Service_MapsEngine_Map $postBody, $optParams = array())
1985 1985
   {
1986
-    $params = array('postBody' => $postBody);
1987
-    $params = array_merge($params, $optParams);
1988
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Map");
1986
+	$params = array('postBody' => $postBody);
1987
+	$params = array_merge($params, $optParams);
1988
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Map");
1989 1989
   }
1990 1990
 
1991 1991
   /**
@@ -1998,9 +1998,9 @@  discard block
 block discarded – undo
1998 1998
    */
1999 1999
   public function delete($id, $optParams = array())
2000 2000
   {
2001
-    $params = array('id' => $id);
2002
-    $params = array_merge($params, $optParams);
2003
-    return $this->call('delete', array($params));
2001
+	$params = array('id' => $id);
2002
+	$params = array_merge($params, $optParams);
2003
+	return $this->call('delete', array($params));
2004 2004
   }
2005 2005
 
2006 2006
   /**
@@ -2017,9 +2017,9 @@  discard block
 block discarded – undo
2017 2017
    */
2018 2018
   public function get($id, $optParams = array())
2019 2019
   {
2020
-    $params = array('id' => $id);
2021
-    $params = array_merge($params, $optParams);
2022
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Map");
2020
+	$params = array('id' => $id);
2021
+	$params = array_merge($params, $optParams);
2022
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Map");
2023 2023
   }
2024 2024
 
2025 2025
   /**
@@ -2031,9 +2031,9 @@  discard block
 block discarded – undo
2031 2031
    */
2032 2032
   public function getPublished($id, $optParams = array())
2033 2033
   {
2034
-    $params = array('id' => $id);
2035
-    $params = array_merge($params, $optParams);
2036
-    return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedMap");
2034
+	$params = array('id' => $id);
2035
+	$params = array_merge($params, $optParams);
2036
+	return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedMap");
2037 2037
   }
2038 2038
 
2039 2039
   /**
@@ -2078,9 +2078,9 @@  discard block
 block discarded – undo
2078 2078
    */
2079 2079
   public function listMaps($optParams = array())
2080 2080
   {
2081
-    $params = array();
2082
-    $params = array_merge($params, $optParams);
2083
-    return $this->call('list', array($params), "Google_Service_MapsEngine_MapsListResponse");
2081
+	$params = array();
2082
+	$params = array_merge($params, $optParams);
2083
+	return $this->call('list', array($params), "Google_Service_MapsEngine_MapsListResponse");
2084 2084
   }
2085 2085
 
2086 2086
   /**
@@ -2101,9 +2101,9 @@  discard block
 block discarded – undo
2101 2101
    */
2102 2102
   public function listPublished($optParams = array())
2103 2103
   {
2104
-    $params = array();
2105
-    $params = array_merge($params, $optParams);
2106
-    return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedMapsListResponse");
2104
+	$params = array();
2105
+	$params = array_merge($params, $optParams);
2106
+	return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedMapsListResponse");
2107 2107
   }
2108 2108
 
2109 2109
   /**
@@ -2115,9 +2115,9 @@  discard block
 block discarded – undo
2115 2115
    */
2116 2116
   public function patch($id, Google_Service_MapsEngine_Map $postBody, $optParams = array())
2117 2117
   {
2118
-    $params = array('id' => $id, 'postBody' => $postBody);
2119
-    $params = array_merge($params, $optParams);
2120
-    return $this->call('patch', array($params));
2118
+	$params = array('id' => $id, 'postBody' => $postBody);
2119
+	$params = array_merge($params, $optParams);
2120
+	return $this->call('patch', array($params));
2121 2121
   }
2122 2122
 
2123 2123
   /**
@@ -2133,9 +2133,9 @@  discard block
 block discarded – undo
2133 2133
    */
2134 2134
   public function publish($id, $optParams = array())
2135 2135
   {
2136
-    $params = array('id' => $id);
2137
-    $params = array_merge($params, $optParams);
2138
-    return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
2136
+	$params = array('id' => $id);
2137
+	$params = array_merge($params, $optParams);
2138
+	return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
2139 2139
   }
2140 2140
 
2141 2141
   /**
@@ -2147,9 +2147,9 @@  discard block
 block discarded – undo
2147 2147
    */
2148 2148
   public function unpublish($id, $optParams = array())
2149 2149
   {
2150
-    $params = array('id' => $id);
2151
-    $params = array_merge($params, $optParams);
2152
-    return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
2150
+	$params = array('id' => $id);
2151
+	$params = array_merge($params, $optParams);
2152
+	return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
2153 2153
   }
2154 2154
 }
2155 2155
 
@@ -2175,9 +2175,9 @@  discard block
 block discarded – undo
2175 2175
    */
2176 2176
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2177 2177
   {
2178
-    $params = array('id' => $id, 'postBody' => $postBody);
2179
-    $params = array_merge($params, $optParams);
2180
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2178
+	$params = array('id' => $id, 'postBody' => $postBody);
2179
+	$params = array_merge($params, $optParams);
2180
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2181 2181
   }
2182 2182
 
2183 2183
   /**
@@ -2193,9 +2193,9 @@  discard block
 block discarded – undo
2193 2193
    */
2194 2194
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2195 2195
   {
2196
-    $params = array('id' => $id, 'postBody' => $postBody);
2197
-    $params = array_merge($params, $optParams);
2198
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2196
+	$params = array('id' => $id, 'postBody' => $postBody);
2197
+	$params = array_merge($params, $optParams);
2198
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2199 2199
   }
2200 2200
 
2201 2201
   /**
@@ -2208,9 +2208,9 @@  discard block
 block discarded – undo
2208 2208
    */
2209 2209
   public function listMapsPermissions($id, $optParams = array())
2210 2210
   {
2211
-    $params = array('id' => $id);
2212
-    $params = array_merge($params, $optParams);
2213
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2211
+	$params = array('id' => $id);
2212
+	$params = array_merge($params, $optParams);
2213
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2214 2214
   }
2215 2215
 }
2216 2216
 
@@ -2233,9 +2233,9 @@  discard block
 block discarded – undo
2233 2233
    */
2234 2234
   public function listProjects($optParams = array())
2235 2235
   {
2236
-    $params = array();
2237
-    $params = array_merge($params, $optParams);
2238
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ProjectsListResponse");
2236
+	$params = array();
2237
+	$params = array_merge($params, $optParams);
2238
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ProjectsListResponse");
2239 2239
   }
2240 2240
 }
2241 2241
 
@@ -2260,9 +2260,9 @@  discard block
 block discarded – undo
2260 2260
    */
2261 2261
   public function create($projectId, Google_Service_MapsEngine_Icon $postBody, $optParams = array())
2262 2262
   {
2263
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
2264
-    $params = array_merge($params, $optParams);
2265
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Icon");
2263
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
2264
+	$params = array_merge($params, $optParams);
2265
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Icon");
2266 2266
   }
2267 2267
 
2268 2268
   /**
@@ -2275,9 +2275,9 @@  discard block
 block discarded – undo
2275 2275
    */
2276 2276
   public function get($projectId, $id, $optParams = array())
2277 2277
   {
2278
-    $params = array('projectId' => $projectId, 'id' => $id);
2279
-    $params = array_merge($params, $optParams);
2280
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Icon");
2278
+	$params = array('projectId' => $projectId, 'id' => $id);
2279
+	$params = array_merge($params, $optParams);
2280
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Icon");
2281 2281
   }
2282 2282
 
2283 2283
   /**
@@ -2295,9 +2295,9 @@  discard block
 block discarded – undo
2295 2295
    */
2296 2296
   public function listProjectsIcons($projectId, $optParams = array())
2297 2297
   {
2298
-    $params = array('projectId' => $projectId);
2299
-    $params = array_merge($params, $optParams);
2300
-    return $this->call('list', array($params), "Google_Service_MapsEngine_IconsListResponse");
2298
+	$params = array('projectId' => $projectId);
2299
+	$params = array_merge($params, $optParams);
2300
+	return $this->call('list', array($params), "Google_Service_MapsEngine_IconsListResponse");
2301 2301
   }
2302 2302
 }
2303 2303
 
@@ -2322,9 +2322,9 @@  discard block
 block discarded – undo
2322 2322
    */
2323 2323
   public function cancelProcessing($id, $optParams = array())
2324 2324
   {
2325
-    $params = array('id' => $id);
2326
-    $params = array_merge($params, $optParams);
2327
-    return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
2325
+	$params = array('id' => $id);
2326
+	$params = array_merge($params, $optParams);
2327
+	return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
2328 2328
   }
2329 2329
 
2330 2330
   /**
@@ -2336,9 +2336,9 @@  discard block
 block discarded – undo
2336 2336
    */
2337 2337
   public function create(Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
2338 2338
   {
2339
-    $params = array('postBody' => $postBody);
2340
-    $params = array_merge($params, $optParams);
2341
-    return $this->call('create', array($params), "Google_Service_MapsEngine_RasterCollection");
2339
+	$params = array('postBody' => $postBody);
2340
+	$params = array_merge($params, $optParams);
2341
+	return $this->call('create', array($params), "Google_Service_MapsEngine_RasterCollection");
2342 2342
   }
2343 2343
 
2344 2344
   /**
@@ -2352,9 +2352,9 @@  discard block
 block discarded – undo
2352 2352
    */
2353 2353
   public function delete($id, $optParams = array())
2354 2354
   {
2355
-    $params = array('id' => $id);
2356
-    $params = array_merge($params, $optParams);
2357
-    return $this->call('delete', array($params));
2355
+	$params = array('id' => $id);
2356
+	$params = array_merge($params, $optParams);
2357
+	return $this->call('delete', array($params));
2358 2358
   }
2359 2359
 
2360 2360
   /**
@@ -2366,9 +2366,9 @@  discard block
 block discarded – undo
2366 2366
    */
2367 2367
   public function get($id, $optParams = array())
2368 2368
   {
2369
-    $params = array('id' => $id);
2370
-    $params = array_merge($params, $optParams);
2371
-    return $this->call('get', array($params), "Google_Service_MapsEngine_RasterCollection");
2369
+	$params = array('id' => $id);
2370
+	$params = array_merge($params, $optParams);
2371
+	return $this->call('get', array($params), "Google_Service_MapsEngine_RasterCollection");
2372 2372
   }
2373 2373
 
2374 2374
   /**
@@ -2414,9 +2414,9 @@  discard block
 block discarded – undo
2414 2414
    */
2415 2415
   public function listRasterCollections($optParams = array())
2416 2416
   {
2417
-    $params = array();
2418
-    $params = array_merge($params, $optParams);
2419
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsListResponse");
2417
+	$params = array();
2418
+	$params = array_merge($params, $optParams);
2419
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsListResponse");
2420 2420
   }
2421 2421
 
2422 2422
   /**
@@ -2428,9 +2428,9 @@  discard block
 block discarded – undo
2428 2428
    */
2429 2429
   public function patch($id, Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
2430 2430
   {
2431
-    $params = array('id' => $id, 'postBody' => $postBody);
2432
-    $params = array_merge($params, $optParams);
2433
-    return $this->call('patch', array($params));
2431
+	$params = array('id' => $id, 'postBody' => $postBody);
2432
+	$params = array_merge($params, $optParams);
2433
+	return $this->call('patch', array($params));
2434 2434
   }
2435 2435
 
2436 2436
   /**
@@ -2442,9 +2442,9 @@  discard block
 block discarded – undo
2442 2442
    */
2443 2443
   public function process($id, $optParams = array())
2444 2444
   {
2445
-    $params = array('id' => $id);
2446
-    $params = array_merge($params, $optParams);
2447
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2445
+	$params = array('id' => $id);
2446
+	$params = array_merge($params, $optParams);
2447
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2448 2448
   }
2449 2449
 }
2450 2450
 
@@ -2476,9 +2476,9 @@  discard block
 block discarded – undo
2476 2476
    */
2477 2477
   public function listRasterCollectionsParents($id, $optParams = array())
2478 2478
   {
2479
-    $params = array('id' => $id);
2480
-    $params = array_merge($params, $optParams);
2481
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2479
+	$params = array('id' => $id);
2480
+	$params = array_merge($params, $optParams);
2481
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2482 2482
   }
2483 2483
 }
2484 2484
 /**
@@ -2503,9 +2503,9 @@  discard block
 block discarded – undo
2503 2503
    */
2504 2504
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2505 2505
   {
2506
-    $params = array('id' => $id, 'postBody' => $postBody);
2507
-    $params = array_merge($params, $optParams);
2508
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2506
+	$params = array('id' => $id, 'postBody' => $postBody);
2507
+	$params = array_merge($params, $optParams);
2508
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2509 2509
   }
2510 2510
 
2511 2511
   /**
@@ -2521,9 +2521,9 @@  discard block
 block discarded – undo
2521 2521
    */
2522 2522
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2523 2523
   {
2524
-    $params = array('id' => $id, 'postBody' => $postBody);
2525
-    $params = array_merge($params, $optParams);
2526
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2524
+	$params = array('id' => $id, 'postBody' => $postBody);
2525
+	$params = array_merge($params, $optParams);
2526
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2527 2527
   }
2528 2528
 
2529 2529
   /**
@@ -2536,9 +2536,9 @@  discard block
 block discarded – undo
2536 2536
    */
2537 2537
   public function listRasterCollectionsPermissions($id, $optParams = array())
2538 2538
   {
2539
-    $params = array('id' => $id);
2540
-    $params = array_merge($params, $optParams);
2541
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2539
+	$params = array('id' => $id);
2540
+	$params = array_merge($params, $optParams);
2541
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2542 2542
   }
2543 2543
 }
2544 2544
 /**
@@ -2566,9 +2566,9 @@  discard block
 block discarded – undo
2566 2566
    */
2567 2567
   public function batchDelete($id, Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest $postBody, $optParams = array())
2568 2568
   {
2569
-    $params = array('id' => $id, 'postBody' => $postBody);
2570
-    $params = array_merge($params, $optParams);
2571
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse");
2569
+	$params = array('id' => $id, 'postBody' => $postBody);
2570
+	$params = array_merge($params, $optParams);
2571
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse");
2572 2572
   }
2573 2573
 
2574 2574
   /**
@@ -2586,9 +2586,9 @@  discard block
 block discarded – undo
2586 2586
    */
2587 2587
   public function batchInsert($id, Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest $postBody, $optParams = array())
2588 2588
   {
2589
-    $params = array('id' => $id, 'postBody' => $postBody);
2590
-    $params = array_merge($params, $optParams);
2591
-    return $this->call('batchInsert', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse");
2589
+	$params = array('id' => $id, 'postBody' => $postBody);
2590
+	$params = array_merge($params, $optParams);
2591
+	return $this->call('batchInsert', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse");
2592 2592
   }
2593 2593
 
2594 2594
   /**
@@ -2631,9 +2631,9 @@  discard block
 block discarded – undo
2631 2631
    */
2632 2632
   public function listRasterCollectionsRasters($id, $optParams = array())
2633 2633
   {
2634
-    $params = array('id' => $id);
2635
-    $params = array_merge($params, $optParams);
2636
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersListResponse");
2634
+	$params = array('id' => $id);
2635
+	$params = array_merge($params, $optParams);
2636
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersListResponse");
2637 2637
   }
2638 2638
 }
2639 2639
 
@@ -2658,9 +2658,9 @@  discard block
 block discarded – undo
2658 2658
    */
2659 2659
   public function delete($id, $optParams = array())
2660 2660
   {
2661
-    $params = array('id' => $id);
2662
-    $params = array_merge($params, $optParams);
2663
-    return $this->call('delete', array($params));
2661
+	$params = array('id' => $id);
2662
+	$params = array_merge($params, $optParams);
2663
+	return $this->call('delete', array($params));
2664 2664
   }
2665 2665
 
2666 2666
   /**
@@ -2672,9 +2672,9 @@  discard block
 block discarded – undo
2672 2672
    */
2673 2673
   public function get($id, $optParams = array())
2674 2674
   {
2675
-    $params = array('id' => $id);
2676
-    $params = array_merge($params, $optParams);
2677
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Raster");
2675
+	$params = array('id' => $id);
2676
+	$params = array_merge($params, $optParams);
2677
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Raster");
2678 2678
   }
2679 2679
 
2680 2680
   /**
@@ -2719,9 +2719,9 @@  discard block
 block discarded – undo
2719 2719
    */
2720 2720
   public function listRasters($projectId, $optParams = array())
2721 2721
   {
2722
-    $params = array('projectId' => $projectId);
2723
-    $params = array_merge($params, $optParams);
2724
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RastersListResponse");
2722
+	$params = array('projectId' => $projectId);
2723
+	$params = array_merge($params, $optParams);
2724
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RastersListResponse");
2725 2725
   }
2726 2726
 
2727 2727
   /**
@@ -2733,9 +2733,9 @@  discard block
 block discarded – undo
2733 2733
    */
2734 2734
   public function patch($id, Google_Service_MapsEngine_Raster $postBody, $optParams = array())
2735 2735
   {
2736
-    $params = array('id' => $id, 'postBody' => $postBody);
2737
-    $params = array_merge($params, $optParams);
2738
-    return $this->call('patch', array($params));
2736
+	$params = array('id' => $id, 'postBody' => $postBody);
2737
+	$params = array_merge($params, $optParams);
2738
+	return $this->call('patch', array($params));
2739 2739
   }
2740 2740
 
2741 2741
   /**
@@ -2747,9 +2747,9 @@  discard block
 block discarded – undo
2747 2747
    */
2748 2748
   public function process($id, $optParams = array())
2749 2749
   {
2750
-    $params = array('id' => $id);
2751
-    $params = array_merge($params, $optParams);
2752
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2750
+	$params = array('id' => $id);
2751
+	$params = array_merge($params, $optParams);
2752
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2753 2753
   }
2754 2754
 
2755 2755
   /**
@@ -2761,9 +2761,9 @@  discard block
 block discarded – undo
2761 2761
    */
2762 2762
   public function upload(Google_Service_MapsEngine_Raster $postBody, $optParams = array())
2763 2763
   {
2764
-    $params = array('postBody' => $postBody);
2765
-    $params = array_merge($params, $optParams);
2766
-    return $this->call('upload', array($params), "Google_Service_MapsEngine_Raster");
2764
+	$params = array('postBody' => $postBody);
2765
+	$params = array_merge($params, $optParams);
2766
+	return $this->call('upload', array($params), "Google_Service_MapsEngine_Raster");
2767 2767
   }
2768 2768
 }
2769 2769
 
@@ -2787,9 +2787,9 @@  discard block
 block discarded – undo
2787 2787
    */
2788 2788
   public function insert($id, $filename, $optParams = array())
2789 2789
   {
2790
-    $params = array('id' => $id, 'filename' => $filename);
2791
-    $params = array_merge($params, $optParams);
2792
-    return $this->call('insert', array($params));
2790
+	$params = array('id' => $id, 'filename' => $filename);
2791
+	$params = array_merge($params, $optParams);
2792
+	return $this->call('insert', array($params));
2793 2793
   }
2794 2794
 }
2795 2795
 /**
@@ -2818,9 +2818,9 @@  discard block
 block discarded – undo
2818 2818
    */
2819 2819
   public function listRastersParents($id, $optParams = array())
2820 2820
   {
2821
-    $params = array('id' => $id);
2822
-    $params = array_merge($params, $optParams);
2823
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2821
+	$params = array('id' => $id);
2822
+	$params = array_merge($params, $optParams);
2823
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2824 2824
   }
2825 2825
 }
2826 2826
 /**
@@ -2845,9 +2845,9 @@  discard block
 block discarded – undo
2845 2845
    */
2846 2846
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2847 2847
   {
2848
-    $params = array('id' => $id, 'postBody' => $postBody);
2849
-    $params = array_merge($params, $optParams);
2850
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2848
+	$params = array('id' => $id, 'postBody' => $postBody);
2849
+	$params = array_merge($params, $optParams);
2850
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2851 2851
   }
2852 2852
 
2853 2853
   /**
@@ -2863,9 +2863,9 @@  discard block
 block discarded – undo
2863 2863
    */
2864 2864
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2865 2865
   {
2866
-    $params = array('id' => $id, 'postBody' => $postBody);
2867
-    $params = array_merge($params, $optParams);
2868
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2866
+	$params = array('id' => $id, 'postBody' => $postBody);
2867
+	$params = array_merge($params, $optParams);
2868
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2869 2869
   }
2870 2870
 
2871 2871
   /**
@@ -2878,9 +2878,9 @@  discard block
 block discarded – undo
2878 2878
    */
2879 2879
   public function listRastersPermissions($id, $optParams = array())
2880 2880
   {
2881
-    $params = array('id' => $id);
2882
-    $params = array_merge($params, $optParams);
2883
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2881
+	$params = array('id' => $id);
2882
+	$params = array_merge($params, $optParams);
2883
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2884 2884
   }
2885 2885
 }
2886 2886
 
@@ -2904,9 +2904,9 @@  discard block
 block discarded – undo
2904 2904
    */
2905 2905
   public function create(Google_Service_MapsEngine_Table $postBody, $optParams = array())
2906 2906
   {
2907
-    $params = array('postBody' => $postBody);
2908
-    $params = array_merge($params, $optParams);
2909
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Table");
2907
+	$params = array('postBody' => $postBody);
2908
+	$params = array_merge($params, $optParams);
2909
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Table");
2910 2910
   }
2911 2911
 
2912 2912
   /**
@@ -2919,9 +2919,9 @@  discard block
 block discarded – undo
2919 2919
    */
2920 2920
   public function delete($id, $optParams = array())
2921 2921
   {
2922
-    $params = array('id' => $id);
2923
-    $params = array_merge($params, $optParams);
2924
-    return $this->call('delete', array($params));
2922
+	$params = array('id' => $id);
2923
+	$params = array_merge($params, $optParams);
2924
+	return $this->call('delete', array($params));
2925 2925
   }
2926 2926
 
2927 2927
   /**
@@ -2935,9 +2935,9 @@  discard block
 block discarded – undo
2935 2935
    */
2936 2936
   public function get($id, $optParams = array())
2937 2937
   {
2938
-    $params = array('id' => $id);
2939
-    $params = array_merge($params, $optParams);
2940
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Table");
2938
+	$params = array('id' => $id);
2939
+	$params = array_merge($params, $optParams);
2940
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Table");
2941 2941
   }
2942 2942
 
2943 2943
   /**
@@ -2982,9 +2982,9 @@  discard block
 block discarded – undo
2982 2982
    */
2983 2983
   public function listTables($optParams = array())
2984 2984
   {
2985
-    $params = array();
2986
-    $params = array_merge($params, $optParams);
2987
-    return $this->call('list', array($params), "Google_Service_MapsEngine_TablesListResponse");
2985
+	$params = array();
2986
+	$params = array_merge($params, $optParams);
2987
+	return $this->call('list', array($params), "Google_Service_MapsEngine_TablesListResponse");
2988 2988
   }
2989 2989
 
2990 2990
   /**
@@ -2996,9 +2996,9 @@  discard block
 block discarded – undo
2996 2996
    */
2997 2997
   public function patch($id, Google_Service_MapsEngine_Table $postBody, $optParams = array())
2998 2998
   {
2999
-    $params = array('id' => $id, 'postBody' => $postBody);
3000
-    $params = array_merge($params, $optParams);
3001
-    return $this->call('patch', array($params));
2999
+	$params = array('id' => $id, 'postBody' => $postBody);
3000
+	$params = array_merge($params, $optParams);
3001
+	return $this->call('patch', array($params));
3002 3002
   }
3003 3003
 
3004 3004
   /**
@@ -3010,9 +3010,9 @@  discard block
 block discarded – undo
3010 3010
    */
3011 3011
   public function process($id, $optParams = array())
3012 3012
   {
3013
-    $params = array('id' => $id);
3014
-    $params = array_merge($params, $optParams);
3015
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
3013
+	$params = array('id' => $id);
3014
+	$params = array_merge($params, $optParams);
3015
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
3016 3016
   }
3017 3017
 
3018 3018
   /**
@@ -3028,9 +3028,9 @@  discard block
 block discarded – undo
3028 3028
    */
3029 3029
   public function upload(Google_Service_MapsEngine_Table $postBody, $optParams = array())
3030 3030
   {
3031
-    $params = array('postBody' => $postBody);
3032
-    $params = array_merge($params, $optParams);
3033
-    return $this->call('upload', array($params), "Google_Service_MapsEngine_Table");
3031
+	$params = array('postBody' => $postBody);
3032
+	$params = array_merge($params, $optParams);
3033
+	return $this->call('upload', array($params), "Google_Service_MapsEngine_Table");
3034 3034
   }
3035 3035
 }
3036 3036
 
@@ -3055,9 +3055,9 @@  discard block
 block discarded – undo
3055 3055
    */
3056 3056
   public function batchDelete($id, Google_Service_MapsEngine_FeaturesBatchDeleteRequest $postBody, $optParams = array())
3057 3057
   {
3058
-    $params = array('id' => $id, 'postBody' => $postBody);
3059
-    $params = array_merge($params, $optParams);
3060
-    return $this->call('batchDelete', array($params));
3058
+	$params = array('id' => $id, 'postBody' => $postBody);
3059
+	$params = array_merge($params, $optParams);
3060
+	return $this->call('batchDelete', array($params));
3061 3061
   }
3062 3062
 
3063 3063
   /**
@@ -3079,9 +3079,9 @@  discard block
 block discarded – undo
3079 3079
    */
3080 3080
   public function batchInsert($id, Google_Service_MapsEngine_FeaturesBatchInsertRequest $postBody, $optParams = array())
3081 3081
   {
3082
-    $params = array('id' => $id, 'postBody' => $postBody);
3083
-    $params = array_merge($params, $optParams);
3084
-    return $this->call('batchInsert', array($params));
3082
+	$params = array('id' => $id, 'postBody' => $postBody);
3083
+	$params = array_merge($params, $optParams);
3084
+	return $this->call('batchInsert', array($params));
3085 3085
   }
3086 3086
 
3087 3087
   /**
@@ -3110,9 +3110,9 @@  discard block
 block discarded – undo
3110 3110
    */
3111 3111
   public function batchPatch($id, Google_Service_MapsEngine_FeaturesBatchPatchRequest $postBody, $optParams = array())
3112 3112
   {
3113
-    $params = array('id' => $id, 'postBody' => $postBody);
3114
-    $params = array_merge($params, $optParams);
3115
-    return $this->call('batchPatch', array($params));
3113
+	$params = array('id' => $id, 'postBody' => $postBody);
3114
+	$params = array_merge($params, $optParams);
3115
+	return $this->call('batchPatch', array($params));
3116 3116
   }
3117 3117
 
3118 3118
   /**
@@ -3131,9 +3131,9 @@  discard block
 block discarded – undo
3131 3131
    */
3132 3132
   public function get($tableId, $id, $optParams = array())
3133 3133
   {
3134
-    $params = array('tableId' => $tableId, 'id' => $id);
3135
-    $params = array_merge($params, $optParams);
3136
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Feature");
3134
+	$params = array('tableId' => $tableId, 'id' => $id);
3135
+	$params = array_merge($params, $optParams);
3136
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Feature");
3137 3137
   }
3138 3138
 
3139 3139
   /**
@@ -3166,9 +3166,9 @@  discard block
 block discarded – undo
3166 3166
    */
3167 3167
   public function listTablesFeatures($id, $optParams = array())
3168 3168
   {
3169
-    $params = array('id' => $id);
3170
-    $params = array_merge($params, $optParams);
3171
-    return $this->call('list', array($params), "Google_Service_MapsEngine_FeaturesListResponse");
3169
+	$params = array('id' => $id);
3170
+	$params = array_merge($params, $optParams);
3171
+	return $this->call('list', array($params), "Google_Service_MapsEngine_FeaturesListResponse");
3172 3172
   }
3173 3173
 }
3174 3174
 /**
@@ -3194,9 +3194,9 @@  discard block
 block discarded – undo
3194 3194
    */
3195 3195
   public function insert($id, $filename, $optParams = array())
3196 3196
   {
3197
-    $params = array('id' => $id, 'filename' => $filename);
3198
-    $params = array_merge($params, $optParams);
3199
-    return $this->call('insert', array($params));
3197
+	$params = array('id' => $id, 'filename' => $filename);
3198
+	$params = array_merge($params, $optParams);
3199
+	return $this->call('insert', array($params));
3200 3200
   }
3201 3201
 }
3202 3202
 /**
@@ -3225,9 +3225,9 @@  discard block
 block discarded – undo
3225 3225
    */
3226 3226
   public function listTablesParents($id, $optParams = array())
3227 3227
   {
3228
-    $params = array('id' => $id);
3229
-    $params = array_merge($params, $optParams);
3230
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
3228
+	$params = array('id' => $id);
3229
+	$params = array_merge($params, $optParams);
3230
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
3231 3231
   }
3232 3232
 }
3233 3233
 /**
@@ -3252,9 +3252,9 @@  discard block
 block discarded – undo
3252 3252
    */
3253 3253
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
3254 3254
   {
3255
-    $params = array('id' => $id, 'postBody' => $postBody);
3256
-    $params = array_merge($params, $optParams);
3257
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
3255
+	$params = array('id' => $id, 'postBody' => $postBody);
3256
+	$params = array_merge($params, $optParams);
3257
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
3258 3258
   }
3259 3259
 
3260 3260
   /**
@@ -3270,9 +3270,9 @@  discard block
 block discarded – undo
3270 3270
    */
3271 3271
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
3272 3272
   {
3273
-    $params = array('id' => $id, 'postBody' => $postBody);
3274
-    $params = array_merge($params, $optParams);
3275
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
3273
+	$params = array('id' => $id, 'postBody' => $postBody);
3274
+	$params = array_merge($params, $optParams);
3275
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
3276 3276
   }
3277 3277
 
3278 3278
   /**
@@ -3285,9 +3285,9 @@  discard block
 block discarded – undo
3285 3285
    */
3286 3286
   public function listTablesPermissions($id, $optParams = array())
3287 3287
   {
3288
-    $params = array('id' => $id);
3289
-    $params = array_merge($params, $optParams);
3290
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
3288
+	$params = array('id' => $id);
3289
+	$params = array_merge($params, $optParams);
3290
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
3291 3291
   }
3292 3292
 }
3293 3293
 
@@ -3305,27 +3305,27 @@  discard block
 block discarded – undo
3305 3305
 
3306 3306
   public function setEnd($end)
3307 3307
   {
3308
-    $this->end = $end;
3308
+	$this->end = $end;
3309 3309
   }
3310 3310
   public function getEnd()
3311 3311
   {
3312
-    return $this->end;
3312
+	return $this->end;
3313 3313
   }
3314 3314
   public function setPrecision($precision)
3315 3315
   {
3316
-    $this->precision = $precision;
3316
+	$this->precision = $precision;
3317 3317
   }
3318 3318
   public function getPrecision()
3319 3319
   {
3320
-    return $this->precision;
3320
+	return $this->precision;
3321 3321
   }
3322 3322
   public function setStart($start)
3323 3323
   {
3324
-    $this->start = $start;
3324
+	$this->start = $start;
3325 3325
   }
3326 3326
   public function getStart()
3327 3327
   {
3328
-    return $this->start;
3328
+	return $this->start;
3329 3329
   }
3330 3330
 }
3331 3331
 
@@ -3352,115 +3352,115 @@  discard block
 block discarded – undo
3352 3352
 
3353 3353
   public function setBbox($bbox)
3354 3354
   {
3355
-    $this->bbox = $bbox;
3355
+	$this->bbox = $bbox;
3356 3356
   }
3357 3357
   public function getBbox()
3358 3358
   {
3359
-    return $this->bbox;
3359
+	return $this->bbox;
3360 3360
   }
3361 3361
   public function setCreationTime($creationTime)
3362 3362
   {
3363
-    $this->creationTime = $creationTime;
3363
+	$this->creationTime = $creationTime;
3364 3364
   }
3365 3365
   public function getCreationTime()
3366 3366
   {
3367
-    return $this->creationTime;
3367
+	return $this->creationTime;
3368 3368
   }
3369 3369
   public function setCreatorEmail($creatorEmail)
3370 3370
   {
3371
-    $this->creatorEmail = $creatorEmail;
3371
+	$this->creatorEmail = $creatorEmail;
3372 3372
   }
3373 3373
   public function getCreatorEmail()
3374 3374
   {
3375
-    return $this->creatorEmail;
3375
+	return $this->creatorEmail;
3376 3376
   }
3377 3377
   public function setDescription($description)
3378 3378
   {
3379
-    $this->description = $description;
3379
+	$this->description = $description;
3380 3380
   }
3381 3381
   public function getDescription()
3382 3382
   {
3383
-    return $this->description;
3383
+	return $this->description;
3384 3384
   }
3385 3385
   public function setEtag($etag)
3386 3386
   {
3387
-    $this->etag = $etag;
3387
+	$this->etag = $etag;
3388 3388
   }
3389 3389
   public function getEtag()
3390 3390
   {
3391
-    return $this->etag;
3391
+	return $this->etag;
3392 3392
   }
3393 3393
   public function setId($id)
3394 3394
   {
3395
-    $this->id = $id;
3395
+	$this->id = $id;
3396 3396
   }
3397 3397
   public function getId()
3398 3398
   {
3399
-    return $this->id;
3399
+	return $this->id;
3400 3400
   }
3401 3401
   public function setLastModifiedTime($lastModifiedTime)
3402 3402
   {
3403
-    $this->lastModifiedTime = $lastModifiedTime;
3403
+	$this->lastModifiedTime = $lastModifiedTime;
3404 3404
   }
3405 3405
   public function getLastModifiedTime()
3406 3406
   {
3407
-    return $this->lastModifiedTime;
3407
+	return $this->lastModifiedTime;
3408 3408
   }
3409 3409
   public function setLastModifierEmail($lastModifierEmail)
3410 3410
   {
3411
-    $this->lastModifierEmail = $lastModifierEmail;
3411
+	$this->lastModifierEmail = $lastModifierEmail;
3412 3412
   }
3413 3413
   public function getLastModifierEmail()
3414 3414
   {
3415
-    return $this->lastModifierEmail;
3415
+	return $this->lastModifierEmail;
3416 3416
   }
3417 3417
   public function setName($name)
3418 3418
   {
3419
-    $this->name = $name;
3419
+	$this->name = $name;
3420 3420
   }
3421 3421
   public function getName()
3422 3422
   {
3423
-    return $this->name;
3423
+	return $this->name;
3424 3424
   }
3425 3425
   public function setProjectId($projectId)
3426 3426
   {
3427
-    $this->projectId = $projectId;
3427
+	$this->projectId = $projectId;
3428 3428
   }
3429 3429
   public function getProjectId()
3430 3430
   {
3431
-    return $this->projectId;
3431
+	return $this->projectId;
3432 3432
   }
3433 3433
   public function setResource($resource)
3434 3434
   {
3435
-    $this->resource = $resource;
3435
+	$this->resource = $resource;
3436 3436
   }
3437 3437
   public function getResource()
3438 3438
   {
3439
-    return $this->resource;
3439
+	return $this->resource;
3440 3440
   }
3441 3441
   public function setTags($tags)
3442 3442
   {
3443
-    $this->tags = $tags;
3443
+	$this->tags = $tags;
3444 3444
   }
3445 3445
   public function getTags()
3446 3446
   {
3447
-    return $this->tags;
3447
+	return $this->tags;
3448 3448
   }
3449 3449
   public function setType($type)
3450 3450
   {
3451
-    $this->type = $type;
3451
+	$this->type = $type;
3452 3452
   }
3453 3453
   public function getType()
3454 3454
   {
3455
-    return $this->type;
3455
+	return $this->type;
3456 3456
   }
3457 3457
   public function setWritersCanEditPermissions($writersCanEditPermissions)
3458 3458
   {
3459
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
3459
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
3460 3460
   }
3461 3461
   public function getWritersCanEditPermissions()
3462 3462
   {
3463
-    return $this->writersCanEditPermissions;
3463
+	return $this->writersCanEditPermissions;
3464 3464
   }
3465 3465
 }
3466 3466
 
@@ -3476,19 +3476,19 @@  discard block
 block discarded – undo
3476 3476
 
3477 3477
   public function setAssets($assets)
3478 3478
   {
3479
-    $this->assets = $assets;
3479
+	$this->assets = $assets;
3480 3480
   }
3481 3481
   public function getAssets()
3482 3482
   {
3483
-    return $this->assets;
3483
+	return $this->assets;
3484 3484
   }
3485 3485
   public function setNextPageToken($nextPageToken)
3486 3486
   {
3487
-    $this->nextPageToken = $nextPageToken;
3487
+	$this->nextPageToken = $nextPageToken;
3488 3488
   }
3489 3489
   public function getNextPageToken()
3490 3490
   {
3491
-    return $this->nextPageToken;
3491
+	return $this->nextPageToken;
3492 3492
   }
3493 3493
 }
3494 3494
 
@@ -3503,27 +3503,27 @@  discard block
 block discarded – undo
3503 3503
 
3504 3504
   public function setColor($color)
3505 3505
   {
3506
-    $this->color = $color;
3506
+	$this->color = $color;
3507 3507
   }
3508 3508
   public function getColor()
3509 3509
   {
3510
-    return $this->color;
3510
+	return $this->color;
3511 3511
   }
3512 3512
   public function setOpacity($opacity)
3513 3513
   {
3514
-    $this->opacity = $opacity;
3514
+	$this->opacity = $opacity;
3515 3515
   }
3516 3516
   public function getOpacity()
3517 3517
   {
3518
-    return $this->opacity;
3518
+	return $this->opacity;
3519 3519
   }
3520 3520
   public function setWidth($width)
3521 3521
   {
3522
-    $this->width = $width;
3522
+	$this->width = $width;
3523 3523
   }
3524 3524
   public function getWidth()
3525 3525
   {
3526
-    return $this->width;
3526
+	return $this->width;
3527 3527
   }
3528 3528
 }
3529 3529
 
@@ -3537,19 +3537,19 @@  discard block
 block discarded – undo
3537 3537
 
3538 3538
   public function setColor($color)
3539 3539
   {
3540
-    $this->color = $color;
3540
+	$this->color = $color;
3541 3541
   }
3542 3542
   public function getColor()
3543 3543
   {
3544
-    return $this->color;
3544
+	return $this->color;
3545 3545
   }
3546 3546
   public function setOpacity($opacity)
3547 3547
   {
3548
-    $this->opacity = $opacity;
3548
+	$this->opacity = $opacity;
3549 3549
   }
3550 3550
   public function getOpacity()
3551 3551
   {
3552
-    return $this->opacity;
3552
+	return $this->opacity;
3553 3553
   }
3554 3554
 }
3555 3555
 
@@ -3562,11 +3562,11 @@  discard block
 block discarded – undo
3562 3562
 
3563 3563
   public function setId($id)
3564 3564
   {
3565
-    $this->id = $id;
3565
+	$this->id = $id;
3566 3566
   }
3567 3567
   public function getId()
3568 3568
   {
3569
-    return $this->id;
3569
+	return $this->id;
3570 3570
   }
3571 3571
 }
3572 3572
 
@@ -3590,51 +3590,51 @@  discard block
 block discarded – undo
3590 3590
 
3591 3591
   public function setFilters($filters)
3592 3592
   {
3593
-    $this->filters = $filters;
3593
+	$this->filters = $filters;
3594 3594
   }
3595 3595
   public function getFilters()
3596 3596
   {
3597
-    return $this->filters;
3597
+	return $this->filters;
3598 3598
   }
3599 3599
   public function setLineOptions(Google_Service_MapsEngine_LineStyle $lineOptions)
3600 3600
   {
3601
-    $this->lineOptions = $lineOptions;
3601
+	$this->lineOptions = $lineOptions;
3602 3602
   }
3603 3603
   public function getLineOptions()
3604 3604
   {
3605
-    return $this->lineOptions;
3605
+	return $this->lineOptions;
3606 3606
   }
3607 3607
   public function setName($name)
3608 3608
   {
3609
-    $this->name = $name;
3609
+	$this->name = $name;
3610 3610
   }
3611 3611
   public function getName()
3612 3612
   {
3613
-    return $this->name;
3613
+	return $this->name;
3614 3614
   }
3615 3615
   public function setPointOptions(Google_Service_MapsEngine_PointStyle $pointOptions)
3616 3616
   {
3617
-    $this->pointOptions = $pointOptions;
3617
+	$this->pointOptions = $pointOptions;
3618 3618
   }
3619 3619
   public function getPointOptions()
3620 3620
   {
3621
-    return $this->pointOptions;
3621
+	return $this->pointOptions;
3622 3622
   }
3623 3623
   public function setPolygonOptions(Google_Service_MapsEngine_PolygonStyle $polygonOptions)
3624 3624
   {
3625
-    $this->polygonOptions = $polygonOptions;
3625
+	$this->polygonOptions = $polygonOptions;
3626 3626
   }
3627 3627
   public function getPolygonOptions()
3628 3628
   {
3629
-    return $this->polygonOptions;
3629
+	return $this->polygonOptions;
3630 3630
   }
3631 3631
   public function setZoomLevels(Google_Service_MapsEngine_ZoomLevels $zoomLevels)
3632 3632
   {
3633
-    $this->zoomLevels = $zoomLevels;
3633
+	$this->zoomLevels = $zoomLevels;
3634 3634
   }
3635 3635
   public function getZoomLevels()
3636 3636
   {
3637
-    return $this->zoomLevels;
3637
+	return $this->zoomLevels;
3638 3638
   }
3639 3639
 }
3640 3640
 
@@ -3650,27 +3650,27 @@  discard block
 block discarded – undo
3650 3650
 
3651 3651
   public function setGeometry(Google_Service_MapsEngine_GeoJsonGeometry $geometry)
3652 3652
   {
3653
-    $this->geometry = $geometry;
3653
+	$this->geometry = $geometry;
3654 3654
   }
3655 3655
   public function getGeometry()
3656 3656
   {
3657
-    return $this->geometry;
3657
+	return $this->geometry;
3658 3658
   }
3659 3659
   public function setProperties($properties)
3660 3660
   {
3661
-    $this->properties = $properties;
3661
+	$this->properties = $properties;
3662 3662
   }
3663 3663
   public function getProperties()
3664 3664
   {
3665
-    return $this->properties;
3665
+	return $this->properties;
3666 3666
   }
3667 3667
   public function setType($type)
3668 3668
   {
3669
-    $this->type = $type;
3669
+	$this->type = $type;
3670 3670
   }
3671 3671
   public function getType()
3672 3672
   {
3673
-    return $this->type;
3673
+	return $this->type;
3674 3674
   }
3675 3675
 }
3676 3676
 
@@ -3683,11 +3683,11 @@  discard block
 block discarded – undo
3683 3683
 
3684 3684
   public function setContent($content)
3685 3685
   {
3686
-    $this->content = $content;
3686
+	$this->content = $content;
3687 3687
   }
3688 3688
   public function getContent()
3689 3689
   {
3690
-    return $this->content;
3690
+	return $this->content;
3691 3691
   }
3692 3692
 }
3693 3693
 
@@ -3695,7 +3695,7 @@  discard block
 block discarded – undo
3695 3695
 {
3696 3696
   protected $collection_key = 'primaryKeys';
3697 3697
   protected $internal_gapi_mappings = array(
3698
-        "gxIds" => "gx_ids",
3698
+		"gxIds" => "gx_ids",
3699 3699
   );
3700 3700
   public $gxIds;
3701 3701
   public $primaryKeys;
@@ -3703,19 +3703,19 @@  discard block
 block discarded – undo
3703 3703
 
3704 3704
   public function setGxIds($gxIds)
3705 3705
   {
3706
-    $this->gxIds = $gxIds;
3706
+	$this->gxIds = $gxIds;
3707 3707
   }
3708 3708
   public function getGxIds()
3709 3709
   {
3710
-    return $this->gxIds;
3710
+	return $this->gxIds;
3711 3711
   }
3712 3712
   public function setPrimaryKeys($primaryKeys)
3713 3713
   {
3714
-    $this->primaryKeys = $primaryKeys;
3714
+	$this->primaryKeys = $primaryKeys;
3715 3715
   }
3716 3716
   public function getPrimaryKeys()
3717 3717
   {
3718
-    return $this->primaryKeys;
3718
+	return $this->primaryKeys;
3719 3719
   }
3720 3720
 }
3721 3721
 
@@ -3731,19 +3731,19 @@  discard block
 block discarded – undo
3731 3731
 
3732 3732
   public function setFeatures($features)
3733 3733
   {
3734
-    $this->features = $features;
3734
+	$this->features = $features;
3735 3735
   }
3736 3736
   public function getFeatures()
3737 3737
   {
3738
-    return $this->features;
3738
+	return $this->features;
3739 3739
   }
3740 3740
   public function setNormalizeGeometries($normalizeGeometries)
3741 3741
   {
3742
-    $this->normalizeGeometries = $normalizeGeometries;
3742
+	$this->normalizeGeometries = $normalizeGeometries;
3743 3743
   }
3744 3744
   public function getNormalizeGeometries()
3745 3745
   {
3746
-    return $this->normalizeGeometries;
3746
+	return $this->normalizeGeometries;
3747 3747
   }
3748 3748
 }
3749 3749
 
@@ -3759,19 +3759,19 @@  discard block
 block discarded – undo
3759 3759
 
3760 3760
   public function setFeatures($features)
3761 3761
   {
3762
-    $this->features = $features;
3762
+	$this->features = $features;
3763 3763
   }
3764 3764
   public function getFeatures()
3765 3765
   {
3766
-    return $this->features;
3766
+	return $this->features;
3767 3767
   }
3768 3768
   public function setNormalizeGeometries($normalizeGeometries)
3769 3769
   {
3770
-    $this->normalizeGeometries = $normalizeGeometries;
3770
+	$this->normalizeGeometries = $normalizeGeometries;
3771 3771
   }
3772 3772
   public function getNormalizeGeometries()
3773 3773
   {
3774
-    return $this->normalizeGeometries;
3774
+	return $this->normalizeGeometries;
3775 3775
   }
3776 3776
 }
3777 3777
 
@@ -3791,43 +3791,43 @@  discard block
 block discarded – undo
3791 3791
 
3792 3792
   public function setAllowedQueriesPerSecond($allowedQueriesPerSecond)
3793 3793
   {
3794
-    $this->allowedQueriesPerSecond = $allowedQueriesPerSecond;
3794
+	$this->allowedQueriesPerSecond = $allowedQueriesPerSecond;
3795 3795
   }
3796 3796
   public function getAllowedQueriesPerSecond()
3797 3797
   {
3798
-    return $this->allowedQueriesPerSecond;
3798
+	return $this->allowedQueriesPerSecond;
3799 3799
   }
3800 3800
   public function setFeatures($features)
3801 3801
   {
3802
-    $this->features = $features;
3802
+	$this->features = $features;
3803 3803
   }
3804 3804
   public function getFeatures()
3805 3805
   {
3806
-    return $this->features;
3806
+	return $this->features;
3807 3807
   }
3808 3808
   public function setNextPageToken($nextPageToken)
3809 3809
   {
3810
-    $this->nextPageToken = $nextPageToken;
3810
+	$this->nextPageToken = $nextPageToken;
3811 3811
   }
3812 3812
   public function getNextPageToken()
3813 3813
   {
3814
-    return $this->nextPageToken;
3814
+	return $this->nextPageToken;
3815 3815
   }
3816 3816
   public function setSchema(Google_Service_MapsEngine_Schema $schema)
3817 3817
   {
3818
-    $this->schema = $schema;
3818
+	$this->schema = $schema;
3819 3819
   }
3820 3820
   public function getSchema()
3821 3821
   {
3822
-    return $this->schema;
3822
+	return $this->schema;
3823 3823
   }
3824 3824
   public function setType($type)
3825 3825
   {
3826
-    $this->type = $type;
3826
+	$this->type = $type;
3827 3827
   }
3828 3828
   public function getType()
3829 3829
   {
3830
-    return $this->type;
3830
+	return $this->type;
3831 3831
   }
3832 3832
 }
3833 3833
 
@@ -3842,27 +3842,27 @@  discard block
 block discarded – undo
3842 3842
 
3843 3843
   public function setColumn($column)
3844 3844
   {
3845
-    $this->column = $column;
3845
+	$this->column = $column;
3846 3846
   }
3847 3847
   public function getColumn()
3848 3848
   {
3849
-    return $this->column;
3849
+	return $this->column;
3850 3850
   }
3851 3851
   public function setOperator($operator)
3852 3852
   {
3853
-    $this->operator = $operator;
3853
+	$this->operator = $operator;
3854 3854
   }
3855 3855
   public function getOperator()
3856 3856
   {
3857
-    return $this->operator;
3857
+	return $this->operator;
3858 3858
   }
3859 3859
   public function setValue($value)
3860 3860
   {
3861
-    $this->value = $value;
3861
+	$this->value = $value;
3862 3862
   }
3863 3863
   public function getValue()
3864 3864
   {
3865
-    return $this->value;
3865
+	return $this->value;
3866 3866
   }
3867 3867
 }
3868 3868
 
@@ -3875,11 +3875,11 @@  discard block
 block discarded – undo
3875 3875
 
3876 3876
   public function setType($type)
3877 3877
   {
3878
-    $this->type = $type;
3878
+	$this->type = $type;
3879 3879
   }
3880 3880
   public function getType()
3881 3881
   {
3882
-    return $this->type;
3882
+	return $this->type;
3883 3883
   }
3884 3884
 }
3885 3885
 
@@ -3892,16 +3892,16 @@  discard block
 block discarded – undo
3892 3892
   protected $geometriesDataType = 'array';
3893 3893
   protected function gapiInit()
3894 3894
   {
3895
-    $this->type = 'GeometryCollection';
3895
+	$this->type = 'GeometryCollection';
3896 3896
   }
3897 3897
 
3898 3898
   public function setGeometries($geometries)
3899 3899
   {
3900
-    $this->geometries = $geometries;
3900
+	$this->geometries = $geometries;
3901 3901
   }
3902 3902
   public function getGeometries()
3903 3903
   {
3904
-    return $this->geometries;
3904
+	return $this->geometries;
3905 3905
   }
3906 3906
 }
3907 3907
 
@@ -3913,16 +3913,16 @@  discard block
 block discarded – undo
3913 3913
   public $coordinates;
3914 3914
   protected function gapiInit()
3915 3915
   {
3916
-    $this->type = 'LineString';
3916
+	$this->type = 'LineString';
3917 3917
   }
3918 3918
 
3919 3919
   public function setCoordinates($coordinates)
3920 3920
   {
3921
-    $this->coordinates = $coordinates;
3921
+	$this->coordinates = $coordinates;
3922 3922
   }
3923 3923
   public function getCoordinates()
3924 3924
   {
3925
-    return $this->coordinates;
3925
+	return $this->coordinates;
3926 3926
   }
3927 3927
 }
3928 3928
 
@@ -3934,16 +3934,16 @@  discard block
 block discarded – undo
3934 3934
   public $coordinates;
3935 3935
   protected function gapiInit()
3936 3936
   {
3937
-    $this->type = 'MultiLineString';
3937
+	$this->type = 'MultiLineString';
3938 3938
   }
3939 3939
 
3940 3940
   public function setCoordinates($coordinates)
3941 3941
   {
3942
-    $this->coordinates = $coordinates;
3942
+	$this->coordinates = $coordinates;
3943 3943
   }
3944 3944
   public function getCoordinates()
3945 3945
   {
3946
-    return $this->coordinates;
3946
+	return $this->coordinates;
3947 3947
   }
3948 3948
 }
3949 3949
 
@@ -3955,16 +3955,16 @@  discard block
 block discarded – undo
3955 3955
   public $coordinates;
3956 3956
   protected function gapiInit()
3957 3957
   {
3958
-    $this->type = 'MultiPoint';
3958
+	$this->type = 'MultiPoint';
3959 3959
   }
3960 3960
 
3961 3961
   public function setCoordinates($coordinates)
3962 3962
   {
3963
-    $this->coordinates = $coordinates;
3963
+	$this->coordinates = $coordinates;
3964 3964
   }
3965 3965
   public function getCoordinates()
3966 3966
   {
3967
-    return $this->coordinates;
3967
+	return $this->coordinates;
3968 3968
   }
3969 3969
 }
3970 3970
 
@@ -3976,16 +3976,16 @@  discard block
 block discarded – undo
3976 3976
   public $coordinates;
3977 3977
   protected function gapiInit()
3978 3978
   {
3979
-    $this->type = 'MultiPolygon';
3979
+	$this->type = 'MultiPolygon';
3980 3980
   }
3981 3981
 
3982 3982
   public function setCoordinates($coordinates)
3983 3983
   {
3984
-    $this->coordinates = $coordinates;
3984
+	$this->coordinates = $coordinates;
3985 3985
   }
3986 3986
   public function getCoordinates()
3987 3987
   {
3988
-    return $this->coordinates;
3988
+	return $this->coordinates;
3989 3989
   }
3990 3990
 }
3991 3991
 
@@ -3997,16 +3997,16 @@  discard block
 block discarded – undo
3997 3997
   public $coordinates;
3998 3998
   protected function gapiInit()
3999 3999
   {
4000
-    $this->type = 'Point';
4000
+	$this->type = 'Point';
4001 4001
   }
4002 4002
 
4003 4003
   public function setCoordinates($coordinates)
4004 4004
   {
4005
-    $this->coordinates = $coordinates;
4005
+	$this->coordinates = $coordinates;
4006 4006
   }
4007 4007
   public function getCoordinates()
4008 4008
   {
4009
-    return $this->coordinates;
4009
+	return $this->coordinates;
4010 4010
   }
4011 4011
 }
4012 4012
 
@@ -4018,16 +4018,16 @@  discard block
 block discarded – undo
4018 4018
   public $coordinates;
4019 4019
   protected function gapiInit()
4020 4020
   {
4021
-    $this->type = 'Polygon';
4021
+	$this->type = 'Polygon';
4022 4022
   }
4023 4023
 
4024 4024
   public function setCoordinates($coordinates)
4025 4025
   {
4026
-    $this->coordinates = $coordinates;
4026
+	$this->coordinates = $coordinates;
4027 4027
   }
4028 4028
   public function getCoordinates()
4029 4029
   {
4030
-    return $this->coordinates;
4030
+	return $this->coordinates;
4031 4031
   }
4032 4032
 }
4033 4033
 
@@ -4046,27 +4046,27 @@  discard block
 block discarded – undo
4046 4046
 
4047 4047
   public function setDescription($description)
4048 4048
   {
4049
-    $this->description = $description;
4049
+	$this->description = $description;
4050 4050
   }
4051 4051
   public function getDescription()
4052 4052
   {
4053
-    return $this->description;
4053
+	return $this->description;
4054 4054
   }
4055 4055
   public function setId($id)
4056 4056
   {
4057
-    $this->id = $id;
4057
+	$this->id = $id;
4058 4058
   }
4059 4059
   public function getId()
4060 4060
   {
4061
-    return $this->id;
4061
+	return $this->id;
4062 4062
   }
4063 4063
   public function setName($name)
4064 4064
   {
4065
-    $this->name = $name;
4065
+	$this->name = $name;
4066 4066
   }
4067 4067
   public function getName()
4068 4068
   {
4069
-    return $this->name;
4069
+	return $this->name;
4070 4070
   }
4071 4071
 }
4072 4072
 
@@ -4084,35 +4084,35 @@  discard block
 block discarded – undo
4084 4084
 
4085 4085
   public function setId($id)
4086 4086
   {
4087
-    $this->id = $id;
4087
+	$this->id = $id;
4088 4088
   }
4089 4089
   public function getId()
4090 4090
   {
4091
-    return $this->id;
4091
+	return $this->id;
4092 4092
   }
4093 4093
   public function setName($name)
4094 4094
   {
4095
-    $this->name = $name;
4095
+	$this->name = $name;
4096 4096
   }
4097 4097
   public function getName()
4098 4098
   {
4099
-    return $this->name;
4099
+	return $this->name;
4100 4100
   }
4101 4101
   public function setScaledShape(Google_Service_MapsEngine_ScaledShape $scaledShape)
4102 4102
   {
4103
-    $this->scaledShape = $scaledShape;
4103
+	$this->scaledShape = $scaledShape;
4104 4104
   }
4105 4105
   public function getScaledShape()
4106 4106
   {
4107
-    return $this->scaledShape;
4107
+	return $this->scaledShape;
4108 4108
   }
4109 4109
   public function setScalingFunction(Google_Service_MapsEngine_ScalingFunction $scalingFunction)
4110 4110
   {
4111
-    $this->scalingFunction = $scalingFunction;
4111
+	$this->scalingFunction = $scalingFunction;
4112 4112
   }
4113 4113
   public function getScalingFunction()
4114 4114
   {
4115
-    return $this->scalingFunction;
4115
+	return $this->scalingFunction;
4116 4116
   }
4117 4117
 }
4118 4118
 
@@ -4128,19 +4128,19 @@  discard block
 block discarded – undo
4128 4128
 
4129 4129
   public function setIcons($icons)
4130 4130
   {
4131
-    $this->icons = $icons;
4131
+	$this->icons = $icons;
4132 4132
   }
4133 4133
   public function getIcons()
4134 4134
   {
4135
-    return $this->icons;
4135
+	return $this->icons;
4136 4136
   }
4137 4137
   public function setNextPageToken($nextPageToken)
4138 4138
   {
4139
-    $this->nextPageToken = $nextPageToken;
4139
+	$this->nextPageToken = $nextPageToken;
4140 4140
   }
4141 4141
   public function getNextPageToken()
4142 4142
   {
4143
-    return $this->nextPageToken;
4143
+	return $this->nextPageToken;
4144 4144
   }
4145 4145
 }
4146 4146
 
@@ -4160,59 +4160,59 @@  discard block
 block discarded – undo
4160 4160
 
4161 4161
   public function setColor($color)
4162 4162
   {
4163
-    $this->color = $color;
4163
+	$this->color = $color;
4164 4164
   }
4165 4165
   public function getColor()
4166 4166
   {
4167
-    return $this->color;
4167
+	return $this->color;
4168 4168
   }
4169 4169
   public function setColumn($column)
4170 4170
   {
4171
-    $this->column = $column;
4171
+	$this->column = $column;
4172 4172
   }
4173 4173
   public function getColumn()
4174 4174
   {
4175
-    return $this->column;
4175
+	return $this->column;
4176 4176
   }
4177 4177
   public function setFontStyle($fontStyle)
4178 4178
   {
4179
-    $this->fontStyle = $fontStyle;
4179
+	$this->fontStyle = $fontStyle;
4180 4180
   }
4181 4181
   public function getFontStyle()
4182 4182
   {
4183
-    return $this->fontStyle;
4183
+	return $this->fontStyle;
4184 4184
   }
4185 4185
   public function setFontWeight($fontWeight)
4186 4186
   {
4187
-    $this->fontWeight = $fontWeight;
4187
+	$this->fontWeight = $fontWeight;
4188 4188
   }
4189 4189
   public function getFontWeight()
4190 4190
   {
4191
-    return $this->fontWeight;
4191
+	return $this->fontWeight;
4192 4192
   }
4193 4193
   public function setOpacity($opacity)
4194 4194
   {
4195
-    $this->opacity = $opacity;
4195
+	$this->opacity = $opacity;
4196 4196
   }
4197 4197
   public function getOpacity()
4198 4198
   {
4199
-    return $this->opacity;
4199
+	return $this->opacity;
4200 4200
   }
4201 4201
   public function setOutline(Google_Service_MapsEngine_Color $outline)
4202 4202
   {
4203
-    $this->outline = $outline;
4203
+	$this->outline = $outline;
4204 4204
   }
4205 4205
   public function getOutline()
4206 4206
   {
4207
-    return $this->outline;
4207
+	return $this->outline;
4208 4208
   }
4209 4209
   public function setSize($size)
4210 4210
   {
4211
-    $this->size = $size;
4211
+	$this->size = $size;
4212 4212
   }
4213 4213
   public function getSize()
4214 4214
   {
4215
-    return $this->size;
4215
+	return $this->size;
4216 4216
   }
4217 4217
 }
4218 4218
 
@@ -4247,163 +4247,163 @@  discard block
 block discarded – undo
4247 4247
 
4248 4248
   public function setBbox($bbox)
4249 4249
   {
4250
-    $this->bbox = $bbox;
4250
+	$this->bbox = $bbox;
4251 4251
   }
4252 4252
   public function getBbox()
4253 4253
   {
4254
-    return $this->bbox;
4254
+	return $this->bbox;
4255 4255
   }
4256 4256
   public function setCreationTime($creationTime)
4257 4257
   {
4258
-    $this->creationTime = $creationTime;
4258
+	$this->creationTime = $creationTime;
4259 4259
   }
4260 4260
   public function getCreationTime()
4261 4261
   {
4262
-    return $this->creationTime;
4262
+	return $this->creationTime;
4263 4263
   }
4264 4264
   public function setCreatorEmail($creatorEmail)
4265 4265
   {
4266
-    $this->creatorEmail = $creatorEmail;
4266
+	$this->creatorEmail = $creatorEmail;
4267 4267
   }
4268 4268
   public function getCreatorEmail()
4269 4269
   {
4270
-    return $this->creatorEmail;
4270
+	return $this->creatorEmail;
4271 4271
   }
4272 4272
   public function setDatasourceType($datasourceType)
4273 4273
   {
4274
-    $this->datasourceType = $datasourceType;
4274
+	$this->datasourceType = $datasourceType;
4275 4275
   }
4276 4276
   public function getDatasourceType()
4277 4277
   {
4278
-    return $this->datasourceType;
4278
+	return $this->datasourceType;
4279 4279
   }
4280 4280
   public function setDatasources(Google_Service_MapsEngine_Datasource $datasources)
4281 4281
   {
4282
-    $this->datasources = $datasources;
4282
+	$this->datasources = $datasources;
4283 4283
   }
4284 4284
   public function getDatasources()
4285 4285
   {
4286
-    return $this->datasources;
4286
+	return $this->datasources;
4287 4287
   }
4288 4288
   public function setDescription($description)
4289 4289
   {
4290
-    $this->description = $description;
4290
+	$this->description = $description;
4291 4291
   }
4292 4292
   public function getDescription()
4293 4293
   {
4294
-    return $this->description;
4294
+	return $this->description;
4295 4295
   }
4296 4296
   public function setDraftAccessList($draftAccessList)
4297 4297
   {
4298
-    $this->draftAccessList = $draftAccessList;
4298
+	$this->draftAccessList = $draftAccessList;
4299 4299
   }
4300 4300
   public function getDraftAccessList()
4301 4301
   {
4302
-    return $this->draftAccessList;
4302
+	return $this->draftAccessList;
4303 4303
   }
4304 4304
   public function setEtag($etag)
4305 4305
   {
4306
-    $this->etag = $etag;
4306
+	$this->etag = $etag;
4307 4307
   }
4308 4308
   public function getEtag()
4309 4309
   {
4310
-    return $this->etag;
4310
+	return $this->etag;
4311 4311
   }
4312 4312
   public function setId($id)
4313 4313
   {
4314
-    $this->id = $id;
4314
+	$this->id = $id;
4315 4315
   }
4316 4316
   public function getId()
4317 4317
   {
4318
-    return $this->id;
4318
+	return $this->id;
4319 4319
   }
4320 4320
   public function setLastModifiedTime($lastModifiedTime)
4321 4321
   {
4322
-    $this->lastModifiedTime = $lastModifiedTime;
4322
+	$this->lastModifiedTime = $lastModifiedTime;
4323 4323
   }
4324 4324
   public function getLastModifiedTime()
4325 4325
   {
4326
-    return $this->lastModifiedTime;
4326
+	return $this->lastModifiedTime;
4327 4327
   }
4328 4328
   public function setLastModifierEmail($lastModifierEmail)
4329 4329
   {
4330
-    $this->lastModifierEmail = $lastModifierEmail;
4330
+	$this->lastModifierEmail = $lastModifierEmail;
4331 4331
   }
4332 4332
   public function getLastModifierEmail()
4333 4333
   {
4334
-    return $this->lastModifierEmail;
4334
+	return $this->lastModifierEmail;
4335 4335
   }
4336 4336
   public function setLayerType($layerType)
4337 4337
   {
4338
-    $this->layerType = $layerType;
4338
+	$this->layerType = $layerType;
4339 4339
   }
4340 4340
   public function getLayerType()
4341 4341
   {
4342
-    return $this->layerType;
4342
+	return $this->layerType;
4343 4343
   }
4344 4344
   public function setName($name)
4345 4345
   {
4346
-    $this->name = $name;
4346
+	$this->name = $name;
4347 4347
   }
4348 4348
   public function getName()
4349 4349
   {
4350
-    return $this->name;
4350
+	return $this->name;
4351 4351
   }
4352 4352
   public function setProcessingStatus($processingStatus)
4353 4353
   {
4354
-    $this->processingStatus = $processingStatus;
4354
+	$this->processingStatus = $processingStatus;
4355 4355
   }
4356 4356
   public function getProcessingStatus()
4357 4357
   {
4358
-    return $this->processingStatus;
4358
+	return $this->processingStatus;
4359 4359
   }
4360 4360
   public function setProjectId($projectId)
4361 4361
   {
4362
-    $this->projectId = $projectId;
4362
+	$this->projectId = $projectId;
4363 4363
   }
4364 4364
   public function getProjectId()
4365 4365
   {
4366
-    return $this->projectId;
4366
+	return $this->projectId;
4367 4367
   }
4368 4368
   public function setPublishedAccessList($publishedAccessList)
4369 4369
   {
4370
-    $this->publishedAccessList = $publishedAccessList;
4370
+	$this->publishedAccessList = $publishedAccessList;
4371 4371
   }
4372 4372
   public function getPublishedAccessList()
4373 4373
   {
4374
-    return $this->publishedAccessList;
4374
+	return $this->publishedAccessList;
4375 4375
   }
4376 4376
   public function setPublishingStatus($publishingStatus)
4377 4377
   {
4378
-    $this->publishingStatus = $publishingStatus;
4378
+	$this->publishingStatus = $publishingStatus;
4379 4379
   }
4380 4380
   public function getPublishingStatus()
4381 4381
   {
4382
-    return $this->publishingStatus;
4382
+	return $this->publishingStatus;
4383 4383
   }
4384 4384
   public function setStyle(Google_Service_MapsEngine_VectorStyle $style)
4385 4385
   {
4386
-    $this->style = $style;
4386
+	$this->style = $style;
4387 4387
   }
4388 4388
   public function getStyle()
4389 4389
   {
4390
-    return $this->style;
4390
+	return $this->style;
4391 4391
   }
4392 4392
   public function setTags($tags)
4393 4393
   {
4394
-    $this->tags = $tags;
4394
+	$this->tags = $tags;
4395 4395
   }
4396 4396
   public function getTags()
4397 4397
   {
4398
-    return $this->tags;
4398
+	return $this->tags;
4399 4399
   }
4400 4400
   public function setWritersCanEditPermissions($writersCanEditPermissions)
4401 4401
   {
4402
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
4402
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
4403 4403
   }
4404 4404
   public function getWritersCanEditPermissions()
4405 4405
   {
4406
-    return $this->writersCanEditPermissions;
4406
+	return $this->writersCanEditPermissions;
4407 4407
   }
4408 4408
 }
4409 4409
 
@@ -4419,19 +4419,19 @@  discard block
 block discarded – undo
4419 4419
 
4420 4420
   public function setLayers($layers)
4421 4421
   {
4422
-    $this->layers = $layers;
4422
+	$this->layers = $layers;
4423 4423
   }
4424 4424
   public function getLayers()
4425 4425
   {
4426
-    return $this->layers;
4426
+	return $this->layers;
4427 4427
   }
4428 4428
   public function setNextPageToken($nextPageToken)
4429 4429
   {
4430
-    $this->nextPageToken = $nextPageToken;
4430
+	$this->nextPageToken = $nextPageToken;
4431 4431
   }
4432 4432
   public function getNextPageToken()
4433 4433
   {
4434
-    return $this->nextPageToken;
4434
+	return $this->nextPageToken;
4435 4435
   }
4436 4436
 }
4437 4437
 
@@ -4451,35 +4451,35 @@  discard block
 block discarded – undo
4451 4451
 
4452 4452
   public function setBorder(Google_Service_MapsEngine_Border $border)
4453 4453
   {
4454
-    $this->border = $border;
4454
+	$this->border = $border;
4455 4455
   }
4456 4456
   public function getBorder()
4457 4457
   {
4458
-    return $this->border;
4458
+	return $this->border;
4459 4459
   }
4460 4460
   public function setDash($dash)
4461 4461
   {
4462
-    $this->dash = $dash;
4462
+	$this->dash = $dash;
4463 4463
   }
4464 4464
   public function getDash()
4465 4465
   {
4466
-    return $this->dash;
4466
+	return $this->dash;
4467 4467
   }
4468 4468
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
4469 4469
   {
4470
-    $this->label = $label;
4470
+	$this->label = $label;
4471 4471
   }
4472 4472
   public function getLabel()
4473 4473
   {
4474
-    return $this->label;
4474
+	return $this->label;
4475 4475
   }
4476 4476
   public function setStroke(Google_Service_MapsEngine_LineStyleStroke $stroke)
4477 4477
   {
4478
-    $this->stroke = $stroke;
4478
+	$this->stroke = $stroke;
4479 4479
   }
4480 4480
   public function getStroke()
4481 4481
   {
4482
-    return $this->stroke;
4482
+	return $this->stroke;
4483 4483
   }
4484 4484
 }
4485 4485
 
@@ -4494,27 +4494,27 @@  discard block
 block discarded – undo
4494 4494
 
4495 4495
   public function setColor($color)
4496 4496
   {
4497
-    $this->color = $color;
4497
+	$this->color = $color;
4498 4498
   }
4499 4499
   public function getColor()
4500 4500
   {
4501
-    return $this->color;
4501
+	return $this->color;
4502 4502
   }
4503 4503
   public function setOpacity($opacity)
4504 4504
   {
4505
-    $this->opacity = $opacity;
4505
+	$this->opacity = $opacity;
4506 4506
   }
4507 4507
   public function getOpacity()
4508 4508
   {
4509
-    return $this->opacity;
4509
+	return $this->opacity;
4510 4510
   }
4511 4511
   public function setWidth($width)
4512 4512
   {
4513
-    $this->width = $width;
4513
+	$this->width = $width;
4514 4514
   }
4515 4515
   public function getWidth()
4516 4516
   {
4517
-    return $this->width;
4517
+	return $this->width;
4518 4518
   }
4519 4519
 }
4520 4520
 
@@ -4547,155 +4547,155 @@  discard block
 block discarded – undo
4547 4547
 
4548 4548
   public function setBbox($bbox)
4549 4549
   {
4550
-    $this->bbox = $bbox;
4550
+	$this->bbox = $bbox;
4551 4551
   }
4552 4552
   public function getBbox()
4553 4553
   {
4554
-    return $this->bbox;
4554
+	return $this->bbox;
4555 4555
   }
4556 4556
   public function setContents(Google_Service_MapsEngine_MapItem $contents)
4557 4557
   {
4558
-    $this->contents = $contents;
4558
+	$this->contents = $contents;
4559 4559
   }
4560 4560
   public function getContents()
4561 4561
   {
4562
-    return $this->contents;
4562
+	return $this->contents;
4563 4563
   }
4564 4564
   public function setCreationTime($creationTime)
4565 4565
   {
4566
-    $this->creationTime = $creationTime;
4566
+	$this->creationTime = $creationTime;
4567 4567
   }
4568 4568
   public function getCreationTime()
4569 4569
   {
4570
-    return $this->creationTime;
4570
+	return $this->creationTime;
4571 4571
   }
4572 4572
   public function setCreatorEmail($creatorEmail)
4573 4573
   {
4574
-    $this->creatorEmail = $creatorEmail;
4574
+	$this->creatorEmail = $creatorEmail;
4575 4575
   }
4576 4576
   public function getCreatorEmail()
4577 4577
   {
4578
-    return $this->creatorEmail;
4578
+	return $this->creatorEmail;
4579 4579
   }
4580 4580
   public function setDefaultViewport($defaultViewport)
4581 4581
   {
4582
-    $this->defaultViewport = $defaultViewport;
4582
+	$this->defaultViewport = $defaultViewport;
4583 4583
   }
4584 4584
   public function getDefaultViewport()
4585 4585
   {
4586
-    return $this->defaultViewport;
4586
+	return $this->defaultViewport;
4587 4587
   }
4588 4588
   public function setDescription($description)
4589 4589
   {
4590
-    $this->description = $description;
4590
+	$this->description = $description;
4591 4591
   }
4592 4592
   public function getDescription()
4593 4593
   {
4594
-    return $this->description;
4594
+	return $this->description;
4595 4595
   }
4596 4596
   public function setDraftAccessList($draftAccessList)
4597 4597
   {
4598
-    $this->draftAccessList = $draftAccessList;
4598
+	$this->draftAccessList = $draftAccessList;
4599 4599
   }
4600 4600
   public function getDraftAccessList()
4601 4601
   {
4602
-    return $this->draftAccessList;
4602
+	return $this->draftAccessList;
4603 4603
   }
4604 4604
   public function setEtag($etag)
4605 4605
   {
4606
-    $this->etag = $etag;
4606
+	$this->etag = $etag;
4607 4607
   }
4608 4608
   public function getEtag()
4609 4609
   {
4610
-    return $this->etag;
4610
+	return $this->etag;
4611 4611
   }
4612 4612
   public function setId($id)
4613 4613
   {
4614
-    $this->id = $id;
4614
+	$this->id = $id;
4615 4615
   }
4616 4616
   public function getId()
4617 4617
   {
4618
-    return $this->id;
4618
+	return $this->id;
4619 4619
   }
4620 4620
   public function setLastModifiedTime($lastModifiedTime)
4621 4621
   {
4622
-    $this->lastModifiedTime = $lastModifiedTime;
4622
+	$this->lastModifiedTime = $lastModifiedTime;
4623 4623
   }
4624 4624
   public function getLastModifiedTime()
4625 4625
   {
4626
-    return $this->lastModifiedTime;
4626
+	return $this->lastModifiedTime;
4627 4627
   }
4628 4628
   public function setLastModifierEmail($lastModifierEmail)
4629 4629
   {
4630
-    $this->lastModifierEmail = $lastModifierEmail;
4630
+	$this->lastModifierEmail = $lastModifierEmail;
4631 4631
   }
4632 4632
   public function getLastModifierEmail()
4633 4633
   {
4634
-    return $this->lastModifierEmail;
4634
+	return $this->lastModifierEmail;
4635 4635
   }
4636 4636
   public function setName($name)
4637 4637
   {
4638
-    $this->name = $name;
4638
+	$this->name = $name;
4639 4639
   }
4640 4640
   public function getName()
4641 4641
   {
4642
-    return $this->name;
4642
+	return $this->name;
4643 4643
   }
4644 4644
   public function setProcessingStatus($processingStatus)
4645 4645
   {
4646
-    $this->processingStatus = $processingStatus;
4646
+	$this->processingStatus = $processingStatus;
4647 4647
   }
4648 4648
   public function getProcessingStatus()
4649 4649
   {
4650
-    return $this->processingStatus;
4650
+	return $this->processingStatus;
4651 4651
   }
4652 4652
   public function setProjectId($projectId)
4653 4653
   {
4654
-    $this->projectId = $projectId;
4654
+	$this->projectId = $projectId;
4655 4655
   }
4656 4656
   public function getProjectId()
4657 4657
   {
4658
-    return $this->projectId;
4658
+	return $this->projectId;
4659 4659
   }
4660 4660
   public function setPublishedAccessList($publishedAccessList)
4661 4661
   {
4662
-    $this->publishedAccessList = $publishedAccessList;
4662
+	$this->publishedAccessList = $publishedAccessList;
4663 4663
   }
4664 4664
   public function getPublishedAccessList()
4665 4665
   {
4666
-    return $this->publishedAccessList;
4666
+	return $this->publishedAccessList;
4667 4667
   }
4668 4668
   public function setPublishingStatus($publishingStatus)
4669 4669
   {
4670
-    $this->publishingStatus = $publishingStatus;
4670
+	$this->publishingStatus = $publishingStatus;
4671 4671
   }
4672 4672
   public function getPublishingStatus()
4673 4673
   {
4674
-    return $this->publishingStatus;
4674
+	return $this->publishingStatus;
4675 4675
   }
4676 4676
   public function setTags($tags)
4677 4677
   {
4678
-    $this->tags = $tags;
4678
+	$this->tags = $tags;
4679 4679
   }
4680 4680
   public function getTags()
4681 4681
   {
4682
-    return $this->tags;
4682
+	return $this->tags;
4683 4683
   }
4684 4684
   public function setVersions($versions)
4685 4685
   {
4686
-    $this->versions = $versions;
4686
+	$this->versions = $versions;
4687 4687
   }
4688 4688
   public function getVersions()
4689 4689
   {
4690
-    return $this->versions;
4690
+	return $this->versions;
4691 4691
   }
4692 4692
   public function setWritersCanEditPermissions($writersCanEditPermissions)
4693 4693
   {
4694
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
4694
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
4695 4695
   }
4696 4696
   public function getWritersCanEditPermissions()
4697 4697
   {
4698
-    return $this->writersCanEditPermissions;
4698
+	return $this->writersCanEditPermissions;
4699 4699
   }
4700 4700
 }
4701 4701
 
@@ -4713,56 +4713,56 @@  discard block
 block discarded – undo
4713 4713
   public $visibility;
4714 4714
   protected function gapiInit()
4715 4715
   {
4716
-    $this->type = 'folder';
4716
+	$this->type = 'folder';
4717 4717
   }
4718 4718
 
4719 4719
   public function setContents($contents)
4720 4720
   {
4721
-    $this->contents = $contents;
4721
+	$this->contents = $contents;
4722 4722
   }
4723 4723
   public function getContents()
4724 4724
   {
4725
-    return $this->contents;
4725
+	return $this->contents;
4726 4726
   }
4727 4727
   public function setDefaultViewport($defaultViewport)
4728 4728
   {
4729
-    $this->defaultViewport = $defaultViewport;
4729
+	$this->defaultViewport = $defaultViewport;
4730 4730
   }
4731 4731
   public function getDefaultViewport()
4732 4732
   {
4733
-    return $this->defaultViewport;
4733
+	return $this->defaultViewport;
4734 4734
   }
4735 4735
   public function setExpandable($expandable)
4736 4736
   {
4737
-    $this->expandable = $expandable;
4737
+	$this->expandable = $expandable;
4738 4738
   }
4739 4739
   public function getExpandable()
4740 4740
   {
4741
-    return $this->expandable;
4741
+	return $this->expandable;
4742 4742
   }
4743 4743
   public function setKey($key)
4744 4744
   {
4745
-    $this->key = $key;
4745
+	$this->key = $key;
4746 4746
   }
4747 4747
   public function getKey()
4748 4748
   {
4749
-    return $this->key;
4749
+	return $this->key;
4750 4750
   }
4751 4751
   public function setName($name)
4752 4752
   {
4753
-    $this->name = $name;
4753
+	$this->name = $name;
4754 4754
   }
4755 4755
   public function getName()
4756 4756
   {
4757
-    return $this->name;
4757
+	return $this->name;
4758 4758
   }
4759 4759
   public function setVisibility($visibility)
4760 4760
   {
4761
-    $this->visibility = $visibility;
4761
+	$this->visibility = $visibility;
4762 4762
   }
4763 4763
   public function getVisibility()
4764 4764
   {
4765
-    return $this->visibility;
4765
+	return $this->visibility;
4766 4766
   }
4767 4767
 }
4768 4768
 
@@ -4775,11 +4775,11 @@  discard block
 block discarded – undo
4775 4775
 
4776 4776
   public function setType($type)
4777 4777
   {
4778
-    $this->type = $type;
4778
+	$this->type = $type;
4779 4779
   }
4780 4780
   public function getType()
4781 4781
   {
4782
-    return $this->type;
4782
+	return $this->type;
4783 4783
   }
4784 4784
 }
4785 4785
 
@@ -4794,40 +4794,40 @@  discard block
 block discarded – undo
4794 4794
   public $visibility;
4795 4795
   protected function gapiInit()
4796 4796
   {
4797
-    $this->type = 'kmlLink';
4797
+	$this->type = 'kmlLink';
4798 4798
   }
4799 4799
 
4800 4800
   public function setDefaultViewport($defaultViewport)
4801 4801
   {
4802
-    $this->defaultViewport = $defaultViewport;
4802
+	$this->defaultViewport = $defaultViewport;
4803 4803
   }
4804 4804
   public function getDefaultViewport()
4805 4805
   {
4806
-    return $this->defaultViewport;
4806
+	return $this->defaultViewport;
4807 4807
   }
4808 4808
   public function setKmlUrl($kmlUrl)
4809 4809
   {
4810
-    $this->kmlUrl = $kmlUrl;
4810
+	$this->kmlUrl = $kmlUrl;
4811 4811
   }
4812 4812
   public function getKmlUrl()
4813 4813
   {
4814
-    return $this->kmlUrl;
4814
+	return $this->kmlUrl;
4815 4815
   }
4816 4816
   public function setName($name)
4817 4817
   {
4818
-    $this->name = $name;
4818
+	$this->name = $name;
4819 4819
   }
4820 4820
   public function getName()
4821 4821
   {
4822
-    return $this->name;
4822
+	return $this->name;
4823 4823
   }
4824 4824
   public function setVisibility($visibility)
4825 4825
   {
4826
-    $this->visibility = $visibility;
4826
+	$this->visibility = $visibility;
4827 4827
   }
4828 4828
   public function getVisibility()
4829 4829
   {
4830
-    return $this->visibility;
4830
+	return $this->visibility;
4831 4831
   }
4832 4832
 }
4833 4833
 
@@ -4843,48 +4843,48 @@  discard block
 block discarded – undo
4843 4843
   public $visibility;
4844 4844
   protected function gapiInit()
4845 4845
   {
4846
-    $this->type = 'layer';
4846
+	$this->type = 'layer';
4847 4847
   }
4848 4848
 
4849 4849
   public function setDefaultViewport($defaultViewport)
4850 4850
   {
4851
-    $this->defaultViewport = $defaultViewport;
4851
+	$this->defaultViewport = $defaultViewport;
4852 4852
   }
4853 4853
   public function getDefaultViewport()
4854 4854
   {
4855
-    return $this->defaultViewport;
4855
+	return $this->defaultViewport;
4856 4856
   }
4857 4857
   public function setId($id)
4858 4858
   {
4859
-    $this->id = $id;
4859
+	$this->id = $id;
4860 4860
   }
4861 4861
   public function getId()
4862 4862
   {
4863
-    return $this->id;
4863
+	return $this->id;
4864 4864
   }
4865 4865
   public function setKey($key)
4866 4866
   {
4867
-    $this->key = $key;
4867
+	$this->key = $key;
4868 4868
   }
4869 4869
   public function getKey()
4870 4870
   {
4871
-    return $this->key;
4871
+	return $this->key;
4872 4872
   }
4873 4873
   public function setName($name)
4874 4874
   {
4875
-    $this->name = $name;
4875
+	$this->name = $name;
4876 4876
   }
4877 4877
   public function getName()
4878 4878
   {
4879
-    return $this->name;
4879
+	return $this->name;
4880 4880
   }
4881 4881
   public function setVisibility($visibility)
4882 4882
   {
4883
-    $this->visibility = $visibility;
4883
+	$this->visibility = $visibility;
4884 4884
   }
4885 4885
   public function getVisibility()
4886 4886
   {
4887
-    return $this->visibility;
4887
+	return $this->visibility;
4888 4888
   }
4889 4889
 }
4890 4890
 
@@ -4900,19 +4900,19 @@  discard block
 block discarded – undo
4900 4900
 
4901 4901
   public function setMaps($maps)
4902 4902
   {
4903
-    $this->maps = $maps;
4903
+	$this->maps = $maps;
4904 4904
   }
4905 4905
   public function getMaps()
4906 4906
   {
4907
-    return $this->maps;
4907
+	return $this->maps;
4908 4908
   }
4909 4909
   public function setNextPageToken($nextPageToken)
4910 4910
   {
4911
-    $this->nextPageToken = $nextPageToken;
4911
+	$this->nextPageToken = $nextPageToken;
4912 4912
   }
4913 4913
   public function getNextPageToken()
4914 4914
   {
4915
-    return $this->nextPageToken;
4915
+	return $this->nextPageToken;
4916 4916
   }
4917 4917
 }
4918 4918
 
@@ -4927,27 +4927,27 @@  discard block
 block discarded – undo
4927 4927
 
4928 4928
   public function setFilename($filename)
4929 4929
   {
4930
-    $this->filename = $filename;
4930
+	$this->filename = $filename;
4931 4931
   }
4932 4932
   public function getFilename()
4933 4933
   {
4934
-    return $this->filename;
4934
+	return $this->filename;
4935 4935
   }
4936 4936
   public function setSize($size)
4937 4937
   {
4938
-    $this->size = $size;
4938
+	$this->size = $size;
4939 4939
   }
4940 4940
   public function getSize()
4941 4941
   {
4942
-    return $this->size;
4942
+	return $this->size;
4943 4943
   }
4944 4944
   public function setUploadStatus($uploadStatus)
4945 4945
   {
4946
-    $this->uploadStatus = $uploadStatus;
4946
+	$this->uploadStatus = $uploadStatus;
4947 4947
   }
4948 4948
   public function getUploadStatus()
4949 4949
   {
4950
-    return $this->uploadStatus;
4950
+	return $this->uploadStatus;
4951 4951
   }
4952 4952
 }
4953 4953
 
@@ -4960,11 +4960,11 @@  discard block
 block discarded – undo
4960 4960
 
4961 4961
   public function setId($id)
4962 4962
   {
4963
-    $this->id = $id;
4963
+	$this->id = $id;
4964 4964
   }
4965 4965
   public function getId()
4966 4966
   {
4967
-    return $this->id;
4967
+	return $this->id;
4968 4968
   }
4969 4969
 }
4970 4970
 
@@ -4980,19 +4980,19 @@  discard block
 block discarded – undo
4980 4980
 
4981 4981
   public function setNextPageToken($nextPageToken)
4982 4982
   {
4983
-    $this->nextPageToken = $nextPageToken;
4983
+	$this->nextPageToken = $nextPageToken;
4984 4984
   }
4985 4985
   public function getNextPageToken()
4986 4986
   {
4987
-    return $this->nextPageToken;
4987
+	return $this->nextPageToken;
4988 4988
   }
4989 4989
   public function setParents($parents)
4990 4990
   {
4991
-    $this->parents = $parents;
4991
+	$this->parents = $parents;
4992 4992
   }
4993 4993
   public function getParents()
4994 4994
   {
4995
-    return $this->parents;
4995
+	return $this->parents;
4996 4996
   }
4997 4997
 }
4998 4998
 
@@ -5008,35 +5008,35 @@  discard block
 block discarded – undo
5008 5008
 
5009 5009
   public function setDiscoverable($discoverable)
5010 5010
   {
5011
-    $this->discoverable = $discoverable;
5011
+	$this->discoverable = $discoverable;
5012 5012
   }
5013 5013
   public function getDiscoverable()
5014 5014
   {
5015
-    return $this->discoverable;
5015
+	return $this->discoverable;
5016 5016
   }
5017 5017
   public function setId($id)
5018 5018
   {
5019
-    $this->id = $id;
5019
+	$this->id = $id;
5020 5020
   }
5021 5021
   public function getId()
5022 5022
   {
5023
-    return $this->id;
5023
+	return $this->id;
5024 5024
   }
5025 5025
   public function setRole($role)
5026 5026
   {
5027
-    $this->role = $role;
5027
+	$this->role = $role;
5028 5028
   }
5029 5029
   public function getRole()
5030 5030
   {
5031
-    return $this->role;
5031
+	return $this->role;
5032 5032
   }
5033 5033
   public function setType($type)
5034 5034
   {
5035
-    $this->type = $type;
5035
+	$this->type = $type;
5036 5036
   }
5037 5037
   public function getType()
5038 5038
   {
5039
-    return $this->type;
5039
+	return $this->type;
5040 5040
   }
5041 5041
 }
5042 5042
 
@@ -5050,11 +5050,11 @@  discard block
 block discarded – undo
5050 5050
 
5051 5051
   public function setIds($ids)
5052 5052
   {
5053
-    $this->ids = $ids;
5053
+	$this->ids = $ids;
5054 5054
   }
5055 5055
   public function getIds()
5056 5056
   {
5057
-    return $this->ids;
5057
+	return $this->ids;
5058 5058
   }
5059 5059
 }
5060 5060
 
@@ -5073,11 +5073,11 @@  discard block
 block discarded – undo
5073 5073
 
5074 5074
   public function setPermissions($permissions)
5075 5075
   {
5076
-    $this->permissions = $permissions;
5076
+	$this->permissions = $permissions;
5077 5077
   }
5078 5078
   public function getPermissions()
5079 5079
   {
5080
-    return $this->permissions;
5080
+	return $this->permissions;
5081 5081
   }
5082 5082
 }
5083 5083
 
@@ -5096,11 +5096,11 @@  discard block
 block discarded – undo
5096 5096
 
5097 5097
   public function setPermissions($permissions)
5098 5098
   {
5099
-    $this->permissions = $permissions;
5099
+	$this->permissions = $permissions;
5100 5100
   }
5101 5101
   public function getPermissions()
5102 5102
   {
5103
-    return $this->permissions;
5103
+	return $this->permissions;
5104 5104
   }
5105 5105
 }
5106 5106
 
@@ -5116,19 +5116,19 @@  discard block
 block discarded – undo
5116 5116
 
5117 5117
   public function setIcon(Google_Service_MapsEngine_IconStyle $icon)
5118 5118
   {
5119
-    $this->icon = $icon;
5119
+	$this->icon = $icon;
5120 5120
   }
5121 5121
   public function getIcon()
5122 5122
   {
5123
-    return $this->icon;
5123
+	return $this->icon;
5124 5124
   }
5125 5125
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
5126 5126
   {
5127
-    $this->label = $label;
5127
+	$this->label = $label;
5128 5128
   }
5129 5129
   public function getLabel()
5130 5130
   {
5131
-    return $this->label;
5131
+	return $this->label;
5132 5132
   }
5133 5133
 }
5134 5134
 
@@ -5146,27 +5146,27 @@  discard block
 block discarded – undo
5146 5146
 
5147 5147
   public function setFill(Google_Service_MapsEngine_Color $fill)
5148 5148
   {
5149
-    $this->fill = $fill;
5149
+	$this->fill = $fill;
5150 5150
   }
5151 5151
   public function getFill()
5152 5152
   {
5153
-    return $this->fill;
5153
+	return $this->fill;
5154 5154
   }
5155 5155
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
5156 5156
   {
5157
-    $this->label = $label;
5157
+	$this->label = $label;
5158 5158
   }
5159 5159
   public function getLabel()
5160 5160
   {
5161
-    return $this->label;
5161
+	return $this->label;
5162 5162
   }
5163 5163
   public function setStroke(Google_Service_MapsEngine_Border $stroke)
5164 5164
   {
5165
-    $this->stroke = $stroke;
5165
+	$this->stroke = $stroke;
5166 5166
   }
5167 5167
   public function getStroke()
5168 5168
   {
5169
-    return $this->stroke;
5169
+	return $this->stroke;
5170 5170
   }
5171 5171
 }
5172 5172
 
@@ -5184,19 +5184,19 @@  discard block
 block discarded – undo
5184 5184
 
5185 5185
   public function setId($id)
5186 5186
   {
5187
-    $this->id = $id;
5187
+	$this->id = $id;
5188 5188
   }
5189 5189
   public function getId()
5190 5190
   {
5191
-    return $this->id;
5191
+	return $this->id;
5192 5192
   }
5193 5193
   public function setName($name)
5194 5194
   {
5195
-    $this->name = $name;
5195
+	$this->name = $name;
5196 5196
   }
5197 5197
   public function getName()
5198 5198
   {
5199
-    return $this->name;
5199
+	return $this->name;
5200 5200
   }
5201 5201
 }
5202 5202
 
@@ -5211,11 +5211,11 @@  discard block
 block discarded – undo
5211 5211
 
5212 5212
   public function setProjects($projects)
5213 5213
   {
5214
-    $this->projects = $projects;
5214
+	$this->projects = $projects;
5215 5215
   }
5216 5216
   public function getProjects()
5217 5217
   {
5218
-    return $this->projects;
5218
+	return $this->projects;
5219 5219
   }
5220 5220
 }
5221 5221
 
@@ -5236,43 +5236,43 @@  discard block
 block discarded – undo
5236 5236
 
5237 5237
   public function setDescription($description)
5238 5238
   {
5239
-    $this->description = $description;
5239
+	$this->description = $description;
5240 5240
   }
5241 5241
   public function getDescription()
5242 5242
   {
5243
-    return $this->description;
5243
+	return $this->description;
5244 5244
   }
5245 5245
   public function setId($id)
5246 5246
   {
5247
-    $this->id = $id;
5247
+	$this->id = $id;
5248 5248
   }
5249 5249
   public function getId()
5250 5250
   {
5251
-    return $this->id;
5251
+	return $this->id;
5252 5252
   }
5253 5253
   public function setLayerType($layerType)
5254 5254
   {
5255
-    $this->layerType = $layerType;
5255
+	$this->layerType = $layerType;
5256 5256
   }
5257 5257
   public function getLayerType()
5258 5258
   {
5259
-    return $this->layerType;
5259
+	return $this->layerType;
5260 5260
   }
5261 5261
   public function setName($name)
5262 5262
   {
5263
-    $this->name = $name;
5263
+	$this->name = $name;
5264 5264
   }
5265 5265
   public function getName()
5266 5266
   {
5267
-    return $this->name;
5267
+	return $this->name;
5268 5268
   }
5269 5269
   public function setProjectId($projectId)
5270 5270
   {
5271
-    $this->projectId = $projectId;
5271
+	$this->projectId = $projectId;
5272 5272
   }
5273 5273
   public function getProjectId()
5274 5274
   {
5275
-    return $this->projectId;
5275
+	return $this->projectId;
5276 5276
   }
5277 5277
 }
5278 5278
 
@@ -5288,19 +5288,19 @@  discard block
 block discarded – undo
5288 5288
 
5289 5289
   public function setLayers($layers)
5290 5290
   {
5291
-    $this->layers = $layers;
5291
+	$this->layers = $layers;
5292 5292
   }
5293 5293
   public function getLayers()
5294 5294
   {
5295
-    return $this->layers;
5295
+	return $this->layers;
5296 5296
   }
5297 5297
   public function setNextPageToken($nextPageToken)
5298 5298
   {
5299
-    $this->nextPageToken = $nextPageToken;
5299
+	$this->nextPageToken = $nextPageToken;
5300 5300
   }
5301 5301
   public function getNextPageToken()
5302 5302
   {
5303
-    return $this->nextPageToken;
5303
+	return $this->nextPageToken;
5304 5304
   }
5305 5305
 }
5306 5306
 
@@ -5319,51 +5319,51 @@  discard block
 block discarded – undo
5319 5319
 
5320 5320
   public function setContents(Google_Service_MapsEngine_MapItem $contents)
5321 5321
   {
5322
-    $this->contents = $contents;
5322
+	$this->contents = $contents;
5323 5323
   }
5324 5324
   public function getContents()
5325 5325
   {
5326
-    return $this->contents;
5326
+	return $this->contents;
5327 5327
   }
5328 5328
   public function setDefaultViewport($defaultViewport)
5329 5329
   {
5330
-    $this->defaultViewport = $defaultViewport;
5330
+	$this->defaultViewport = $defaultViewport;
5331 5331
   }
5332 5332
   public function getDefaultViewport()
5333 5333
   {
5334
-    return $this->defaultViewport;
5334
+	return $this->defaultViewport;
5335 5335
   }
5336 5336
   public function setDescription($description)
5337 5337
   {
5338
-    $this->description = $description;
5338
+	$this->description = $description;
5339 5339
   }
5340 5340
   public function getDescription()
5341 5341
   {
5342
-    return $this->description;
5342
+	return $this->description;
5343 5343
   }
5344 5344
   public function setId($id)
5345 5345
   {
5346
-    $this->id = $id;
5346
+	$this->id = $id;
5347 5347
   }
5348 5348
   public function getId()
5349 5349
   {
5350
-    return $this->id;
5350
+	return $this->id;
5351 5351
   }
5352 5352
   public function setName($name)
5353 5353
   {
5354
-    $this->name = $name;
5354
+	$this->name = $name;
5355 5355
   }
5356 5356
   public function getName()
5357 5357
   {
5358
-    return $this->name;
5358
+	return $this->name;
5359 5359
   }
5360 5360
   public function setProjectId($projectId)
5361 5361
   {
5362
-    $this->projectId = $projectId;
5362
+	$this->projectId = $projectId;
5363 5363
   }
5364 5364
   public function getProjectId()
5365 5365
   {
5366
-    return $this->projectId;
5366
+	return $this->projectId;
5367 5367
   }
5368 5368
 }
5369 5369
 
@@ -5379,19 +5379,19 @@  discard block
 block discarded – undo
5379 5379
 
5380 5380
   public function setMaps($maps)
5381 5381
   {
5382
-    $this->maps = $maps;
5382
+	$this->maps = $maps;
5383 5383
   }
5384 5384
   public function getMaps()
5385 5385
   {
5386
-    return $this->maps;
5386
+	return $this->maps;
5387 5387
   }
5388 5388
   public function setNextPageToken($nextPageToken)
5389 5389
   {
5390
-    $this->nextPageToken = $nextPageToken;
5390
+	$this->nextPageToken = $nextPageToken;
5391 5391
   }
5392 5392
   public function getNextPageToken()
5393 5393
   {
5394
-    return $this->nextPageToken;
5394
+	return $this->nextPageToken;
5395 5395
   }
5396 5396
 }
5397 5397
 
@@ -5425,155 +5425,155 @@  discard block
 block discarded – undo
5425 5425
 
5426 5426
   public function setAcquisitionTime(Google_Service_MapsEngine_AcquisitionTime $acquisitionTime)
5427 5427
   {
5428
-    $this->acquisitionTime = $acquisitionTime;
5428
+	$this->acquisitionTime = $acquisitionTime;
5429 5429
   }
5430 5430
   public function getAcquisitionTime()
5431 5431
   {
5432
-    return $this->acquisitionTime;
5432
+	return $this->acquisitionTime;
5433 5433
   }
5434 5434
   public function setAttribution($attribution)
5435 5435
   {
5436
-    $this->attribution = $attribution;
5436
+	$this->attribution = $attribution;
5437 5437
   }
5438 5438
   public function getAttribution()
5439 5439
   {
5440
-    return $this->attribution;
5440
+	return $this->attribution;
5441 5441
   }
5442 5442
   public function setBbox($bbox)
5443 5443
   {
5444
-    $this->bbox = $bbox;
5444
+	$this->bbox = $bbox;
5445 5445
   }
5446 5446
   public function getBbox()
5447 5447
   {
5448
-    return $this->bbox;
5448
+	return $this->bbox;
5449 5449
   }
5450 5450
   public function setCreationTime($creationTime)
5451 5451
   {
5452
-    $this->creationTime = $creationTime;
5452
+	$this->creationTime = $creationTime;
5453 5453
   }
5454 5454
   public function getCreationTime()
5455 5455
   {
5456
-    return $this->creationTime;
5456
+	return $this->creationTime;
5457 5457
   }
5458 5458
   public function setCreatorEmail($creatorEmail)
5459 5459
   {
5460
-    $this->creatorEmail = $creatorEmail;
5460
+	$this->creatorEmail = $creatorEmail;
5461 5461
   }
5462 5462
   public function getCreatorEmail()
5463 5463
   {
5464
-    return $this->creatorEmail;
5464
+	return $this->creatorEmail;
5465 5465
   }
5466 5466
   public function setDescription($description)
5467 5467
   {
5468
-    $this->description = $description;
5468
+	$this->description = $description;
5469 5469
   }
5470 5470
   public function getDescription()
5471 5471
   {
5472
-    return $this->description;
5472
+	return $this->description;
5473 5473
   }
5474 5474
   public function setDraftAccessList($draftAccessList)
5475 5475
   {
5476
-    $this->draftAccessList = $draftAccessList;
5476
+	$this->draftAccessList = $draftAccessList;
5477 5477
   }
5478 5478
   public function getDraftAccessList()
5479 5479
   {
5480
-    return $this->draftAccessList;
5480
+	return $this->draftAccessList;
5481 5481
   }
5482 5482
   public function setEtag($etag)
5483 5483
   {
5484
-    $this->etag = $etag;
5484
+	$this->etag = $etag;
5485 5485
   }
5486 5486
   public function getEtag()
5487 5487
   {
5488
-    return $this->etag;
5488
+	return $this->etag;
5489 5489
   }
5490 5490
   public function setFiles($files)
5491 5491
   {
5492
-    $this->files = $files;
5492
+	$this->files = $files;
5493 5493
   }
5494 5494
   public function getFiles()
5495 5495
   {
5496
-    return $this->files;
5496
+	return $this->files;
5497 5497
   }
5498 5498
   public function setId($id)
5499 5499
   {
5500
-    $this->id = $id;
5500
+	$this->id = $id;
5501 5501
   }
5502 5502
   public function getId()
5503 5503
   {
5504
-    return $this->id;
5504
+	return $this->id;
5505 5505
   }
5506 5506
   public function setLastModifiedTime($lastModifiedTime)
5507 5507
   {
5508
-    $this->lastModifiedTime = $lastModifiedTime;
5508
+	$this->lastModifiedTime = $lastModifiedTime;
5509 5509
   }
5510 5510
   public function getLastModifiedTime()
5511 5511
   {
5512
-    return $this->lastModifiedTime;
5512
+	return $this->lastModifiedTime;
5513 5513
   }
5514 5514
   public function setLastModifierEmail($lastModifierEmail)
5515 5515
   {
5516
-    $this->lastModifierEmail = $lastModifierEmail;
5516
+	$this->lastModifierEmail = $lastModifierEmail;
5517 5517
   }
5518 5518
   public function getLastModifierEmail()
5519 5519
   {
5520
-    return $this->lastModifierEmail;
5520
+	return $this->lastModifierEmail;
5521 5521
   }
5522 5522
   public function setMaskType($maskType)
5523 5523
   {
5524
-    $this->maskType = $maskType;
5524
+	$this->maskType = $maskType;
5525 5525
   }
5526 5526
   public function getMaskType()
5527 5527
   {
5528
-    return $this->maskType;
5528
+	return $this->maskType;
5529 5529
   }
5530 5530
   public function setName($name)
5531 5531
   {
5532
-    $this->name = $name;
5532
+	$this->name = $name;
5533 5533
   }
5534 5534
   public function getName()
5535 5535
   {
5536
-    return $this->name;
5536
+	return $this->name;
5537 5537
   }
5538 5538
   public function setProcessingStatus($processingStatus)
5539 5539
   {
5540
-    $this->processingStatus = $processingStatus;
5540
+	$this->processingStatus = $processingStatus;
5541 5541
   }
5542 5542
   public function getProcessingStatus()
5543 5543
   {
5544
-    return $this->processingStatus;
5544
+	return $this->processingStatus;
5545 5545
   }
5546 5546
   public function setProjectId($projectId)
5547 5547
   {
5548
-    $this->projectId = $projectId;
5548
+	$this->projectId = $projectId;
5549 5549
   }
5550 5550
   public function getProjectId()
5551 5551
   {
5552
-    return $this->projectId;
5552
+	return $this->projectId;
5553 5553
   }
5554 5554
   public function setRasterType($rasterType)
5555 5555
   {
5556
-    $this->rasterType = $rasterType;
5556
+	$this->rasterType = $rasterType;
5557 5557
   }
5558 5558
   public function getRasterType()
5559 5559
   {
5560
-    return $this->rasterType;
5560
+	return $this->rasterType;
5561 5561
   }
5562 5562
   public function setTags($tags)
5563 5563
   {
5564
-    $this->tags = $tags;
5564
+	$this->tags = $tags;
5565 5565
   }
5566 5566
   public function getTags()
5567 5567
   {
5568
-    return $this->tags;
5568
+	return $this->tags;
5569 5569
   }
5570 5570
   public function setWritersCanEditPermissions($writersCanEditPermissions)
5571 5571
   {
5572
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
5572
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
5573 5573
   }
5574 5574
   public function getWritersCanEditPermissions()
5575 5575
   {
5576
-    return $this->writersCanEditPermissions;
5576
+	return $this->writersCanEditPermissions;
5577 5577
   }
5578 5578
 }
5579 5579
 
@@ -5603,139 +5603,139 @@  discard block
 block discarded – undo
5603 5603
 
5604 5604
   public function setAttribution($attribution)
5605 5605
   {
5606
-    $this->attribution = $attribution;
5606
+	$this->attribution = $attribution;
5607 5607
   }
5608 5608
   public function getAttribution()
5609 5609
   {
5610
-    return $this->attribution;
5610
+	return $this->attribution;
5611 5611
   }
5612 5612
   public function setBbox($bbox)
5613 5613
   {
5614
-    $this->bbox = $bbox;
5614
+	$this->bbox = $bbox;
5615 5615
   }
5616 5616
   public function getBbox()
5617 5617
   {
5618
-    return $this->bbox;
5618
+	return $this->bbox;
5619 5619
   }
5620 5620
   public function setCreationTime($creationTime)
5621 5621
   {
5622
-    $this->creationTime = $creationTime;
5622
+	$this->creationTime = $creationTime;
5623 5623
   }
5624 5624
   public function getCreationTime()
5625 5625
   {
5626
-    return $this->creationTime;
5626
+	return $this->creationTime;
5627 5627
   }
5628 5628
   public function setCreatorEmail($creatorEmail)
5629 5629
   {
5630
-    $this->creatorEmail = $creatorEmail;
5630
+	$this->creatorEmail = $creatorEmail;
5631 5631
   }
5632 5632
   public function getCreatorEmail()
5633 5633
   {
5634
-    return $this->creatorEmail;
5634
+	return $this->creatorEmail;
5635 5635
   }
5636 5636
   public function setDescription($description)
5637 5637
   {
5638
-    $this->description = $description;
5638
+	$this->description = $description;
5639 5639
   }
5640 5640
   public function getDescription()
5641 5641
   {
5642
-    return $this->description;
5642
+	return $this->description;
5643 5643
   }
5644 5644
   public function setDraftAccessList($draftAccessList)
5645 5645
   {
5646
-    $this->draftAccessList = $draftAccessList;
5646
+	$this->draftAccessList = $draftAccessList;
5647 5647
   }
5648 5648
   public function getDraftAccessList()
5649 5649
   {
5650
-    return $this->draftAccessList;
5650
+	return $this->draftAccessList;
5651 5651
   }
5652 5652
   public function setEtag($etag)
5653 5653
   {
5654
-    $this->etag = $etag;
5654
+	$this->etag = $etag;
5655 5655
   }
5656 5656
   public function getEtag()
5657 5657
   {
5658
-    return $this->etag;
5658
+	return $this->etag;
5659 5659
   }
5660 5660
   public function setId($id)
5661 5661
   {
5662
-    $this->id = $id;
5662
+	$this->id = $id;
5663 5663
   }
5664 5664
   public function getId()
5665 5665
   {
5666
-    return $this->id;
5666
+	return $this->id;
5667 5667
   }
5668 5668
   public function setLastModifiedTime($lastModifiedTime)
5669 5669
   {
5670
-    $this->lastModifiedTime = $lastModifiedTime;
5670
+	$this->lastModifiedTime = $lastModifiedTime;
5671 5671
   }
5672 5672
   public function getLastModifiedTime()
5673 5673
   {
5674
-    return $this->lastModifiedTime;
5674
+	return $this->lastModifiedTime;
5675 5675
   }
5676 5676
   public function setLastModifierEmail($lastModifierEmail)
5677 5677
   {
5678
-    $this->lastModifierEmail = $lastModifierEmail;
5678
+	$this->lastModifierEmail = $lastModifierEmail;
5679 5679
   }
5680 5680
   public function getLastModifierEmail()
5681 5681
   {
5682
-    return $this->lastModifierEmail;
5682
+	return $this->lastModifierEmail;
5683 5683
   }
5684 5684
   public function setMosaic($mosaic)
5685 5685
   {
5686
-    $this->mosaic = $mosaic;
5686
+	$this->mosaic = $mosaic;
5687 5687
   }
5688 5688
   public function getMosaic()
5689 5689
   {
5690
-    return $this->mosaic;
5690
+	return $this->mosaic;
5691 5691
   }
5692 5692
   public function setName($name)
5693 5693
   {
5694
-    $this->name = $name;
5694
+	$this->name = $name;
5695 5695
   }
5696 5696
   public function getName()
5697 5697
   {
5698
-    return $this->name;
5698
+	return $this->name;
5699 5699
   }
5700 5700
   public function setProcessingStatus($processingStatus)
5701 5701
   {
5702
-    $this->processingStatus = $processingStatus;
5702
+	$this->processingStatus = $processingStatus;
5703 5703
   }
5704 5704
   public function getProcessingStatus()
5705 5705
   {
5706
-    return $this->processingStatus;
5706
+	return $this->processingStatus;
5707 5707
   }
5708 5708
   public function setProjectId($projectId)
5709 5709
   {
5710
-    $this->projectId = $projectId;
5710
+	$this->projectId = $projectId;
5711 5711
   }
5712 5712
   public function getProjectId()
5713 5713
   {
5714
-    return $this->projectId;
5714
+	return $this->projectId;
5715 5715
   }
5716 5716
   public function setRasterType($rasterType)
5717 5717
   {
5718
-    $this->rasterType = $rasterType;
5718
+	$this->rasterType = $rasterType;
5719 5719
   }
5720 5720
   public function getRasterType()
5721 5721
   {
5722
-    return $this->rasterType;
5722
+	return $this->rasterType;
5723 5723
   }
5724 5724
   public function setTags($tags)
5725 5725
   {
5726
-    $this->tags = $tags;
5726
+	$this->tags = $tags;
5727 5727
   }
5728 5728
   public function getTags()
5729 5729
   {
5730
-    return $this->tags;
5730
+	return $this->tags;
5731 5731
   }
5732 5732
   public function setWritersCanEditPermissions($writersCanEditPermissions)
5733 5733
   {
5734
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
5734
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
5735 5735
   }
5736 5736
   public function getWritersCanEditPermissions()
5737 5737
   {
5738
-    return $this->writersCanEditPermissions;
5738
+	return $this->writersCanEditPermissions;
5739 5739
   }
5740 5740
 }
5741 5741
 
@@ -5751,19 +5751,19 @@  discard block
 block discarded – undo
5751 5751
 
5752 5752
   public function setNextPageToken($nextPageToken)
5753 5753
   {
5754
-    $this->nextPageToken = $nextPageToken;
5754
+	$this->nextPageToken = $nextPageToken;
5755 5755
   }
5756 5756
   public function getNextPageToken()
5757 5757
   {
5758
-    return $this->nextPageToken;
5758
+	return $this->nextPageToken;
5759 5759
   }
5760 5760
   public function setRasterCollections($rasterCollections)
5761 5761
   {
5762
-    $this->rasterCollections = $rasterCollections;
5762
+	$this->rasterCollections = $rasterCollections;
5763 5763
   }
5764 5764
   public function getRasterCollections()
5765 5765
   {
5766
-    return $this->rasterCollections;
5766
+	return $this->rasterCollections;
5767 5767
   }
5768 5768
 }
5769 5769
 
@@ -5785,75 +5785,75 @@  discard block
 block discarded – undo
5785 5785
 
5786 5786
   public function setBbox($bbox)
5787 5787
   {
5788
-    $this->bbox = $bbox;
5788
+	$this->bbox = $bbox;
5789 5789
   }
5790 5790
   public function getBbox()
5791 5791
   {
5792
-    return $this->bbox;
5792
+	return $this->bbox;
5793 5793
   }
5794 5794
   public function setCreationTime($creationTime)
5795 5795
   {
5796
-    $this->creationTime = $creationTime;
5796
+	$this->creationTime = $creationTime;
5797 5797
   }
5798 5798
   public function getCreationTime()
5799 5799
   {
5800
-    return $this->creationTime;
5800
+	return $this->creationTime;
5801 5801
   }
5802 5802
   public function setDescription($description)
5803 5803
   {
5804
-    $this->description = $description;
5804
+	$this->description = $description;
5805 5805
   }
5806 5806
   public function getDescription()
5807 5807
   {
5808
-    return $this->description;
5808
+	return $this->description;
5809 5809
   }
5810 5810
   public function setId($id)
5811 5811
   {
5812
-    $this->id = $id;
5812
+	$this->id = $id;
5813 5813
   }
5814 5814
   public function getId()
5815 5815
   {
5816
-    return $this->id;
5816
+	return $this->id;
5817 5817
   }
5818 5818
   public function setLastModifiedTime($lastModifiedTime)
5819 5819
   {
5820
-    $this->lastModifiedTime = $lastModifiedTime;
5820
+	$this->lastModifiedTime = $lastModifiedTime;
5821 5821
   }
5822 5822
   public function getLastModifiedTime()
5823 5823
   {
5824
-    return $this->lastModifiedTime;
5824
+	return $this->lastModifiedTime;
5825 5825
   }
5826 5826
   public function setName($name)
5827 5827
   {
5828
-    $this->name = $name;
5828
+	$this->name = $name;
5829 5829
   }
5830 5830
   public function getName()
5831 5831
   {
5832
-    return $this->name;
5832
+	return $this->name;
5833 5833
   }
5834 5834
   public function setProjectId($projectId)
5835 5835
   {
5836
-    $this->projectId = $projectId;
5836
+	$this->projectId = $projectId;
5837 5837
   }
5838 5838
   public function getProjectId()
5839 5839
   {
5840
-    return $this->projectId;
5840
+	return $this->projectId;
5841 5841
   }
5842 5842
   public function setRasterType($rasterType)
5843 5843
   {
5844
-    $this->rasterType = $rasterType;
5844
+	$this->rasterType = $rasterType;
5845 5845
   }
5846 5846
   public function getRasterType()
5847 5847
   {
5848
-    return $this->rasterType;
5848
+	return $this->rasterType;
5849 5849
   }
5850 5850
   public function setTags($tags)
5851 5851
   {
5852
-    $this->tags = $tags;
5852
+	$this->tags = $tags;
5853 5853
   }
5854 5854
   public function getTags()
5855 5855
   {
5856
-    return $this->tags;
5856
+	return $this->tags;
5857 5857
   }
5858 5858
 }
5859 5859
 
@@ -5867,11 +5867,11 @@  discard block
 block discarded – undo
5867 5867
 
5868 5868
   public function setIds($ids)
5869 5869
   {
5870
-    $this->ids = $ids;
5870
+	$this->ids = $ids;
5871 5871
   }
5872 5872
   public function getIds()
5873 5873
   {
5874
-    return $this->ids;
5874
+	return $this->ids;
5875 5875
   }
5876 5876
 }
5877 5877
 
@@ -5889,11 +5889,11 @@  discard block
 block discarded – undo
5889 5889
 
5890 5890
   public function setIds($ids)
5891 5891
   {
5892
-    $this->ids = $ids;
5892
+	$this->ids = $ids;
5893 5893
   }
5894 5894
   public function getIds()
5895 5895
   {
5896
-    return $this->ids;
5896
+	return $this->ids;
5897 5897
   }
5898 5898
 }
5899 5899
 
@@ -5913,19 +5913,19 @@  discard block
 block discarded – undo
5913 5913
 
5914 5914
   public function setNextPageToken($nextPageToken)
5915 5915
   {
5916
-    $this->nextPageToken = $nextPageToken;
5916
+	$this->nextPageToken = $nextPageToken;
5917 5917
   }
5918 5918
   public function getNextPageToken()
5919 5919
   {
5920
-    return $this->nextPageToken;
5920
+	return $this->nextPageToken;
5921 5921
   }
5922 5922
   public function setRasters($rasters)
5923 5923
   {
5924
-    $this->rasters = $rasters;
5924
+	$this->rasters = $rasters;
5925 5925
   }
5926 5926
   public function getRasters()
5927 5927
   {
5928
-    return $this->rasters;
5928
+	return $this->rasters;
5929 5929
   }
5930 5930
 }
5931 5931
 
@@ -5941,19 +5941,19 @@  discard block
 block discarded – undo
5941 5941
 
5942 5942
   public function setNextPageToken($nextPageToken)
5943 5943
   {
5944
-    $this->nextPageToken = $nextPageToken;
5944
+	$this->nextPageToken = $nextPageToken;
5945 5945
   }
5946 5946
   public function getNextPageToken()
5947 5947
   {
5948
-    return $this->nextPageToken;
5948
+	return $this->nextPageToken;
5949 5949
   }
5950 5950
   public function setRasters($rasters)
5951 5951
   {
5952
-    $this->rasters = $rasters;
5952
+	$this->rasters = $rasters;
5953 5953
   }
5954 5954
   public function getRasters()
5955 5955
   {
5956
-    return $this->rasters;
5956
+	return $this->rasters;
5957 5957
   }
5958 5958
 }
5959 5959
 
@@ -5970,27 +5970,27 @@  discard block
 block discarded – undo
5970 5970
 
5971 5971
   public function setBorder(Google_Service_MapsEngine_Border $border)
5972 5972
   {
5973
-    $this->border = $border;
5973
+	$this->border = $border;
5974 5974
   }
5975 5975
   public function getBorder()
5976 5976
   {
5977
-    return $this->border;
5977
+	return $this->border;
5978 5978
   }
5979 5979
   public function setFill(Google_Service_MapsEngine_Color $fill)
5980 5980
   {
5981
-    $this->fill = $fill;
5981
+	$this->fill = $fill;
5982 5982
   }
5983 5983
   public function getFill()
5984 5984
   {
5985
-    return $this->fill;
5985
+	return $this->fill;
5986 5986
   }
5987 5987
   public function setShape($shape)
5988 5988
   {
5989
-    $this->shape = $shape;
5989
+	$this->shape = $shape;
5990 5990
   }
5991 5991
   public function getShape()
5992 5992
   {
5993
-    return $this->shape;
5993
+	return $this->shape;
5994 5994
   }
5995 5995
 }
5996 5996
 
@@ -6008,35 +6008,35 @@  discard block
 block discarded – undo
6008 6008
 
6009 6009
   public function setColumn($column)
6010 6010
   {
6011
-    $this->column = $column;
6011
+	$this->column = $column;
6012 6012
   }
6013 6013
   public function getColumn()
6014 6014
   {
6015
-    return $this->column;
6015
+	return $this->column;
6016 6016
   }
6017 6017
   public function setScalingType($scalingType)
6018 6018
   {
6019
-    $this->scalingType = $scalingType;
6019
+	$this->scalingType = $scalingType;
6020 6020
   }
6021 6021
   public function getScalingType()
6022 6022
   {
6023
-    return $this->scalingType;
6023
+	return $this->scalingType;
6024 6024
   }
6025 6025
   public function setSizeRange(Google_Service_MapsEngine_SizeRange $sizeRange)
6026 6026
   {
6027
-    $this->sizeRange = $sizeRange;
6027
+	$this->sizeRange = $sizeRange;
6028 6028
   }
6029 6029
   public function getSizeRange()
6030 6030
   {
6031
-    return $this->sizeRange;
6031
+	return $this->sizeRange;
6032 6032
   }
6033 6033
   public function setValueRange(Google_Service_MapsEngine_ValueRange $valueRange)
6034 6034
   {
6035
-    $this->valueRange = $valueRange;
6035
+	$this->valueRange = $valueRange;
6036 6036
   }
6037 6037
   public function getValueRange()
6038 6038
   {
6039
-    return $this->valueRange;
6039
+	return $this->valueRange;
6040 6040
   }
6041 6041
 }
6042 6042
 
@@ -6053,27 +6053,27 @@  discard block
 block discarded – undo
6053 6053
 
6054 6054
   public function setColumns($columns)
6055 6055
   {
6056
-    $this->columns = $columns;
6056
+	$this->columns = $columns;
6057 6057
   }
6058 6058
   public function getColumns()
6059 6059
   {
6060
-    return $this->columns;
6060
+	return $this->columns;
6061 6061
   }
6062 6062
   public function setPrimaryGeometry($primaryGeometry)
6063 6063
   {
6064
-    $this->primaryGeometry = $primaryGeometry;
6064
+	$this->primaryGeometry = $primaryGeometry;
6065 6065
   }
6066 6066
   public function getPrimaryGeometry()
6067 6067
   {
6068
-    return $this->primaryGeometry;
6068
+	return $this->primaryGeometry;
6069 6069
   }
6070 6070
   public function setPrimaryKey($primaryKey)
6071 6071
   {
6072
-    $this->primaryKey = $primaryKey;
6072
+	$this->primaryKey = $primaryKey;
6073 6073
   }
6074 6074
   public function getPrimaryKey()
6075 6075
   {
6076
-    return $this->primaryKey;
6076
+	return $this->primaryKey;
6077 6077
   }
6078 6078
 }
6079 6079
 
@@ -6087,19 +6087,19 @@  discard block
 block discarded – undo
6087 6087
 
6088 6088
   public function setMax($max)
6089 6089
   {
6090
-    $this->max = $max;
6090
+	$this->max = $max;
6091 6091
   }
6092 6092
   public function getMax()
6093 6093
   {
6094
-    return $this->max;
6094
+	return $this->max;
6095 6095
   }
6096 6096
   public function setMin($min)
6097 6097
   {
6098
-    $this->min = $min;
6098
+	$this->min = $min;
6099 6099
   }
6100 6100
   public function getMin()
6101 6101
   {
6102
-    return $this->min;
6102
+	return $this->min;
6103 6103
   }
6104 6104
 }
6105 6105
 
@@ -6132,147 +6132,147 @@  discard block
 block discarded – undo
6132 6132
 
6133 6133
   public function setBbox($bbox)
6134 6134
   {
6135
-    $this->bbox = $bbox;
6135
+	$this->bbox = $bbox;
6136 6136
   }
6137 6137
   public function getBbox()
6138 6138
   {
6139
-    return $this->bbox;
6139
+	return $this->bbox;
6140 6140
   }
6141 6141
   public function setCreationTime($creationTime)
6142 6142
   {
6143
-    $this->creationTime = $creationTime;
6143
+	$this->creationTime = $creationTime;
6144 6144
   }
6145 6145
   public function getCreationTime()
6146 6146
   {
6147
-    return $this->creationTime;
6147
+	return $this->creationTime;
6148 6148
   }
6149 6149
   public function setCreatorEmail($creatorEmail)
6150 6150
   {
6151
-    $this->creatorEmail = $creatorEmail;
6151
+	$this->creatorEmail = $creatorEmail;
6152 6152
   }
6153 6153
   public function getCreatorEmail()
6154 6154
   {
6155
-    return $this->creatorEmail;
6155
+	return $this->creatorEmail;
6156 6156
   }
6157 6157
   public function setDescription($description)
6158 6158
   {
6159
-    $this->description = $description;
6159
+	$this->description = $description;
6160 6160
   }
6161 6161
   public function getDescription()
6162 6162
   {
6163
-    return $this->description;
6163
+	return $this->description;
6164 6164
   }
6165 6165
   public function setDraftAccessList($draftAccessList)
6166 6166
   {
6167
-    $this->draftAccessList = $draftAccessList;
6167
+	$this->draftAccessList = $draftAccessList;
6168 6168
   }
6169 6169
   public function getDraftAccessList()
6170 6170
   {
6171
-    return $this->draftAccessList;
6171
+	return $this->draftAccessList;
6172 6172
   }
6173 6173
   public function setEtag($etag)
6174 6174
   {
6175
-    $this->etag = $etag;
6175
+	$this->etag = $etag;
6176 6176
   }
6177 6177
   public function getEtag()
6178 6178
   {
6179
-    return $this->etag;
6179
+	return $this->etag;
6180 6180
   }
6181 6181
   public function setFiles($files)
6182 6182
   {
6183
-    $this->files = $files;
6183
+	$this->files = $files;
6184 6184
   }
6185 6185
   public function getFiles()
6186 6186
   {
6187
-    return $this->files;
6187
+	return $this->files;
6188 6188
   }
6189 6189
   public function setId($id)
6190 6190
   {
6191
-    $this->id = $id;
6191
+	$this->id = $id;
6192 6192
   }
6193 6193
   public function getId()
6194 6194
   {
6195
-    return $this->id;
6195
+	return $this->id;
6196 6196
   }
6197 6197
   public function setLastModifiedTime($lastModifiedTime)
6198 6198
   {
6199
-    $this->lastModifiedTime = $lastModifiedTime;
6199
+	$this->lastModifiedTime = $lastModifiedTime;
6200 6200
   }
6201 6201
   public function getLastModifiedTime()
6202 6202
   {
6203
-    return $this->lastModifiedTime;
6203
+	return $this->lastModifiedTime;
6204 6204
   }
6205 6205
   public function setLastModifierEmail($lastModifierEmail)
6206 6206
   {
6207
-    $this->lastModifierEmail = $lastModifierEmail;
6207
+	$this->lastModifierEmail = $lastModifierEmail;
6208 6208
   }
6209 6209
   public function getLastModifierEmail()
6210 6210
   {
6211
-    return $this->lastModifierEmail;
6211
+	return $this->lastModifierEmail;
6212 6212
   }
6213 6213
   public function setName($name)
6214 6214
   {
6215
-    $this->name = $name;
6215
+	$this->name = $name;
6216 6216
   }
6217 6217
   public function getName()
6218 6218
   {
6219
-    return $this->name;
6219
+	return $this->name;
6220 6220
   }
6221 6221
   public function setProcessingStatus($processingStatus)
6222 6222
   {
6223
-    $this->processingStatus = $processingStatus;
6223
+	$this->processingStatus = $processingStatus;
6224 6224
   }
6225 6225
   public function getProcessingStatus()
6226 6226
   {
6227
-    return $this->processingStatus;
6227
+	return $this->processingStatus;
6228 6228
   }
6229 6229
   public function setProjectId($projectId)
6230 6230
   {
6231
-    $this->projectId = $projectId;
6231
+	$this->projectId = $projectId;
6232 6232
   }
6233 6233
   public function getProjectId()
6234 6234
   {
6235
-    return $this->projectId;
6235
+	return $this->projectId;
6236 6236
   }
6237 6237
   public function setPublishedAccessList($publishedAccessList)
6238 6238
   {
6239
-    $this->publishedAccessList = $publishedAccessList;
6239
+	$this->publishedAccessList = $publishedAccessList;
6240 6240
   }
6241 6241
   public function getPublishedAccessList()
6242 6242
   {
6243
-    return $this->publishedAccessList;
6243
+	return $this->publishedAccessList;
6244 6244
   }
6245 6245
   public function setSchema(Google_Service_MapsEngine_Schema $schema)
6246 6246
   {
6247
-    $this->schema = $schema;
6247
+	$this->schema = $schema;
6248 6248
   }
6249 6249
   public function getSchema()
6250 6250
   {
6251
-    return $this->schema;
6251
+	return $this->schema;
6252 6252
   }
6253 6253
   public function setSourceEncoding($sourceEncoding)
6254 6254
   {
6255
-    $this->sourceEncoding = $sourceEncoding;
6255
+	$this->sourceEncoding = $sourceEncoding;
6256 6256
   }
6257 6257
   public function getSourceEncoding()
6258 6258
   {
6259
-    return $this->sourceEncoding;
6259
+	return $this->sourceEncoding;
6260 6260
   }
6261 6261
   public function setTags($tags)
6262 6262
   {
6263
-    $this->tags = $tags;
6263
+	$this->tags = $tags;
6264 6264
   }
6265 6265
   public function getTags()
6266 6266
   {
6267
-    return $this->tags;
6267
+	return $this->tags;
6268 6268
   }
6269 6269
   public function setWritersCanEditPermissions($writersCanEditPermissions)
6270 6270
   {
6271
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
6271
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
6272 6272
   }
6273 6273
   public function getWritersCanEditPermissions()
6274 6274
   {
6275
-    return $this->writersCanEditPermissions;
6275
+	return $this->writersCanEditPermissions;
6276 6276
   }
6277 6277
 }
6278 6278
 
@@ -6286,19 +6286,19 @@  discard block
 block discarded – undo
6286 6286
 
6287 6287
   public function setName($name)
6288 6288
   {
6289
-    $this->name = $name;
6289
+	$this->name = $name;
6290 6290
   }
6291 6291
   public function getName()
6292 6292
   {
6293
-    return $this->name;
6293
+	return $this->name;
6294 6294
   }
6295 6295
   public function setType($type)
6296 6296
   {
6297
-    $this->type = $type;
6297
+	$this->type = $type;
6298 6298
   }
6299 6299
   public function getType()
6300 6300
   {
6301
-    return $this->type;
6301
+	return $this->type;
6302 6302
   }
6303 6303
 }
6304 6304
 
@@ -6314,19 +6314,19 @@  discard block
 block discarded – undo
6314 6314
 
6315 6315
   public function setNextPageToken($nextPageToken)
6316 6316
   {
6317
-    $this->nextPageToken = $nextPageToken;
6317
+	$this->nextPageToken = $nextPageToken;
6318 6318
   }
6319 6319
   public function getNextPageToken()
6320 6320
   {
6321
-    return $this->nextPageToken;
6321
+	return $this->nextPageToken;
6322 6322
   }
6323 6323
   public function setTables($tables)
6324 6324
   {
6325
-    $this->tables = $tables;
6325
+	$this->tables = $tables;
6326 6326
   }
6327 6327
   public function getTables()
6328 6328
   {
6329
-    return $this->tables;
6329
+	return $this->tables;
6330 6330
   }
6331 6331
 }
6332 6332
 
@@ -6340,19 +6340,19 @@  discard block
 block discarded – undo
6340 6340
 
6341 6341
   public function setMax($max)
6342 6342
   {
6343
-    $this->max = $max;
6343
+	$this->max = $max;
6344 6344
   }
6345 6345
   public function getMax()
6346 6346
   {
6347
-    return $this->max;
6347
+	return $this->max;
6348 6348
   }
6349 6349
   public function setMin($min)
6350 6350
   {
6351
-    $this->min = $min;
6351
+	$this->min = $min;
6352 6352
   }
6353 6353
   public function getMin()
6354 6354
   {
6355
-    return $this->min;
6355
+	return $this->min;
6356 6356
   }
6357 6357
 }
6358 6358
 
@@ -6370,27 +6370,27 @@  discard block
 block discarded – undo
6370 6370
 
6371 6371
   public function setDisplayRules($displayRules)
6372 6372
   {
6373
-    $this->displayRules = $displayRules;
6373
+	$this->displayRules = $displayRules;
6374 6374
   }
6375 6375
   public function getDisplayRules()
6376 6376
   {
6377
-    return $this->displayRules;
6377
+	return $this->displayRules;
6378 6378
   }
6379 6379
   public function setFeatureInfo(Google_Service_MapsEngine_FeatureInfo $featureInfo)
6380 6380
   {
6381
-    $this->featureInfo = $featureInfo;
6381
+	$this->featureInfo = $featureInfo;
6382 6382
   }
6383 6383
   public function getFeatureInfo()
6384 6384
   {
6385
-    return $this->featureInfo;
6385
+	return $this->featureInfo;
6386 6386
   }
6387 6387
   public function setType($type)
6388 6388
   {
6389
-    $this->type = $type;
6389
+	$this->type = $type;
6390 6390
   }
6391 6391
   public function getType()
6392 6392
   {
6393
-    return $this->type;
6393
+	return $this->type;
6394 6394
   }
6395 6395
 }
6396 6396
 
@@ -6404,18 +6404,18 @@  discard block
 block discarded – undo
6404 6404
 
6405 6405
   public function setMax($max)
6406 6406
   {
6407
-    $this->max = $max;
6407
+	$this->max = $max;
6408 6408
   }
6409 6409
   public function getMax()
6410 6410
   {
6411
-    return $this->max;
6411
+	return $this->max;
6412 6412
   }
6413 6413
   public function setMin($min)
6414 6414
   {
6415
-    $this->min = $min;
6415
+	$this->min = $min;
6416 6416
   }
6417 6417
   public function getMin()
6418 6418
   {
6419
-    return $this->min;
6419
+	return $this->min;
6420 6420
   }
6421 6421
 }
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                   'required' => true,
93 93
                 ),
94 94
               ),
95
-            ),'list' => array(
95
+            ), 'list' => array(
96 96
               'path' => 'assets',
97 97
               'httpMethod' => 'GET',
98 98
               'parameters' => array(
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                   'required' => true,
218 218
                 ),
219 219
               ),
220
-            ),'create' => array(
220
+            ), 'create' => array(
221 221
               'path' => 'layers',
222 222
               'httpMethod' => 'POST',
223 223
               'parameters' => array(
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
                   'type' => 'boolean',
227 227
                 ),
228 228
               ),
229
-            ),'delete' => array(
229
+            ), 'delete' => array(
230 230
               'path' => 'layers/{id}',
231 231
               'httpMethod' => 'DELETE',
232 232
               'parameters' => array(
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
                   'required' => true,
237 237
                 ),
238 238
               ),
239
-            ),'get' => array(
239
+            ), 'get' => array(
240 240
               'path' => 'layers/{id}',
241 241
               'httpMethod' => 'GET',
242 242
               'parameters' => array(
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
                   'type' => 'string',
251 251
                 ),
252 252
               ),
253
-            ),'getPublished' => array(
253
+            ), 'getPublished' => array(
254 254
               'path' => 'layers/{id}/published',
255 255
               'httpMethod' => 'GET',
256 256
               'parameters' => array(
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
                   'required' => true,
261 261
                 ),
262 262
               ),
263
-            ),'list' => array(
263
+            ), 'list' => array(
264 264
               'path' => 'layers',
265 265
               'httpMethod' => 'GET',
266 266
               'parameters' => array(
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
                   'type' => 'string',
318 318
                 ),
319 319
               ),
320
-            ),'listPublished' => array(
320
+            ), 'listPublished' => array(
321 321
               'path' => 'layers/published',
322 322
               'httpMethod' => 'GET',
323 323
               'parameters' => array(
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
                   'type' => 'string',
335 335
                 ),
336 336
               ),
337
-            ),'patch' => array(
337
+            ), 'patch' => array(
338 338
               'path' => 'layers/{id}',
339 339
               'httpMethod' => 'PATCH',
340 340
               'parameters' => array(
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                   'required' => true,
345 345
                 ),
346 346
               ),
347
-            ),'process' => array(
347
+            ), 'process' => array(
348 348
               'path' => 'layers/{id}/process',
349 349
               'httpMethod' => 'POST',
350 350
               'parameters' => array(
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
                   'required' => true,
355 355
                 ),
356 356
               ),
357
-            ),'publish' => array(
357
+            ), 'publish' => array(
358 358
               'path' => 'layers/{id}/publish',
359 359
               'httpMethod' => 'POST',
360 360
               'parameters' => array(
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                   'type' => 'boolean',
369 369
                 ),
370 370
               ),
371
-            ),'unpublish' => array(
371
+            ), 'unpublish' => array(
372 372
               'path' => 'layers/{id}/unpublish',
373 373
               'httpMethod' => 'POST',
374 374
               'parameters' => array(
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
                   'required' => true,
427 427
                 ),
428 428
               ),
429
-            ),'batchUpdate' => array(
429
+            ), 'batchUpdate' => array(
430 430
               'path' => 'layers/{id}/permissions/batchUpdate',
431 431
               'httpMethod' => 'POST',
432 432
               'parameters' => array(
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
                   'required' => true,
437 437
                 ),
438 438
               ),
439
-            ),'list' => array(
439
+            ), 'list' => array(
440 440
               'path' => 'layers/{id}/permissions',
441 441
               'httpMethod' => 'GET',
442 442
               'parameters' => array(
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
               'path' => 'maps',
461 461
               'httpMethod' => 'POST',
462 462
               'parameters' => array(),
463
-            ),'delete' => array(
463
+            ), 'delete' => array(
464 464
               'path' => 'maps/{id}',
465 465
               'httpMethod' => 'DELETE',
466 466
               'parameters' => array(
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                   'required' => true,
471 471
                 ),
472 472
               ),
473
-            ),'get' => array(
473
+            ), 'get' => array(
474 474
               'path' => 'maps/{id}',
475 475
               'httpMethod' => 'GET',
476 476
               'parameters' => array(
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
                   'type' => 'string',
485 485
                 ),
486 486
               ),
487
-            ),'getPublished' => array(
487
+            ), 'getPublished' => array(
488 488
               'path' => 'maps/{id}/published',
489 489
               'httpMethod' => 'GET',
490 490
               'parameters' => array(
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
                   'required' => true,
495 495
                 ),
496 496
               ),
497
-            ),'list' => array(
497
+            ), 'list' => array(
498 498
               'path' => 'maps',
499 499
               'httpMethod' => 'GET',
500 500
               'parameters' => array(
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
                   'type' => 'string',
552 552
                 ),
553 553
               ),
554
-            ),'listPublished' => array(
554
+            ), 'listPublished' => array(
555 555
               'path' => 'maps/published',
556 556
               'httpMethod' => 'GET',
557 557
               'parameters' => array(
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
                   'type' => 'string',
569 569
                 ),
570 570
               ),
571
-            ),'patch' => array(
571
+            ), 'patch' => array(
572 572
               'path' => 'maps/{id}',
573 573
               'httpMethod' => 'PATCH',
574 574
               'parameters' => array(
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
                   'required' => true,
579 579
                 ),
580 580
               ),
581
-            ),'publish' => array(
581
+            ), 'publish' => array(
582 582
               'path' => 'maps/{id}/publish',
583 583
               'httpMethod' => 'POST',
584 584
               'parameters' => array(
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
                   'type' => 'boolean',
593 593
                 ),
594 594
               ),
595
-            ),'unpublish' => array(
595
+            ), 'unpublish' => array(
596 596
               'path' => 'maps/{id}/unpublish',
597 597
               'httpMethod' => 'POST',
598 598
               'parameters' => array(
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
                   'required' => true,
623 623
                 ),
624 624
               ),
625
-            ),'batchUpdate' => array(
625
+            ), 'batchUpdate' => array(
626 626
               'path' => 'maps/{id}/permissions/batchUpdate',
627 627
               'httpMethod' => 'POST',
628 628
               'parameters' => array(
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
                   'required' => true,
633 633
                 ),
634 634
               ),
635
-            ),'list' => array(
635
+            ), 'list' => array(
636 636
               'path' => 'maps/{id}/permissions',
637 637
               'httpMethod' => 'GET',
638 638
               'parameters' => array(
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
                   'required' => true,
677 677
                 ),
678 678
               ),
679
-            ),'get' => array(
679
+            ), 'get' => array(
680 680
               'path' => 'projects/{projectId}/icons/{id}',
681 681
               'httpMethod' => 'GET',
682 682
               'parameters' => array(
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
                   'required' => true,
692 692
                 ),
693 693
               ),
694
-            ),'list' => array(
694
+            ), 'list' => array(
695 695
               'path' => 'projects/{projectId}/icons',
696 696
               'httpMethod' => 'GET',
697 697
               'parameters' => array(
@@ -729,11 +729,11 @@  discard block
 block discarded – undo
729 729
                   'required' => true,
730 730
                 ),
731 731
               ),
732
-            ),'create' => array(
732
+            ), 'create' => array(
733 733
               'path' => 'rasterCollections',
734 734
               'httpMethod' => 'POST',
735 735
               'parameters' => array(),
736
-            ),'delete' => array(
736
+            ), 'delete' => array(
737 737
               'path' => 'rasterCollections/{id}',
738 738
               'httpMethod' => 'DELETE',
739 739
               'parameters' => array(
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
                   'required' => true,
744 744
                 ),
745 745
               ),
746
-            ),'get' => array(
746
+            ), 'get' => array(
747 747
               'path' => 'rasterCollections/{id}',
748 748
               'httpMethod' => 'GET',
749 749
               'parameters' => array(
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
                   'required' => true,
754 754
                 ),
755 755
               ),
756
-            ),'list' => array(
756
+            ), 'list' => array(
757 757
               'path' => 'rasterCollections',
758 758
               'httpMethod' => 'GET',
759 759
               'parameters' => array(
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
                   'type' => 'string',
811 811
                 ),
812 812
               ),
813
-            ),'patch' => array(
813
+            ), 'patch' => array(
814 814
               'path' => 'rasterCollections/{id}',
815 815
               'httpMethod' => 'PATCH',
816 816
               'parameters' => array(
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
                   'required' => true,
821 821
                 ),
822 822
               ),
823
-            ),'process' => array(
823
+            ), 'process' => array(
824 824
               'path' => 'rasterCollections/{id}/process',
825 825
               'httpMethod' => 'POST',
826 826
               'parameters' => array(
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
                   'required' => true,
879 879
                 ),
880 880
               ),
881
-            ),'batchUpdate' => array(
881
+            ), 'batchUpdate' => array(
882 882
               'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883 883
               'httpMethod' => 'POST',
884 884
               'parameters' => array(
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
                   'required' => true,
889 889
                 ),
890 890
               ),
891
-            ),'list' => array(
891
+            ), 'list' => array(
892 892
               'path' => 'rasterCollections/{id}/permissions',
893 893
               'httpMethod' => 'GET',
894 894
               'parameters' => array(
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
                   'required' => true,
919 919
                 ),
920 920
               ),
921
-            ),'batchInsert' => array(
921
+            ), 'batchInsert' => array(
922 922
               'path' => 'rasterCollections/{id}/rasters/batchInsert',
923 923
               'httpMethod' => 'POST',
924 924
               'parameters' => array(
@@ -928,7 +928,7 @@  discard block
 block discarded – undo
928 928
                   'required' => true,
929 929
                 ),
930 930
               ),
931
-            ),'list' => array(
931
+            ), 'list' => array(
932 932
               'path' => 'rasterCollections/{id}/rasters',
933 933
               'httpMethod' => 'GET',
934 934
               'parameters' => array(
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
                   'required' => true,
1003 1003
                 ),
1004 1004
               ),
1005
-            ),'get' => array(
1005
+            ), 'get' => array(
1006 1006
               'path' => 'rasters/{id}',
1007 1007
               'httpMethod' => 'GET',
1008 1008
               'parameters' => array(
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
                   'required' => true,
1013 1013
                 ),
1014 1014
               ),
1015
-            ),'list' => array(
1015
+            ), 'list' => array(
1016 1016
               'path' => 'rasters',
1017 1017
               'httpMethod' => 'GET',
1018 1018
               'parameters' => array(
@@ -1070,7 +1070,7 @@  discard block
 block discarded – undo
1070 1070
                   'type' => 'string',
1071 1071
                 ),
1072 1072
               ),
1073
-            ),'patch' => array(
1073
+            ), 'patch' => array(
1074 1074
               'path' => 'rasters/{id}',
1075 1075
               'httpMethod' => 'PATCH',
1076 1076
               'parameters' => array(
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
                   'required' => true,
1081 1081
                 ),
1082 1082
               ),
1083
-            ),'process' => array(
1083
+            ), 'process' => array(
1084 1084
               'path' => 'rasters/{id}/process',
1085 1085
               'httpMethod' => 'POST',
1086 1086
               'parameters' => array(
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
                   'required' => true,
1091 1091
                 ),
1092 1092
               ),
1093
-            ),'upload' => array(
1093
+            ), 'upload' => array(
1094 1094
               'path' => 'rasters/upload',
1095 1095
               'httpMethod' => 'POST',
1096 1096
               'parameters' => array(),
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
                   'required' => true,
1168 1168
                 ),
1169 1169
               ),
1170
-            ),'batchUpdate' => array(
1170
+            ), 'batchUpdate' => array(
1171 1171
               'path' => 'rasters/{id}/permissions/batchUpdate',
1172 1172
               'httpMethod' => 'POST',
1173 1173
               'parameters' => array(
@@ -1177,7 +1177,7 @@  discard block
 block discarded – undo
1177 1177
                   'required' => true,
1178 1178
                 ),
1179 1179
               ),
1180
-            ),'list' => array(
1180
+            ), 'list' => array(
1181 1181
               'path' => 'rasters/{id}/permissions',
1182 1182
               'httpMethod' => 'GET',
1183 1183
               'parameters' => array(
@@ -1201,7 +1201,7 @@  discard block
 block discarded – undo
1201 1201
               'path' => 'tables',
1202 1202
               'httpMethod' => 'POST',
1203 1203
               'parameters' => array(),
1204
-            ),'delete' => array(
1204
+            ), 'delete' => array(
1205 1205
               'path' => 'tables/{id}',
1206 1206
               'httpMethod' => 'DELETE',
1207 1207
               'parameters' => array(
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
                   'required' => true,
1212 1212
                 ),
1213 1213
               ),
1214
-            ),'get' => array(
1214
+            ), 'get' => array(
1215 1215
               'path' => 'tables/{id}',
1216 1216
               'httpMethod' => 'GET',
1217 1217
               'parameters' => array(
@@ -1225,7 +1225,7 @@  discard block
 block discarded – undo
1225 1225
                   'type' => 'string',
1226 1226
                 ),
1227 1227
               ),
1228
-            ),'list' => array(
1228
+            ), 'list' => array(
1229 1229
               'path' => 'tables',
1230 1230
               'httpMethod' => 'GET',
1231 1231
               'parameters' => array(
@@ -1282,7 +1282,7 @@  discard block
 block discarded – undo
1282 1282
                   'type' => 'string',
1283 1283
                 ),
1284 1284
               ),
1285
-            ),'patch' => array(
1285
+            ), 'patch' => array(
1286 1286
               'path' => 'tables/{id}',
1287 1287
               'httpMethod' => 'PATCH',
1288 1288
               'parameters' => array(
@@ -1292,7 +1292,7 @@  discard block
 block discarded – undo
1292 1292
                   'required' => true,
1293 1293
                 ),
1294 1294
               ),
1295
-            ),'process' => array(
1295
+            ), 'process' => array(
1296 1296
               'path' => 'tables/{id}/process',
1297 1297
               'httpMethod' => 'POST',
1298 1298
               'parameters' => array(
@@ -1302,7 +1302,7 @@  discard block
 block discarded – undo
1302 1302
                   'required' => true,
1303 1303
                 ),
1304 1304
               ),
1305
-            ),'upload' => array(
1305
+            ), 'upload' => array(
1306 1306
               'path' => 'tables/upload',
1307 1307
               'httpMethod' => 'POST',
1308 1308
               'parameters' => array(),
@@ -1326,7 +1326,7 @@  discard block
 block discarded – undo
1326 1326
                   'required' => true,
1327 1327
                 ),
1328 1328
               ),
1329
-            ),'batchInsert' => array(
1329
+            ), 'batchInsert' => array(
1330 1330
               'path' => 'tables/{id}/features/batchInsert',
1331 1331
               'httpMethod' => 'POST',
1332 1332
               'parameters' => array(
@@ -1336,7 +1336,7 @@  discard block
 block discarded – undo
1336 1336
                   'required' => true,
1337 1337
                 ),
1338 1338
               ),
1339
-            ),'batchPatch' => array(
1339
+            ), 'batchPatch' => array(
1340 1340
               'path' => 'tables/{id}/features/batchPatch',
1341 1341
               'httpMethod' => 'POST',
1342 1342
               'parameters' => array(
@@ -1346,7 +1346,7 @@  discard block
 block discarded – undo
1346 1346
                   'required' => true,
1347 1347
                 ),
1348 1348
               ),
1349
-            ),'get' => array(
1349
+            ), 'get' => array(
1350 1350
               'path' => 'tables/{tableId}/features/{id}',
1351 1351
               'httpMethod' => 'GET',
1352 1352
               'parameters' => array(
@@ -1369,7 +1369,7 @@  discard block
 block discarded – undo
1369 1369
                   'type' => 'string',
1370 1370
                 ),
1371 1371
               ),
1372
-            ),'list' => array(
1372
+            ), 'list' => array(
1373 1373
               'path' => 'tables/{id}/features',
1374 1374
               'httpMethod' => 'GET',
1375 1375
               'parameters' => array(
@@ -1488,7 +1488,7 @@  discard block
 block discarded – undo
1488 1488
                   'required' => true,
1489 1489
                 ),
1490 1490
               ),
1491
-            ),'batchUpdate' => array(
1491
+            ), 'batchUpdate' => array(
1492 1492
               'path' => 'tables/{id}/permissions/batchUpdate',
1493 1493
               'httpMethod' => 'POST',
1494 1494
               'parameters' => array(
@@ -1498,7 +1498,7 @@  discard block
 block discarded – undo
1498 1498
                   'required' => true,
1499 1499
                 ),
1500 1500
               ),
1501
-            ),'list' => array(
1501
+            ), 'list' => array(
1502 1502
               'path' => 'tables/{id}/permissions',
1503 1503
               'httpMethod' => 'GET',
1504 1504
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/IdentityToolkit.php 2 patches
Indentation   +380 added lines, -380 removed lines patch added patch discarded remove patch
@@ -42,70 +42,70 @@  discard block
 block discarded – undo
42 42
    */
43 43
   public function __construct(Google_Client $client)
44 44
   {
45
-    parent::__construct($client);
46
-    $this->rootUrl = 'https://www.googleapis.com/';
47
-    $this->servicePath = 'identitytoolkit/v3/relyingparty/';
48
-    $this->version = 'v3';
49
-    $this->serviceName = 'identitytoolkit';
50
-
51
-    $this->relyingparty = new Google_Service_IdentityToolkit_Relyingparty_Resource(
52
-        $this,
53
-        $this->serviceName,
54
-        'relyingparty',
55
-        array(
56
-          'methods' => array(
57
-            'createAuthUri' => array(
58
-              'path' => 'createAuthUri',
59
-              'httpMethod' => 'POST',
60
-              'parameters' => array(),
61
-            ),'deleteAccount' => array(
62
-              'path' => 'deleteAccount',
63
-              'httpMethod' => 'POST',
64
-              'parameters' => array(),
65
-            ),'downloadAccount' => array(
66
-              'path' => 'downloadAccount',
67
-              'httpMethod' => 'POST',
68
-              'parameters' => array(),
69
-            ),'getAccountInfo' => array(
70
-              'path' => 'getAccountInfo',
71
-              'httpMethod' => 'POST',
72
-              'parameters' => array(),
73
-            ),'getOobConfirmationCode' => array(
74
-              'path' => 'getOobConfirmationCode',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(),
77
-            ),'getPublicKeys' => array(
78
-              'path' => 'publicKeys',
79
-              'httpMethod' => 'GET',
80
-              'parameters' => array(),
81
-            ),'getRecaptchaParam' => array(
82
-              'path' => 'getRecaptchaParam',
83
-              'httpMethod' => 'GET',
84
-              'parameters' => array(),
85
-            ),'resetPassword' => array(
86
-              'path' => 'resetPassword',
87
-              'httpMethod' => 'POST',
88
-              'parameters' => array(),
89
-            ),'setAccountInfo' => array(
90
-              'path' => 'setAccountInfo',
91
-              'httpMethod' => 'POST',
92
-              'parameters' => array(),
93
-            ),'uploadAccount' => array(
94
-              'path' => 'uploadAccount',
95
-              'httpMethod' => 'POST',
96
-              'parameters' => array(),
97
-            ),'verifyAssertion' => array(
98
-              'path' => 'verifyAssertion',
99
-              'httpMethod' => 'POST',
100
-              'parameters' => array(),
101
-            ),'verifyPassword' => array(
102
-              'path' => 'verifyPassword',
103
-              'httpMethod' => 'POST',
104
-              'parameters' => array(),
105
-            ),
106
-          )
107
-        )
108
-    );
45
+	parent::__construct($client);
46
+	$this->rootUrl = 'https://www.googleapis.com/';
47
+	$this->servicePath = 'identitytoolkit/v3/relyingparty/';
48
+	$this->version = 'v3';
49
+	$this->serviceName = 'identitytoolkit';
50
+
51
+	$this->relyingparty = new Google_Service_IdentityToolkit_Relyingparty_Resource(
52
+		$this,
53
+		$this->serviceName,
54
+		'relyingparty',
55
+		array(
56
+		  'methods' => array(
57
+			'createAuthUri' => array(
58
+			  'path' => 'createAuthUri',
59
+			  'httpMethod' => 'POST',
60
+			  'parameters' => array(),
61
+			),'deleteAccount' => array(
62
+			  'path' => 'deleteAccount',
63
+			  'httpMethod' => 'POST',
64
+			  'parameters' => array(),
65
+			),'downloadAccount' => array(
66
+			  'path' => 'downloadAccount',
67
+			  'httpMethod' => 'POST',
68
+			  'parameters' => array(),
69
+			),'getAccountInfo' => array(
70
+			  'path' => 'getAccountInfo',
71
+			  'httpMethod' => 'POST',
72
+			  'parameters' => array(),
73
+			),'getOobConfirmationCode' => array(
74
+			  'path' => 'getOobConfirmationCode',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(),
77
+			),'getPublicKeys' => array(
78
+			  'path' => 'publicKeys',
79
+			  'httpMethod' => 'GET',
80
+			  'parameters' => array(),
81
+			),'getRecaptchaParam' => array(
82
+			  'path' => 'getRecaptchaParam',
83
+			  'httpMethod' => 'GET',
84
+			  'parameters' => array(),
85
+			),'resetPassword' => array(
86
+			  'path' => 'resetPassword',
87
+			  'httpMethod' => 'POST',
88
+			  'parameters' => array(),
89
+			),'setAccountInfo' => array(
90
+			  'path' => 'setAccountInfo',
91
+			  'httpMethod' => 'POST',
92
+			  'parameters' => array(),
93
+			),'uploadAccount' => array(
94
+			  'path' => 'uploadAccount',
95
+			  'httpMethod' => 'POST',
96
+			  'parameters' => array(),
97
+			),'verifyAssertion' => array(
98
+			  'path' => 'verifyAssertion',
99
+			  'httpMethod' => 'POST',
100
+			  'parameters' => array(),
101
+			),'verifyPassword' => array(
102
+			  'path' => 'verifyPassword',
103
+			  'httpMethod' => 'POST',
104
+			  'parameters' => array(),
105
+			),
106
+		  )
107
+		)
108
+	);
109 109
   }
110 110
 }
111 111
 
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
    */
132 132
   public function createAuthUri(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody, $optParams = array())
133 133
   {
134
-    $params = array('postBody' => $postBody);
135
-    $params = array_merge($params, $optParams);
136
-    return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse");
134
+	$params = array('postBody' => $postBody);
135
+	$params = array_merge($params, $optParams);
136
+	return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse");
137 137
   }
138 138
 
139 139
   /**
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
    */
146 146
   public function deleteAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody, $optParams = array())
147 147
   {
148
-    $params = array('postBody' => $postBody);
149
-    $params = array_merge($params, $optParams);
150
-    return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse");
148
+	$params = array('postBody' => $postBody);
149
+	$params = array_merge($params, $optParams);
150
+	return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse");
151 151
   }
152 152
 
153 153
   /**
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
    */
160 160
   public function downloadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody, $optParams = array())
161 161
   {
162
-    $params = array('postBody' => $postBody);
163
-    $params = array_merge($params, $optParams);
164
-    return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
162
+	$params = array('postBody' => $postBody);
163
+	$params = array_merge($params, $optParams);
164
+	return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
165 165
   }
166 166
 
167 167
   /**
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
    */
174 174
   public function getAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody, $optParams = array())
175 175
   {
176
-    $params = array('postBody' => $postBody);
177
-    $params = array_merge($params, $optParams);
178
-    return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse");
176
+	$params = array('postBody' => $postBody);
177
+	$params = array_merge($params, $optParams);
178
+	return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse");
179 179
   }
180 180
 
181 181
   /**
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
    */
189 189
   public function getOobConfirmationCode(Google_Service_IdentityToolkit_Relyingparty $postBody, $optParams = array())
190 190
   {
191
-    $params = array('postBody' => $postBody);
192
-    $params = array_merge($params, $optParams);
193
-    return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
191
+	$params = array('postBody' => $postBody);
192
+	$params = array_merge($params, $optParams);
193
+	return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
194 194
   }
195 195
 
196 196
   /**
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
    */
202 202
   public function getPublicKeys($optParams = array())
203 203
   {
204
-    $params = array();
205
-    $params = array_merge($params, $optParams);
206
-    return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
204
+	$params = array();
205
+	$params = array_merge($params, $optParams);
206
+	return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
207 207
   }
208 208
 
209 209
   /**
@@ -214,9 +214,9 @@  discard block
 block discarded – undo
214 214
    */
215 215
   public function getRecaptchaParam($optParams = array())
216 216
   {
217
-    $params = array();
218
-    $params = array_merge($params, $optParams);
219
-    return $this->call('getRecaptchaParam', array($params), "Google_Service_IdentityToolkit_GetRecaptchaParamResponse");
217
+	$params = array();
218
+	$params = array_merge($params, $optParams);
219
+	return $this->call('getRecaptchaParam', array($params), "Google_Service_IdentityToolkit_GetRecaptchaParamResponse");
220 220
   }
221 221
 
222 222
   /**
@@ -228,9 +228,9 @@  discard block
 block discarded – undo
228 228
    */
229 229
   public function resetPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody, $optParams = array())
230 230
   {
231
-    $params = array('postBody' => $postBody);
232
-    $params = array_merge($params, $optParams);
233
-    return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
231
+	$params = array('postBody' => $postBody);
232
+	$params = array_merge($params, $optParams);
233
+	return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
234 234
   }
235 235
 
236 236
   /**
@@ -242,9 +242,9 @@  discard block
 block discarded – undo
242 242
    */
243 243
   public function setAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody, $optParams = array())
244 244
   {
245
-    $params = array('postBody' => $postBody);
246
-    $params = array_merge($params, $optParams);
247
-    return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse");
245
+	$params = array('postBody' => $postBody);
246
+	$params = array_merge($params, $optParams);
247
+	return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse");
248 248
   }
249 249
 
250 250
   /**
@@ -256,9 +256,9 @@  discard block
 block discarded – undo
256 256
    */
257 257
   public function uploadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody, $optParams = array())
258 258
   {
259
-    $params = array('postBody' => $postBody);
260
-    $params = array_merge($params, $optParams);
261
-    return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse");
259
+	$params = array('postBody' => $postBody);
260
+	$params = array_merge($params, $optParams);
261
+	return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse");
262 262
   }
263 263
 
264 264
   /**
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
    */
271 271
   public function verifyAssertion(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody, $optParams = array())
272 272
   {
273
-    $params = array('postBody' => $postBody);
274
-    $params = array_merge($params, $optParams);
275
-    return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse");
273
+	$params = array('postBody' => $postBody);
274
+	$params = array_merge($params, $optParams);
275
+	return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse");
276 276
   }
277 277
 
278 278
   /**
@@ -284,9 +284,9 @@  discard block
 block discarded – undo
284 284
    */
285 285
   public function verifyPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody, $optParams = array())
286 286
   {
287
-    $params = array('postBody' => $postBody);
288
-    $params = array_merge($params, $optParams);
289
-    return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
287
+	$params = array('postBody' => $postBody);
288
+	$params = array_merge($params, $optParams);
289
+	return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
290 290
   }
291 291
 }
292 292
 
@@ -307,51 +307,51 @@  discard block
 block discarded – undo
307 307
 
308 308
   public function setAuthUri($authUri)
309 309
   {
310
-    $this->authUri = $authUri;
310
+	$this->authUri = $authUri;
311 311
   }
312 312
   public function getAuthUri()
313 313
   {
314
-    return $this->authUri;
314
+	return $this->authUri;
315 315
   }
316 316
   public function setCaptchaRequired($captchaRequired)
317 317
   {
318
-    $this->captchaRequired = $captchaRequired;
318
+	$this->captchaRequired = $captchaRequired;
319 319
   }
320 320
   public function getCaptchaRequired()
321 321
   {
322
-    return $this->captchaRequired;
322
+	return $this->captchaRequired;
323 323
   }
324 324
   public function setForExistingProvider($forExistingProvider)
325 325
   {
326
-    $this->forExistingProvider = $forExistingProvider;
326
+	$this->forExistingProvider = $forExistingProvider;
327 327
   }
328 328
   public function getForExistingProvider()
329 329
   {
330
-    return $this->forExistingProvider;
330
+	return $this->forExistingProvider;
331 331
   }
332 332
   public function setKind($kind)
333 333
   {
334
-    $this->kind = $kind;
334
+	$this->kind = $kind;
335 335
   }
336 336
   public function getKind()
337 337
   {
338
-    return $this->kind;
338
+	return $this->kind;
339 339
   }
340 340
   public function setProviderId($providerId)
341 341
   {
342
-    $this->providerId = $providerId;
342
+	$this->providerId = $providerId;
343 343
   }
344 344
   public function getProviderId()
345 345
   {
346
-    return $this->providerId;
346
+	return $this->providerId;
347 347
   }
348 348
   public function setRegistered($registered)
349 349
   {
350
-    $this->registered = $registered;
350
+	$this->registered = $registered;
351 351
   }
352 352
   public function getRegistered()
353 353
   {
354
-    return $this->registered;
354
+	return $this->registered;
355 355
   }
356 356
 }
357 357
 
@@ -364,11 +364,11 @@  discard block
 block discarded – undo
364 364
 
365 365
   public function setKind($kind)
366 366
   {
367
-    $this->kind = $kind;
367
+	$this->kind = $kind;
368 368
   }
369 369
   public function getKind()
370 370
   {
371
-    return $this->kind;
371
+	return $this->kind;
372 372
   }
373 373
 }
374 374
 
@@ -385,27 +385,27 @@  discard block
 block discarded – undo
385 385
 
386 386
   public function setKind($kind)
387 387
   {
388
-    $this->kind = $kind;
388
+	$this->kind = $kind;
389 389
   }
390 390
   public function getKind()
391 391
   {
392
-    return $this->kind;
392
+	return $this->kind;
393 393
   }
394 394
   public function setNextPageToken($nextPageToken)
395 395
   {
396
-    $this->nextPageToken = $nextPageToken;
396
+	$this->nextPageToken = $nextPageToken;
397 397
   }
398 398
   public function getNextPageToken()
399 399
   {
400
-    return $this->nextPageToken;
400
+	return $this->nextPageToken;
401 401
   }
402 402
   public function setUsers($users)
403 403
   {
404
-    $this->users = $users;
404
+	$this->users = $users;
405 405
   }
406 406
   public function getUsers()
407 407
   {
408
-    return $this->users;
408
+	return $this->users;
409 409
   }
410 410
 }
411 411
 
@@ -421,19 +421,19 @@  discard block
 block discarded – undo
421 421
 
422 422
   public function setKind($kind)
423 423
   {
424
-    $this->kind = $kind;
424
+	$this->kind = $kind;
425 425
   }
426 426
   public function getKind()
427 427
   {
428
-    return $this->kind;
428
+	return $this->kind;
429 429
   }
430 430
   public function setUsers($users)
431 431
   {
432
-    $this->users = $users;
432
+	$this->users = $users;
433 433
   }
434 434
   public function getUsers()
435 435
   {
436
-    return $this->users;
436
+	return $this->users;
437 437
   }
438 438
 }
439 439
 
@@ -447,19 +447,19 @@  discard block
 block discarded – undo
447 447
 
448 448
   public function setKind($kind)
449 449
   {
450
-    $this->kind = $kind;
450
+	$this->kind = $kind;
451 451
   }
452 452
   public function getKind()
453 453
   {
454
-    return $this->kind;
454
+	return $this->kind;
455 455
   }
456 456
   public function setOobCode($oobCode)
457 457
   {
458
-    $this->oobCode = $oobCode;
458
+	$this->oobCode = $oobCode;
459 459
   }
460 460
   public function getOobCode()
461 461
   {
462
-    return $this->oobCode;
462
+	return $this->oobCode;
463 463
   }
464 464
 }
465 465
 
@@ -474,27 +474,27 @@  discard block
 block discarded – undo
474 474
 
475 475
   public function setKind($kind)
476 476
   {
477
-    $this->kind = $kind;
477
+	$this->kind = $kind;
478 478
   }
479 479
   public function getKind()
480 480
   {
481
-    return $this->kind;
481
+	return $this->kind;
482 482
   }
483 483
   public function setRecaptchaSiteKey($recaptchaSiteKey)
484 484
   {
485
-    $this->recaptchaSiteKey = $recaptchaSiteKey;
485
+	$this->recaptchaSiteKey = $recaptchaSiteKey;
486 486
   }
487 487
   public function getRecaptchaSiteKey()
488 488
   {
489
-    return $this->recaptchaSiteKey;
489
+	return $this->recaptchaSiteKey;
490 490
   }
491 491
   public function setRecaptchaStoken($recaptchaStoken)
492 492
   {
493
-    $this->recaptchaStoken = $recaptchaStoken;
493
+	$this->recaptchaStoken = $recaptchaStoken;
494 494
   }
495 495
   public function getRecaptchaStoken()
496 496
   {
497
-    return $this->recaptchaStoken;
497
+	return $this->recaptchaStoken;
498 498
   }
499 499
 }
500 500
 
@@ -516,83 +516,83 @@  discard block
 block discarded – undo
516 516
 
517 517
   public function setAppId($appId)
518 518
   {
519
-    $this->appId = $appId;
519
+	$this->appId = $appId;
520 520
   }
521 521
   public function getAppId()
522 522
   {
523
-    return $this->appId;
523
+	return $this->appId;
524 524
   }
525 525
   public function setClientId($clientId)
526 526
   {
527
-    $this->clientId = $clientId;
527
+	$this->clientId = $clientId;
528 528
   }
529 529
   public function getClientId()
530 530
   {
531
-    return $this->clientId;
531
+	return $this->clientId;
532 532
   }
533 533
   public function setContext($context)
534 534
   {
535
-    $this->context = $context;
535
+	$this->context = $context;
536 536
   }
537 537
   public function getContext()
538 538
   {
539
-    return $this->context;
539
+	return $this->context;
540 540
   }
541 541
   public function setContinueUri($continueUri)
542 542
   {
543
-    $this->continueUri = $continueUri;
543
+	$this->continueUri = $continueUri;
544 544
   }
545 545
   public function getContinueUri()
546 546
   {
547
-    return $this->continueUri;
547
+	return $this->continueUri;
548 548
   }
549 549
   public function setIdentifier($identifier)
550 550
   {
551
-    $this->identifier = $identifier;
551
+	$this->identifier = $identifier;
552 552
   }
553 553
   public function getIdentifier()
554 554
   {
555
-    return $this->identifier;
555
+	return $this->identifier;
556 556
   }
557 557
   public function setOauthConsumerKey($oauthConsumerKey)
558 558
   {
559
-    $this->oauthConsumerKey = $oauthConsumerKey;
559
+	$this->oauthConsumerKey = $oauthConsumerKey;
560 560
   }
561 561
   public function getOauthConsumerKey()
562 562
   {
563
-    return $this->oauthConsumerKey;
563
+	return $this->oauthConsumerKey;
564 564
   }
565 565
   public function setOauthScope($oauthScope)
566 566
   {
567
-    $this->oauthScope = $oauthScope;
567
+	$this->oauthScope = $oauthScope;
568 568
   }
569 569
   public function getOauthScope()
570 570
   {
571
-    return $this->oauthScope;
571
+	return $this->oauthScope;
572 572
   }
573 573
   public function setOpenidRealm($openidRealm)
574 574
   {
575
-    $this->openidRealm = $openidRealm;
575
+	$this->openidRealm = $openidRealm;
576 576
   }
577 577
   public function getOpenidRealm()
578 578
   {
579
-    return $this->openidRealm;
579
+	return $this->openidRealm;
580 580
   }
581 581
   public function setOtaApp($otaApp)
582 582
   {
583
-    $this->otaApp = $otaApp;
583
+	$this->otaApp = $otaApp;
584 584
   }
585 585
   public function getOtaApp()
586 586
   {
587
-    return $this->otaApp;
587
+	return $this->otaApp;
588 588
   }
589 589
   public function setProviderId($providerId)
590 590
   {
591
-    $this->providerId = $providerId;
591
+	$this->providerId = $providerId;
592 592
   }
593 593
   public function getProviderId()
594 594
   {
595
-    return $this->providerId;
595
+	return $this->providerId;
596 596
   }
597 597
 }
598 598
 
@@ -605,11 +605,11 @@  discard block
 block discarded – undo
605 605
 
606 606
   public function setLocalId($localId)
607 607
   {
608
-    $this->localId = $localId;
608
+	$this->localId = $localId;
609 609
   }
610 610
   public function getLocalId()
611 611
   {
612
-    return $this->localId;
612
+	return $this->localId;
613 613
   }
614 614
 }
615 615
 
@@ -623,19 +623,19 @@  discard block
 block discarded – undo
623 623
 
624 624
   public function setMaxResults($maxResults)
625 625
   {
626
-    $this->maxResults = $maxResults;
626
+	$this->maxResults = $maxResults;
627 627
   }
628 628
   public function getMaxResults()
629 629
   {
630
-    return $this->maxResults;
630
+	return $this->maxResults;
631 631
   }
632 632
   public function setNextPageToken($nextPageToken)
633 633
   {
634
-    $this->nextPageToken = $nextPageToken;
634
+	$this->nextPageToken = $nextPageToken;
635 635
   }
636 636
   public function getNextPageToken()
637 637
   {
638
-    return $this->nextPageToken;
638
+	return $this->nextPageToken;
639 639
   }
640 640
 }
641 641
 
@@ -651,27 +651,27 @@  discard block
 block discarded – undo
651 651
 
652 652
   public function setEmail($email)
653 653
   {
654
-    $this->email = $email;
654
+	$this->email = $email;
655 655
   }
656 656
   public function getEmail()
657 657
   {
658
-    return $this->email;
658
+	return $this->email;
659 659
   }
660 660
   public function setIdToken($idToken)
661 661
   {
662
-    $this->idToken = $idToken;
662
+	$this->idToken = $idToken;
663 663
   }
664 664
   public function getIdToken()
665 665
   {
666
-    return $this->idToken;
666
+	return $this->idToken;
667 667
   }
668 668
   public function setLocalId($localId)
669 669
   {
670
-    $this->localId = $localId;
670
+	$this->localId = $localId;
671 671
   }
672 672
   public function getLocalId()
673 673
   {
674
-    return $this->localId;
674
+	return $this->localId;
675 675
   }
676 676
 }
677 677
 
@@ -691,35 +691,35 @@  discard block
 block discarded – undo
691 691
 
692 692
   public function setEmail($email)
693 693
   {
694
-    $this->email = $email;
694
+	$this->email = $email;
695 695
   }
696 696
   public function getEmail()
697 697
   {
698
-    return $this->email;
698
+	return $this->email;
699 699
   }
700 700
   public function setNewPassword($newPassword)
701 701
   {
702
-    $this->newPassword = $newPassword;
702
+	$this->newPassword = $newPassword;
703 703
   }
704 704
   public function getNewPassword()
705 705
   {
706
-    return $this->newPassword;
706
+	return $this->newPassword;
707 707
   }
708 708
   public function setOldPassword($oldPassword)
709 709
   {
710
-    $this->oldPassword = $oldPassword;
710
+	$this->oldPassword = $oldPassword;
711 711
   }
712 712
   public function getOldPassword()
713 713
   {
714
-    return $this->oldPassword;
714
+	return $this->oldPassword;
715 715
   }
716 716
   public function setOobCode($oobCode)
717 717
   {
718
-    $this->oobCode = $oobCode;
718
+	$this->oobCode = $oobCode;
719 719
   }
720 720
   public function getOobCode()
721 721
   {
722
-    return $this->oobCode;
722
+	return $this->oobCode;
723 723
   }
724 724
 }
725 725
 
@@ -745,107 +745,107 @@  discard block
 block discarded – undo
745 745
 
746 746
   public function setCaptchaChallenge($captchaChallenge)
747 747
   {
748
-    $this->captchaChallenge = $captchaChallenge;
748
+	$this->captchaChallenge = $captchaChallenge;
749 749
   }
750 750
   public function getCaptchaChallenge()
751 751
   {
752
-    return $this->captchaChallenge;
752
+	return $this->captchaChallenge;
753 753
   }
754 754
   public function setCaptchaResponse($captchaResponse)
755 755
   {
756
-    $this->captchaResponse = $captchaResponse;
756
+	$this->captchaResponse = $captchaResponse;
757 757
   }
758 758
   public function getCaptchaResponse()
759 759
   {
760
-    return $this->captchaResponse;
760
+	return $this->captchaResponse;
761 761
   }
762 762
   public function setDisableUser($disableUser)
763 763
   {
764
-    $this->disableUser = $disableUser;
764
+	$this->disableUser = $disableUser;
765 765
   }
766 766
   public function getDisableUser()
767 767
   {
768
-    return $this->disableUser;
768
+	return $this->disableUser;
769 769
   }
770 770
   public function setDisplayName($displayName)
771 771
   {
772
-    $this->displayName = $displayName;
772
+	$this->displayName = $displayName;
773 773
   }
774 774
   public function getDisplayName()
775 775
   {
776
-    return $this->displayName;
776
+	return $this->displayName;
777 777
   }
778 778
   public function setEmail($email)
779 779
   {
780
-    $this->email = $email;
780
+	$this->email = $email;
781 781
   }
782 782
   public function getEmail()
783 783
   {
784
-    return $this->email;
784
+	return $this->email;
785 785
   }
786 786
   public function setEmailVerified($emailVerified)
787 787
   {
788
-    $this->emailVerified = $emailVerified;
788
+	$this->emailVerified = $emailVerified;
789 789
   }
790 790
   public function getEmailVerified()
791 791
   {
792
-    return $this->emailVerified;
792
+	return $this->emailVerified;
793 793
   }
794 794
   public function setIdToken($idToken)
795 795
   {
796
-    $this->idToken = $idToken;
796
+	$this->idToken = $idToken;
797 797
   }
798 798
   public function getIdToken()
799 799
   {
800
-    return $this->idToken;
800
+	return $this->idToken;
801 801
   }
802 802
   public function setLocalId($localId)
803 803
   {
804
-    $this->localId = $localId;
804
+	$this->localId = $localId;
805 805
   }
806 806
   public function getLocalId()
807 807
   {
808
-    return $this->localId;
808
+	return $this->localId;
809 809
   }
810 810
   public function setOobCode($oobCode)
811 811
   {
812
-    $this->oobCode = $oobCode;
812
+	$this->oobCode = $oobCode;
813 813
   }
814 814
   public function getOobCode()
815 815
   {
816
-    return $this->oobCode;
816
+	return $this->oobCode;
817 817
   }
818 818
   public function setPassword($password)
819 819
   {
820
-    $this->password = $password;
820
+	$this->password = $password;
821 821
   }
822 822
   public function getPassword()
823 823
   {
824
-    return $this->password;
824
+	return $this->password;
825 825
   }
826 826
   public function setProvider($provider)
827 827
   {
828
-    $this->provider = $provider;
828
+	$this->provider = $provider;
829 829
   }
830 830
   public function getProvider()
831 831
   {
832
-    return $this->provider;
832
+	return $this->provider;
833 833
   }
834 834
   public function setUpgradeToFederatedLogin($upgradeToFederatedLogin)
835 835
   {
836
-    $this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
836
+	$this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
837 837
   }
838 838
   public function getUpgradeToFederatedLogin()
839 839
   {
840
-    return $this->upgradeToFederatedLogin;
840
+	return $this->upgradeToFederatedLogin;
841 841
   }
842 842
   public function setValidSince($validSince)
843 843
   {
844
-    $this->validSince = $validSince;
844
+	$this->validSince = $validSince;
845 845
   }
846 846
   public function getValidSince()
847 847
   {
848
-    return $this->validSince;
848
+	return $this->validSince;
849 849
   }
850 850
 }
851 851
 
@@ -865,51 +865,51 @@  discard block
 block discarded – undo
865 865
 
866 866
   public function setHashAlgorithm($hashAlgorithm)
867 867
   {
868
-    $this->hashAlgorithm = $hashAlgorithm;
868
+	$this->hashAlgorithm = $hashAlgorithm;
869 869
   }
870 870
   public function getHashAlgorithm()
871 871
   {
872
-    return $this->hashAlgorithm;
872
+	return $this->hashAlgorithm;
873 873
   }
874 874
   public function setMemoryCost($memoryCost)
875 875
   {
876
-    $this->memoryCost = $memoryCost;
876
+	$this->memoryCost = $memoryCost;
877 877
   }
878 878
   public function getMemoryCost()
879 879
   {
880
-    return $this->memoryCost;
880
+	return $this->memoryCost;
881 881
   }
882 882
   public function setRounds($rounds)
883 883
   {
884
-    $this->rounds = $rounds;
884
+	$this->rounds = $rounds;
885 885
   }
886 886
   public function getRounds()
887 887
   {
888
-    return $this->rounds;
888
+	return $this->rounds;
889 889
   }
890 890
   public function setSaltSeparator($saltSeparator)
891 891
   {
892
-    $this->saltSeparator = $saltSeparator;
892
+	$this->saltSeparator = $saltSeparator;
893 893
   }
894 894
   public function getSaltSeparator()
895 895
   {
896
-    return $this->saltSeparator;
896
+	return $this->saltSeparator;
897 897
   }
898 898
   public function setSignerKey($signerKey)
899 899
   {
900
-    $this->signerKey = $signerKey;
900
+	$this->signerKey = $signerKey;
901 901
   }
902 902
   public function getSignerKey()
903 903
   {
904
-    return $this->signerKey;
904
+	return $this->signerKey;
905 905
   }
906 906
   public function setUsers($users)
907 907
   {
908
-    $this->users = $users;
908
+	$this->users = $users;
909 909
   }
910 910
   public function getUsers()
911 911
   {
912
-    return $this->users;
912
+	return $this->users;
913 913
   }
914 914
 }
915 915
 
@@ -925,35 +925,35 @@  discard block
 block discarded – undo
925 925
 
926 926
   public function setPendingIdToken($pendingIdToken)
927 927
   {
928
-    $this->pendingIdToken = $pendingIdToken;
928
+	$this->pendingIdToken = $pendingIdToken;
929 929
   }
930 930
   public function getPendingIdToken()
931 931
   {
932
-    return $this->pendingIdToken;
932
+	return $this->pendingIdToken;
933 933
   }
934 934
   public function setPostBody($postBody)
935 935
   {
936
-    $this->postBody = $postBody;
936
+	$this->postBody = $postBody;
937 937
   }
938 938
   public function getPostBody()
939 939
   {
940
-    return $this->postBody;
940
+	return $this->postBody;
941 941
   }
942 942
   public function setRequestUri($requestUri)
943 943
   {
944
-    $this->requestUri = $requestUri;
944
+	$this->requestUri = $requestUri;
945 945
   }
946 946
   public function getRequestUri()
947 947
   {
948
-    return $this->requestUri;
948
+	return $this->requestUri;
949 949
   }
950 950
   public function setReturnRefreshToken($returnRefreshToken)
951 951
   {
952
-    $this->returnRefreshToken = $returnRefreshToken;
952
+	$this->returnRefreshToken = $returnRefreshToken;
953 953
   }
954 954
   public function getReturnRefreshToken()
955 955
   {
956
-    return $this->returnRefreshToken;
956
+	return $this->returnRefreshToken;
957 957
   }
958 958
 }
959 959
 
@@ -970,43 +970,43 @@  discard block
 block discarded – undo
970 970
 
971 971
   public function setCaptchaChallenge($captchaChallenge)
972 972
   {
973
-    $this->captchaChallenge = $captchaChallenge;
973
+	$this->captchaChallenge = $captchaChallenge;
974 974
   }
975 975
   public function getCaptchaChallenge()
976 976
   {
977
-    return $this->captchaChallenge;
977
+	return $this->captchaChallenge;
978 978
   }
979 979
   public function setCaptchaResponse($captchaResponse)
980 980
   {
981
-    $this->captchaResponse = $captchaResponse;
981
+	$this->captchaResponse = $captchaResponse;
982 982
   }
983 983
   public function getCaptchaResponse()
984 984
   {
985
-    return $this->captchaResponse;
985
+	return $this->captchaResponse;
986 986
   }
987 987
   public function setEmail($email)
988 988
   {
989
-    $this->email = $email;
989
+	$this->email = $email;
990 990
   }
991 991
   public function getEmail()
992 992
   {
993
-    return $this->email;
993
+	return $this->email;
994 994
   }
995 995
   public function setPassword($password)
996 996
   {
997
-    $this->password = $password;
997
+	$this->password = $password;
998 998
   }
999 999
   public function getPassword()
1000 1000
   {
1001
-    return $this->password;
1001
+	return $this->password;
1002 1002
   }
1003 1003
   public function setPendingIdToken($pendingIdToken)
1004 1004
   {
1005
-    $this->pendingIdToken = $pendingIdToken;
1005
+	$this->pendingIdToken = $pendingIdToken;
1006 1006
   }
1007 1007
   public function getPendingIdToken()
1008 1008
   {
1009
-    return $this->pendingIdToken;
1009
+	return $this->pendingIdToken;
1010 1010
   }
1011 1011
 }
1012 1012
 
@@ -1026,67 +1026,67 @@  discard block
 block discarded – undo
1026 1026
 
1027 1027
   public function setCaptchaResp($captchaResp)
1028 1028
   {
1029
-    $this->captchaResp = $captchaResp;
1029
+	$this->captchaResp = $captchaResp;
1030 1030
   }
1031 1031
   public function getCaptchaResp()
1032 1032
   {
1033
-    return $this->captchaResp;
1033
+	return $this->captchaResp;
1034 1034
   }
1035 1035
   public function setChallenge($challenge)
1036 1036
   {
1037
-    $this->challenge = $challenge;
1037
+	$this->challenge = $challenge;
1038 1038
   }
1039 1039
   public function getChallenge()
1040 1040
   {
1041
-    return $this->challenge;
1041
+	return $this->challenge;
1042 1042
   }
1043 1043
   public function setEmail($email)
1044 1044
   {
1045
-    $this->email = $email;
1045
+	$this->email = $email;
1046 1046
   }
1047 1047
   public function getEmail()
1048 1048
   {
1049
-    return $this->email;
1049
+	return $this->email;
1050 1050
   }
1051 1051
   public function setIdToken($idToken)
1052 1052
   {
1053
-    $this->idToken = $idToken;
1053
+	$this->idToken = $idToken;
1054 1054
   }
1055 1055
   public function getIdToken()
1056 1056
   {
1057
-    return $this->idToken;
1057
+	return $this->idToken;
1058 1058
   }
1059 1059
   public function setKind($kind)
1060 1060
   {
1061
-    $this->kind = $kind;
1061
+	$this->kind = $kind;
1062 1062
   }
1063 1063
   public function getKind()
1064 1064
   {
1065
-    return $this->kind;
1065
+	return $this->kind;
1066 1066
   }
1067 1067
   public function setNewEmail($newEmail)
1068 1068
   {
1069
-    $this->newEmail = $newEmail;
1069
+	$this->newEmail = $newEmail;
1070 1070
   }
1071 1071
   public function getNewEmail()
1072 1072
   {
1073
-    return $this->newEmail;
1073
+	return $this->newEmail;
1074 1074
   }
1075 1075
   public function setRequestType($requestType)
1076 1076
   {
1077
-    $this->requestType = $requestType;
1077
+	$this->requestType = $requestType;
1078 1078
   }
1079 1079
   public function getRequestType()
1080 1080
   {
1081
-    return $this->requestType;
1081
+	return $this->requestType;
1082 1082
   }
1083 1083
   public function setUserIp($userIp)
1084 1084
   {
1085
-    $this->userIp = $userIp;
1085
+	$this->userIp = $userIp;
1086 1086
   }
1087 1087
   public function getUserIp()
1088 1088
   {
1089
-    return $this->userIp;
1089
+	return $this->userIp;
1090 1090
   }
1091 1091
 }
1092 1092
 
@@ -1100,19 +1100,19 @@  discard block
 block discarded – undo
1100 1100
 
1101 1101
   public function setEmail($email)
1102 1102
   {
1103
-    $this->email = $email;
1103
+	$this->email = $email;
1104 1104
   }
1105 1105
   public function getEmail()
1106 1106
   {
1107
-    return $this->email;
1107
+	return $this->email;
1108 1108
   }
1109 1109
   public function setKind($kind)
1110 1110
   {
1111
-    $this->kind = $kind;
1111
+	$this->kind = $kind;
1112 1112
   }
1113 1113
   public function getKind()
1114 1114
   {
1115
-    return $this->kind;
1115
+	return $this->kind;
1116 1116
   }
1117 1117
 }
1118 1118
 
@@ -1131,43 +1131,43 @@  discard block
 block discarded – undo
1131 1131
 
1132 1132
   public function setDisplayName($displayName)
1133 1133
   {
1134
-    $this->displayName = $displayName;
1134
+	$this->displayName = $displayName;
1135 1135
   }
1136 1136
   public function getDisplayName()
1137 1137
   {
1138
-    return $this->displayName;
1138
+	return $this->displayName;
1139 1139
   }
1140 1140
   public function setEmail($email)
1141 1141
   {
1142
-    $this->email = $email;
1142
+	$this->email = $email;
1143 1143
   }
1144 1144
   public function getEmail()
1145 1145
   {
1146
-    return $this->email;
1146
+	return $this->email;
1147 1147
   }
1148 1148
   public function setIdToken($idToken)
1149 1149
   {
1150
-    $this->idToken = $idToken;
1150
+	$this->idToken = $idToken;
1151 1151
   }
1152 1152
   public function getIdToken()
1153 1153
   {
1154
-    return $this->idToken;
1154
+	return $this->idToken;
1155 1155
   }
1156 1156
   public function setKind($kind)
1157 1157
   {
1158
-    $this->kind = $kind;
1158
+	$this->kind = $kind;
1159 1159
   }
1160 1160
   public function getKind()
1161 1161
   {
1162
-    return $this->kind;
1162
+	return $this->kind;
1163 1163
   }
1164 1164
   public function setProviderUserInfo($providerUserInfo)
1165 1165
   {
1166
-    $this->providerUserInfo = $providerUserInfo;
1166
+	$this->providerUserInfo = $providerUserInfo;
1167 1167
   }
1168 1168
   public function getProviderUserInfo()
1169 1169
   {
1170
-    return $this->providerUserInfo;
1170
+	return $this->providerUserInfo;
1171 1171
   }
1172 1172
 }
1173 1173
 
@@ -1182,27 +1182,27 @@  discard block
 block discarded – undo
1182 1182
 
1183 1183
   public function setDisplayName($displayName)
1184 1184
   {
1185
-    $this->displayName = $displayName;
1185
+	$this->displayName = $displayName;
1186 1186
   }
1187 1187
   public function getDisplayName()
1188 1188
   {
1189
-    return $this->displayName;
1189
+	return $this->displayName;
1190 1190
   }
1191 1191
   public function setPhotoUrl($photoUrl)
1192 1192
   {
1193
-    $this->photoUrl = $photoUrl;
1193
+	$this->photoUrl = $photoUrl;
1194 1194
   }
1195 1195
   public function getPhotoUrl()
1196 1196
   {
1197
-    return $this->photoUrl;
1197
+	return $this->photoUrl;
1198 1198
   }
1199 1199
   public function setProviderId($providerId)
1200 1200
   {
1201
-    $this->providerId = $providerId;
1201
+	$this->providerId = $providerId;
1202 1202
   }
1203 1203
   public function getProviderId()
1204 1204
   {
1205
-    return $this->providerId;
1205
+	return $this->providerId;
1206 1206
   }
1207 1207
 }
1208 1208
 
@@ -1218,19 +1218,19 @@  discard block
 block discarded – undo
1218 1218
 
1219 1219
   public function setError($error)
1220 1220
   {
1221
-    $this->error = $error;
1221
+	$this->error = $error;
1222 1222
   }
1223 1223
   public function getError()
1224 1224
   {
1225
-    return $this->error;
1225
+	return $this->error;
1226 1226
   }
1227 1227
   public function setKind($kind)
1228 1228
   {
1229
-    $this->kind = $kind;
1229
+	$this->kind = $kind;
1230 1230
   }
1231 1231
   public function getKind()
1232 1232
   {
1233
-    return $this->kind;
1233
+	return $this->kind;
1234 1234
   }
1235 1235
 }
1236 1236
 
@@ -1244,19 +1244,19 @@  discard block
 block discarded – undo
1244 1244
 
1245 1245
   public function setIndex($index)
1246 1246
   {
1247
-    $this->index = $index;
1247
+	$this->index = $index;
1248 1248
   }
1249 1249
   public function getIndex()
1250 1250
   {
1251
-    return $this->index;
1251
+	return $this->index;
1252 1252
   }
1253 1253
   public function setMessage($message)
1254 1254
   {
1255
-    $this->message = $message;
1255
+	$this->message = $message;
1256 1256
   }
1257 1257
   public function getMessage()
1258 1258
   {
1259
-    return $this->message;
1259
+	return $this->message;
1260 1260
   }
1261 1261
 }
1262 1262
 
@@ -1282,99 +1282,99 @@  discard block
 block discarded – undo
1282 1282
 
1283 1283
   public function setDisabled($disabled)
1284 1284
   {
1285
-    $this->disabled = $disabled;
1285
+	$this->disabled = $disabled;
1286 1286
   }
1287 1287
   public function getDisabled()
1288 1288
   {
1289
-    return $this->disabled;
1289
+	return $this->disabled;
1290 1290
   }
1291 1291
   public function setDisplayName($displayName)
1292 1292
   {
1293
-    $this->displayName = $displayName;
1293
+	$this->displayName = $displayName;
1294 1294
   }
1295 1295
   public function getDisplayName()
1296 1296
   {
1297
-    return $this->displayName;
1297
+	return $this->displayName;
1298 1298
   }
1299 1299
   public function setEmail($email)
1300 1300
   {
1301
-    $this->email = $email;
1301
+	$this->email = $email;
1302 1302
   }
1303 1303
   public function getEmail()
1304 1304
   {
1305
-    return $this->email;
1305
+	return $this->email;
1306 1306
   }
1307 1307
   public function setEmailVerified($emailVerified)
1308 1308
   {
1309
-    $this->emailVerified = $emailVerified;
1309
+	$this->emailVerified = $emailVerified;
1310 1310
   }
1311 1311
   public function getEmailVerified()
1312 1312
   {
1313
-    return $this->emailVerified;
1313
+	return $this->emailVerified;
1314 1314
   }
1315 1315
   public function setLocalId($localId)
1316 1316
   {
1317
-    $this->localId = $localId;
1317
+	$this->localId = $localId;
1318 1318
   }
1319 1319
   public function getLocalId()
1320 1320
   {
1321
-    return $this->localId;
1321
+	return $this->localId;
1322 1322
   }
1323 1323
   public function setPasswordHash($passwordHash)
1324 1324
   {
1325
-    $this->passwordHash = $passwordHash;
1325
+	$this->passwordHash = $passwordHash;
1326 1326
   }
1327 1327
   public function getPasswordHash()
1328 1328
   {
1329
-    return $this->passwordHash;
1329
+	return $this->passwordHash;
1330 1330
   }
1331 1331
   public function setPasswordUpdatedAt($passwordUpdatedAt)
1332 1332
   {
1333
-    $this->passwordUpdatedAt = $passwordUpdatedAt;
1333
+	$this->passwordUpdatedAt = $passwordUpdatedAt;
1334 1334
   }
1335 1335
   public function getPasswordUpdatedAt()
1336 1336
   {
1337
-    return $this->passwordUpdatedAt;
1337
+	return $this->passwordUpdatedAt;
1338 1338
   }
1339 1339
   public function setPhotoUrl($photoUrl)
1340 1340
   {
1341
-    $this->photoUrl = $photoUrl;
1341
+	$this->photoUrl = $photoUrl;
1342 1342
   }
1343 1343
   public function getPhotoUrl()
1344 1344
   {
1345
-    return $this->photoUrl;
1345
+	return $this->photoUrl;
1346 1346
   }
1347 1347
   public function setProviderUserInfo($providerUserInfo)
1348 1348
   {
1349
-    $this->providerUserInfo = $providerUserInfo;
1349
+	$this->providerUserInfo = $providerUserInfo;
1350 1350
   }
1351 1351
   public function getProviderUserInfo()
1352 1352
   {
1353
-    return $this->providerUserInfo;
1353
+	return $this->providerUserInfo;
1354 1354
   }
1355 1355
   public function setSalt($salt)
1356 1356
   {
1357
-    $this->salt = $salt;
1357
+	$this->salt = $salt;
1358 1358
   }
1359 1359
   public function getSalt()
1360 1360
   {
1361
-    return $this->salt;
1361
+	return $this->salt;
1362 1362
   }
1363 1363
   public function setValidSince($validSince)
1364 1364
   {
1365
-    $this->validSince = $validSince;
1365
+	$this->validSince = $validSince;
1366 1366
   }
1367 1367
   public function getValidSince()
1368 1368
   {
1369
-    return $this->validSince;
1369
+	return $this->validSince;
1370 1370
   }
1371 1371
   public function setVersion($version)
1372 1372
   {
1373
-    $this->version = $version;
1373
+	$this->version = $version;
1374 1374
   }
1375 1375
   public function getVersion()
1376 1376
   {
1377
-    return $this->version;
1377
+	return $this->version;
1378 1378
   }
1379 1379
 }
1380 1380
 
@@ -1390,35 +1390,35 @@  discard block
 block discarded – undo
1390 1390
 
1391 1391
   public function setDisplayName($displayName)
1392 1392
   {
1393
-    $this->displayName = $displayName;
1393
+	$this->displayName = $displayName;
1394 1394
   }
1395 1395
   public function getDisplayName()
1396 1396
   {
1397
-    return $this->displayName;
1397
+	return $this->displayName;
1398 1398
   }
1399 1399
   public function setFederatedId($federatedId)
1400 1400
   {
1401
-    $this->federatedId = $federatedId;
1401
+	$this->federatedId = $federatedId;
1402 1402
   }
1403 1403
   public function getFederatedId()
1404 1404
   {
1405
-    return $this->federatedId;
1405
+	return $this->federatedId;
1406 1406
   }
1407 1407
   public function setPhotoUrl($photoUrl)
1408 1408
   {
1409
-    $this->photoUrl = $photoUrl;
1409
+	$this->photoUrl = $photoUrl;
1410 1410
   }
1411 1411
   public function getPhotoUrl()
1412 1412
   {
1413
-    return $this->photoUrl;
1413
+	return $this->photoUrl;
1414 1414
   }
1415 1415
   public function setProviderId($providerId)
1416 1416
   {
1417
-    $this->providerId = $providerId;
1417
+	$this->providerId = $providerId;
1418 1418
   }
1419 1419
   public function getProviderId()
1420 1420
   {
1421
-    return $this->providerId;
1421
+	return $this->providerId;
1422 1422
   }
1423 1423
 }
1424 1424
 
@@ -1461,243 +1461,243 @@  discard block
 block discarded – undo
1461 1461
 
1462 1462
   public function setAction($action)
1463 1463
   {
1464
-    $this->action = $action;
1464
+	$this->action = $action;
1465 1465
   }
1466 1466
   public function getAction()
1467 1467
   {
1468
-    return $this->action;
1468
+	return $this->action;
1469 1469
   }
1470 1470
   public function setAppInstallationUrl($appInstallationUrl)
1471 1471
   {
1472
-    $this->appInstallationUrl = $appInstallationUrl;
1472
+	$this->appInstallationUrl = $appInstallationUrl;
1473 1473
   }
1474 1474
   public function getAppInstallationUrl()
1475 1475
   {
1476
-    return $this->appInstallationUrl;
1476
+	return $this->appInstallationUrl;
1477 1477
   }
1478 1478
   public function setAppScheme($appScheme)
1479 1479
   {
1480
-    $this->appScheme = $appScheme;
1480
+	$this->appScheme = $appScheme;
1481 1481
   }
1482 1482
   public function getAppScheme()
1483 1483
   {
1484
-    return $this->appScheme;
1484
+	return $this->appScheme;
1485 1485
   }
1486 1486
   public function setContext($context)
1487 1487
   {
1488
-    $this->context = $context;
1488
+	$this->context = $context;
1489 1489
   }
1490 1490
   public function getContext()
1491 1491
   {
1492
-    return $this->context;
1492
+	return $this->context;
1493 1493
   }
1494 1494
   public function setDateOfBirth($dateOfBirth)
1495 1495
   {
1496
-    $this->dateOfBirth = $dateOfBirth;
1496
+	$this->dateOfBirth = $dateOfBirth;
1497 1497
   }
1498 1498
   public function getDateOfBirth()
1499 1499
   {
1500
-    return $this->dateOfBirth;
1500
+	return $this->dateOfBirth;
1501 1501
   }
1502 1502
   public function setDisplayName($displayName)
1503 1503
   {
1504
-    $this->displayName = $displayName;
1504
+	$this->displayName = $displayName;
1505 1505
   }
1506 1506
   public function getDisplayName()
1507 1507
   {
1508
-    return $this->displayName;
1508
+	return $this->displayName;
1509 1509
   }
1510 1510
   public function setEmail($email)
1511 1511
   {
1512
-    $this->email = $email;
1512
+	$this->email = $email;
1513 1513
   }
1514 1514
   public function getEmail()
1515 1515
   {
1516
-    return $this->email;
1516
+	return $this->email;
1517 1517
   }
1518 1518
   public function setEmailRecycled($emailRecycled)
1519 1519
   {
1520
-    $this->emailRecycled = $emailRecycled;
1520
+	$this->emailRecycled = $emailRecycled;
1521 1521
   }
1522 1522
   public function getEmailRecycled()
1523 1523
   {
1524
-    return $this->emailRecycled;
1524
+	return $this->emailRecycled;
1525 1525
   }
1526 1526
   public function setEmailVerified($emailVerified)
1527 1527
   {
1528
-    $this->emailVerified = $emailVerified;
1528
+	$this->emailVerified = $emailVerified;
1529 1529
   }
1530 1530
   public function getEmailVerified()
1531 1531
   {
1532
-    return $this->emailVerified;
1532
+	return $this->emailVerified;
1533 1533
   }
1534 1534
   public function setFederatedId($federatedId)
1535 1535
   {
1536
-    $this->federatedId = $federatedId;
1536
+	$this->federatedId = $federatedId;
1537 1537
   }
1538 1538
   public function getFederatedId()
1539 1539
   {
1540
-    return $this->federatedId;
1540
+	return $this->federatedId;
1541 1541
   }
1542 1542
   public function setFirstName($firstName)
1543 1543
   {
1544
-    $this->firstName = $firstName;
1544
+	$this->firstName = $firstName;
1545 1545
   }
1546 1546
   public function getFirstName()
1547 1547
   {
1548
-    return $this->firstName;
1548
+	return $this->firstName;
1549 1549
   }
1550 1550
   public function setFullName($fullName)
1551 1551
   {
1552
-    $this->fullName = $fullName;
1552
+	$this->fullName = $fullName;
1553 1553
   }
1554 1554
   public function getFullName()
1555 1555
   {
1556
-    return $this->fullName;
1556
+	return $this->fullName;
1557 1557
   }
1558 1558
   public function setIdToken($idToken)
1559 1559
   {
1560
-    $this->idToken = $idToken;
1560
+	$this->idToken = $idToken;
1561 1561
   }
1562 1562
   public function getIdToken()
1563 1563
   {
1564
-    return $this->idToken;
1564
+	return $this->idToken;
1565 1565
   }
1566 1566
   public function setInputEmail($inputEmail)
1567 1567
   {
1568
-    $this->inputEmail = $inputEmail;
1568
+	$this->inputEmail = $inputEmail;
1569 1569
   }
1570 1570
   public function getInputEmail()
1571 1571
   {
1572
-    return $this->inputEmail;
1572
+	return $this->inputEmail;
1573 1573
   }
1574 1574
   public function setKind($kind)
1575 1575
   {
1576
-    $this->kind = $kind;
1576
+	$this->kind = $kind;
1577 1577
   }
1578 1578
   public function getKind()
1579 1579
   {
1580
-    return $this->kind;
1580
+	return $this->kind;
1581 1581
   }
1582 1582
   public function setLanguage($language)
1583 1583
   {
1584
-    $this->language = $language;
1584
+	$this->language = $language;
1585 1585
   }
1586 1586
   public function getLanguage()
1587 1587
   {
1588
-    return $this->language;
1588
+	return $this->language;
1589 1589
   }
1590 1590
   public function setLastName($lastName)
1591 1591
   {
1592
-    $this->lastName = $lastName;
1592
+	$this->lastName = $lastName;
1593 1593
   }
1594 1594
   public function getLastName()
1595 1595
   {
1596
-    return $this->lastName;
1596
+	return $this->lastName;
1597 1597
   }
1598 1598
   public function setLocalId($localId)
1599 1599
   {
1600
-    $this->localId = $localId;
1600
+	$this->localId = $localId;
1601 1601
   }
1602 1602
   public function getLocalId()
1603 1603
   {
1604
-    return $this->localId;
1604
+	return $this->localId;
1605 1605
   }
1606 1606
   public function setNeedConfirmation($needConfirmation)
1607 1607
   {
1608
-    $this->needConfirmation = $needConfirmation;
1608
+	$this->needConfirmation = $needConfirmation;
1609 1609
   }
1610 1610
   public function getNeedConfirmation()
1611 1611
   {
1612
-    return $this->needConfirmation;
1612
+	return $this->needConfirmation;
1613 1613
   }
1614 1614
   public function setNickName($nickName)
1615 1615
   {
1616
-    $this->nickName = $nickName;
1616
+	$this->nickName = $nickName;
1617 1617
   }
1618 1618
   public function getNickName()
1619 1619
   {
1620
-    return $this->nickName;
1620
+	return $this->nickName;
1621 1621
   }
1622 1622
   public function setOauthAccessToken($oauthAccessToken)
1623 1623
   {
1624
-    $this->oauthAccessToken = $oauthAccessToken;
1624
+	$this->oauthAccessToken = $oauthAccessToken;
1625 1625
   }
1626 1626
   public function getOauthAccessToken()
1627 1627
   {
1628
-    return $this->oauthAccessToken;
1628
+	return $this->oauthAccessToken;
1629 1629
   }
1630 1630
   public function setOauthAuthorizationCode($oauthAuthorizationCode)
1631 1631
   {
1632
-    $this->oauthAuthorizationCode = $oauthAuthorizationCode;
1632
+	$this->oauthAuthorizationCode = $oauthAuthorizationCode;
1633 1633
   }
1634 1634
   public function getOauthAuthorizationCode()
1635 1635
   {
1636
-    return $this->oauthAuthorizationCode;
1636
+	return $this->oauthAuthorizationCode;
1637 1637
   }
1638 1638
   public function setOauthExpireIn($oauthExpireIn)
1639 1639
   {
1640
-    $this->oauthExpireIn = $oauthExpireIn;
1640
+	$this->oauthExpireIn = $oauthExpireIn;
1641 1641
   }
1642 1642
   public function getOauthExpireIn()
1643 1643
   {
1644
-    return $this->oauthExpireIn;
1644
+	return $this->oauthExpireIn;
1645 1645
   }
1646 1646
   public function setOauthRequestToken($oauthRequestToken)
1647 1647
   {
1648
-    $this->oauthRequestToken = $oauthRequestToken;
1648
+	$this->oauthRequestToken = $oauthRequestToken;
1649 1649
   }
1650 1650
   public function getOauthRequestToken()
1651 1651
   {
1652
-    return $this->oauthRequestToken;
1652
+	return $this->oauthRequestToken;
1653 1653
   }
1654 1654
   public function setOauthScope($oauthScope)
1655 1655
   {
1656
-    $this->oauthScope = $oauthScope;
1656
+	$this->oauthScope = $oauthScope;
1657 1657
   }
1658 1658
   public function getOauthScope()
1659 1659
   {
1660
-    return $this->oauthScope;
1660
+	return $this->oauthScope;
1661 1661
   }
1662 1662
   public function setOriginalEmail($originalEmail)
1663 1663
   {
1664
-    $this->originalEmail = $originalEmail;
1664
+	$this->originalEmail = $originalEmail;
1665 1665
   }
1666 1666
   public function getOriginalEmail()
1667 1667
   {
1668
-    return $this->originalEmail;
1668
+	return $this->originalEmail;
1669 1669
   }
1670 1670
   public function setPhotoUrl($photoUrl)
1671 1671
   {
1672
-    $this->photoUrl = $photoUrl;
1672
+	$this->photoUrl = $photoUrl;
1673 1673
   }
1674 1674
   public function getPhotoUrl()
1675 1675
   {
1676
-    return $this->photoUrl;
1676
+	return $this->photoUrl;
1677 1677
   }
1678 1678
   public function setProviderId($providerId)
1679 1679
   {
1680
-    $this->providerId = $providerId;
1680
+	$this->providerId = $providerId;
1681 1681
   }
1682 1682
   public function getProviderId()
1683 1683
   {
1684
-    return $this->providerId;
1684
+	return $this->providerId;
1685 1685
   }
1686 1686
   public function setTimeZone($timeZone)
1687 1687
   {
1688
-    $this->timeZone = $timeZone;
1688
+	$this->timeZone = $timeZone;
1689 1689
   }
1690 1690
   public function getTimeZone()
1691 1691
   {
1692
-    return $this->timeZone;
1692
+	return $this->timeZone;
1693 1693
   }
1694 1694
   public function setVerifiedProvider($verifiedProvider)
1695 1695
   {
1696
-    $this->verifiedProvider = $verifiedProvider;
1696
+	$this->verifiedProvider = $verifiedProvider;
1697 1697
   }
1698 1698
   public function getVerifiedProvider()
1699 1699
   {
1700
-    return $this->verifiedProvider;
1700
+	return $this->verifiedProvider;
1701 1701
   }
1702 1702
 }
1703 1703
 
@@ -1716,58 +1716,58 @@  discard block
 block discarded – undo
1716 1716
 
1717 1717
   public function setDisplayName($displayName)
1718 1718
   {
1719
-    $this->displayName = $displayName;
1719
+	$this->displayName = $displayName;
1720 1720
   }
1721 1721
   public function getDisplayName()
1722 1722
   {
1723
-    return $this->displayName;
1723
+	return $this->displayName;
1724 1724
   }
1725 1725
   public function setEmail($email)
1726 1726
   {
1727
-    $this->email = $email;
1727
+	$this->email = $email;
1728 1728
   }
1729 1729
   public function getEmail()
1730 1730
   {
1731
-    return $this->email;
1731
+	return $this->email;
1732 1732
   }
1733 1733
   public function setIdToken($idToken)
1734 1734
   {
1735
-    $this->idToken = $idToken;
1735
+	$this->idToken = $idToken;
1736 1736
   }
1737 1737
   public function getIdToken()
1738 1738
   {
1739
-    return $this->idToken;
1739
+	return $this->idToken;
1740 1740
   }
1741 1741
   public function setKind($kind)
1742 1742
   {
1743
-    $this->kind = $kind;
1743
+	$this->kind = $kind;
1744 1744
   }
1745 1745
   public function getKind()
1746 1746
   {
1747
-    return $this->kind;
1747
+	return $this->kind;
1748 1748
   }
1749 1749
   public function setLocalId($localId)
1750 1750
   {
1751
-    $this->localId = $localId;
1751
+	$this->localId = $localId;
1752 1752
   }
1753 1753
   public function getLocalId()
1754 1754
   {
1755
-    return $this->localId;
1755
+	return $this->localId;
1756 1756
   }
1757 1757
   public function setPhotoUrl($photoUrl)
1758 1758
   {
1759
-    $this->photoUrl = $photoUrl;
1759
+	$this->photoUrl = $photoUrl;
1760 1760
   }
1761 1761
   public function getPhotoUrl()
1762 1762
   {
1763
-    return $this->photoUrl;
1763
+	return $this->photoUrl;
1764 1764
   }
1765 1765
   public function setRegistered($registered)
1766 1766
   {
1767
-    $this->registered = $registered;
1767
+	$this->registered = $registered;
1768 1768
   }
1769 1769
   public function getRegistered()
1770 1770
   {
1771
-    return $this->registered;
1771
+	return $this->registered;
1772 1772
   }
1773 1773
 }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -58,47 +58,47 @@
 block discarded – undo
58 58
               'path' => 'createAuthUri',
59 59
               'httpMethod' => 'POST',
60 60
               'parameters' => array(),
61
-            ),'deleteAccount' => array(
61
+            ), 'deleteAccount' => array(
62 62
               'path' => 'deleteAccount',
63 63
               'httpMethod' => 'POST',
64 64
               'parameters' => array(),
65
-            ),'downloadAccount' => array(
65
+            ), 'downloadAccount' => array(
66 66
               'path' => 'downloadAccount',
67 67
               'httpMethod' => 'POST',
68 68
               'parameters' => array(),
69
-            ),'getAccountInfo' => array(
69
+            ), 'getAccountInfo' => array(
70 70
               'path' => 'getAccountInfo',
71 71
               'httpMethod' => 'POST',
72 72
               'parameters' => array(),
73
-            ),'getOobConfirmationCode' => array(
73
+            ), 'getOobConfirmationCode' => array(
74 74
               'path' => 'getOobConfirmationCode',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(),
77
-            ),'getPublicKeys' => array(
77
+            ), 'getPublicKeys' => array(
78 78
               'path' => 'publicKeys',
79 79
               'httpMethod' => 'GET',
80 80
               'parameters' => array(),
81
-            ),'getRecaptchaParam' => array(
81
+            ), 'getRecaptchaParam' => array(
82 82
               'path' => 'getRecaptchaParam',
83 83
               'httpMethod' => 'GET',
84 84
               'parameters' => array(),
85
-            ),'resetPassword' => array(
85
+            ), 'resetPassword' => array(
86 86
               'path' => 'resetPassword',
87 87
               'httpMethod' => 'POST',
88 88
               'parameters' => array(),
89
-            ),'setAccountInfo' => array(
89
+            ), 'setAccountInfo' => array(
90 90
               'path' => 'setAccountInfo',
91 91
               'httpMethod' => 'POST',
92 92
               'parameters' => array(),
93
-            ),'uploadAccount' => array(
93
+            ), 'uploadAccount' => array(
94 94
               'path' => 'uploadAccount',
95 95
               'httpMethod' => 'POST',
96 96
               'parameters' => array(),
97
-            ),'verifyAssertion' => array(
97
+            ), 'verifyAssertion' => array(
98 98
               'path' => 'verifyAssertion',
99 99
               'httpMethod' => 'POST',
100 100
               'parameters' => array(),
101
-            ),'verifyPassword' => array(
101
+            ), 'verifyPassword' => array(
102 102
               'path' => 'verifyPassword',
103 103
               'httpMethod' => 'POST',
104 104
               'parameters' => array(),
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/ShoppingContent.php 2 patches
Indentation   +1568 added lines, -1568 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** Manage your product listings and accounts for Google Shopping. */
35 35
   const CONTENT =
36
-      "https://www.googleapis.com/auth/content";
36
+	  "https://www.googleapis.com/auth/content";
37 37
 
38 38
   public $accounts;
39 39
   public $accountshipping;
@@ -53,660 +53,660 @@  discard block
 block discarded – undo
53 53
    */
54 54
   public function __construct(Google_Client $client)
55 55
   {
56
-    parent::__construct($client);
57
-    $this->rootUrl = 'https://www.googleapis.com/';
58
-    $this->servicePath = 'content/v2/';
59
-    $this->version = 'v2';
60
-    $this->serviceName = 'content';
61
-
62
-    $this->accounts = new Google_Service_ShoppingContent_Accounts_Resource(
63
-        $this,
64
-        $this->serviceName,
65
-        'accounts',
66
-        array(
67
-          'methods' => array(
68
-            'authinfo' => array(
69
-              'path' => 'accounts/authinfo',
70
-              'httpMethod' => 'GET',
71
-              'parameters' => array(),
72
-            ),'custombatch' => array(
73
-              'path' => 'accounts/batch',
74
-              'httpMethod' => 'POST',
75
-              'parameters' => array(),
76
-            ),'delete' => array(
77
-              'path' => '{merchantId}/accounts/{accountId}',
78
-              'httpMethod' => 'DELETE',
79
-              'parameters' => array(
80
-                'merchantId' => array(
81
-                  'location' => 'path',
82
-                  'type' => 'string',
83
-                  'required' => true,
84
-                ),
85
-                'accountId' => array(
86
-                  'location' => 'path',
87
-                  'type' => 'string',
88
-                  'required' => true,
89
-                ),
90
-              ),
91
-            ),'get' => array(
92
-              'path' => '{merchantId}/accounts/{accountId}',
93
-              'httpMethod' => 'GET',
94
-              'parameters' => array(
95
-                'merchantId' => array(
96
-                  'location' => 'path',
97
-                  'type' => 'string',
98
-                  'required' => true,
99
-                ),
100
-                'accountId' => array(
101
-                  'location' => 'path',
102
-                  'type' => 'string',
103
-                  'required' => true,
104
-                ),
105
-              ),
106
-            ),'insert' => array(
107
-              'path' => '{merchantId}/accounts',
108
-              'httpMethod' => 'POST',
109
-              'parameters' => array(
110
-                'merchantId' => array(
111
-                  'location' => 'path',
112
-                  'type' => 'string',
113
-                  'required' => true,
114
-                ),
115
-              ),
116
-            ),'list' => array(
117
-              'path' => '{merchantId}/accounts',
118
-              'httpMethod' => 'GET',
119
-              'parameters' => array(
120
-                'merchantId' => array(
121
-                  'location' => 'path',
122
-                  'type' => 'string',
123
-                  'required' => true,
124
-                ),
125
-                'pageToken' => array(
126
-                  'location' => 'query',
127
-                  'type' => 'string',
128
-                ),
129
-                'maxResults' => array(
130
-                  'location' => 'query',
131
-                  'type' => 'integer',
132
-                ),
133
-              ),
134
-            ),'patch' => array(
135
-              'path' => '{merchantId}/accounts/{accountId}',
136
-              'httpMethod' => 'PATCH',
137
-              'parameters' => array(
138
-                'merchantId' => array(
139
-                  'location' => 'path',
140
-                  'type' => 'string',
141
-                  'required' => true,
142
-                ),
143
-                'accountId' => array(
144
-                  'location' => 'path',
145
-                  'type' => 'string',
146
-                  'required' => true,
147
-                ),
148
-              ),
149
-            ),'update' => array(
150
-              'path' => '{merchantId}/accounts/{accountId}',
151
-              'httpMethod' => 'PUT',
152
-              'parameters' => array(
153
-                'merchantId' => array(
154
-                  'location' => 'path',
155
-                  'type' => 'string',
156
-                  'required' => true,
157
-                ),
158
-                'accountId' => array(
159
-                  'location' => 'path',
160
-                  'type' => 'string',
161
-                  'required' => true,
162
-                ),
163
-              ),
164
-            ),
165
-          )
166
-        )
167
-    );
168
-    $this->accountshipping = new Google_Service_ShoppingContent_Accountshipping_Resource(
169
-        $this,
170
-        $this->serviceName,
171
-        'accountshipping',
172
-        array(
173
-          'methods' => array(
174
-            'custombatch' => array(
175
-              'path' => 'accountshipping/batch',
176
-              'httpMethod' => 'POST',
177
-              'parameters' => array(
178
-                'dryRun' => array(
179
-                  'location' => 'query',
180
-                  'type' => 'boolean',
181
-                ),
182
-              ),
183
-            ),'get' => array(
184
-              'path' => '{merchantId}/accountshipping/{accountId}',
185
-              'httpMethod' => 'GET',
186
-              'parameters' => array(
187
-                'merchantId' => array(
188
-                  'location' => 'path',
189
-                  'type' => 'string',
190
-                  'required' => true,
191
-                ),
192
-                'accountId' => array(
193
-                  'location' => 'path',
194
-                  'type' => 'string',
195
-                  'required' => true,
196
-                ),
197
-              ),
198
-            ),'list' => array(
199
-              'path' => '{merchantId}/accountshipping',
200
-              'httpMethod' => 'GET',
201
-              'parameters' => array(
202
-                'merchantId' => array(
203
-                  'location' => 'path',
204
-                  'type' => 'string',
205
-                  'required' => true,
206
-                ),
207
-                'pageToken' => array(
208
-                  'location' => 'query',
209
-                  'type' => 'string',
210
-                ),
211
-                'maxResults' => array(
212
-                  'location' => 'query',
213
-                  'type' => 'integer',
214
-                ),
215
-              ),
216
-            ),'patch' => array(
217
-              'path' => '{merchantId}/accountshipping/{accountId}',
218
-              'httpMethod' => 'PATCH',
219
-              'parameters' => array(
220
-                'merchantId' => array(
221
-                  'location' => 'path',
222
-                  'type' => 'string',
223
-                  'required' => true,
224
-                ),
225
-                'accountId' => array(
226
-                  'location' => 'path',
227
-                  'type' => 'string',
228
-                  'required' => true,
229
-                ),
230
-                'dryRun' => array(
231
-                  'location' => 'query',
232
-                  'type' => 'boolean',
233
-                ),
234
-              ),
235
-            ),'update' => array(
236
-              'path' => '{merchantId}/accountshipping/{accountId}',
237
-              'httpMethod' => 'PUT',
238
-              'parameters' => array(
239
-                'merchantId' => array(
240
-                  'location' => 'path',
241
-                  'type' => 'string',
242
-                  'required' => true,
243
-                ),
244
-                'accountId' => array(
245
-                  'location' => 'path',
246
-                  'type' => 'string',
247
-                  'required' => true,
248
-                ),
249
-                'dryRun' => array(
250
-                  'location' => 'query',
251
-                  'type' => 'boolean',
252
-                ),
253
-              ),
254
-            ),
255
-          )
256
-        )
257
-    );
258
-    $this->accountstatuses = new Google_Service_ShoppingContent_Accountstatuses_Resource(
259
-        $this,
260
-        $this->serviceName,
261
-        'accountstatuses',
262
-        array(
263
-          'methods' => array(
264
-            'custombatch' => array(
265
-              'path' => 'accountstatuses/batch',
266
-              'httpMethod' => 'POST',
267
-              'parameters' => array(),
268
-            ),'get' => array(
269
-              'path' => '{merchantId}/accountstatuses/{accountId}',
270
-              'httpMethod' => 'GET',
271
-              'parameters' => array(
272
-                'merchantId' => array(
273
-                  'location' => 'path',
274
-                  'type' => 'string',
275
-                  'required' => true,
276
-                ),
277
-                'accountId' => array(
278
-                  'location' => 'path',
279
-                  'type' => 'string',
280
-                  'required' => true,
281
-                ),
282
-              ),
283
-            ),'list' => array(
284
-              'path' => '{merchantId}/accountstatuses',
285
-              'httpMethod' => 'GET',
286
-              'parameters' => array(
287
-                'merchantId' => array(
288
-                  'location' => 'path',
289
-                  'type' => 'string',
290
-                  'required' => true,
291
-                ),
292
-                'pageToken' => array(
293
-                  'location' => 'query',
294
-                  'type' => 'string',
295
-                ),
296
-                'maxResults' => array(
297
-                  'location' => 'query',
298
-                  'type' => 'integer',
299
-                ),
300
-              ),
301
-            ),
302
-          )
303
-        )
304
-    );
305
-    $this->accounttax = new Google_Service_ShoppingContent_Accounttax_Resource(
306
-        $this,
307
-        $this->serviceName,
308
-        'accounttax',
309
-        array(
310
-          'methods' => array(
311
-            'custombatch' => array(
312
-              'path' => 'accounttax/batch',
313
-              'httpMethod' => 'POST',
314
-              'parameters' => array(
315
-                'dryRun' => array(
316
-                  'location' => 'query',
317
-                  'type' => 'boolean',
318
-                ),
319
-              ),
320
-            ),'get' => array(
321
-              'path' => '{merchantId}/accounttax/{accountId}',
322
-              'httpMethod' => 'GET',
323
-              'parameters' => array(
324
-                'merchantId' => array(
325
-                  'location' => 'path',
326
-                  'type' => 'string',
327
-                  'required' => true,
328
-                ),
329
-                'accountId' => array(
330
-                  'location' => 'path',
331
-                  'type' => 'string',
332
-                  'required' => true,
333
-                ),
334
-              ),
335
-            ),'list' => array(
336
-              'path' => '{merchantId}/accounttax',
337
-              'httpMethod' => 'GET',
338
-              'parameters' => array(
339
-                'merchantId' => array(
340
-                  'location' => 'path',
341
-                  'type' => 'string',
342
-                  'required' => true,
343
-                ),
344
-                'pageToken' => array(
345
-                  'location' => 'query',
346
-                  'type' => 'string',
347
-                ),
348
-                'maxResults' => array(
349
-                  'location' => 'query',
350
-                  'type' => 'integer',
351
-                ),
352
-              ),
353
-            ),'patch' => array(
354
-              'path' => '{merchantId}/accounttax/{accountId}',
355
-              'httpMethod' => 'PATCH',
356
-              'parameters' => array(
357
-                'merchantId' => array(
358
-                  'location' => 'path',
359
-                  'type' => 'string',
360
-                  'required' => true,
361
-                ),
362
-                'accountId' => array(
363
-                  'location' => 'path',
364
-                  'type' => 'string',
365
-                  'required' => true,
366
-                ),
367
-                'dryRun' => array(
368
-                  'location' => 'query',
369
-                  'type' => 'boolean',
370
-                ),
371
-              ),
372
-            ),'update' => array(
373
-              'path' => '{merchantId}/accounttax/{accountId}',
374
-              'httpMethod' => 'PUT',
375
-              'parameters' => array(
376
-                'merchantId' => array(
377
-                  'location' => 'path',
378
-                  'type' => 'string',
379
-                  'required' => true,
380
-                ),
381
-                'accountId' => array(
382
-                  'location' => 'path',
383
-                  'type' => 'string',
384
-                  'required' => true,
385
-                ),
386
-                'dryRun' => array(
387
-                  'location' => 'query',
388
-                  'type' => 'boolean',
389
-                ),
390
-              ),
391
-            ),
392
-          )
393
-        )
394
-    );
395
-    $this->datafeeds = new Google_Service_ShoppingContent_Datafeeds_Resource(
396
-        $this,
397
-        $this->serviceName,
398
-        'datafeeds',
399
-        array(
400
-          'methods' => array(
401
-            'custombatch' => array(
402
-              'path' => 'datafeeds/batch',
403
-              'httpMethod' => 'POST',
404
-              'parameters' => array(),
405
-            ),'delete' => array(
406
-              'path' => '{merchantId}/datafeeds/{datafeedId}',
407
-              'httpMethod' => 'DELETE',
408
-              'parameters' => array(
409
-                'merchantId' => array(
410
-                  'location' => 'path',
411
-                  'type' => 'string',
412
-                  'required' => true,
413
-                ),
414
-                'datafeedId' => array(
415
-                  'location' => 'path',
416
-                  'type' => 'string',
417
-                  'required' => true,
418
-                ),
419
-              ),
420
-            ),'get' => array(
421
-              'path' => '{merchantId}/datafeeds/{datafeedId}',
422
-              'httpMethod' => 'GET',
423
-              'parameters' => array(
424
-                'merchantId' => array(
425
-                  'location' => 'path',
426
-                  'type' => 'string',
427
-                  'required' => true,
428
-                ),
429
-                'datafeedId' => array(
430
-                  'location' => 'path',
431
-                  'type' => 'string',
432
-                  'required' => true,
433
-                ),
434
-              ),
435
-            ),'insert' => array(
436
-              'path' => '{merchantId}/datafeeds',
437
-              'httpMethod' => 'POST',
438
-              'parameters' => array(
439
-                'merchantId' => array(
440
-                  'location' => 'path',
441
-                  'type' => 'string',
442
-                  'required' => true,
443
-                ),
444
-              ),
445
-            ),'list' => array(
446
-              'path' => '{merchantId}/datafeeds',
447
-              'httpMethod' => 'GET',
448
-              'parameters' => array(
449
-                'merchantId' => array(
450
-                  'location' => 'path',
451
-                  'type' => 'string',
452
-                  'required' => true,
453
-                ),
454
-                'pageToken' => array(
455
-                  'location' => 'query',
456
-                  'type' => 'string',
457
-                ),
458
-                'maxResults' => array(
459
-                  'location' => 'query',
460
-                  'type' => 'integer',
461
-                ),
462
-              ),
463
-            ),'patch' => array(
464
-              'path' => '{merchantId}/datafeeds/{datafeedId}',
465
-              'httpMethod' => 'PATCH',
466
-              'parameters' => array(
467
-                'merchantId' => array(
468
-                  'location' => 'path',
469
-                  'type' => 'string',
470
-                  'required' => true,
471
-                ),
472
-                'datafeedId' => array(
473
-                  'location' => 'path',
474
-                  'type' => 'string',
475
-                  'required' => true,
476
-                ),
477
-              ),
478
-            ),'update' => array(
479
-              'path' => '{merchantId}/datafeeds/{datafeedId}',
480
-              'httpMethod' => 'PUT',
481
-              'parameters' => array(
482
-                'merchantId' => array(
483
-                  'location' => 'path',
484
-                  'type' => 'string',
485
-                  'required' => true,
486
-                ),
487
-                'datafeedId' => array(
488
-                  'location' => 'path',
489
-                  'type' => 'string',
490
-                  'required' => true,
491
-                ),
492
-              ),
493
-            ),
494
-          )
495
-        )
496
-    );
497
-    $this->datafeedstatuses = new Google_Service_ShoppingContent_Datafeedstatuses_Resource(
498
-        $this,
499
-        $this->serviceName,
500
-        'datafeedstatuses',
501
-        array(
502
-          'methods' => array(
503
-            'custombatch' => array(
504
-              'path' => 'datafeedstatuses/batch',
505
-              'httpMethod' => 'POST',
506
-              'parameters' => array(),
507
-            ),'get' => array(
508
-              'path' => '{merchantId}/datafeedstatuses/{datafeedId}',
509
-              'httpMethod' => 'GET',
510
-              'parameters' => array(
511
-                'merchantId' => array(
512
-                  'location' => 'path',
513
-                  'type' => 'string',
514
-                  'required' => true,
515
-                ),
516
-                'datafeedId' => array(
517
-                  'location' => 'path',
518
-                  'type' => 'string',
519
-                  'required' => true,
520
-                ),
521
-              ),
522
-            ),'list' => array(
523
-              'path' => '{merchantId}/datafeedstatuses',
524
-              'httpMethod' => 'GET',
525
-              'parameters' => array(
526
-                'merchantId' => array(
527
-                  'location' => 'path',
528
-                  'type' => 'string',
529
-                  'required' => true,
530
-                ),
531
-                'pageToken' => array(
532
-                  'location' => 'query',
533
-                  'type' => 'string',
534
-                ),
535
-                'maxResults' => array(
536
-                  'location' => 'query',
537
-                  'type' => 'integer',
538
-                ),
539
-              ),
540
-            ),
541
-          )
542
-        )
543
-    );
544
-    $this->inventory = new Google_Service_ShoppingContent_Inventory_Resource(
545
-        $this,
546
-        $this->serviceName,
547
-        'inventory',
548
-        array(
549
-          'methods' => array(
550
-            'custombatch' => array(
551
-              'path' => 'inventory/batch',
552
-              'httpMethod' => 'POST',
553
-              'parameters' => array(),
554
-            ),'set' => array(
555
-              'path' => '{merchantId}/inventory/{storeCode}/products/{productId}',
556
-              'httpMethod' => 'POST',
557
-              'parameters' => array(
558
-                'merchantId' => array(
559
-                  'location' => 'path',
560
-                  'type' => 'string',
561
-                  'required' => true,
562
-                ),
563
-                'storeCode' => array(
564
-                  'location' => 'path',
565
-                  'type' => 'string',
566
-                  'required' => true,
567
-                ),
568
-                'productId' => array(
569
-                  'location' => 'path',
570
-                  'type' => 'string',
571
-                  'required' => true,
572
-                ),
573
-              ),
574
-            ),
575
-          )
576
-        )
577
-    );
578
-    $this->products = new Google_Service_ShoppingContent_Products_Resource(
579
-        $this,
580
-        $this->serviceName,
581
-        'products',
582
-        array(
583
-          'methods' => array(
584
-            'custombatch' => array(
585
-              'path' => 'products/batch',
586
-              'httpMethod' => 'POST',
587
-              'parameters' => array(
588
-                'dryRun' => array(
589
-                  'location' => 'query',
590
-                  'type' => 'boolean',
591
-                ),
592
-              ),
593
-            ),'delete' => array(
594
-              'path' => '{merchantId}/products/{productId}',
595
-              'httpMethod' => 'DELETE',
596
-              'parameters' => array(
597
-                'merchantId' => array(
598
-                  'location' => 'path',
599
-                  'type' => 'string',
600
-                  'required' => true,
601
-                ),
602
-                'productId' => array(
603
-                  'location' => 'path',
604
-                  'type' => 'string',
605
-                  'required' => true,
606
-                ),
607
-                'dryRun' => array(
608
-                  'location' => 'query',
609
-                  'type' => 'boolean',
610
-                ),
611
-              ),
612
-            ),'get' => array(
613
-              'path' => '{merchantId}/products/{productId}',
614
-              'httpMethod' => 'GET',
615
-              'parameters' => array(
616
-                'merchantId' => array(
617
-                  'location' => 'path',
618
-                  'type' => 'string',
619
-                  'required' => true,
620
-                ),
621
-                'productId' => array(
622
-                  'location' => 'path',
623
-                  'type' => 'string',
624
-                  'required' => true,
625
-                ),
626
-              ),
627
-            ),'insert' => array(
628
-              'path' => '{merchantId}/products',
629
-              'httpMethod' => 'POST',
630
-              'parameters' => array(
631
-                'merchantId' => array(
632
-                  'location' => 'path',
633
-                  'type' => 'string',
634
-                  'required' => true,
635
-                ),
636
-                'dryRun' => array(
637
-                  'location' => 'query',
638
-                  'type' => 'boolean',
639
-                ),
640
-              ),
641
-            ),'list' => array(
642
-              'path' => '{merchantId}/products',
643
-              'httpMethod' => 'GET',
644
-              'parameters' => array(
645
-                'merchantId' => array(
646
-                  'location' => 'path',
647
-                  'type' => 'string',
648
-                  'required' => true,
649
-                ),
650
-                'pageToken' => array(
651
-                  'location' => 'query',
652
-                  'type' => 'string',
653
-                ),
654
-                'maxResults' => array(
655
-                  'location' => 'query',
656
-                  'type' => 'integer',
657
-                ),
658
-              ),
659
-            ),
660
-          )
661
-        )
662
-    );
663
-    $this->productstatuses = new Google_Service_ShoppingContent_Productstatuses_Resource(
664
-        $this,
665
-        $this->serviceName,
666
-        'productstatuses',
667
-        array(
668
-          'methods' => array(
669
-            'custombatch' => array(
670
-              'path' => 'productstatuses/batch',
671
-              'httpMethod' => 'POST',
672
-              'parameters' => array(),
673
-            ),'get' => array(
674
-              'path' => '{merchantId}/productstatuses/{productId}',
675
-              'httpMethod' => 'GET',
676
-              'parameters' => array(
677
-                'merchantId' => array(
678
-                  'location' => 'path',
679
-                  'type' => 'string',
680
-                  'required' => true,
681
-                ),
682
-                'productId' => array(
683
-                  'location' => 'path',
684
-                  'type' => 'string',
685
-                  'required' => true,
686
-                ),
687
-              ),
688
-            ),'list' => array(
689
-              'path' => '{merchantId}/productstatuses',
690
-              'httpMethod' => 'GET',
691
-              'parameters' => array(
692
-                'merchantId' => array(
693
-                  'location' => 'path',
694
-                  'type' => 'string',
695
-                  'required' => true,
696
-                ),
697
-                'pageToken' => array(
698
-                  'location' => 'query',
699
-                  'type' => 'string',
700
-                ),
701
-                'maxResults' => array(
702
-                  'location' => 'query',
703
-                  'type' => 'integer',
704
-                ),
705
-              ),
706
-            ),
707
-          )
708
-        )
709
-    );
56
+	parent::__construct($client);
57
+	$this->rootUrl = 'https://www.googleapis.com/';
58
+	$this->servicePath = 'content/v2/';
59
+	$this->version = 'v2';
60
+	$this->serviceName = 'content';
61
+
62
+	$this->accounts = new Google_Service_ShoppingContent_Accounts_Resource(
63
+		$this,
64
+		$this->serviceName,
65
+		'accounts',
66
+		array(
67
+		  'methods' => array(
68
+			'authinfo' => array(
69
+			  'path' => 'accounts/authinfo',
70
+			  'httpMethod' => 'GET',
71
+			  'parameters' => array(),
72
+			),'custombatch' => array(
73
+			  'path' => 'accounts/batch',
74
+			  'httpMethod' => 'POST',
75
+			  'parameters' => array(),
76
+			),'delete' => array(
77
+			  'path' => '{merchantId}/accounts/{accountId}',
78
+			  'httpMethod' => 'DELETE',
79
+			  'parameters' => array(
80
+				'merchantId' => array(
81
+				  'location' => 'path',
82
+				  'type' => 'string',
83
+				  'required' => true,
84
+				),
85
+				'accountId' => array(
86
+				  'location' => 'path',
87
+				  'type' => 'string',
88
+				  'required' => true,
89
+				),
90
+			  ),
91
+			),'get' => array(
92
+			  'path' => '{merchantId}/accounts/{accountId}',
93
+			  'httpMethod' => 'GET',
94
+			  'parameters' => array(
95
+				'merchantId' => array(
96
+				  'location' => 'path',
97
+				  'type' => 'string',
98
+				  'required' => true,
99
+				),
100
+				'accountId' => array(
101
+				  'location' => 'path',
102
+				  'type' => 'string',
103
+				  'required' => true,
104
+				),
105
+			  ),
106
+			),'insert' => array(
107
+			  'path' => '{merchantId}/accounts',
108
+			  'httpMethod' => 'POST',
109
+			  'parameters' => array(
110
+				'merchantId' => array(
111
+				  'location' => 'path',
112
+				  'type' => 'string',
113
+				  'required' => true,
114
+				),
115
+			  ),
116
+			),'list' => array(
117
+			  'path' => '{merchantId}/accounts',
118
+			  'httpMethod' => 'GET',
119
+			  'parameters' => array(
120
+				'merchantId' => array(
121
+				  'location' => 'path',
122
+				  'type' => 'string',
123
+				  'required' => true,
124
+				),
125
+				'pageToken' => array(
126
+				  'location' => 'query',
127
+				  'type' => 'string',
128
+				),
129
+				'maxResults' => array(
130
+				  'location' => 'query',
131
+				  'type' => 'integer',
132
+				),
133
+			  ),
134
+			),'patch' => array(
135
+			  'path' => '{merchantId}/accounts/{accountId}',
136
+			  'httpMethod' => 'PATCH',
137
+			  'parameters' => array(
138
+				'merchantId' => array(
139
+				  'location' => 'path',
140
+				  'type' => 'string',
141
+				  'required' => true,
142
+				),
143
+				'accountId' => array(
144
+				  'location' => 'path',
145
+				  'type' => 'string',
146
+				  'required' => true,
147
+				),
148
+			  ),
149
+			),'update' => array(
150
+			  'path' => '{merchantId}/accounts/{accountId}',
151
+			  'httpMethod' => 'PUT',
152
+			  'parameters' => array(
153
+				'merchantId' => array(
154
+				  'location' => 'path',
155
+				  'type' => 'string',
156
+				  'required' => true,
157
+				),
158
+				'accountId' => array(
159
+				  'location' => 'path',
160
+				  'type' => 'string',
161
+				  'required' => true,
162
+				),
163
+			  ),
164
+			),
165
+		  )
166
+		)
167
+	);
168
+	$this->accountshipping = new Google_Service_ShoppingContent_Accountshipping_Resource(
169
+		$this,
170
+		$this->serviceName,
171
+		'accountshipping',
172
+		array(
173
+		  'methods' => array(
174
+			'custombatch' => array(
175
+			  'path' => 'accountshipping/batch',
176
+			  'httpMethod' => 'POST',
177
+			  'parameters' => array(
178
+				'dryRun' => array(
179
+				  'location' => 'query',
180
+				  'type' => 'boolean',
181
+				),
182
+			  ),
183
+			),'get' => array(
184
+			  'path' => '{merchantId}/accountshipping/{accountId}',
185
+			  'httpMethod' => 'GET',
186
+			  'parameters' => array(
187
+				'merchantId' => array(
188
+				  'location' => 'path',
189
+				  'type' => 'string',
190
+				  'required' => true,
191
+				),
192
+				'accountId' => array(
193
+				  'location' => 'path',
194
+				  'type' => 'string',
195
+				  'required' => true,
196
+				),
197
+			  ),
198
+			),'list' => array(
199
+			  'path' => '{merchantId}/accountshipping',
200
+			  'httpMethod' => 'GET',
201
+			  'parameters' => array(
202
+				'merchantId' => array(
203
+				  'location' => 'path',
204
+				  'type' => 'string',
205
+				  'required' => true,
206
+				),
207
+				'pageToken' => array(
208
+				  'location' => 'query',
209
+				  'type' => 'string',
210
+				),
211
+				'maxResults' => array(
212
+				  'location' => 'query',
213
+				  'type' => 'integer',
214
+				),
215
+			  ),
216
+			),'patch' => array(
217
+			  'path' => '{merchantId}/accountshipping/{accountId}',
218
+			  'httpMethod' => 'PATCH',
219
+			  'parameters' => array(
220
+				'merchantId' => array(
221
+				  'location' => 'path',
222
+				  'type' => 'string',
223
+				  'required' => true,
224
+				),
225
+				'accountId' => array(
226
+				  'location' => 'path',
227
+				  'type' => 'string',
228
+				  'required' => true,
229
+				),
230
+				'dryRun' => array(
231
+				  'location' => 'query',
232
+				  'type' => 'boolean',
233
+				),
234
+			  ),
235
+			),'update' => array(
236
+			  'path' => '{merchantId}/accountshipping/{accountId}',
237
+			  'httpMethod' => 'PUT',
238
+			  'parameters' => array(
239
+				'merchantId' => array(
240
+				  'location' => 'path',
241
+				  'type' => 'string',
242
+				  'required' => true,
243
+				),
244
+				'accountId' => array(
245
+				  'location' => 'path',
246
+				  'type' => 'string',
247
+				  'required' => true,
248
+				),
249
+				'dryRun' => array(
250
+				  'location' => 'query',
251
+				  'type' => 'boolean',
252
+				),
253
+			  ),
254
+			),
255
+		  )
256
+		)
257
+	);
258
+	$this->accountstatuses = new Google_Service_ShoppingContent_Accountstatuses_Resource(
259
+		$this,
260
+		$this->serviceName,
261
+		'accountstatuses',
262
+		array(
263
+		  'methods' => array(
264
+			'custombatch' => array(
265
+			  'path' => 'accountstatuses/batch',
266
+			  'httpMethod' => 'POST',
267
+			  'parameters' => array(),
268
+			),'get' => array(
269
+			  'path' => '{merchantId}/accountstatuses/{accountId}',
270
+			  'httpMethod' => 'GET',
271
+			  'parameters' => array(
272
+				'merchantId' => array(
273
+				  'location' => 'path',
274
+				  'type' => 'string',
275
+				  'required' => true,
276
+				),
277
+				'accountId' => array(
278
+				  'location' => 'path',
279
+				  'type' => 'string',
280
+				  'required' => true,
281
+				),
282
+			  ),
283
+			),'list' => array(
284
+			  'path' => '{merchantId}/accountstatuses',
285
+			  'httpMethod' => 'GET',
286
+			  'parameters' => array(
287
+				'merchantId' => array(
288
+				  'location' => 'path',
289
+				  'type' => 'string',
290
+				  'required' => true,
291
+				),
292
+				'pageToken' => array(
293
+				  'location' => 'query',
294
+				  'type' => 'string',
295
+				),
296
+				'maxResults' => array(
297
+				  'location' => 'query',
298
+				  'type' => 'integer',
299
+				),
300
+			  ),
301
+			),
302
+		  )
303
+		)
304
+	);
305
+	$this->accounttax = new Google_Service_ShoppingContent_Accounttax_Resource(
306
+		$this,
307
+		$this->serviceName,
308
+		'accounttax',
309
+		array(
310
+		  'methods' => array(
311
+			'custombatch' => array(
312
+			  'path' => 'accounttax/batch',
313
+			  'httpMethod' => 'POST',
314
+			  'parameters' => array(
315
+				'dryRun' => array(
316
+				  'location' => 'query',
317
+				  'type' => 'boolean',
318
+				),
319
+			  ),
320
+			),'get' => array(
321
+			  'path' => '{merchantId}/accounttax/{accountId}',
322
+			  'httpMethod' => 'GET',
323
+			  'parameters' => array(
324
+				'merchantId' => array(
325
+				  'location' => 'path',
326
+				  'type' => 'string',
327
+				  'required' => true,
328
+				),
329
+				'accountId' => array(
330
+				  'location' => 'path',
331
+				  'type' => 'string',
332
+				  'required' => true,
333
+				),
334
+			  ),
335
+			),'list' => array(
336
+			  'path' => '{merchantId}/accounttax',
337
+			  'httpMethod' => 'GET',
338
+			  'parameters' => array(
339
+				'merchantId' => array(
340
+				  'location' => 'path',
341
+				  'type' => 'string',
342
+				  'required' => true,
343
+				),
344
+				'pageToken' => array(
345
+				  'location' => 'query',
346
+				  'type' => 'string',
347
+				),
348
+				'maxResults' => array(
349
+				  'location' => 'query',
350
+				  'type' => 'integer',
351
+				),
352
+			  ),
353
+			),'patch' => array(
354
+			  'path' => '{merchantId}/accounttax/{accountId}',
355
+			  'httpMethod' => 'PATCH',
356
+			  'parameters' => array(
357
+				'merchantId' => array(
358
+				  'location' => 'path',
359
+				  'type' => 'string',
360
+				  'required' => true,
361
+				),
362
+				'accountId' => array(
363
+				  'location' => 'path',
364
+				  'type' => 'string',
365
+				  'required' => true,
366
+				),
367
+				'dryRun' => array(
368
+				  'location' => 'query',
369
+				  'type' => 'boolean',
370
+				),
371
+			  ),
372
+			),'update' => array(
373
+			  'path' => '{merchantId}/accounttax/{accountId}',
374
+			  'httpMethod' => 'PUT',
375
+			  'parameters' => array(
376
+				'merchantId' => array(
377
+				  'location' => 'path',
378
+				  'type' => 'string',
379
+				  'required' => true,
380
+				),
381
+				'accountId' => array(
382
+				  'location' => 'path',
383
+				  'type' => 'string',
384
+				  'required' => true,
385
+				),
386
+				'dryRun' => array(
387
+				  'location' => 'query',
388
+				  'type' => 'boolean',
389
+				),
390
+			  ),
391
+			),
392
+		  )
393
+		)
394
+	);
395
+	$this->datafeeds = new Google_Service_ShoppingContent_Datafeeds_Resource(
396
+		$this,
397
+		$this->serviceName,
398
+		'datafeeds',
399
+		array(
400
+		  'methods' => array(
401
+			'custombatch' => array(
402
+			  'path' => 'datafeeds/batch',
403
+			  'httpMethod' => 'POST',
404
+			  'parameters' => array(),
405
+			),'delete' => array(
406
+			  'path' => '{merchantId}/datafeeds/{datafeedId}',
407
+			  'httpMethod' => 'DELETE',
408
+			  'parameters' => array(
409
+				'merchantId' => array(
410
+				  'location' => 'path',
411
+				  'type' => 'string',
412
+				  'required' => true,
413
+				),
414
+				'datafeedId' => array(
415
+				  'location' => 'path',
416
+				  'type' => 'string',
417
+				  'required' => true,
418
+				),
419
+			  ),
420
+			),'get' => array(
421
+			  'path' => '{merchantId}/datafeeds/{datafeedId}',
422
+			  'httpMethod' => 'GET',
423
+			  'parameters' => array(
424
+				'merchantId' => array(
425
+				  'location' => 'path',
426
+				  'type' => 'string',
427
+				  'required' => true,
428
+				),
429
+				'datafeedId' => array(
430
+				  'location' => 'path',
431
+				  'type' => 'string',
432
+				  'required' => true,
433
+				),
434
+			  ),
435
+			),'insert' => array(
436
+			  'path' => '{merchantId}/datafeeds',
437
+			  'httpMethod' => 'POST',
438
+			  'parameters' => array(
439
+				'merchantId' => array(
440
+				  'location' => 'path',
441
+				  'type' => 'string',
442
+				  'required' => true,
443
+				),
444
+			  ),
445
+			),'list' => array(
446
+			  'path' => '{merchantId}/datafeeds',
447
+			  'httpMethod' => 'GET',
448
+			  'parameters' => array(
449
+				'merchantId' => array(
450
+				  'location' => 'path',
451
+				  'type' => 'string',
452
+				  'required' => true,
453
+				),
454
+				'pageToken' => array(
455
+				  'location' => 'query',
456
+				  'type' => 'string',
457
+				),
458
+				'maxResults' => array(
459
+				  'location' => 'query',
460
+				  'type' => 'integer',
461
+				),
462
+			  ),
463
+			),'patch' => array(
464
+			  'path' => '{merchantId}/datafeeds/{datafeedId}',
465
+			  'httpMethod' => 'PATCH',
466
+			  'parameters' => array(
467
+				'merchantId' => array(
468
+				  'location' => 'path',
469
+				  'type' => 'string',
470
+				  'required' => true,
471
+				),
472
+				'datafeedId' => array(
473
+				  'location' => 'path',
474
+				  'type' => 'string',
475
+				  'required' => true,
476
+				),
477
+			  ),
478
+			),'update' => array(
479
+			  'path' => '{merchantId}/datafeeds/{datafeedId}',
480
+			  'httpMethod' => 'PUT',
481
+			  'parameters' => array(
482
+				'merchantId' => array(
483
+				  'location' => 'path',
484
+				  'type' => 'string',
485
+				  'required' => true,
486
+				),
487
+				'datafeedId' => array(
488
+				  'location' => 'path',
489
+				  'type' => 'string',
490
+				  'required' => true,
491
+				),
492
+			  ),
493
+			),
494
+		  )
495
+		)
496
+	);
497
+	$this->datafeedstatuses = new Google_Service_ShoppingContent_Datafeedstatuses_Resource(
498
+		$this,
499
+		$this->serviceName,
500
+		'datafeedstatuses',
501
+		array(
502
+		  'methods' => array(
503
+			'custombatch' => array(
504
+			  'path' => 'datafeedstatuses/batch',
505
+			  'httpMethod' => 'POST',
506
+			  'parameters' => array(),
507
+			),'get' => array(
508
+			  'path' => '{merchantId}/datafeedstatuses/{datafeedId}',
509
+			  'httpMethod' => 'GET',
510
+			  'parameters' => array(
511
+				'merchantId' => array(
512
+				  'location' => 'path',
513
+				  'type' => 'string',
514
+				  'required' => true,
515
+				),
516
+				'datafeedId' => array(
517
+				  'location' => 'path',
518
+				  'type' => 'string',
519
+				  'required' => true,
520
+				),
521
+			  ),
522
+			),'list' => array(
523
+			  'path' => '{merchantId}/datafeedstatuses',
524
+			  'httpMethod' => 'GET',
525
+			  'parameters' => array(
526
+				'merchantId' => array(
527
+				  'location' => 'path',
528
+				  'type' => 'string',
529
+				  'required' => true,
530
+				),
531
+				'pageToken' => array(
532
+				  'location' => 'query',
533
+				  'type' => 'string',
534
+				),
535
+				'maxResults' => array(
536
+				  'location' => 'query',
537
+				  'type' => 'integer',
538
+				),
539
+			  ),
540
+			),
541
+		  )
542
+		)
543
+	);
544
+	$this->inventory = new Google_Service_ShoppingContent_Inventory_Resource(
545
+		$this,
546
+		$this->serviceName,
547
+		'inventory',
548
+		array(
549
+		  'methods' => array(
550
+			'custombatch' => array(
551
+			  'path' => 'inventory/batch',
552
+			  'httpMethod' => 'POST',
553
+			  'parameters' => array(),
554
+			),'set' => array(
555
+			  'path' => '{merchantId}/inventory/{storeCode}/products/{productId}',
556
+			  'httpMethod' => 'POST',
557
+			  'parameters' => array(
558
+				'merchantId' => array(
559
+				  'location' => 'path',
560
+				  'type' => 'string',
561
+				  'required' => true,
562
+				),
563
+				'storeCode' => array(
564
+				  'location' => 'path',
565
+				  'type' => 'string',
566
+				  'required' => true,
567
+				),
568
+				'productId' => array(
569
+				  'location' => 'path',
570
+				  'type' => 'string',
571
+				  'required' => true,
572
+				),
573
+			  ),
574
+			),
575
+		  )
576
+		)
577
+	);
578
+	$this->products = new Google_Service_ShoppingContent_Products_Resource(
579
+		$this,
580
+		$this->serviceName,
581
+		'products',
582
+		array(
583
+		  'methods' => array(
584
+			'custombatch' => array(
585
+			  'path' => 'products/batch',
586
+			  'httpMethod' => 'POST',
587
+			  'parameters' => array(
588
+				'dryRun' => array(
589
+				  'location' => 'query',
590
+				  'type' => 'boolean',
591
+				),
592
+			  ),
593
+			),'delete' => array(
594
+			  'path' => '{merchantId}/products/{productId}',
595
+			  'httpMethod' => 'DELETE',
596
+			  'parameters' => array(
597
+				'merchantId' => array(
598
+				  'location' => 'path',
599
+				  'type' => 'string',
600
+				  'required' => true,
601
+				),
602
+				'productId' => array(
603
+				  'location' => 'path',
604
+				  'type' => 'string',
605
+				  'required' => true,
606
+				),
607
+				'dryRun' => array(
608
+				  'location' => 'query',
609
+				  'type' => 'boolean',
610
+				),
611
+			  ),
612
+			),'get' => array(
613
+			  'path' => '{merchantId}/products/{productId}',
614
+			  'httpMethod' => 'GET',
615
+			  'parameters' => array(
616
+				'merchantId' => array(
617
+				  'location' => 'path',
618
+				  'type' => 'string',
619
+				  'required' => true,
620
+				),
621
+				'productId' => array(
622
+				  'location' => 'path',
623
+				  'type' => 'string',
624
+				  'required' => true,
625
+				),
626
+			  ),
627
+			),'insert' => array(
628
+			  'path' => '{merchantId}/products',
629
+			  'httpMethod' => 'POST',
630
+			  'parameters' => array(
631
+				'merchantId' => array(
632
+				  'location' => 'path',
633
+				  'type' => 'string',
634
+				  'required' => true,
635
+				),
636
+				'dryRun' => array(
637
+				  'location' => 'query',
638
+				  'type' => 'boolean',
639
+				),
640
+			  ),
641
+			),'list' => array(
642
+			  'path' => '{merchantId}/products',
643
+			  'httpMethod' => 'GET',
644
+			  'parameters' => array(
645
+				'merchantId' => array(
646
+				  'location' => 'path',
647
+				  'type' => 'string',
648
+				  'required' => true,
649
+				),
650
+				'pageToken' => array(
651
+				  'location' => 'query',
652
+				  'type' => 'string',
653
+				),
654
+				'maxResults' => array(
655
+				  'location' => 'query',
656
+				  'type' => 'integer',
657
+				),
658
+			  ),
659
+			),
660
+		  )
661
+		)
662
+	);
663
+	$this->productstatuses = new Google_Service_ShoppingContent_Productstatuses_Resource(
664
+		$this,
665
+		$this->serviceName,
666
+		'productstatuses',
667
+		array(
668
+		  'methods' => array(
669
+			'custombatch' => array(
670
+			  'path' => 'productstatuses/batch',
671
+			  'httpMethod' => 'POST',
672
+			  'parameters' => array(),
673
+			),'get' => array(
674
+			  'path' => '{merchantId}/productstatuses/{productId}',
675
+			  'httpMethod' => 'GET',
676
+			  'parameters' => array(
677
+				'merchantId' => array(
678
+				  'location' => 'path',
679
+				  'type' => 'string',
680
+				  'required' => true,
681
+				),
682
+				'productId' => array(
683
+				  'location' => 'path',
684
+				  'type' => 'string',
685
+				  'required' => true,
686
+				),
687
+			  ),
688
+			),'list' => array(
689
+			  'path' => '{merchantId}/productstatuses',
690
+			  'httpMethod' => 'GET',
691
+			  'parameters' => array(
692
+				'merchantId' => array(
693
+				  'location' => 'path',
694
+				  'type' => 'string',
695
+				  'required' => true,
696
+				),
697
+				'pageToken' => array(
698
+				  'location' => 'query',
699
+				  'type' => 'string',
700
+				),
701
+				'maxResults' => array(
702
+				  'location' => 'query',
703
+				  'type' => 'integer',
704
+				),
705
+			  ),
706
+			),
707
+		  )
708
+		)
709
+	);
710 710
   }
711 711
 }
712 712
 
@@ -730,9 +730,9 @@  discard block
 block discarded – undo
730 730
    */
731 731
   public function authinfo($optParams = array())
732 732
   {
733
-    $params = array();
734
-    $params = array_merge($params, $optParams);
735
-    return $this->call('authinfo', array($params), "Google_Service_ShoppingContent_AccountsAuthInfoResponse");
733
+	$params = array();
734
+	$params = array_merge($params, $optParams);
735
+	return $this->call('authinfo', array($params), "Google_Service_ShoppingContent_AccountsAuthInfoResponse");
736 736
   }
737 737
 
738 738
   /**
@@ -745,9 +745,9 @@  discard block
 block discarded – undo
745 745
    */
746 746
   public function custombatch(Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody, $optParams = array())
747 747
   {
748
-    $params = array('postBody' => $postBody);
749
-    $params = array_merge($params, $optParams);
750
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountsCustomBatchResponse");
748
+	$params = array('postBody' => $postBody);
749
+	$params = array_merge($params, $optParams);
750
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountsCustomBatchResponse");
751 751
   }
752 752
 
753 753
   /**
@@ -759,9 +759,9 @@  discard block
 block discarded – undo
759 759
    */
760 760
   public function delete($merchantId, $accountId, $optParams = array())
761 761
   {
762
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
763
-    $params = array_merge($params, $optParams);
764
-    return $this->call('delete', array($params));
762
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId);
763
+	$params = array_merge($params, $optParams);
764
+	return $this->call('delete', array($params));
765 765
   }
766 766
 
767 767
   /**
@@ -774,9 +774,9 @@  discard block
 block discarded – undo
774 774
    */
775 775
   public function get($merchantId, $accountId, $optParams = array())
776 776
   {
777
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
778
-    $params = array_merge($params, $optParams);
779
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_Account");
777
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId);
778
+	$params = array_merge($params, $optParams);
779
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_Account");
780 780
   }
781 781
 
782 782
   /**
@@ -789,9 +789,9 @@  discard block
 block discarded – undo
789 789
    */
790 790
   public function insert($merchantId, Google_Service_ShoppingContent_Account $postBody, $optParams = array())
791 791
   {
792
-    $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
793
-    $params = array_merge($params, $optParams);
794
-    return $this->call('insert', array($params), "Google_Service_ShoppingContent_Account");
792
+	$params = array('merchantId' => $merchantId, 'postBody' => $postBody);
793
+	$params = array_merge($params, $optParams);
794
+	return $this->call('insert', array($params), "Google_Service_ShoppingContent_Account");
795 795
   }
796 796
 
797 797
   /**
@@ -808,9 +808,9 @@  discard block
 block discarded – undo
808 808
    */
809 809
   public function listAccounts($merchantId, $optParams = array())
810 810
   {
811
-    $params = array('merchantId' => $merchantId);
812
-    $params = array_merge($params, $optParams);
813
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountsListResponse");
811
+	$params = array('merchantId' => $merchantId);
812
+	$params = array_merge($params, $optParams);
813
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountsListResponse");
814 814
   }
815 815
 
816 816
   /**
@@ -825,9 +825,9 @@  discard block
 block discarded – undo
825 825
    */
826 826
   public function patch($merchantId, $accountId, Google_Service_ShoppingContent_Account $postBody, $optParams = array())
827 827
   {
828
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
829
-    $params = array_merge($params, $optParams);
830
-    return $this->call('patch', array($params), "Google_Service_ShoppingContent_Account");
828
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
829
+	$params = array_merge($params, $optParams);
830
+	return $this->call('patch', array($params), "Google_Service_ShoppingContent_Account");
831 831
   }
832 832
 
833 833
   /**
@@ -841,9 +841,9 @@  discard block
 block discarded – undo
841 841
    */
842 842
   public function update($merchantId, $accountId, Google_Service_ShoppingContent_Account $postBody, $optParams = array())
843 843
   {
844
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
845
-    $params = array_merge($params, $optParams);
846
-    return $this->call('update', array($params), "Google_Service_ShoppingContent_Account");
844
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
845
+	$params = array_merge($params, $optParams);
846
+	return $this->call('update', array($params), "Google_Service_ShoppingContent_Account");
847 847
   }
848 848
 }
849 849
 
@@ -870,9 +870,9 @@  discard block
 block discarded – undo
870 870
    */
871 871
   public function custombatch(Google_Service_ShoppingContent_AccountshippingCustomBatchRequest $postBody, $optParams = array())
872 872
   {
873
-    $params = array('postBody' => $postBody);
874
-    $params = array_merge($params, $optParams);
875
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountshippingCustomBatchResponse");
873
+	$params = array('postBody' => $postBody);
874
+	$params = array_merge($params, $optParams);
875
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountshippingCustomBatchResponse");
876 876
   }
877 877
 
878 878
   /**
@@ -886,9 +886,9 @@  discard block
 block discarded – undo
886 886
    */
887 887
   public function get($merchantId, $accountId, $optParams = array())
888 888
   {
889
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
890
-    $params = array_merge($params, $optParams);
891
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountShipping");
889
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId);
890
+	$params = array_merge($params, $optParams);
891
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountShipping");
892 892
   }
893 893
 
894 894
   /**
@@ -905,9 +905,9 @@  discard block
 block discarded – undo
905 905
    */
906 906
   public function listAccountshipping($merchantId, $optParams = array())
907 907
   {
908
-    $params = array('merchantId' => $merchantId);
909
-    $params = array_merge($params, $optParams);
910
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountshippingListResponse");
908
+	$params = array('merchantId' => $merchantId);
909
+	$params = array_merge($params, $optParams);
910
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountshippingListResponse");
911 911
   }
912 912
 
913 913
   /**
@@ -925,9 +925,9 @@  discard block
 block discarded – undo
925 925
    */
926 926
   public function patch($merchantId, $accountId, Google_Service_ShoppingContent_AccountShipping $postBody, $optParams = array())
927 927
   {
928
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
929
-    $params = array_merge($params, $optParams);
930
-    return $this->call('patch', array($params), "Google_Service_ShoppingContent_AccountShipping");
928
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
929
+	$params = array_merge($params, $optParams);
930
+	return $this->call('patch', array($params), "Google_Service_ShoppingContent_AccountShipping");
931 931
   }
932 932
 
933 933
   /**
@@ -944,9 +944,9 @@  discard block
 block discarded – undo
944 944
    */
945 945
   public function update($merchantId, $accountId, Google_Service_ShoppingContent_AccountShipping $postBody, $optParams = array())
946 946
   {
947
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
948
-    $params = array_merge($params, $optParams);
949
-    return $this->call('update', array($params), "Google_Service_ShoppingContent_AccountShipping");
947
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
948
+	$params = array_merge($params, $optParams);
949
+	return $this->call('update', array($params), "Google_Service_ShoppingContent_AccountShipping");
950 950
   }
951 951
 }
952 952
 
@@ -970,9 +970,9 @@  discard block
 block discarded – undo
970 970
    */
971 971
   public function custombatch(Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody, $optParams = array())
972 972
   {
973
-    $params = array('postBody' => $postBody);
974
-    $params = array_merge($params, $optParams);
975
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse");
973
+	$params = array('postBody' => $postBody);
974
+	$params = array_merge($params, $optParams);
975
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse");
976 976
   }
977 977
 
978 978
   /**
@@ -985,9 +985,9 @@  discard block
 block discarded – undo
985 985
    */
986 986
   public function get($merchantId, $accountId, $optParams = array())
987 987
   {
988
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
989
-    $params = array_merge($params, $optParams);
990
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountStatus");
988
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId);
989
+	$params = array_merge($params, $optParams);
990
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountStatus");
991 991
   }
992 992
 
993 993
   /**
@@ -1004,9 +1004,9 @@  discard block
 block discarded – undo
1004 1004
    */
1005 1005
   public function listAccountstatuses($merchantId, $optParams = array())
1006 1006
   {
1007
-    $params = array('merchantId' => $merchantId);
1008
-    $params = array_merge($params, $optParams);
1009
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountstatusesListResponse");
1007
+	$params = array('merchantId' => $merchantId);
1008
+	$params = array_merge($params, $optParams);
1009
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_AccountstatusesListResponse");
1010 1010
   }
1011 1011
 }
1012 1012
 
@@ -1033,9 +1033,9 @@  discard block
 block discarded – undo
1033 1033
    */
1034 1034
   public function custombatch(Google_Service_ShoppingContent_AccounttaxCustomBatchRequest $postBody, $optParams = array())
1035 1035
   {
1036
-    $params = array('postBody' => $postBody);
1037
-    $params = array_merge($params, $optParams);
1038
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccounttaxCustomBatchResponse");
1036
+	$params = array('postBody' => $postBody);
1037
+	$params = array_merge($params, $optParams);
1038
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_AccounttaxCustomBatchResponse");
1039 1039
   }
1040 1040
 
1041 1041
   /**
@@ -1049,9 +1049,9 @@  discard block
 block discarded – undo
1049 1049
    */
1050 1050
   public function get($merchantId, $accountId, $optParams = array())
1051 1051
   {
1052
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId);
1053
-    $params = array_merge($params, $optParams);
1054
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountTax");
1052
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId);
1053
+	$params = array_merge($params, $optParams);
1054
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_AccountTax");
1055 1055
   }
1056 1056
 
1057 1057
   /**
@@ -1068,9 +1068,9 @@  discard block
 block discarded – undo
1068 1068
    */
1069 1069
   public function listAccounttax($merchantId, $optParams = array())
1070 1070
   {
1071
-    $params = array('merchantId' => $merchantId);
1072
-    $params = array_merge($params, $optParams);
1073
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_AccounttaxListResponse");
1071
+	$params = array('merchantId' => $merchantId);
1072
+	$params = array_merge($params, $optParams);
1073
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_AccounttaxListResponse");
1074 1074
   }
1075 1075
 
1076 1076
   /**
@@ -1088,9 +1088,9 @@  discard block
 block discarded – undo
1088 1088
    */
1089 1089
   public function patch($merchantId, $accountId, Google_Service_ShoppingContent_AccountTax $postBody, $optParams = array())
1090 1090
   {
1091
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
1092
-    $params = array_merge($params, $optParams);
1093
-    return $this->call('patch', array($params), "Google_Service_ShoppingContent_AccountTax");
1091
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
1092
+	$params = array_merge($params, $optParams);
1093
+	return $this->call('patch', array($params), "Google_Service_ShoppingContent_AccountTax");
1094 1094
   }
1095 1095
 
1096 1096
   /**
@@ -1107,9 +1107,9 @@  discard block
 block discarded – undo
1107 1107
    */
1108 1108
   public function update($merchantId, $accountId, Google_Service_ShoppingContent_AccountTax $postBody, $optParams = array())
1109 1109
   {
1110
-    $params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
1111
-    $params = array_merge($params, $optParams);
1112
-    return $this->call('update', array($params), "Google_Service_ShoppingContent_AccountTax");
1110
+	$params = array('merchantId' => $merchantId, 'accountId' => $accountId, 'postBody' => $postBody);
1111
+	$params = array_merge($params, $optParams);
1112
+	return $this->call('update', array($params), "Google_Service_ShoppingContent_AccountTax");
1113 1113
   }
1114 1114
 }
1115 1115
 
@@ -1133,9 +1133,9 @@  discard block
 block discarded – undo
1133 1133
    */
1134 1134
   public function custombatch(Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody, $optParams = array())
1135 1135
   {
1136
-    $params = array('postBody' => $postBody);
1137
-    $params = array_merge($params, $optParams);
1138
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedsCustomBatchResponse");
1136
+	$params = array('postBody' => $postBody);
1137
+	$params = array_merge($params, $optParams);
1138
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedsCustomBatchResponse");
1139 1139
   }
1140 1140
 
1141 1141
   /**
@@ -1147,9 +1147,9 @@  discard block
 block discarded – undo
1147 1147
    */
1148 1148
   public function delete($merchantId, $datafeedId, $optParams = array())
1149 1149
   {
1150
-    $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1151
-    $params = array_merge($params, $optParams);
1152
-    return $this->call('delete', array($params));
1150
+	$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1151
+	$params = array_merge($params, $optParams);
1152
+	return $this->call('delete', array($params));
1153 1153
   }
1154 1154
 
1155 1155
   /**
@@ -1162,9 +1162,9 @@  discard block
 block discarded – undo
1162 1162
    */
1163 1163
   public function get($merchantId, $datafeedId, $optParams = array())
1164 1164
   {
1165
-    $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1166
-    $params = array_merge($params, $optParams);
1167
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_Datafeed");
1165
+	$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1166
+	$params = array_merge($params, $optParams);
1167
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_Datafeed");
1168 1168
   }
1169 1169
 
1170 1170
   /**
@@ -1177,9 +1177,9 @@  discard block
 block discarded – undo
1177 1177
    */
1178 1178
   public function insert($merchantId, Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
1179 1179
   {
1180
-    $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
1181
-    $params = array_merge($params, $optParams);
1182
-    return $this->call('insert', array($params), "Google_Service_ShoppingContent_Datafeed");
1180
+	$params = array('merchantId' => $merchantId, 'postBody' => $postBody);
1181
+	$params = array_merge($params, $optParams);
1182
+	return $this->call('insert', array($params), "Google_Service_ShoppingContent_Datafeed");
1183 1183
   }
1184 1184
 
1185 1185
   /**
@@ -1196,9 +1196,9 @@  discard block
 block discarded – undo
1196 1196
    */
1197 1197
   public function listDatafeeds($merchantId, $optParams = array())
1198 1198
   {
1199
-    $params = array('merchantId' => $merchantId);
1200
-    $params = array_merge($params, $optParams);
1201
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedsListResponse");
1199
+	$params = array('merchantId' => $merchantId);
1200
+	$params = array_merge($params, $optParams);
1201
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedsListResponse");
1202 1202
   }
1203 1203
 
1204 1204
   /**
@@ -1213,9 +1213,9 @@  discard block
 block discarded – undo
1213 1213
    */
1214 1214
   public function patch($merchantId, $datafeedId, Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
1215 1215
   {
1216
-    $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
1217
-    $params = array_merge($params, $optParams);
1218
-    return $this->call('patch', array($params), "Google_Service_ShoppingContent_Datafeed");
1216
+	$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
1217
+	$params = array_merge($params, $optParams);
1218
+	return $this->call('patch', array($params), "Google_Service_ShoppingContent_Datafeed");
1219 1219
   }
1220 1220
 
1221 1221
   /**
@@ -1229,9 +1229,9 @@  discard block
 block discarded – undo
1229 1229
    */
1230 1230
   public function update($merchantId, $datafeedId, Google_Service_ShoppingContent_Datafeed $postBody, $optParams = array())
1231 1231
   {
1232
-    $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
1233
-    $params = array_merge($params, $optParams);
1234
-    return $this->call('update', array($params), "Google_Service_ShoppingContent_Datafeed");
1232
+	$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId, 'postBody' => $postBody);
1233
+	$params = array_merge($params, $optParams);
1234
+	return $this->call('update', array($params), "Google_Service_ShoppingContent_Datafeed");
1235 1235
   }
1236 1236
 }
1237 1237
 
@@ -1255,9 +1255,9 @@  discard block
 block discarded – undo
1255 1255
    */
1256 1256
   public function custombatch(Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody, $optParams = array())
1257 1257
   {
1258
-    $params = array('postBody' => $postBody);
1259
-    $params = array_merge($params, $optParams);
1260
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse");
1258
+	$params = array('postBody' => $postBody);
1259
+	$params = array_merge($params, $optParams);
1260
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse");
1261 1261
   }
1262 1262
 
1263 1263
   /**
@@ -1271,9 +1271,9 @@  discard block
 block discarded – undo
1271 1271
    */
1272 1272
   public function get($merchantId, $datafeedId, $optParams = array())
1273 1273
   {
1274
-    $params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1275
-    $params = array_merge($params, $optParams);
1276
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_DatafeedStatus");
1274
+	$params = array('merchantId' => $merchantId, 'datafeedId' => $datafeedId);
1275
+	$params = array_merge($params, $optParams);
1276
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_DatafeedStatus");
1277 1277
   }
1278 1278
 
1279 1279
   /**
@@ -1290,9 +1290,9 @@  discard block
 block discarded – undo
1290 1290
    */
1291 1291
   public function listDatafeedstatuses($merchantId, $optParams = array())
1292 1292
   {
1293
-    $params = array('merchantId' => $merchantId);
1294
-    $params = array_merge($params, $optParams);
1295
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedstatusesListResponse");
1293
+	$params = array('merchantId' => $merchantId);
1294
+	$params = array_merge($params, $optParams);
1295
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_DatafeedstatusesListResponse");
1296 1296
   }
1297 1297
 }
1298 1298
 
@@ -1317,9 +1317,9 @@  discard block
 block discarded – undo
1317 1317
    */
1318 1318
   public function custombatch(Google_Service_ShoppingContent_InventoryCustomBatchRequest $postBody, $optParams = array())
1319 1319
   {
1320
-    $params = array('postBody' => $postBody);
1321
-    $params = array_merge($params, $optParams);
1322
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_InventoryCustomBatchResponse");
1320
+	$params = array('postBody' => $postBody);
1321
+	$params = array_merge($params, $optParams);
1322
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_InventoryCustomBatchResponse");
1323 1323
   }
1324 1324
 
1325 1325
   /**
@@ -1338,9 +1338,9 @@  discard block
 block discarded – undo
1338 1338
    */
1339 1339
   public function set($merchantId, $storeCode, $productId, Google_Service_ShoppingContent_InventorySetRequest $postBody, $optParams = array())
1340 1340
   {
1341
-    $params = array('merchantId' => $merchantId, 'storeCode' => $storeCode, 'productId' => $productId, 'postBody' => $postBody);
1342
-    $params = array_merge($params, $optParams);
1343
-    return $this->call('set', array($params), "Google_Service_ShoppingContent_InventorySetResponse");
1341
+	$params = array('merchantId' => $merchantId, 'storeCode' => $storeCode, 'productId' => $productId, 'postBody' => $postBody);
1342
+	$params = array_merge($params, $optParams);
1343
+	return $this->call('set', array($params), "Google_Service_ShoppingContent_InventorySetResponse");
1344 1344
   }
1345 1345
 }
1346 1346
 
@@ -1367,9 +1367,9 @@  discard block
 block discarded – undo
1367 1367
    */
1368 1368
   public function custombatch(Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody, $optParams = array())
1369 1369
   {
1370
-    $params = array('postBody' => $postBody);
1371
-    $params = array_merge($params, $optParams);
1372
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductsCustomBatchResponse");
1370
+	$params = array('postBody' => $postBody);
1371
+	$params = array_merge($params, $optParams);
1372
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductsCustomBatchResponse");
1373 1373
   }
1374 1374
 
1375 1375
   /**
@@ -1383,9 +1383,9 @@  discard block
 block discarded – undo
1383 1383
    */
1384 1384
   public function delete($merchantId, $productId, $optParams = array())
1385 1385
   {
1386
-    $params = array('merchantId' => $merchantId, 'productId' => $productId);
1387
-    $params = array_merge($params, $optParams);
1388
-    return $this->call('delete', array($params));
1386
+	$params = array('merchantId' => $merchantId, 'productId' => $productId);
1387
+	$params = array_merge($params, $optParams);
1388
+	return $this->call('delete', array($params));
1389 1389
   }
1390 1390
 
1391 1391
   /**
@@ -1398,9 +1398,9 @@  discard block
 block discarded – undo
1398 1398
    */
1399 1399
   public function get($merchantId, $productId, $optParams = array())
1400 1400
   {
1401
-    $params = array('merchantId' => $merchantId, 'productId' => $productId);
1402
-    $params = array_merge($params, $optParams);
1403
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_Product");
1401
+	$params = array('merchantId' => $merchantId, 'productId' => $productId);
1402
+	$params = array_merge($params, $optParams);
1403
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_Product");
1404 1404
   }
1405 1405
 
1406 1406
   /**
@@ -1415,9 +1415,9 @@  discard block
 block discarded – undo
1415 1415
    */
1416 1416
   public function insert($merchantId, Google_Service_ShoppingContent_Product $postBody, $optParams = array())
1417 1417
   {
1418
-    $params = array('merchantId' => $merchantId, 'postBody' => $postBody);
1419
-    $params = array_merge($params, $optParams);
1420
-    return $this->call('insert', array($params), "Google_Service_ShoppingContent_Product");
1418
+	$params = array('merchantId' => $merchantId, 'postBody' => $postBody);
1419
+	$params = array_merge($params, $optParams);
1420
+	return $this->call('insert', array($params), "Google_Service_ShoppingContent_Product");
1421 1421
   }
1422 1422
 
1423 1423
   /**
@@ -1433,9 +1433,9 @@  discard block
 block discarded – undo
1433 1433
    */
1434 1434
   public function listProducts($merchantId, $optParams = array())
1435 1435
   {
1436
-    $params = array('merchantId' => $merchantId);
1437
-    $params = array_merge($params, $optParams);
1438
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductsListResponse");
1436
+	$params = array('merchantId' => $merchantId);
1437
+	$params = array_merge($params, $optParams);
1438
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductsListResponse");
1439 1439
   }
1440 1440
 }
1441 1441
 
@@ -1460,9 +1460,9 @@  discard block
 block discarded – undo
1460 1460
    */
1461 1461
   public function custombatch(Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody, $optParams = array())
1462 1462
   {
1463
-    $params = array('postBody' => $postBody);
1464
-    $params = array_merge($params, $optParams);
1465
-    return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse");
1463
+	$params = array('postBody' => $postBody);
1464
+	$params = array_merge($params, $optParams);
1465
+	return $this->call('custombatch', array($params), "Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse");
1466 1466
   }
1467 1467
 
1468 1468
   /**
@@ -1476,9 +1476,9 @@  discard block
 block discarded – undo
1476 1476
    */
1477 1477
   public function get($merchantId, $productId, $optParams = array())
1478 1478
   {
1479
-    $params = array('merchantId' => $merchantId, 'productId' => $productId);
1480
-    $params = array_merge($params, $optParams);
1481
-    return $this->call('get', array($params), "Google_Service_ShoppingContent_ProductStatus");
1479
+	$params = array('merchantId' => $merchantId, 'productId' => $productId);
1480
+	$params = array_merge($params, $optParams);
1481
+	return $this->call('get', array($params), "Google_Service_ShoppingContent_ProductStatus");
1482 1482
   }
1483 1483
 
1484 1484
   /**
@@ -1495,9 +1495,9 @@  discard block
 block discarded – undo
1495 1495
    */
1496 1496
   public function listProductstatuses($merchantId, $optParams = array())
1497 1497
   {
1498
-    $params = array('merchantId' => $merchantId);
1499
-    $params = array_merge($params, $optParams);
1500
-    return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductstatusesListResponse");
1498
+	$params = array('merchantId' => $merchantId);
1499
+	$params = array_merge($params, $optParams);
1500
+	return $this->call('list', array($params), "Google_Service_ShoppingContent_ProductstatusesListResponse");
1501 1501
   }
1502 1502
 }
1503 1503
 
@@ -1524,75 +1524,75 @@  discard block
 block discarded – undo
1524 1524
 
1525 1525
   public function setAdultContent($adultContent)
1526 1526
   {
1527
-    $this->adultContent = $adultContent;
1527
+	$this->adultContent = $adultContent;
1528 1528
   }
1529 1529
   public function getAdultContent()
1530 1530
   {
1531
-    return $this->adultContent;
1531
+	return $this->adultContent;
1532 1532
   }
1533 1533
   public function setAdwordsLinks($adwordsLinks)
1534 1534
   {
1535
-    $this->adwordsLinks = $adwordsLinks;
1535
+	$this->adwordsLinks = $adwordsLinks;
1536 1536
   }
1537 1537
   public function getAdwordsLinks()
1538 1538
   {
1539
-    return $this->adwordsLinks;
1539
+	return $this->adwordsLinks;
1540 1540
   }
1541 1541
   public function setId($id)
1542 1542
   {
1543
-    $this->id = $id;
1543
+	$this->id = $id;
1544 1544
   }
1545 1545
   public function getId()
1546 1546
   {
1547
-    return $this->id;
1547
+	return $this->id;
1548 1548
   }
1549 1549
   public function setKind($kind)
1550 1550
   {
1551
-    $this->kind = $kind;
1551
+	$this->kind = $kind;
1552 1552
   }
1553 1553
   public function getKind()
1554 1554
   {
1555
-    return $this->kind;
1555
+	return $this->kind;
1556 1556
   }
1557 1557
   public function setName($name)
1558 1558
   {
1559
-    $this->name = $name;
1559
+	$this->name = $name;
1560 1560
   }
1561 1561
   public function getName()
1562 1562
   {
1563
-    return $this->name;
1563
+	return $this->name;
1564 1564
   }
1565 1565
   public function setReviewsUrl($reviewsUrl)
1566 1566
   {
1567
-    $this->reviewsUrl = $reviewsUrl;
1567
+	$this->reviewsUrl = $reviewsUrl;
1568 1568
   }
1569 1569
   public function getReviewsUrl()
1570 1570
   {
1571
-    return $this->reviewsUrl;
1571
+	return $this->reviewsUrl;
1572 1572
   }
1573 1573
   public function setSellerId($sellerId)
1574 1574
   {
1575
-    $this->sellerId = $sellerId;
1575
+	$this->sellerId = $sellerId;
1576 1576
   }
1577 1577
   public function getSellerId()
1578 1578
   {
1579
-    return $this->sellerId;
1579
+	return $this->sellerId;
1580 1580
   }
1581 1581
   public function setUsers($users)
1582 1582
   {
1583
-    $this->users = $users;
1583
+	$this->users = $users;
1584 1584
   }
1585 1585
   public function getUsers()
1586 1586
   {
1587
-    return $this->users;
1587
+	return $this->users;
1588 1588
   }
1589 1589
   public function setWebsiteUrl($websiteUrl)
1590 1590
   {
1591
-    $this->websiteUrl = $websiteUrl;
1591
+	$this->websiteUrl = $websiteUrl;
1592 1592
   }
1593 1593
   public function getWebsiteUrl()
1594 1594
   {
1595
-    return $this->websiteUrl;
1595
+	return $this->websiteUrl;
1596 1596
   }
1597 1597
 }
1598 1598
 
@@ -1606,19 +1606,19 @@  discard block
 block discarded – undo
1606 1606
 
1607 1607
   public function setAdwordsId($adwordsId)
1608 1608
   {
1609
-    $this->adwordsId = $adwordsId;
1609
+	$this->adwordsId = $adwordsId;
1610 1610
   }
1611 1611
   public function getAdwordsId()
1612 1612
   {
1613
-    return $this->adwordsId;
1613
+	return $this->adwordsId;
1614 1614
   }
1615 1615
   public function setStatus($status)
1616 1616
   {
1617
-    $this->status = $status;
1617
+	$this->status = $status;
1618 1618
   }
1619 1619
   public function getStatus()
1620 1620
   {
1621
-    return $this->status;
1621
+	return $this->status;
1622 1622
   }
1623 1623
 }
1624 1624
 
@@ -1632,19 +1632,19 @@  discard block
 block discarded – undo
1632 1632
 
1633 1633
   public function setAggregatorId($aggregatorId)
1634 1634
   {
1635
-    $this->aggregatorId = $aggregatorId;
1635
+	$this->aggregatorId = $aggregatorId;
1636 1636
   }
1637 1637
   public function getAggregatorId()
1638 1638
   {
1639
-    return $this->aggregatorId;
1639
+	return $this->aggregatorId;
1640 1640
   }
1641 1641
   public function setMerchantId($merchantId)
1642 1642
   {
1643
-    $this->merchantId = $merchantId;
1643
+	$this->merchantId = $merchantId;
1644 1644
   }
1645 1645
   public function getMerchantId()
1646 1646
   {
1647
-    return $this->merchantId;
1647
+	return $this->merchantId;
1648 1648
   }
1649 1649
 }
1650 1650
 
@@ -1667,51 +1667,51 @@  discard block
 block discarded – undo
1667 1667
 
1668 1668
   public function setAccountId($accountId)
1669 1669
   {
1670
-    $this->accountId = $accountId;
1670
+	$this->accountId = $accountId;
1671 1671
   }
1672 1672
   public function getAccountId()
1673 1673
   {
1674
-    return $this->accountId;
1674
+	return $this->accountId;
1675 1675
   }
1676 1676
   public function setCarrierRates($carrierRates)
1677 1677
   {
1678
-    $this->carrierRates = $carrierRates;
1678
+	$this->carrierRates = $carrierRates;
1679 1679
   }
1680 1680
   public function getCarrierRates()
1681 1681
   {
1682
-    return $this->carrierRates;
1682
+	return $this->carrierRates;
1683 1683
   }
1684 1684
   public function setKind($kind)
1685 1685
   {
1686
-    $this->kind = $kind;
1686
+	$this->kind = $kind;
1687 1687
   }
1688 1688
   public function getKind()
1689 1689
   {
1690
-    return $this->kind;
1690
+	return $this->kind;
1691 1691
   }
1692 1692
   public function setLocationGroups($locationGroups)
1693 1693
   {
1694
-    $this->locationGroups = $locationGroups;
1694
+	$this->locationGroups = $locationGroups;
1695 1695
   }
1696 1696
   public function getLocationGroups()
1697 1697
   {
1698
-    return $this->locationGroups;
1698
+	return $this->locationGroups;
1699 1699
   }
1700 1700
   public function setRateTables($rateTables)
1701 1701
   {
1702
-    $this->rateTables = $rateTables;
1702
+	$this->rateTables = $rateTables;
1703 1703
   }
1704 1704
   public function getRateTables()
1705 1705
   {
1706
-    return $this->rateTables;
1706
+	return $this->rateTables;
1707 1707
   }
1708 1708
   public function setServices($services)
1709 1709
   {
1710
-    $this->services = $services;
1710
+	$this->services = $services;
1711 1711
   }
1712 1712
   public function getServices()
1713 1713
   {
1714
-    return $this->services;
1714
+	return $this->services;
1715 1715
   }
1716 1716
 }
1717 1717
 
@@ -1731,59 +1731,59 @@  discard block
 block discarded – undo
1731 1731
 
1732 1732
   public function setCarrier($carrier)
1733 1733
   {
1734
-    $this->carrier = $carrier;
1734
+	$this->carrier = $carrier;
1735 1735
   }
1736 1736
   public function getCarrier()
1737 1737
   {
1738
-    return $this->carrier;
1738
+	return $this->carrier;
1739 1739
   }
1740 1740
   public function setCarrierService($carrierService)
1741 1741
   {
1742
-    $this->carrierService = $carrierService;
1742
+	$this->carrierService = $carrierService;
1743 1743
   }
1744 1744
   public function getCarrierService()
1745 1745
   {
1746
-    return $this->carrierService;
1746
+	return $this->carrierService;
1747 1747
   }
1748 1748
   public function setModifierFlatRate(Google_Service_ShoppingContent_Price $modifierFlatRate)
1749 1749
   {
1750
-    $this->modifierFlatRate = $modifierFlatRate;
1750
+	$this->modifierFlatRate = $modifierFlatRate;
1751 1751
   }
1752 1752
   public function getModifierFlatRate()
1753 1753
   {
1754
-    return $this->modifierFlatRate;
1754
+	return $this->modifierFlatRate;
1755 1755
   }
1756 1756
   public function setModifierPercent($modifierPercent)
1757 1757
   {
1758
-    $this->modifierPercent = $modifierPercent;
1758
+	$this->modifierPercent = $modifierPercent;
1759 1759
   }
1760 1760
   public function getModifierPercent()
1761 1761
   {
1762
-    return $this->modifierPercent;
1762
+	return $this->modifierPercent;
1763 1763
   }
1764 1764
   public function setName($name)
1765 1765
   {
1766
-    $this->name = $name;
1766
+	$this->name = $name;
1767 1767
   }
1768 1768
   public function getName()
1769 1769
   {
1770
-    return $this->name;
1770
+	return $this->name;
1771 1771
   }
1772 1772
   public function setSaleCountry($saleCountry)
1773 1773
   {
1774
-    $this->saleCountry = $saleCountry;
1774
+	$this->saleCountry = $saleCountry;
1775 1775
   }
1776 1776
   public function getSaleCountry()
1777 1777
   {
1778
-    return $this->saleCountry;
1778
+	return $this->saleCountry;
1779 1779
   }
1780 1780
   public function setShippingOrigin($shippingOrigin)
1781 1781
   {
1782
-    $this->shippingOrigin = $shippingOrigin;
1782
+	$this->shippingOrigin = $shippingOrigin;
1783 1783
   }
1784 1784
   public function getShippingOrigin()
1785 1785
   {
1786
-    return $this->shippingOrigin;
1786
+	return $this->shippingOrigin;
1787 1787
   }
1788 1788
 }
1789 1789
 
@@ -1805,59 +1805,59 @@  discard block
 block discarded – undo
1805 1805
 
1806 1806
   public function setDeliveryLocationGroup($deliveryLocationGroup)
1807 1807
   {
1808
-    $this->deliveryLocationGroup = $deliveryLocationGroup;
1808
+	$this->deliveryLocationGroup = $deliveryLocationGroup;
1809 1809
   }
1810 1810
   public function getDeliveryLocationGroup()
1811 1811
   {
1812
-    return $this->deliveryLocationGroup;
1812
+	return $this->deliveryLocationGroup;
1813 1813
   }
1814 1814
   public function setDeliveryLocationId($deliveryLocationId)
1815 1815
   {
1816
-    $this->deliveryLocationId = $deliveryLocationId;
1816
+	$this->deliveryLocationId = $deliveryLocationId;
1817 1817
   }
1818 1818
   public function getDeliveryLocationId()
1819 1819
   {
1820
-    return $this->deliveryLocationId;
1820
+	return $this->deliveryLocationId;
1821 1821
   }
1822 1822
   public function setDeliveryPostalCode($deliveryPostalCode)
1823 1823
   {
1824
-    $this->deliveryPostalCode = $deliveryPostalCode;
1824
+	$this->deliveryPostalCode = $deliveryPostalCode;
1825 1825
   }
1826 1826
   public function getDeliveryPostalCode()
1827 1827
   {
1828
-    return $this->deliveryPostalCode;
1828
+	return $this->deliveryPostalCode;
1829 1829
   }
1830 1830
   public function setDeliveryPostalCodeRange(Google_Service_ShoppingContent_AccountShippingPostalCodeRange $deliveryPostalCodeRange)
1831 1831
   {
1832
-    $this->deliveryPostalCodeRange = $deliveryPostalCodeRange;
1832
+	$this->deliveryPostalCodeRange = $deliveryPostalCodeRange;
1833 1833
   }
1834 1834
   public function getDeliveryPostalCodeRange()
1835 1835
   {
1836
-    return $this->deliveryPostalCodeRange;
1836
+	return $this->deliveryPostalCodeRange;
1837 1837
   }
1838 1838
   public function setPriceMax(Google_Service_ShoppingContent_Price $priceMax)
1839 1839
   {
1840
-    $this->priceMax = $priceMax;
1840
+	$this->priceMax = $priceMax;
1841 1841
   }
1842 1842
   public function getPriceMax()
1843 1843
   {
1844
-    return $this->priceMax;
1844
+	return $this->priceMax;
1845 1845
   }
1846 1846
   public function setShippingLabel($shippingLabel)
1847 1847
   {
1848
-    $this->shippingLabel = $shippingLabel;
1848
+	$this->shippingLabel = $shippingLabel;
1849 1849
   }
1850 1850
   public function getShippingLabel()
1851 1851
   {
1852
-    return $this->shippingLabel;
1852
+	return $this->shippingLabel;
1853 1853
   }
1854 1854
   public function setWeightMax(Google_Service_ShoppingContent_Weight $weightMax)
1855 1855
   {
1856
-    $this->weightMax = $weightMax;
1856
+	$this->weightMax = $weightMax;
1857 1857
   }
1858 1858
   public function getWeightMax()
1859 1859
   {
1860
-    return $this->weightMax;
1860
+	return $this->weightMax;
1861 1861
   }
1862 1862
 }
1863 1863
 
@@ -1876,43 +1876,43 @@  discard block
 block discarded – undo
1876 1876
 
1877 1877
   public function setCountry($country)
1878 1878
   {
1879
-    $this->country = $country;
1879
+	$this->country = $country;
1880 1880
   }
1881 1881
   public function getCountry()
1882 1882
   {
1883
-    return $this->country;
1883
+	return $this->country;
1884 1884
   }
1885 1885
   public function setLocationIds($locationIds)
1886 1886
   {
1887
-    $this->locationIds = $locationIds;
1887
+	$this->locationIds = $locationIds;
1888 1888
   }
1889 1889
   public function getLocationIds()
1890 1890
   {
1891
-    return $this->locationIds;
1891
+	return $this->locationIds;
1892 1892
   }
1893 1893
   public function setName($name)
1894 1894
   {
1895
-    $this->name = $name;
1895
+	$this->name = $name;
1896 1896
   }
1897 1897
   public function getName()
1898 1898
   {
1899
-    return $this->name;
1899
+	return $this->name;
1900 1900
   }
1901 1901
   public function setPostalCodeRanges($postalCodeRanges)
1902 1902
   {
1903
-    $this->postalCodeRanges = $postalCodeRanges;
1903
+	$this->postalCodeRanges = $postalCodeRanges;
1904 1904
   }
1905 1905
   public function getPostalCodeRanges()
1906 1906
   {
1907
-    return $this->postalCodeRanges;
1907
+	return $this->postalCodeRanges;
1908 1908
   }
1909 1909
   public function setPostalCodes($postalCodes)
1910 1910
   {
1911
-    $this->postalCodes = $postalCodes;
1911
+	$this->postalCodes = $postalCodes;
1912 1912
   }
1913 1913
   public function getPostalCodes()
1914 1914
   {
1915
-    return $this->postalCodes;
1915
+	return $this->postalCodes;
1916 1916
   }
1917 1917
 }
1918 1918
 
@@ -1926,19 +1926,19 @@  discard block
 block discarded – undo
1926 1926
 
1927 1927
   public function setEnd($end)
1928 1928
   {
1929
-    $this->end = $end;
1929
+	$this->end = $end;
1930 1930
   }
1931 1931
   public function getEnd()
1932 1932
   {
1933
-    return $this->end;
1933
+	return $this->end;
1934 1934
   }
1935 1935
   public function setStart($start)
1936 1936
   {
1937
-    $this->start = $start;
1937
+	$this->start = $start;
1938 1938
   }
1939 1939
   public function getStart()
1940 1940
   {
1941
-    return $this->start;
1941
+	return $this->start;
1942 1942
   }
1943 1943
 }
1944 1944
 
@@ -1955,27 +1955,27 @@  discard block
 block discarded – undo
1955 1955
 
1956 1956
   public function setContent($content)
1957 1957
   {
1958
-    $this->content = $content;
1958
+	$this->content = $content;
1959 1959
   }
1960 1960
   public function getContent()
1961 1961
   {
1962
-    return $this->content;
1962
+	return $this->content;
1963 1963
   }
1964 1964
   public function setName($name)
1965 1965
   {
1966
-    $this->name = $name;
1966
+	$this->name = $name;
1967 1967
   }
1968 1968
   public function getName()
1969 1969
   {
1970
-    return $this->name;
1970
+	return $this->name;
1971 1971
   }
1972 1972
   public function setSaleCountry($saleCountry)
1973 1973
   {
1974
-    $this->saleCountry = $saleCountry;
1974
+	$this->saleCountry = $saleCountry;
1975 1975
   }
1976 1976
   public function getSaleCountry()
1977 1977
   {
1978
-    return $this->saleCountry;
1978
+	return $this->saleCountry;
1979 1979
   }
1980 1980
 }
1981 1981
 
@@ -1991,19 +1991,19 @@  discard block
 block discarded – undo
1991 1991
 
1992 1992
   public function setCondition(Google_Service_ShoppingContent_AccountShippingCondition $condition)
1993 1993
   {
1994
-    $this->condition = $condition;
1994
+	$this->condition = $condition;
1995 1995
   }
1996 1996
   public function getCondition()
1997 1997
   {
1998
-    return $this->condition;
1998
+	return $this->condition;
1999 1999
   }
2000 2000
   public function setRate(Google_Service_ShoppingContent_Price $rate)
2001 2001
   {
2002
-    $this->rate = $rate;
2002
+	$this->rate = $rate;
2003 2003
   }
2004 2004
   public function getRate()
2005 2005
   {
2006
-    return $this->rate;
2006
+	return $this->rate;
2007 2007
   }
2008 2008
 }
2009 2009
 
@@ -2022,43 +2022,43 @@  discard block
 block discarded – undo
2022 2022
 
2023 2023
   public function setActive($active)
2024 2024
   {
2025
-    $this->active = $active;
2025
+	$this->active = $active;
2026 2026
   }
2027 2027
   public function getActive()
2028 2028
   {
2029
-    return $this->active;
2029
+	return $this->active;
2030 2030
   }
2031 2031
   public function setCalculationMethod(Google_Service_ShoppingContent_AccountShippingShippingServiceCalculationMethod $calculationMethod)
2032 2032
   {
2033
-    $this->calculationMethod = $calculationMethod;
2033
+	$this->calculationMethod = $calculationMethod;
2034 2034
   }
2035 2035
   public function getCalculationMethod()
2036 2036
   {
2037
-    return $this->calculationMethod;
2037
+	return $this->calculationMethod;
2038 2038
   }
2039 2039
   public function setCostRuleTree(Google_Service_ShoppingContent_AccountShippingShippingServiceCostRule $costRuleTree)
2040 2040
   {
2041
-    $this->costRuleTree = $costRuleTree;
2041
+	$this->costRuleTree = $costRuleTree;
2042 2042
   }
2043 2043
   public function getCostRuleTree()
2044 2044
   {
2045
-    return $this->costRuleTree;
2045
+	return $this->costRuleTree;
2046 2046
   }
2047 2047
   public function setName($name)
2048 2048
   {
2049
-    $this->name = $name;
2049
+	$this->name = $name;
2050 2050
   }
2051 2051
   public function getName()
2052 2052
   {
2053
-    return $this->name;
2053
+	return $this->name;
2054 2054
   }
2055 2055
   public function setSaleCountry($saleCountry)
2056 2056
   {
2057
-    $this->saleCountry = $saleCountry;
2057
+	$this->saleCountry = $saleCountry;
2058 2058
   }
2059 2059
   public function getSaleCountry()
2060 2060
   {
2061
-    return $this->saleCountry;
2061
+	return $this->saleCountry;
2062 2062
   }
2063 2063
 }
2064 2064
 
@@ -2076,43 +2076,43 @@  discard block
 block discarded – undo
2076 2076
 
2077 2077
   public function setCarrierRate($carrierRate)
2078 2078
   {
2079
-    $this->carrierRate = $carrierRate;
2079
+	$this->carrierRate = $carrierRate;
2080 2080
   }
2081 2081
   public function getCarrierRate()
2082 2082
   {
2083
-    return $this->carrierRate;
2083
+	return $this->carrierRate;
2084 2084
   }
2085 2085
   public function setExcluded($excluded)
2086 2086
   {
2087
-    $this->excluded = $excluded;
2087
+	$this->excluded = $excluded;
2088 2088
   }
2089 2089
   public function getExcluded()
2090 2090
   {
2091
-    return $this->excluded;
2091
+	return $this->excluded;
2092 2092
   }
2093 2093
   public function setFlatRate(Google_Service_ShoppingContent_Price $flatRate)
2094 2094
   {
2095
-    $this->flatRate = $flatRate;
2095
+	$this->flatRate = $flatRate;
2096 2096
   }
2097 2097
   public function getFlatRate()
2098 2098
   {
2099
-    return $this->flatRate;
2099
+	return $this->flatRate;
2100 2100
   }
2101 2101
   public function setPercentageRate($percentageRate)
2102 2102
   {
2103
-    $this->percentageRate = $percentageRate;
2103
+	$this->percentageRate = $percentageRate;
2104 2104
   }
2105 2105
   public function getPercentageRate()
2106 2106
   {
2107
-    return $this->percentageRate;
2107
+	return $this->percentageRate;
2108 2108
   }
2109 2109
   public function setRateTable($rateTable)
2110 2110
   {
2111
-    $this->rateTable = $rateTable;
2111
+	$this->rateTable = $rateTable;
2112 2112
   }
2113 2113
   public function getRateTable()
2114 2114
   {
2115
-    return $this->rateTable;
2115
+	return $this->rateTable;
2116 2116
   }
2117 2117
 }
2118 2118
 
@@ -2131,27 +2131,27 @@  discard block
 block discarded – undo
2131 2131
 
2132 2132
   public function setCalculationMethod(Google_Service_ShoppingContent_AccountShippingShippingServiceCalculationMethod $calculationMethod)
2133 2133
   {
2134
-    $this->calculationMethod = $calculationMethod;
2134
+	$this->calculationMethod = $calculationMethod;
2135 2135
   }
2136 2136
   public function getCalculationMethod()
2137 2137
   {
2138
-    return $this->calculationMethod;
2138
+	return $this->calculationMethod;
2139 2139
   }
2140 2140
   public function setChildren($children)
2141 2141
   {
2142
-    $this->children = $children;
2142
+	$this->children = $children;
2143 2143
   }
2144 2144
   public function getChildren()
2145 2145
   {
2146
-    return $this->children;
2146
+	return $this->children;
2147 2147
   }
2148 2148
   public function setCondition(Google_Service_ShoppingContent_AccountShippingCondition $condition)
2149 2149
   {
2150
-    $this->condition = $condition;
2150
+	$this->condition = $condition;
2151 2151
   }
2152 2152
   public function getCondition()
2153 2153
   {
2154
-    return $this->condition;
2154
+	return $this->condition;
2155 2155
   }
2156 2156
 }
2157 2157
 
@@ -2168,27 +2168,27 @@  discard block
 block discarded – undo
2168 2168
 
2169 2169
   public function setAccountId($accountId)
2170 2170
   {
2171
-    $this->accountId = $accountId;
2171
+	$this->accountId = $accountId;
2172 2172
   }
2173 2173
   public function getAccountId()
2174 2174
   {
2175
-    return $this->accountId;
2175
+	return $this->accountId;
2176 2176
   }
2177 2177
   public function setDataQualityIssues($dataQualityIssues)
2178 2178
   {
2179
-    $this->dataQualityIssues = $dataQualityIssues;
2179
+	$this->dataQualityIssues = $dataQualityIssues;
2180 2180
   }
2181 2181
   public function getDataQualityIssues()
2182 2182
   {
2183
-    return $this->dataQualityIssues;
2183
+	return $this->dataQualityIssues;
2184 2184
   }
2185 2185
   public function setKind($kind)
2186 2186
   {
2187
-    $this->kind = $kind;
2187
+	$this->kind = $kind;
2188 2188
   }
2189 2189
   public function getKind()
2190 2190
   {
2191
-    return $this->kind;
2191
+	return $this->kind;
2192 2192
   }
2193 2193
 }
2194 2194
 
@@ -2210,67 +2210,67 @@  discard block
 block discarded – undo
2210 2210
 
2211 2211
   public function setCountry($country)
2212 2212
   {
2213
-    $this->country = $country;
2213
+	$this->country = $country;
2214 2214
   }
2215 2215
   public function getCountry()
2216 2216
   {
2217
-    return $this->country;
2217
+	return $this->country;
2218 2218
   }
2219 2219
   public function setDisplayedValue($displayedValue)
2220 2220
   {
2221
-    $this->displayedValue = $displayedValue;
2221
+	$this->displayedValue = $displayedValue;
2222 2222
   }
2223 2223
   public function getDisplayedValue()
2224 2224
   {
2225
-    return $this->displayedValue;
2225
+	return $this->displayedValue;
2226 2226
   }
2227 2227
   public function setExampleItems($exampleItems)
2228 2228
   {
2229
-    $this->exampleItems = $exampleItems;
2229
+	$this->exampleItems = $exampleItems;
2230 2230
   }
2231 2231
   public function getExampleItems()
2232 2232
   {
2233
-    return $this->exampleItems;
2233
+	return $this->exampleItems;
2234 2234
   }
2235 2235
   public function setId($id)
2236 2236
   {
2237
-    $this->id = $id;
2237
+	$this->id = $id;
2238 2238
   }
2239 2239
   public function getId()
2240 2240
   {
2241
-    return $this->id;
2241
+	return $this->id;
2242 2242
   }
2243 2243
   public function setLastChecked($lastChecked)
2244 2244
   {
2245
-    $this->lastChecked = $lastChecked;
2245
+	$this->lastChecked = $lastChecked;
2246 2246
   }
2247 2247
   public function getLastChecked()
2248 2248
   {
2249
-    return $this->lastChecked;
2249
+	return $this->lastChecked;
2250 2250
   }
2251 2251
   public function setNumItems($numItems)
2252 2252
   {
2253
-    $this->numItems = $numItems;
2253
+	$this->numItems = $numItems;
2254 2254
   }
2255 2255
   public function getNumItems()
2256 2256
   {
2257
-    return $this->numItems;
2257
+	return $this->numItems;
2258 2258
   }
2259 2259
   public function setSeverity($severity)
2260 2260
   {
2261
-    $this->severity = $severity;
2261
+	$this->severity = $severity;
2262 2262
   }
2263 2263
   public function getSeverity()
2264 2264
   {
2265
-    return $this->severity;
2265
+	return $this->severity;
2266 2266
   }
2267 2267
   public function setSubmittedValue($submittedValue)
2268 2268
   {
2269
-    $this->submittedValue = $submittedValue;
2269
+	$this->submittedValue = $submittedValue;
2270 2270
   }
2271 2271
   public function getSubmittedValue()
2272 2272
   {
2273
-    return $this->submittedValue;
2273
+	return $this->submittedValue;
2274 2274
   }
2275 2275
 }
2276 2276
 
@@ -2287,43 +2287,43 @@  discard block
 block discarded – undo
2287 2287
 
2288 2288
   public function setItemId($itemId)
2289 2289
   {
2290
-    $this->itemId = $itemId;
2290
+	$this->itemId = $itemId;
2291 2291
   }
2292 2292
   public function getItemId()
2293 2293
   {
2294
-    return $this->itemId;
2294
+	return $this->itemId;
2295 2295
   }
2296 2296
   public function setLink($link)
2297 2297
   {
2298
-    $this->link = $link;
2298
+	$this->link = $link;
2299 2299
   }
2300 2300
   public function getLink()
2301 2301
   {
2302
-    return $this->link;
2302
+	return $this->link;
2303 2303
   }
2304 2304
   public function setSubmittedValue($submittedValue)
2305 2305
   {
2306
-    $this->submittedValue = $submittedValue;
2306
+	$this->submittedValue = $submittedValue;
2307 2307
   }
2308 2308
   public function getSubmittedValue()
2309 2309
   {
2310
-    return $this->submittedValue;
2310
+	return $this->submittedValue;
2311 2311
   }
2312 2312
   public function setTitle($title)
2313 2313
   {
2314
-    $this->title = $title;
2314
+	$this->title = $title;
2315 2315
   }
2316 2316
   public function getTitle()
2317 2317
   {
2318
-    return $this->title;
2318
+	return $this->title;
2319 2319
   }
2320 2320
   public function setValueOnLandingPage($valueOnLandingPage)
2321 2321
   {
2322
-    $this->valueOnLandingPage = $valueOnLandingPage;
2322
+	$this->valueOnLandingPage = $valueOnLandingPage;
2323 2323
   }
2324 2324
   public function getValueOnLandingPage()
2325 2325
   {
2326
-    return $this->valueOnLandingPage;
2326
+	return $this->valueOnLandingPage;
2327 2327
   }
2328 2328
 }
2329 2329
 
@@ -2340,27 +2340,27 @@  discard block
 block discarded – undo
2340 2340
 
2341 2341
   public function setAccountId($accountId)
2342 2342
   {
2343
-    $this->accountId = $accountId;
2343
+	$this->accountId = $accountId;
2344 2344
   }
2345 2345
   public function getAccountId()
2346 2346
   {
2347
-    return $this->accountId;
2347
+	return $this->accountId;
2348 2348
   }
2349 2349
   public function setKind($kind)
2350 2350
   {
2351
-    $this->kind = $kind;
2351
+	$this->kind = $kind;
2352 2352
   }
2353 2353
   public function getKind()
2354 2354
   {
2355
-    return $this->kind;
2355
+	return $this->kind;
2356 2356
   }
2357 2357
   public function setRules($rules)
2358 2358
   {
2359
-    $this->rules = $rules;
2359
+	$this->rules = $rules;
2360 2360
   }
2361 2361
   public function getRules()
2362 2362
   {
2363
-    return $this->rules;
2363
+	return $this->rules;
2364 2364
   }
2365 2365
 }
2366 2366
 
@@ -2377,43 +2377,43 @@  discard block
 block discarded – undo
2377 2377
 
2378 2378
   public function setCountry($country)
2379 2379
   {
2380
-    $this->country = $country;
2380
+	$this->country = $country;
2381 2381
   }
2382 2382
   public function getCountry()
2383 2383
   {
2384
-    return $this->country;
2384
+	return $this->country;
2385 2385
   }
2386 2386
   public function setLocationId($locationId)
2387 2387
   {
2388
-    $this->locationId = $locationId;
2388
+	$this->locationId = $locationId;
2389 2389
   }
2390 2390
   public function getLocationId()
2391 2391
   {
2392
-    return $this->locationId;
2392
+	return $this->locationId;
2393 2393
   }
2394 2394
   public function setRatePercent($ratePercent)
2395 2395
   {
2396
-    $this->ratePercent = $ratePercent;
2396
+	$this->ratePercent = $ratePercent;
2397 2397
   }
2398 2398
   public function getRatePercent()
2399 2399
   {
2400
-    return $this->ratePercent;
2400
+	return $this->ratePercent;
2401 2401
   }
2402 2402
   public function setShippingTaxed($shippingTaxed)
2403 2403
   {
2404
-    $this->shippingTaxed = $shippingTaxed;
2404
+	$this->shippingTaxed = $shippingTaxed;
2405 2405
   }
2406 2406
   public function getShippingTaxed()
2407 2407
   {
2408
-    return $this->shippingTaxed;
2408
+	return $this->shippingTaxed;
2409 2409
   }
2410 2410
   public function setUseGlobalRate($useGlobalRate)
2411 2411
   {
2412
-    $this->useGlobalRate = $useGlobalRate;
2412
+	$this->useGlobalRate = $useGlobalRate;
2413 2413
   }
2414 2414
   public function getUseGlobalRate()
2415 2415
   {
2416
-    return $this->useGlobalRate;
2416
+	return $this->useGlobalRate;
2417 2417
   }
2418 2418
 }
2419 2419
 
@@ -2427,19 +2427,19 @@  discard block
 block discarded – undo
2427 2427
 
2428 2428
   public function setAdmin($admin)
2429 2429
   {
2430
-    $this->admin = $admin;
2430
+	$this->admin = $admin;
2431 2431
   }
2432 2432
   public function getAdmin()
2433 2433
   {
2434
-    return $this->admin;
2434
+	return $this->admin;
2435 2435
   }
2436 2436
   public function setEmailAddress($emailAddress)
2437 2437
   {
2438
-    $this->emailAddress = $emailAddress;
2438
+	$this->emailAddress = $emailAddress;
2439 2439
   }
2440 2440
   public function getEmailAddress()
2441 2441
   {
2442
-    return $this->emailAddress;
2442
+	return $this->emailAddress;
2443 2443
   }
2444 2444
 }
2445 2445
 
@@ -2455,19 +2455,19 @@  discard block
 block discarded – undo
2455 2455
 
2456 2456
   public function setAccountIdentifiers($accountIdentifiers)
2457 2457
   {
2458
-    $this->accountIdentifiers = $accountIdentifiers;
2458
+	$this->accountIdentifiers = $accountIdentifiers;
2459 2459
   }
2460 2460
   public function getAccountIdentifiers()
2461 2461
   {
2462
-    return $this->accountIdentifiers;
2462
+	return $this->accountIdentifiers;
2463 2463
   }
2464 2464
   public function setKind($kind)
2465 2465
   {
2466
-    $this->kind = $kind;
2466
+	$this->kind = $kind;
2467 2467
   }
2468 2468
   public function getKind()
2469 2469
   {
2470
-    return $this->kind;
2470
+	return $this->kind;
2471 2471
   }
2472 2472
 }
2473 2473
 
@@ -2482,11 +2482,11 @@  discard block
 block discarded – undo
2482 2482
 
2483 2483
   public function setEntries($entries)
2484 2484
   {
2485
-    $this->entries = $entries;
2485
+	$this->entries = $entries;
2486 2486
   }
2487 2487
   public function getEntries()
2488 2488
   {
2489
-    return $this->entries;
2489
+	return $this->entries;
2490 2490
   }
2491 2491
 }
2492 2492
 
@@ -2504,43 +2504,43 @@  discard block
 block discarded – undo
2504 2504
 
2505 2505
   public function setAccount(Google_Service_ShoppingContent_Account $account)
2506 2506
   {
2507
-    $this->account = $account;
2507
+	$this->account = $account;
2508 2508
   }
2509 2509
   public function getAccount()
2510 2510
   {
2511
-    return $this->account;
2511
+	return $this->account;
2512 2512
   }
2513 2513
   public function setAccountId($accountId)
2514 2514
   {
2515
-    $this->accountId = $accountId;
2515
+	$this->accountId = $accountId;
2516 2516
   }
2517 2517
   public function getAccountId()
2518 2518
   {
2519
-    return $this->accountId;
2519
+	return $this->accountId;
2520 2520
   }
2521 2521
   public function setBatchId($batchId)
2522 2522
   {
2523
-    $this->batchId = $batchId;
2523
+	$this->batchId = $batchId;
2524 2524
   }
2525 2525
   public function getBatchId()
2526 2526
   {
2527
-    return $this->batchId;
2527
+	return $this->batchId;
2528 2528
   }
2529 2529
   public function setMerchantId($merchantId)
2530 2530
   {
2531
-    $this->merchantId = $merchantId;
2531
+	$this->merchantId = $merchantId;
2532 2532
   }
2533 2533
   public function getMerchantId()
2534 2534
   {
2535
-    return $this->merchantId;
2535
+	return $this->merchantId;
2536 2536
   }
2537 2537
   public function setMethod($method)
2538 2538
   {
2539
-    $this->method = $method;
2539
+	$this->method = $method;
2540 2540
   }
2541 2541
   public function getMethod()
2542 2542
   {
2543
-    return $this->method;
2543
+	return $this->method;
2544 2544
   }
2545 2545
 }
2546 2546
 
@@ -2556,19 +2556,19 @@  discard block
 block discarded – undo
2556 2556
 
2557 2557
   public function setEntries($entries)
2558 2558
   {
2559
-    $this->entries = $entries;
2559
+	$this->entries = $entries;
2560 2560
   }
2561 2561
   public function getEntries()
2562 2562
   {
2563
-    return $this->entries;
2563
+	return $this->entries;
2564 2564
   }
2565 2565
   public function setKind($kind)
2566 2566
   {
2567
-    $this->kind = $kind;
2567
+	$this->kind = $kind;
2568 2568
   }
2569 2569
   public function getKind()
2570 2570
   {
2571
-    return $this->kind;
2571
+	return $this->kind;
2572 2572
   }
2573 2573
 }
2574 2574
 
@@ -2586,35 +2586,35 @@  discard block
 block discarded – undo
2586 2586
 
2587 2587
   public function setAccount(Google_Service_ShoppingContent_Account $account)
2588 2588
   {
2589
-    $this->account = $account;
2589
+	$this->account = $account;
2590 2590
   }
2591 2591
   public function getAccount()
2592 2592
   {
2593
-    return $this->account;
2593
+	return $this->account;
2594 2594
   }
2595 2595
   public function setBatchId($batchId)
2596 2596
   {
2597
-    $this->batchId = $batchId;
2597
+	$this->batchId = $batchId;
2598 2598
   }
2599 2599
   public function getBatchId()
2600 2600
   {
2601
-    return $this->batchId;
2601
+	return $this->batchId;
2602 2602
   }
2603 2603
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
2604 2604
   {
2605
-    $this->errors = $errors;
2605
+	$this->errors = $errors;
2606 2606
   }
2607 2607
   public function getErrors()
2608 2608
   {
2609
-    return $this->errors;
2609
+	return $this->errors;
2610 2610
   }
2611 2611
   public function setKind($kind)
2612 2612
   {
2613
-    $this->kind = $kind;
2613
+	$this->kind = $kind;
2614 2614
   }
2615 2615
   public function getKind()
2616 2616
   {
2617
-    return $this->kind;
2617
+	return $this->kind;
2618 2618
   }
2619 2619
 }
2620 2620
 
@@ -2631,27 +2631,27 @@  discard block
 block discarded – undo
2631 2631
 
2632 2632
   public function setKind($kind)
2633 2633
   {
2634
-    $this->kind = $kind;
2634
+	$this->kind = $kind;
2635 2635
   }
2636 2636
   public function getKind()
2637 2637
   {
2638
-    return $this->kind;
2638
+	return $this->kind;
2639 2639
   }
2640 2640
   public function setNextPageToken($nextPageToken)
2641 2641
   {
2642
-    $this->nextPageToken = $nextPageToken;
2642
+	$this->nextPageToken = $nextPageToken;
2643 2643
   }
2644 2644
   public function getNextPageToken()
2645 2645
   {
2646
-    return $this->nextPageToken;
2646
+	return $this->nextPageToken;
2647 2647
   }
2648 2648
   public function setResources($resources)
2649 2649
   {
2650
-    $this->resources = $resources;
2650
+	$this->resources = $resources;
2651 2651
   }
2652 2652
   public function getResources()
2653 2653
   {
2654
-    return $this->resources;
2654
+	return $this->resources;
2655 2655
   }
2656 2656
 }
2657 2657
 
@@ -2666,11 +2666,11 @@  discard block
 block discarded – undo
2666 2666
 
2667 2667
   public function setEntries($entries)
2668 2668
   {
2669
-    $this->entries = $entries;
2669
+	$this->entries = $entries;
2670 2670
   }
2671 2671
   public function getEntries()
2672 2672
   {
2673
-    return $this->entries;
2673
+	return $this->entries;
2674 2674
   }
2675 2675
 }
2676 2676
 
@@ -2688,43 +2688,43 @@  discard block
 block discarded – undo
2688 2688
 
2689 2689
   public function setAccountId($accountId)
2690 2690
   {
2691
-    $this->accountId = $accountId;
2691
+	$this->accountId = $accountId;
2692 2692
   }
2693 2693
   public function getAccountId()
2694 2694
   {
2695
-    return $this->accountId;
2695
+	return $this->accountId;
2696 2696
   }
2697 2697
   public function setAccountShipping(Google_Service_ShoppingContent_AccountShipping $accountShipping)
2698 2698
   {
2699
-    $this->accountShipping = $accountShipping;
2699
+	$this->accountShipping = $accountShipping;
2700 2700
   }
2701 2701
   public function getAccountShipping()
2702 2702
   {
2703
-    return $this->accountShipping;
2703
+	return $this->accountShipping;
2704 2704
   }
2705 2705
   public function setBatchId($batchId)
2706 2706
   {
2707
-    $this->batchId = $batchId;
2707
+	$this->batchId = $batchId;
2708 2708
   }
2709 2709
   public function getBatchId()
2710 2710
   {
2711
-    return $this->batchId;
2711
+	return $this->batchId;
2712 2712
   }
2713 2713
   public function setMerchantId($merchantId)
2714 2714
   {
2715
-    $this->merchantId = $merchantId;
2715
+	$this->merchantId = $merchantId;
2716 2716
   }
2717 2717
   public function getMerchantId()
2718 2718
   {
2719
-    return $this->merchantId;
2719
+	return $this->merchantId;
2720 2720
   }
2721 2721
   public function setMethod($method)
2722 2722
   {
2723
-    $this->method = $method;
2723
+	$this->method = $method;
2724 2724
   }
2725 2725
   public function getMethod()
2726 2726
   {
2727
-    return $this->method;
2727
+	return $this->method;
2728 2728
   }
2729 2729
 }
2730 2730
 
@@ -2740,19 +2740,19 @@  discard block
 block discarded – undo
2740 2740
 
2741 2741
   public function setEntries($entries)
2742 2742
   {
2743
-    $this->entries = $entries;
2743
+	$this->entries = $entries;
2744 2744
   }
2745 2745
   public function getEntries()
2746 2746
   {
2747
-    return $this->entries;
2747
+	return $this->entries;
2748 2748
   }
2749 2749
   public function setKind($kind)
2750 2750
   {
2751
-    $this->kind = $kind;
2751
+	$this->kind = $kind;
2752 2752
   }
2753 2753
   public function getKind()
2754 2754
   {
2755
-    return $this->kind;
2755
+	return $this->kind;
2756 2756
   }
2757 2757
 }
2758 2758
 
@@ -2770,35 +2770,35 @@  discard block
 block discarded – undo
2770 2770
 
2771 2771
   public function setAccountShipping(Google_Service_ShoppingContent_AccountShipping $accountShipping)
2772 2772
   {
2773
-    $this->accountShipping = $accountShipping;
2773
+	$this->accountShipping = $accountShipping;
2774 2774
   }
2775 2775
   public function getAccountShipping()
2776 2776
   {
2777
-    return $this->accountShipping;
2777
+	return $this->accountShipping;
2778 2778
   }
2779 2779
   public function setBatchId($batchId)
2780 2780
   {
2781
-    $this->batchId = $batchId;
2781
+	$this->batchId = $batchId;
2782 2782
   }
2783 2783
   public function getBatchId()
2784 2784
   {
2785
-    return $this->batchId;
2785
+	return $this->batchId;
2786 2786
   }
2787 2787
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
2788 2788
   {
2789
-    $this->errors = $errors;
2789
+	$this->errors = $errors;
2790 2790
   }
2791 2791
   public function getErrors()
2792 2792
   {
2793
-    return $this->errors;
2793
+	return $this->errors;
2794 2794
   }
2795 2795
   public function setKind($kind)
2796 2796
   {
2797
-    $this->kind = $kind;
2797
+	$this->kind = $kind;
2798 2798
   }
2799 2799
   public function getKind()
2800 2800
   {
2801
-    return $this->kind;
2801
+	return $this->kind;
2802 2802
   }
2803 2803
 }
2804 2804
 
@@ -2815,27 +2815,27 @@  discard block
 block discarded – undo
2815 2815
 
2816 2816
   public function setKind($kind)
2817 2817
   {
2818
-    $this->kind = $kind;
2818
+	$this->kind = $kind;
2819 2819
   }
2820 2820
   public function getKind()
2821 2821
   {
2822
-    return $this->kind;
2822
+	return $this->kind;
2823 2823
   }
2824 2824
   public function setNextPageToken($nextPageToken)
2825 2825
   {
2826
-    $this->nextPageToken = $nextPageToken;
2826
+	$this->nextPageToken = $nextPageToken;
2827 2827
   }
2828 2828
   public function getNextPageToken()
2829 2829
   {
2830
-    return $this->nextPageToken;
2830
+	return $this->nextPageToken;
2831 2831
   }
2832 2832
   public function setResources($resources)
2833 2833
   {
2834
-    $this->resources = $resources;
2834
+	$this->resources = $resources;
2835 2835
   }
2836 2836
   public function getResources()
2837 2837
   {
2838
-    return $this->resources;
2838
+	return $this->resources;
2839 2839
   }
2840 2840
 }
2841 2841
 
@@ -2850,11 +2850,11 @@  discard block
 block discarded – undo
2850 2850
 
2851 2851
   public function setEntries($entries)
2852 2852
   {
2853
-    $this->entries = $entries;
2853
+	$this->entries = $entries;
2854 2854
   }
2855 2855
   public function getEntries()
2856 2856
   {
2857
-    return $this->entries;
2857
+	return $this->entries;
2858 2858
   }
2859 2859
 }
2860 2860
 
@@ -2870,35 +2870,35 @@  discard block
 block discarded – undo
2870 2870
 
2871 2871
   public function setAccountId($accountId)
2872 2872
   {
2873
-    $this->accountId = $accountId;
2873
+	$this->accountId = $accountId;
2874 2874
   }
2875 2875
   public function getAccountId()
2876 2876
   {
2877
-    return $this->accountId;
2877
+	return $this->accountId;
2878 2878
   }
2879 2879
   public function setBatchId($batchId)
2880 2880
   {
2881
-    $this->batchId = $batchId;
2881
+	$this->batchId = $batchId;
2882 2882
   }
2883 2883
   public function getBatchId()
2884 2884
   {
2885
-    return $this->batchId;
2885
+	return $this->batchId;
2886 2886
   }
2887 2887
   public function setMerchantId($merchantId)
2888 2888
   {
2889
-    $this->merchantId = $merchantId;
2889
+	$this->merchantId = $merchantId;
2890 2890
   }
2891 2891
   public function getMerchantId()
2892 2892
   {
2893
-    return $this->merchantId;
2893
+	return $this->merchantId;
2894 2894
   }
2895 2895
   public function setMethod($method)
2896 2896
   {
2897
-    $this->method = $method;
2897
+	$this->method = $method;
2898 2898
   }
2899 2899
   public function getMethod()
2900 2900
   {
2901
-    return $this->method;
2901
+	return $this->method;
2902 2902
   }
2903 2903
 }
2904 2904
 
@@ -2914,19 +2914,19 @@  discard block
 block discarded – undo
2914 2914
 
2915 2915
   public function setEntries($entries)
2916 2916
   {
2917
-    $this->entries = $entries;
2917
+	$this->entries = $entries;
2918 2918
   }
2919 2919
   public function getEntries()
2920 2920
   {
2921
-    return $this->entries;
2921
+	return $this->entries;
2922 2922
   }
2923 2923
   public function setKind($kind)
2924 2924
   {
2925
-    $this->kind = $kind;
2925
+	$this->kind = $kind;
2926 2926
   }
2927 2927
   public function getKind()
2928 2928
   {
2929
-    return $this->kind;
2929
+	return $this->kind;
2930 2930
   }
2931 2931
 }
2932 2932
 
@@ -2943,27 +2943,27 @@  discard block
 block discarded – undo
2943 2943
 
2944 2944
   public function setAccountStatus(Google_Service_ShoppingContent_AccountStatus $accountStatus)
2945 2945
   {
2946
-    $this->accountStatus = $accountStatus;
2946
+	$this->accountStatus = $accountStatus;
2947 2947
   }
2948 2948
   public function getAccountStatus()
2949 2949
   {
2950
-    return $this->accountStatus;
2950
+	return $this->accountStatus;
2951 2951
   }
2952 2952
   public function setBatchId($batchId)
2953 2953
   {
2954
-    $this->batchId = $batchId;
2954
+	$this->batchId = $batchId;
2955 2955
   }
2956 2956
   public function getBatchId()
2957 2957
   {
2958
-    return $this->batchId;
2958
+	return $this->batchId;
2959 2959
   }
2960 2960
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
2961 2961
   {
2962
-    $this->errors = $errors;
2962
+	$this->errors = $errors;
2963 2963
   }
2964 2964
   public function getErrors()
2965 2965
   {
2966
-    return $this->errors;
2966
+	return $this->errors;
2967 2967
   }
2968 2968
 }
2969 2969
 
@@ -2980,27 +2980,27 @@  discard block
 block discarded – undo
2980 2980
 
2981 2981
   public function setKind($kind)
2982 2982
   {
2983
-    $this->kind = $kind;
2983
+	$this->kind = $kind;
2984 2984
   }
2985 2985
   public function getKind()
2986 2986
   {
2987
-    return $this->kind;
2987
+	return $this->kind;
2988 2988
   }
2989 2989
   public function setNextPageToken($nextPageToken)
2990 2990
   {
2991
-    $this->nextPageToken = $nextPageToken;
2991
+	$this->nextPageToken = $nextPageToken;
2992 2992
   }
2993 2993
   public function getNextPageToken()
2994 2994
   {
2995
-    return $this->nextPageToken;
2995
+	return $this->nextPageToken;
2996 2996
   }
2997 2997
   public function setResources($resources)
2998 2998
   {
2999
-    $this->resources = $resources;
2999
+	$this->resources = $resources;
3000 3000
   }
3001 3001
   public function getResources()
3002 3002
   {
3003
-    return $this->resources;
3003
+	return $this->resources;
3004 3004
   }
3005 3005
 }
3006 3006
 
@@ -3015,11 +3015,11 @@  discard block
 block discarded – undo
3015 3015
 
3016 3016
   public function setEntries($entries)
3017 3017
   {
3018
-    $this->entries = $entries;
3018
+	$this->entries = $entries;
3019 3019
   }
3020 3020
   public function getEntries()
3021 3021
   {
3022
-    return $this->entries;
3022
+	return $this->entries;
3023 3023
   }
3024 3024
 }
3025 3025
 
@@ -3037,43 +3037,43 @@  discard block
 block discarded – undo
3037 3037
 
3038 3038
   public function setAccountId($accountId)
3039 3039
   {
3040
-    $this->accountId = $accountId;
3040
+	$this->accountId = $accountId;
3041 3041
   }
3042 3042
   public function getAccountId()
3043 3043
   {
3044
-    return $this->accountId;
3044
+	return $this->accountId;
3045 3045
   }
3046 3046
   public function setAccountTax(Google_Service_ShoppingContent_AccountTax $accountTax)
3047 3047
   {
3048
-    $this->accountTax = $accountTax;
3048
+	$this->accountTax = $accountTax;
3049 3049
   }
3050 3050
   public function getAccountTax()
3051 3051
   {
3052
-    return $this->accountTax;
3052
+	return $this->accountTax;
3053 3053
   }
3054 3054
   public function setBatchId($batchId)
3055 3055
   {
3056
-    $this->batchId = $batchId;
3056
+	$this->batchId = $batchId;
3057 3057
   }
3058 3058
   public function getBatchId()
3059 3059
   {
3060
-    return $this->batchId;
3060
+	return $this->batchId;
3061 3061
   }
3062 3062
   public function setMerchantId($merchantId)
3063 3063
   {
3064
-    $this->merchantId = $merchantId;
3064
+	$this->merchantId = $merchantId;
3065 3065
   }
3066 3066
   public function getMerchantId()
3067 3067
   {
3068
-    return $this->merchantId;
3068
+	return $this->merchantId;
3069 3069
   }
3070 3070
   public function setMethod($method)
3071 3071
   {
3072
-    $this->method = $method;
3072
+	$this->method = $method;
3073 3073
   }
3074 3074
   public function getMethod()
3075 3075
   {
3076
-    return $this->method;
3076
+	return $this->method;
3077 3077
   }
3078 3078
 }
3079 3079
 
@@ -3089,19 +3089,19 @@  discard block
 block discarded – undo
3089 3089
 
3090 3090
   public function setEntries($entries)
3091 3091
   {
3092
-    $this->entries = $entries;
3092
+	$this->entries = $entries;
3093 3093
   }
3094 3094
   public function getEntries()
3095 3095
   {
3096
-    return $this->entries;
3096
+	return $this->entries;
3097 3097
   }
3098 3098
   public function setKind($kind)
3099 3099
   {
3100
-    $this->kind = $kind;
3100
+	$this->kind = $kind;
3101 3101
   }
3102 3102
   public function getKind()
3103 3103
   {
3104
-    return $this->kind;
3104
+	return $this->kind;
3105 3105
   }
3106 3106
 }
3107 3107
 
@@ -3119,35 +3119,35 @@  discard block
 block discarded – undo
3119 3119
 
3120 3120
   public function setAccountTax(Google_Service_ShoppingContent_AccountTax $accountTax)
3121 3121
   {
3122
-    $this->accountTax = $accountTax;
3122
+	$this->accountTax = $accountTax;
3123 3123
   }
3124 3124
   public function getAccountTax()
3125 3125
   {
3126
-    return $this->accountTax;
3126
+	return $this->accountTax;
3127 3127
   }
3128 3128
   public function setBatchId($batchId)
3129 3129
   {
3130
-    $this->batchId = $batchId;
3130
+	$this->batchId = $batchId;
3131 3131
   }
3132 3132
   public function getBatchId()
3133 3133
   {
3134
-    return $this->batchId;
3134
+	return $this->batchId;
3135 3135
   }
3136 3136
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
3137 3137
   {
3138
-    $this->errors = $errors;
3138
+	$this->errors = $errors;
3139 3139
   }
3140 3140
   public function getErrors()
3141 3141
   {
3142
-    return $this->errors;
3142
+	return $this->errors;
3143 3143
   }
3144 3144
   public function setKind($kind)
3145 3145
   {
3146
-    $this->kind = $kind;
3146
+	$this->kind = $kind;
3147 3147
   }
3148 3148
   public function getKind()
3149 3149
   {
3150
-    return $this->kind;
3150
+	return $this->kind;
3151 3151
   }
3152 3152
 }
3153 3153
 
@@ -3164,27 +3164,27 @@  discard block
 block discarded – undo
3164 3164
 
3165 3165
   public function setKind($kind)
3166 3166
   {
3167
-    $this->kind = $kind;
3167
+	$this->kind = $kind;
3168 3168
   }
3169 3169
   public function getKind()
3170 3170
   {
3171
-    return $this->kind;
3171
+	return $this->kind;
3172 3172
   }
3173 3173
   public function setNextPageToken($nextPageToken)
3174 3174
   {
3175
-    $this->nextPageToken = $nextPageToken;
3175
+	$this->nextPageToken = $nextPageToken;
3176 3176
   }
3177 3177
   public function getNextPageToken()
3178 3178
   {
3179
-    return $this->nextPageToken;
3179
+	return $this->nextPageToken;
3180 3180
   }
3181 3181
   public function setResources($resources)
3182 3182
   {
3183
-    $this->resources = $resources;
3183
+	$this->resources = $resources;
3184 3184
   }
3185 3185
   public function getResources()
3186 3186
   {
3187
-    return $this->resources;
3187
+	return $this->resources;
3188 3188
   }
3189 3189
 }
3190 3190
 
@@ -3210,91 +3210,91 @@  discard block
 block discarded – undo
3210 3210
 
3211 3211
   public function setAttributeLanguage($attributeLanguage)
3212 3212
   {
3213
-    $this->attributeLanguage = $attributeLanguage;
3213
+	$this->attributeLanguage = $attributeLanguage;
3214 3214
   }
3215 3215
   public function getAttributeLanguage()
3216 3216
   {
3217
-    return $this->attributeLanguage;
3217
+	return $this->attributeLanguage;
3218 3218
   }
3219 3219
   public function setContentLanguage($contentLanguage)
3220 3220
   {
3221
-    $this->contentLanguage = $contentLanguage;
3221
+	$this->contentLanguage = $contentLanguage;
3222 3222
   }
3223 3223
   public function getContentLanguage()
3224 3224
   {
3225
-    return $this->contentLanguage;
3225
+	return $this->contentLanguage;
3226 3226
   }
3227 3227
   public function setContentType($contentType)
3228 3228
   {
3229
-    $this->contentType = $contentType;
3229
+	$this->contentType = $contentType;
3230 3230
   }
3231 3231
   public function getContentType()
3232 3232
   {
3233
-    return $this->contentType;
3233
+	return $this->contentType;
3234 3234
   }
3235 3235
   public function setFetchSchedule(Google_Service_ShoppingContent_DatafeedFetchSchedule $fetchSchedule)
3236 3236
   {
3237
-    $this->fetchSchedule = $fetchSchedule;
3237
+	$this->fetchSchedule = $fetchSchedule;
3238 3238
   }
3239 3239
   public function getFetchSchedule()
3240 3240
   {
3241
-    return $this->fetchSchedule;
3241
+	return $this->fetchSchedule;
3242 3242
   }
3243 3243
   public function setFileName($fileName)
3244 3244
   {
3245
-    $this->fileName = $fileName;
3245
+	$this->fileName = $fileName;
3246 3246
   }
3247 3247
   public function getFileName()
3248 3248
   {
3249
-    return $this->fileName;
3249
+	return $this->fileName;
3250 3250
   }
3251 3251
   public function setFormat(Google_Service_ShoppingContent_DatafeedFormat $format)
3252 3252
   {
3253
-    $this->format = $format;
3253
+	$this->format = $format;
3254 3254
   }
3255 3255
   public function getFormat()
3256 3256
   {
3257
-    return $this->format;
3257
+	return $this->format;
3258 3258
   }
3259 3259
   public function setId($id)
3260 3260
   {
3261
-    $this->id = $id;
3261
+	$this->id = $id;
3262 3262
   }
3263 3263
   public function getId()
3264 3264
   {
3265
-    return $this->id;
3265
+	return $this->id;
3266 3266
   }
3267 3267
   public function setIntendedDestinations($intendedDestinations)
3268 3268
   {
3269
-    $this->intendedDestinations = $intendedDestinations;
3269
+	$this->intendedDestinations = $intendedDestinations;
3270 3270
   }
3271 3271
   public function getIntendedDestinations()
3272 3272
   {
3273
-    return $this->intendedDestinations;
3273
+	return $this->intendedDestinations;
3274 3274
   }
3275 3275
   public function setKind($kind)
3276 3276
   {
3277
-    $this->kind = $kind;
3277
+	$this->kind = $kind;
3278 3278
   }
3279 3279
   public function getKind()
3280 3280
   {
3281
-    return $this->kind;
3281
+	return $this->kind;
3282 3282
   }
3283 3283
   public function setName($name)
3284 3284
   {
3285
-    $this->name = $name;
3285
+	$this->name = $name;
3286 3286
   }
3287 3287
   public function getName()
3288 3288
   {
3289
-    return $this->name;
3289
+	return $this->name;
3290 3290
   }
3291 3291
   public function setTargetCountry($targetCountry)
3292 3292
   {
3293
-    $this->targetCountry = $targetCountry;
3293
+	$this->targetCountry = $targetCountry;
3294 3294
   }
3295 3295
   public function getTargetCountry()
3296 3296
   {
3297
-    return $this->targetCountry;
3297
+	return $this->targetCountry;
3298 3298
   }
3299 3299
 }
3300 3300
 
@@ -3313,59 +3313,59 @@  discard block
 block discarded – undo
3313 3313
 
3314 3314
   public function setDayOfMonth($dayOfMonth)
3315 3315
   {
3316
-    $this->dayOfMonth = $dayOfMonth;
3316
+	$this->dayOfMonth = $dayOfMonth;
3317 3317
   }
3318 3318
   public function getDayOfMonth()
3319 3319
   {
3320
-    return $this->dayOfMonth;
3320
+	return $this->dayOfMonth;
3321 3321
   }
3322 3322
   public function setFetchUrl($fetchUrl)
3323 3323
   {
3324
-    $this->fetchUrl = $fetchUrl;
3324
+	$this->fetchUrl = $fetchUrl;
3325 3325
   }
3326 3326
   public function getFetchUrl()
3327 3327
   {
3328
-    return $this->fetchUrl;
3328
+	return $this->fetchUrl;
3329 3329
   }
3330 3330
   public function setHour($hour)
3331 3331
   {
3332
-    $this->hour = $hour;
3332
+	$this->hour = $hour;
3333 3333
   }
3334 3334
   public function getHour()
3335 3335
   {
3336
-    return $this->hour;
3336
+	return $this->hour;
3337 3337
   }
3338 3338
   public function setPassword($password)
3339 3339
   {
3340
-    $this->password = $password;
3340
+	$this->password = $password;
3341 3341
   }
3342 3342
   public function getPassword()
3343 3343
   {
3344
-    return $this->password;
3344
+	return $this->password;
3345 3345
   }
3346 3346
   public function setTimeZone($timeZone)
3347 3347
   {
3348
-    $this->timeZone = $timeZone;
3348
+	$this->timeZone = $timeZone;
3349 3349
   }
3350 3350
   public function getTimeZone()
3351 3351
   {
3352
-    return $this->timeZone;
3352
+	return $this->timeZone;
3353 3353
   }
3354 3354
   public function setUsername($username)
3355 3355
   {
3356
-    $this->username = $username;
3356
+	$this->username = $username;
3357 3357
   }
3358 3358
   public function getUsername()
3359 3359
   {
3360
-    return $this->username;
3360
+	return $this->username;
3361 3361
   }
3362 3362
   public function setWeekday($weekday)
3363 3363
   {
3364
-    $this->weekday = $weekday;
3364
+	$this->weekday = $weekday;
3365 3365
   }
3366 3366
   public function getWeekday()
3367 3367
   {
3368
-    return $this->weekday;
3368
+	return $this->weekday;
3369 3369
   }
3370 3370
 }
3371 3371
 
@@ -3380,27 +3380,27 @@  discard block
 block discarded – undo
3380 3380
 
3381 3381
   public function setColumnDelimiter($columnDelimiter)
3382 3382
   {
3383
-    $this->columnDelimiter = $columnDelimiter;
3383
+	$this->columnDelimiter = $columnDelimiter;
3384 3384
   }
3385 3385
   public function getColumnDelimiter()
3386 3386
   {
3387
-    return $this->columnDelimiter;
3387
+	return $this->columnDelimiter;
3388 3388
   }
3389 3389
   public function setFileEncoding($fileEncoding)
3390 3390
   {
3391
-    $this->fileEncoding = $fileEncoding;
3391
+	$this->fileEncoding = $fileEncoding;
3392 3392
   }
3393 3393
   public function getFileEncoding()
3394 3394
   {
3395
-    return $this->fileEncoding;
3395
+	return $this->fileEncoding;
3396 3396
   }
3397 3397
   public function setQuotingMode($quotingMode)
3398 3398
   {
3399
-    $this->quotingMode = $quotingMode;
3399
+	$this->quotingMode = $quotingMode;
3400 3400
   }
3401 3401
   public function getQuotingMode()
3402 3402
   {
3403
-    return $this->quotingMode;
3403
+	return $this->quotingMode;
3404 3404
   }
3405 3405
 }
3406 3406
 
@@ -3423,67 +3423,67 @@  discard block
 block discarded – undo
3423 3423
 
3424 3424
   public function setDatafeedId($datafeedId)
3425 3425
   {
3426
-    $this->datafeedId = $datafeedId;
3426
+	$this->datafeedId = $datafeedId;
3427 3427
   }
3428 3428
   public function getDatafeedId()
3429 3429
   {
3430
-    return $this->datafeedId;
3430
+	return $this->datafeedId;
3431 3431
   }
3432 3432
   public function setErrors($errors)
3433 3433
   {
3434
-    $this->errors = $errors;
3434
+	$this->errors = $errors;
3435 3435
   }
3436 3436
   public function getErrors()
3437 3437
   {
3438
-    return $this->errors;
3438
+	return $this->errors;
3439 3439
   }
3440 3440
   public function setItemsTotal($itemsTotal)
3441 3441
   {
3442
-    $this->itemsTotal = $itemsTotal;
3442
+	$this->itemsTotal = $itemsTotal;
3443 3443
   }
3444 3444
   public function getItemsTotal()
3445 3445
   {
3446
-    return $this->itemsTotal;
3446
+	return $this->itemsTotal;
3447 3447
   }
3448 3448
   public function setItemsValid($itemsValid)
3449 3449
   {
3450
-    $this->itemsValid = $itemsValid;
3450
+	$this->itemsValid = $itemsValid;
3451 3451
   }
3452 3452
   public function getItemsValid()
3453 3453
   {
3454
-    return $this->itemsValid;
3454
+	return $this->itemsValid;
3455 3455
   }
3456 3456
   public function setKind($kind)
3457 3457
   {
3458
-    $this->kind = $kind;
3458
+	$this->kind = $kind;
3459 3459
   }
3460 3460
   public function getKind()
3461 3461
   {
3462
-    return $this->kind;
3462
+	return $this->kind;
3463 3463
   }
3464 3464
   public function setLastUploadDate($lastUploadDate)
3465 3465
   {
3466
-    $this->lastUploadDate = $lastUploadDate;
3466
+	$this->lastUploadDate = $lastUploadDate;
3467 3467
   }
3468 3468
   public function getLastUploadDate()
3469 3469
   {
3470
-    return $this->lastUploadDate;
3470
+	return $this->lastUploadDate;
3471 3471
   }
3472 3472
   public function setProcessingStatus($processingStatus)
3473 3473
   {
3474
-    $this->processingStatus = $processingStatus;
3474
+	$this->processingStatus = $processingStatus;
3475 3475
   }
3476 3476
   public function getProcessingStatus()
3477 3477
   {
3478
-    return $this->processingStatus;
3478
+	return $this->processingStatus;
3479 3479
   }
3480 3480
   public function setWarnings($warnings)
3481 3481
   {
3482
-    $this->warnings = $warnings;
3482
+	$this->warnings = $warnings;
3483 3483
   }
3484 3484
   public function getWarnings()
3485 3485
   {
3486
-    return $this->warnings;
3486
+	return $this->warnings;
3487 3487
   }
3488 3488
 }
3489 3489
 
@@ -3501,35 +3501,35 @@  discard block
 block discarded – undo
3501 3501
 
3502 3502
   public function setCode($code)
3503 3503
   {
3504
-    $this->code = $code;
3504
+	$this->code = $code;
3505 3505
   }
3506 3506
   public function getCode()
3507 3507
   {
3508
-    return $this->code;
3508
+	return $this->code;
3509 3509
   }
3510 3510
   public function setCount($count)
3511 3511
   {
3512
-    $this->count = $count;
3512
+	$this->count = $count;
3513 3513
   }
3514 3514
   public function getCount()
3515 3515
   {
3516
-    return $this->count;
3516
+	return $this->count;
3517 3517
   }
3518 3518
   public function setExamples($examples)
3519 3519
   {
3520
-    $this->examples = $examples;
3520
+	$this->examples = $examples;
3521 3521
   }
3522 3522
   public function getExamples()
3523 3523
   {
3524
-    return $this->examples;
3524
+	return $this->examples;
3525 3525
   }
3526 3526
   public function setMessage($message)
3527 3527
   {
3528
-    $this->message = $message;
3528
+	$this->message = $message;
3529 3529
   }
3530 3530
   public function getMessage()
3531 3531
   {
3532
-    return $this->message;
3532
+	return $this->message;
3533 3533
   }
3534 3534
 }
3535 3535
 
@@ -3544,27 +3544,27 @@  discard block
 block discarded – undo
3544 3544
 
3545 3545
   public function setItemId($itemId)
3546 3546
   {
3547
-    $this->itemId = $itemId;
3547
+	$this->itemId = $itemId;
3548 3548
   }
3549 3549
   public function getItemId()
3550 3550
   {
3551
-    return $this->itemId;
3551
+	return $this->itemId;
3552 3552
   }
3553 3553
   public function setLineNumber($lineNumber)
3554 3554
   {
3555
-    $this->lineNumber = $lineNumber;
3555
+	$this->lineNumber = $lineNumber;
3556 3556
   }
3557 3557
   public function getLineNumber()
3558 3558
   {
3559
-    return $this->lineNumber;
3559
+	return $this->lineNumber;
3560 3560
   }
3561 3561
   public function setValue($value)
3562 3562
   {
3563
-    $this->value = $value;
3563
+	$this->value = $value;
3564 3564
   }
3565 3565
   public function getValue()
3566 3566
   {
3567
-    return $this->value;
3567
+	return $this->value;
3568 3568
   }
3569 3569
 }
3570 3570
 
@@ -3579,11 +3579,11 @@  discard block
 block discarded – undo
3579 3579
 
3580 3580
   public function setEntries($entries)
3581 3581
   {
3582
-    $this->entries = $entries;
3582
+	$this->entries = $entries;
3583 3583
   }
3584 3584
   public function getEntries()
3585 3585
   {
3586
-    return $this->entries;
3586
+	return $this->entries;
3587 3587
   }
3588 3588
 }
3589 3589
 
@@ -3601,43 +3601,43 @@  discard block
 block discarded – undo
3601 3601
 
3602 3602
   public function setBatchId($batchId)
3603 3603
   {
3604
-    $this->batchId = $batchId;
3604
+	$this->batchId = $batchId;
3605 3605
   }
3606 3606
   public function getBatchId()
3607 3607
   {
3608
-    return $this->batchId;
3608
+	return $this->batchId;
3609 3609
   }
3610 3610
   public function setDatafeed(Google_Service_ShoppingContent_Datafeed $datafeed)
3611 3611
   {
3612
-    $this->datafeed = $datafeed;
3612
+	$this->datafeed = $datafeed;
3613 3613
   }
3614 3614
   public function getDatafeed()
3615 3615
   {
3616
-    return $this->datafeed;
3616
+	return $this->datafeed;
3617 3617
   }
3618 3618
   public function setDatafeedId($datafeedId)
3619 3619
   {
3620
-    $this->datafeedId = $datafeedId;
3620
+	$this->datafeedId = $datafeedId;
3621 3621
   }
3622 3622
   public function getDatafeedId()
3623 3623
   {
3624
-    return $this->datafeedId;
3624
+	return $this->datafeedId;
3625 3625
   }
3626 3626
   public function setMerchantId($merchantId)
3627 3627
   {
3628
-    $this->merchantId = $merchantId;
3628
+	$this->merchantId = $merchantId;
3629 3629
   }
3630 3630
   public function getMerchantId()
3631 3631
   {
3632
-    return $this->merchantId;
3632
+	return $this->merchantId;
3633 3633
   }
3634 3634
   public function setMethod($method)
3635 3635
   {
3636
-    $this->method = $method;
3636
+	$this->method = $method;
3637 3637
   }
3638 3638
   public function getMethod()
3639 3639
   {
3640
-    return $this->method;
3640
+	return $this->method;
3641 3641
   }
3642 3642
 }
3643 3643
 
@@ -3653,19 +3653,19 @@  discard block
 block discarded – undo
3653 3653
 
3654 3654
   public function setEntries($entries)
3655 3655
   {
3656
-    $this->entries = $entries;
3656
+	$this->entries = $entries;
3657 3657
   }
3658 3658
   public function getEntries()
3659 3659
   {
3660
-    return $this->entries;
3660
+	return $this->entries;
3661 3661
   }
3662 3662
   public function setKind($kind)
3663 3663
   {
3664
-    $this->kind = $kind;
3664
+	$this->kind = $kind;
3665 3665
   }
3666 3666
   public function getKind()
3667 3667
   {
3668
-    return $this->kind;
3668
+	return $this->kind;
3669 3669
   }
3670 3670
 }
3671 3671
 
@@ -3682,27 +3682,27 @@  discard block
 block discarded – undo
3682 3682
 
3683 3683
   public function setBatchId($batchId)
3684 3684
   {
3685
-    $this->batchId = $batchId;
3685
+	$this->batchId = $batchId;
3686 3686
   }
3687 3687
   public function getBatchId()
3688 3688
   {
3689
-    return $this->batchId;
3689
+	return $this->batchId;
3690 3690
   }
3691 3691
   public function setDatafeed(Google_Service_ShoppingContent_Datafeed $datafeed)
3692 3692
   {
3693
-    $this->datafeed = $datafeed;
3693
+	$this->datafeed = $datafeed;
3694 3694
   }
3695 3695
   public function getDatafeed()
3696 3696
   {
3697
-    return $this->datafeed;
3697
+	return $this->datafeed;
3698 3698
   }
3699 3699
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
3700 3700
   {
3701
-    $this->errors = $errors;
3701
+	$this->errors = $errors;
3702 3702
   }
3703 3703
   public function getErrors()
3704 3704
   {
3705
-    return $this->errors;
3705
+	return $this->errors;
3706 3706
   }
3707 3707
 }
3708 3708
 
@@ -3719,27 +3719,27 @@  discard block
 block discarded – undo
3719 3719
 
3720 3720
   public function setKind($kind)
3721 3721
   {
3722
-    $this->kind = $kind;
3722
+	$this->kind = $kind;
3723 3723
   }
3724 3724
   public function getKind()
3725 3725
   {
3726
-    return $this->kind;
3726
+	return $this->kind;
3727 3727
   }
3728 3728
   public function setNextPageToken($nextPageToken)
3729 3729
   {
3730
-    $this->nextPageToken = $nextPageToken;
3730
+	$this->nextPageToken = $nextPageToken;
3731 3731
   }
3732 3732
   public function getNextPageToken()
3733 3733
   {
3734
-    return $this->nextPageToken;
3734
+	return $this->nextPageToken;
3735 3735
   }
3736 3736
   public function setResources($resources)
3737 3737
   {
3738
-    $this->resources = $resources;
3738
+	$this->resources = $resources;
3739 3739
   }
3740 3740
   public function getResources()
3741 3741
   {
3742
-    return $this->resources;
3742
+	return $this->resources;
3743 3743
   }
3744 3744
 }
3745 3745
 
@@ -3754,11 +3754,11 @@  discard block
 block discarded – undo
3754 3754
 
3755 3755
   public function setEntries($entries)
3756 3756
   {
3757
-    $this->entries = $entries;
3757
+	$this->entries = $entries;
3758 3758
   }
3759 3759
   public function getEntries()
3760 3760
   {
3761
-    return $this->entries;
3761
+	return $this->entries;
3762 3762
   }
3763 3763
 }
3764 3764
 
@@ -3774,35 +3774,35 @@  discard block
 block discarded – undo
3774 3774
 
3775 3775
   public function setBatchId($batchId)
3776 3776
   {
3777
-    $this->batchId = $batchId;
3777
+	$this->batchId = $batchId;
3778 3778
   }
3779 3779
   public function getBatchId()
3780 3780
   {
3781
-    return $this->batchId;
3781
+	return $this->batchId;
3782 3782
   }
3783 3783
   public function setDatafeedId($datafeedId)
3784 3784
   {
3785
-    $this->datafeedId = $datafeedId;
3785
+	$this->datafeedId = $datafeedId;
3786 3786
   }
3787 3787
   public function getDatafeedId()
3788 3788
   {
3789
-    return $this->datafeedId;
3789
+	return $this->datafeedId;
3790 3790
   }
3791 3791
   public function setMerchantId($merchantId)
3792 3792
   {
3793
-    $this->merchantId = $merchantId;
3793
+	$this->merchantId = $merchantId;
3794 3794
   }
3795 3795
   public function getMerchantId()
3796 3796
   {
3797
-    return $this->merchantId;
3797
+	return $this->merchantId;
3798 3798
   }
3799 3799
   public function setMethod($method)
3800 3800
   {
3801
-    $this->method = $method;
3801
+	$this->method = $method;
3802 3802
   }
3803 3803
   public function getMethod()
3804 3804
   {
3805
-    return $this->method;
3805
+	return $this->method;
3806 3806
   }
3807 3807
 }
3808 3808
 
@@ -3818,19 +3818,19 @@  discard block
 block discarded – undo
3818 3818
 
3819 3819
   public function setEntries($entries)
3820 3820
   {
3821
-    $this->entries = $entries;
3821
+	$this->entries = $entries;
3822 3822
   }
3823 3823
   public function getEntries()
3824 3824
   {
3825
-    return $this->entries;
3825
+	return $this->entries;
3826 3826
   }
3827 3827
   public function setKind($kind)
3828 3828
   {
3829
-    $this->kind = $kind;
3829
+	$this->kind = $kind;
3830 3830
   }
3831 3831
   public function getKind()
3832 3832
   {
3833
-    return $this->kind;
3833
+	return $this->kind;
3834 3834
   }
3835 3835
 }
3836 3836
 
@@ -3847,27 +3847,27 @@  discard block
 block discarded – undo
3847 3847
 
3848 3848
   public function setBatchId($batchId)
3849 3849
   {
3850
-    $this->batchId = $batchId;
3850
+	$this->batchId = $batchId;
3851 3851
   }
3852 3852
   public function getBatchId()
3853 3853
   {
3854
-    return $this->batchId;
3854
+	return $this->batchId;
3855 3855
   }
3856 3856
   public function setDatafeedStatus(Google_Service_ShoppingContent_DatafeedStatus $datafeedStatus)
3857 3857
   {
3858
-    $this->datafeedStatus = $datafeedStatus;
3858
+	$this->datafeedStatus = $datafeedStatus;
3859 3859
   }
3860 3860
   public function getDatafeedStatus()
3861 3861
   {
3862
-    return $this->datafeedStatus;
3862
+	return $this->datafeedStatus;
3863 3863
   }
3864 3864
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
3865 3865
   {
3866
-    $this->errors = $errors;
3866
+	$this->errors = $errors;
3867 3867
   }
3868 3868
   public function getErrors()
3869 3869
   {
3870
-    return $this->errors;
3870
+	return $this->errors;
3871 3871
   }
3872 3872
 }
3873 3873
 
@@ -3884,27 +3884,27 @@  discard block
 block discarded – undo
3884 3884
 
3885 3885
   public function setKind($kind)
3886 3886
   {
3887
-    $this->kind = $kind;
3887
+	$this->kind = $kind;
3888 3888
   }
3889 3889
   public function getKind()
3890 3890
   {
3891
-    return $this->kind;
3891
+	return $this->kind;
3892 3892
   }
3893 3893
   public function setNextPageToken($nextPageToken)
3894 3894
   {
3895
-    $this->nextPageToken = $nextPageToken;
3895
+	$this->nextPageToken = $nextPageToken;
3896 3896
   }
3897 3897
   public function getNextPageToken()
3898 3898
   {
3899
-    return $this->nextPageToken;
3899
+	return $this->nextPageToken;
3900 3900
   }
3901 3901
   public function setResources($resources)
3902 3902
   {
3903
-    $this->resources = $resources;
3903
+	$this->resources = $resources;
3904 3904
   }
3905 3905
   public function getResources()
3906 3906
   {
3907
-    return $this->resources;
3907
+	return $this->resources;
3908 3908
   }
3909 3909
 }
3910 3910
 
@@ -3919,27 +3919,27 @@  discard block
 block discarded – undo
3919 3919
 
3920 3920
   public function setDomain($domain)
3921 3921
   {
3922
-    $this->domain = $domain;
3922
+	$this->domain = $domain;
3923 3923
   }
3924 3924
   public function getDomain()
3925 3925
   {
3926
-    return $this->domain;
3926
+	return $this->domain;
3927 3927
   }
3928 3928
   public function setMessage($message)
3929 3929
   {
3930
-    $this->message = $message;
3930
+	$this->message = $message;
3931 3931
   }
3932 3932
   public function getMessage()
3933 3933
   {
3934
-    return $this->message;
3934
+	return $this->message;
3935 3935
   }
3936 3936
   public function setReason($reason)
3937 3937
   {
3938
-    $this->reason = $reason;
3938
+	$this->reason = $reason;
3939 3939
   }
3940 3940
   public function getReason()
3941 3941
   {
3942
-    return $this->reason;
3942
+	return $this->reason;
3943 3943
   }
3944 3944
 }
3945 3945
 
@@ -3956,27 +3956,27 @@  discard block
 block discarded – undo
3956 3956
 
3957 3957
   public function setCode($code)
3958 3958
   {
3959
-    $this->code = $code;
3959
+	$this->code = $code;
3960 3960
   }
3961 3961
   public function getCode()
3962 3962
   {
3963
-    return $this->code;
3963
+	return $this->code;
3964 3964
   }
3965 3965
   public function setErrors($errors)
3966 3966
   {
3967
-    $this->errors = $errors;
3967
+	$this->errors = $errors;
3968 3968
   }
3969 3969
   public function getErrors()
3970 3970
   {
3971
-    return $this->errors;
3971
+	return $this->errors;
3972 3972
   }
3973 3973
   public function setMessage($message)
3974 3974
   {
3975
-    $this->message = $message;
3975
+	$this->message = $message;
3976 3976
   }
3977 3977
   public function getMessage()
3978 3978
   {
3979
-    return $this->message;
3979
+	return $this->message;
3980 3980
   }
3981 3981
 }
3982 3982
 
@@ -3996,51 +3996,51 @@  discard block
 block discarded – undo
3996 3996
 
3997 3997
   public function setAvailability($availability)
3998 3998
   {
3999
-    $this->availability = $availability;
3999
+	$this->availability = $availability;
4000 4000
   }
4001 4001
   public function getAvailability()
4002 4002
   {
4003
-    return $this->availability;
4003
+	return $this->availability;
4004 4004
   }
4005 4005
   public function setKind($kind)
4006 4006
   {
4007
-    $this->kind = $kind;
4007
+	$this->kind = $kind;
4008 4008
   }
4009 4009
   public function getKind()
4010 4010
   {
4011
-    return $this->kind;
4011
+	return $this->kind;
4012 4012
   }
4013 4013
   public function setPrice(Google_Service_ShoppingContent_Price $price)
4014 4014
   {
4015
-    $this->price = $price;
4015
+	$this->price = $price;
4016 4016
   }
4017 4017
   public function getPrice()
4018 4018
   {
4019
-    return $this->price;
4019
+	return $this->price;
4020 4020
   }
4021 4021
   public function setQuantity($quantity)
4022 4022
   {
4023
-    $this->quantity = $quantity;
4023
+	$this->quantity = $quantity;
4024 4024
   }
4025 4025
   public function getQuantity()
4026 4026
   {
4027
-    return $this->quantity;
4027
+	return $this->quantity;
4028 4028
   }
4029 4029
   public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice)
4030 4030
   {
4031
-    $this->salePrice = $salePrice;
4031
+	$this->salePrice = $salePrice;
4032 4032
   }
4033 4033
   public function getSalePrice()
4034 4034
   {
4035
-    return $this->salePrice;
4035
+	return $this->salePrice;
4036 4036
   }
4037 4037
   public function setSalePriceEffectiveDate($salePriceEffectiveDate)
4038 4038
   {
4039
-    $this->salePriceEffectiveDate = $salePriceEffectiveDate;
4039
+	$this->salePriceEffectiveDate = $salePriceEffectiveDate;
4040 4040
   }
4041 4041
   public function getSalePriceEffectiveDate()
4042 4042
   {
4043
-    return $this->salePriceEffectiveDate;
4043
+	return $this->salePriceEffectiveDate;
4044 4044
   }
4045 4045
 }
4046 4046
 
@@ -4055,11 +4055,11 @@  discard block
 block discarded – undo
4055 4055
 
4056 4056
   public function setEntries($entries)
4057 4057
   {
4058
-    $this->entries = $entries;
4058
+	$this->entries = $entries;
4059 4059
   }
4060 4060
   public function getEntries()
4061 4061
   {
4062
-    return $this->entries;
4062
+	return $this->entries;
4063 4063
   }
4064 4064
 }
4065 4065
 
@@ -4077,43 +4077,43 @@  discard block
 block discarded – undo
4077 4077
 
4078 4078
   public function setBatchId($batchId)
4079 4079
   {
4080
-    $this->batchId = $batchId;
4080
+	$this->batchId = $batchId;
4081 4081
   }
4082 4082
   public function getBatchId()
4083 4083
   {
4084
-    return $this->batchId;
4084
+	return $this->batchId;
4085 4085
   }
4086 4086
   public function setInventory(Google_Service_ShoppingContent_Inventory $inventory)
4087 4087
   {
4088
-    $this->inventory = $inventory;
4088
+	$this->inventory = $inventory;
4089 4089
   }
4090 4090
   public function getInventory()
4091 4091
   {
4092
-    return $this->inventory;
4092
+	return $this->inventory;
4093 4093
   }
4094 4094
   public function setMerchantId($merchantId)
4095 4095
   {
4096
-    $this->merchantId = $merchantId;
4096
+	$this->merchantId = $merchantId;
4097 4097
   }
4098 4098
   public function getMerchantId()
4099 4099
   {
4100
-    return $this->merchantId;
4100
+	return $this->merchantId;
4101 4101
   }
4102 4102
   public function setProductId($productId)
4103 4103
   {
4104
-    $this->productId = $productId;
4104
+	$this->productId = $productId;
4105 4105
   }
4106 4106
   public function getProductId()
4107 4107
   {
4108
-    return $this->productId;
4108
+	return $this->productId;
4109 4109
   }
4110 4110
   public function setStoreCode($storeCode)
4111 4111
   {
4112
-    $this->storeCode = $storeCode;
4112
+	$this->storeCode = $storeCode;
4113 4113
   }
4114 4114
   public function getStoreCode()
4115 4115
   {
4116
-    return $this->storeCode;
4116
+	return $this->storeCode;
4117 4117
   }
4118 4118
 }
4119 4119
 
@@ -4129,19 +4129,19 @@  discard block
 block discarded – undo
4129 4129
 
4130 4130
   public function setEntries($entries)
4131 4131
   {
4132
-    $this->entries = $entries;
4132
+	$this->entries = $entries;
4133 4133
   }
4134 4134
   public function getEntries()
4135 4135
   {
4136
-    return $this->entries;
4136
+	return $this->entries;
4137 4137
   }
4138 4138
   public function setKind($kind)
4139 4139
   {
4140
-    $this->kind = $kind;
4140
+	$this->kind = $kind;
4141 4141
   }
4142 4142
   public function getKind()
4143 4143
   {
4144
-    return $this->kind;
4144
+	return $this->kind;
4145 4145
   }
4146 4146
 }
4147 4147
 
@@ -4157,27 +4157,27 @@  discard block
 block discarded – undo
4157 4157
 
4158 4158
   public function setBatchId($batchId)
4159 4159
   {
4160
-    $this->batchId = $batchId;
4160
+	$this->batchId = $batchId;
4161 4161
   }
4162 4162
   public function getBatchId()
4163 4163
   {
4164
-    return $this->batchId;
4164
+	return $this->batchId;
4165 4165
   }
4166 4166
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
4167 4167
   {
4168
-    $this->errors = $errors;
4168
+	$this->errors = $errors;
4169 4169
   }
4170 4170
   public function getErrors()
4171 4171
   {
4172
-    return $this->errors;
4172
+	return $this->errors;
4173 4173
   }
4174 4174
   public function setKind($kind)
4175 4175
   {
4176
-    $this->kind = $kind;
4176
+	$this->kind = $kind;
4177 4177
   }
4178 4178
   public function getKind()
4179 4179
   {
4180
-    return $this->kind;
4180
+	return $this->kind;
4181 4181
   }
4182 4182
 }
4183 4183
 
@@ -4196,43 +4196,43 @@  discard block
 block discarded – undo
4196 4196
 
4197 4197
   public function setAvailability($availability)
4198 4198
   {
4199
-    $this->availability = $availability;
4199
+	$this->availability = $availability;
4200 4200
   }
4201 4201
   public function getAvailability()
4202 4202
   {
4203
-    return $this->availability;
4203
+	return $this->availability;
4204 4204
   }
4205 4205
   public function setPrice(Google_Service_ShoppingContent_Price $price)
4206 4206
   {
4207
-    $this->price = $price;
4207
+	$this->price = $price;
4208 4208
   }
4209 4209
   public function getPrice()
4210 4210
   {
4211
-    return $this->price;
4211
+	return $this->price;
4212 4212
   }
4213 4213
   public function setQuantity($quantity)
4214 4214
   {
4215
-    $this->quantity = $quantity;
4215
+	$this->quantity = $quantity;
4216 4216
   }
4217 4217
   public function getQuantity()
4218 4218
   {
4219
-    return $this->quantity;
4219
+	return $this->quantity;
4220 4220
   }
4221 4221
   public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice)
4222 4222
   {
4223
-    $this->salePrice = $salePrice;
4223
+	$this->salePrice = $salePrice;
4224 4224
   }
4225 4225
   public function getSalePrice()
4226 4226
   {
4227
-    return $this->salePrice;
4227
+	return $this->salePrice;
4228 4228
   }
4229 4229
   public function setSalePriceEffectiveDate($salePriceEffectiveDate)
4230 4230
   {
4231
-    $this->salePriceEffectiveDate = $salePriceEffectiveDate;
4231
+	$this->salePriceEffectiveDate = $salePriceEffectiveDate;
4232 4232
   }
4233 4233
   public function getSalePriceEffectiveDate()
4234 4234
   {
4235
-    return $this->salePriceEffectiveDate;
4235
+	return $this->salePriceEffectiveDate;
4236 4236
   }
4237 4237
 }
4238 4238
 
@@ -4245,11 +4245,11 @@  discard block
 block discarded – undo
4245 4245
 
4246 4246
   public function setKind($kind)
4247 4247
   {
4248
-    $this->kind = $kind;
4248
+	$this->kind = $kind;
4249 4249
   }
4250 4250
   public function getKind()
4251 4251
   {
4252
-    return $this->kind;
4252
+	return $this->kind;
4253 4253
   }
4254 4254
 }
4255 4255
 
@@ -4264,27 +4264,27 @@  discard block
 block discarded – undo
4264 4264
 
4265 4265
   public function setName($name)
4266 4266
   {
4267
-    $this->name = $name;
4267
+	$this->name = $name;
4268 4268
   }
4269 4269
   public function getName()
4270 4270
   {
4271
-    return $this->name;
4271
+	return $this->name;
4272 4272
   }
4273 4273
   public function setPointsValue($pointsValue)
4274 4274
   {
4275
-    $this->pointsValue = $pointsValue;
4275
+	$this->pointsValue = $pointsValue;
4276 4276
   }
4277 4277
   public function getPointsValue()
4278 4278
   {
4279
-    return $this->pointsValue;
4279
+	return $this->pointsValue;
4280 4280
   }
4281 4281
   public function setRatio($ratio)
4282 4282
   {
4283
-    $this->ratio = $ratio;
4283
+	$this->ratio = $ratio;
4284 4284
   }
4285 4285
   public function getRatio()
4286 4286
   {
4287
-    return $this->ratio;
4287
+	return $this->ratio;
4288 4288
   }
4289 4289
 }
4290 4290
 
@@ -4298,19 +4298,19 @@  discard block
 block discarded – undo
4298 4298
 
4299 4299
   public function setCurrency($currency)
4300 4300
   {
4301
-    $this->currency = $currency;
4301
+	$this->currency = $currency;
4302 4302
   }
4303 4303
   public function getCurrency()
4304 4304
   {
4305
-    return $this->currency;
4305
+	return $this->currency;
4306 4306
   }
4307 4307
   public function setValue($value)
4308 4308
   {
4309
-    $this->value = $value;
4309
+	$this->value = $value;
4310 4310
   }
4311 4311
   public function getValue()
4312 4312
   {
4313
-    return $this->value;
4313
+	return $this->value;
4314 4314
   }
4315 4315
 }
4316 4316
 
@@ -4409,555 +4409,555 @@  discard block
 block discarded – undo
4409 4409
 
4410 4410
   public function setAdditionalImageLinks($additionalImageLinks)
4411 4411
   {
4412
-    $this->additionalImageLinks = $additionalImageLinks;
4412
+	$this->additionalImageLinks = $additionalImageLinks;
4413 4413
   }
4414 4414
   public function getAdditionalImageLinks()
4415 4415
   {
4416
-    return $this->additionalImageLinks;
4416
+	return $this->additionalImageLinks;
4417 4417
   }
4418 4418
   public function setAdult($adult)
4419 4419
   {
4420
-    $this->adult = $adult;
4420
+	$this->adult = $adult;
4421 4421
   }
4422 4422
   public function getAdult()
4423 4423
   {
4424
-    return $this->adult;
4424
+	return $this->adult;
4425 4425
   }
4426 4426
   public function setAdwordsGrouping($adwordsGrouping)
4427 4427
   {
4428
-    $this->adwordsGrouping = $adwordsGrouping;
4428
+	$this->adwordsGrouping = $adwordsGrouping;
4429 4429
   }
4430 4430
   public function getAdwordsGrouping()
4431 4431
   {
4432
-    return $this->adwordsGrouping;
4432
+	return $this->adwordsGrouping;
4433 4433
   }
4434 4434
   public function setAdwordsLabels($adwordsLabels)
4435 4435
   {
4436
-    $this->adwordsLabels = $adwordsLabels;
4436
+	$this->adwordsLabels = $adwordsLabels;
4437 4437
   }
4438 4438
   public function getAdwordsLabels()
4439 4439
   {
4440
-    return $this->adwordsLabels;
4440
+	return $this->adwordsLabels;
4441 4441
   }
4442 4442
   public function setAdwordsRedirect($adwordsRedirect)
4443 4443
   {
4444
-    $this->adwordsRedirect = $adwordsRedirect;
4444
+	$this->adwordsRedirect = $adwordsRedirect;
4445 4445
   }
4446 4446
   public function getAdwordsRedirect()
4447 4447
   {
4448
-    return $this->adwordsRedirect;
4448
+	return $this->adwordsRedirect;
4449 4449
   }
4450 4450
   public function setAgeGroup($ageGroup)
4451 4451
   {
4452
-    $this->ageGroup = $ageGroup;
4452
+	$this->ageGroup = $ageGroup;
4453 4453
   }
4454 4454
   public function getAgeGroup()
4455 4455
   {
4456
-    return $this->ageGroup;
4456
+	return $this->ageGroup;
4457 4457
   }
4458 4458
   public function setAspects($aspects)
4459 4459
   {
4460
-    $this->aspects = $aspects;
4460
+	$this->aspects = $aspects;
4461 4461
   }
4462 4462
   public function getAspects()
4463 4463
   {
4464
-    return $this->aspects;
4464
+	return $this->aspects;
4465 4465
   }
4466 4466
   public function setAvailability($availability)
4467 4467
   {
4468
-    $this->availability = $availability;
4468
+	$this->availability = $availability;
4469 4469
   }
4470 4470
   public function getAvailability()
4471 4471
   {
4472
-    return $this->availability;
4472
+	return $this->availability;
4473 4473
   }
4474 4474
   public function setAvailabilityDate($availabilityDate)
4475 4475
   {
4476
-    $this->availabilityDate = $availabilityDate;
4476
+	$this->availabilityDate = $availabilityDate;
4477 4477
   }
4478 4478
   public function getAvailabilityDate()
4479 4479
   {
4480
-    return $this->availabilityDate;
4480
+	return $this->availabilityDate;
4481 4481
   }
4482 4482
   public function setBrand($brand)
4483 4483
   {
4484
-    $this->brand = $brand;
4484
+	$this->brand = $brand;
4485 4485
   }
4486 4486
   public function getBrand()
4487 4487
   {
4488
-    return $this->brand;
4488
+	return $this->brand;
4489 4489
   }
4490 4490
   public function setChannel($channel)
4491 4491
   {
4492
-    $this->channel = $channel;
4492
+	$this->channel = $channel;
4493 4493
   }
4494 4494
   public function getChannel()
4495 4495
   {
4496
-    return $this->channel;
4496
+	return $this->channel;
4497 4497
   }
4498 4498
   public function setColor($color)
4499 4499
   {
4500
-    $this->color = $color;
4500
+	$this->color = $color;
4501 4501
   }
4502 4502
   public function getColor()
4503 4503
   {
4504
-    return $this->color;
4504
+	return $this->color;
4505 4505
   }
4506 4506
   public function setCondition($condition)
4507 4507
   {
4508
-    $this->condition = $condition;
4508
+	$this->condition = $condition;
4509 4509
   }
4510 4510
   public function getCondition()
4511 4511
   {
4512
-    return $this->condition;
4512
+	return $this->condition;
4513 4513
   }
4514 4514
   public function setContentLanguage($contentLanguage)
4515 4515
   {
4516
-    $this->contentLanguage = $contentLanguage;
4516
+	$this->contentLanguage = $contentLanguage;
4517 4517
   }
4518 4518
   public function getContentLanguage()
4519 4519
   {
4520
-    return $this->contentLanguage;
4520
+	return $this->contentLanguage;
4521 4521
   }
4522 4522
   public function setCustomAttributes($customAttributes)
4523 4523
   {
4524
-    $this->customAttributes = $customAttributes;
4524
+	$this->customAttributes = $customAttributes;
4525 4525
   }
4526 4526
   public function getCustomAttributes()
4527 4527
   {
4528
-    return $this->customAttributes;
4528
+	return $this->customAttributes;
4529 4529
   }
4530 4530
   public function setCustomGroups($customGroups)
4531 4531
   {
4532
-    $this->customGroups = $customGroups;
4532
+	$this->customGroups = $customGroups;
4533 4533
   }
4534 4534
   public function getCustomGroups()
4535 4535
   {
4536
-    return $this->customGroups;
4536
+	return $this->customGroups;
4537 4537
   }
4538 4538
   public function setCustomLabel0($customLabel0)
4539 4539
   {
4540
-    $this->customLabel0 = $customLabel0;
4540
+	$this->customLabel0 = $customLabel0;
4541 4541
   }
4542 4542
   public function getCustomLabel0()
4543 4543
   {
4544
-    return $this->customLabel0;
4544
+	return $this->customLabel0;
4545 4545
   }
4546 4546
   public function setCustomLabel1($customLabel1)
4547 4547
   {
4548
-    $this->customLabel1 = $customLabel1;
4548
+	$this->customLabel1 = $customLabel1;
4549 4549
   }
4550 4550
   public function getCustomLabel1()
4551 4551
   {
4552
-    return $this->customLabel1;
4552
+	return $this->customLabel1;
4553 4553
   }
4554 4554
   public function setCustomLabel2($customLabel2)
4555 4555
   {
4556
-    $this->customLabel2 = $customLabel2;
4556
+	$this->customLabel2 = $customLabel2;
4557 4557
   }
4558 4558
   public function getCustomLabel2()
4559 4559
   {
4560
-    return $this->customLabel2;
4560
+	return $this->customLabel2;
4561 4561
   }
4562 4562
   public function setCustomLabel3($customLabel3)
4563 4563
   {
4564
-    $this->customLabel3 = $customLabel3;
4564
+	$this->customLabel3 = $customLabel3;
4565 4565
   }
4566 4566
   public function getCustomLabel3()
4567 4567
   {
4568
-    return $this->customLabel3;
4568
+	return $this->customLabel3;
4569 4569
   }
4570 4570
   public function setCustomLabel4($customLabel4)
4571 4571
   {
4572
-    $this->customLabel4 = $customLabel4;
4572
+	$this->customLabel4 = $customLabel4;
4573 4573
   }
4574 4574
   public function getCustomLabel4()
4575 4575
   {
4576
-    return $this->customLabel4;
4576
+	return $this->customLabel4;
4577 4577
   }
4578 4578
   public function setDescription($description)
4579 4579
   {
4580
-    $this->description = $description;
4580
+	$this->description = $description;
4581 4581
   }
4582 4582
   public function getDescription()
4583 4583
   {
4584
-    return $this->description;
4584
+	return $this->description;
4585 4585
   }
4586 4586
   public function setDestinations($destinations)
4587 4587
   {
4588
-    $this->destinations = $destinations;
4588
+	$this->destinations = $destinations;
4589 4589
   }
4590 4590
   public function getDestinations()
4591 4591
   {
4592
-    return $this->destinations;
4592
+	return $this->destinations;
4593 4593
   }
4594 4594
   public function setDisplayAdsId($displayAdsId)
4595 4595
   {
4596
-    $this->displayAdsId = $displayAdsId;
4596
+	$this->displayAdsId = $displayAdsId;
4597 4597
   }
4598 4598
   public function getDisplayAdsId()
4599 4599
   {
4600
-    return $this->displayAdsId;
4600
+	return $this->displayAdsId;
4601 4601
   }
4602 4602
   public function setDisplayAdsLink($displayAdsLink)
4603 4603
   {
4604
-    $this->displayAdsLink = $displayAdsLink;
4604
+	$this->displayAdsLink = $displayAdsLink;
4605 4605
   }
4606 4606
   public function getDisplayAdsLink()
4607 4607
   {
4608
-    return $this->displayAdsLink;
4608
+	return $this->displayAdsLink;
4609 4609
   }
4610 4610
   public function setDisplayAdsSimilarIds($displayAdsSimilarIds)
4611 4611
   {
4612
-    $this->displayAdsSimilarIds = $displayAdsSimilarIds;
4612
+	$this->displayAdsSimilarIds = $displayAdsSimilarIds;
4613 4613
   }
4614 4614
   public function getDisplayAdsSimilarIds()
4615 4615
   {
4616
-    return $this->displayAdsSimilarIds;
4616
+	return $this->displayAdsSimilarIds;
4617 4617
   }
4618 4618
   public function setDisplayAdsTitle($displayAdsTitle)
4619 4619
   {
4620
-    $this->displayAdsTitle = $displayAdsTitle;
4620
+	$this->displayAdsTitle = $displayAdsTitle;
4621 4621
   }
4622 4622
   public function getDisplayAdsTitle()
4623 4623
   {
4624
-    return $this->displayAdsTitle;
4624
+	return $this->displayAdsTitle;
4625 4625
   }
4626 4626
   public function setDisplayAdsValue($displayAdsValue)
4627 4627
   {
4628
-    $this->displayAdsValue = $displayAdsValue;
4628
+	$this->displayAdsValue = $displayAdsValue;
4629 4629
   }
4630 4630
   public function getDisplayAdsValue()
4631 4631
   {
4632
-    return $this->displayAdsValue;
4632
+	return $this->displayAdsValue;
4633 4633
   }
4634 4634
   public function setEnergyEfficiencyClass($energyEfficiencyClass)
4635 4635
   {
4636
-    $this->energyEfficiencyClass = $energyEfficiencyClass;
4636
+	$this->energyEfficiencyClass = $energyEfficiencyClass;
4637 4637
   }
4638 4638
   public function getEnergyEfficiencyClass()
4639 4639
   {
4640
-    return $this->energyEfficiencyClass;
4640
+	return $this->energyEfficiencyClass;
4641 4641
   }
4642 4642
   public function setExpirationDate($expirationDate)
4643 4643
   {
4644
-    $this->expirationDate = $expirationDate;
4644
+	$this->expirationDate = $expirationDate;
4645 4645
   }
4646 4646
   public function getExpirationDate()
4647 4647
   {
4648
-    return $this->expirationDate;
4648
+	return $this->expirationDate;
4649 4649
   }
4650 4650
   public function setGender($gender)
4651 4651
   {
4652
-    $this->gender = $gender;
4652
+	$this->gender = $gender;
4653 4653
   }
4654 4654
   public function getGender()
4655 4655
   {
4656
-    return $this->gender;
4656
+	return $this->gender;
4657 4657
   }
4658 4658
   public function setGoogleProductCategory($googleProductCategory)
4659 4659
   {
4660
-    $this->googleProductCategory = $googleProductCategory;
4660
+	$this->googleProductCategory = $googleProductCategory;
4661 4661
   }
4662 4662
   public function getGoogleProductCategory()
4663 4663
   {
4664
-    return $this->googleProductCategory;
4664
+	return $this->googleProductCategory;
4665 4665
   }
4666 4666
   public function setGtin($gtin)
4667 4667
   {
4668
-    $this->gtin = $gtin;
4668
+	$this->gtin = $gtin;
4669 4669
   }
4670 4670
   public function getGtin()
4671 4671
   {
4672
-    return $this->gtin;
4672
+	return $this->gtin;
4673 4673
   }
4674 4674
   public function setId($id)
4675 4675
   {
4676
-    $this->id = $id;
4676
+	$this->id = $id;
4677 4677
   }
4678 4678
   public function getId()
4679 4679
   {
4680
-    return $this->id;
4680
+	return $this->id;
4681 4681
   }
4682 4682
   public function setIdentifierExists($identifierExists)
4683 4683
   {
4684
-    $this->identifierExists = $identifierExists;
4684
+	$this->identifierExists = $identifierExists;
4685 4685
   }
4686 4686
   public function getIdentifierExists()
4687 4687
   {
4688
-    return $this->identifierExists;
4688
+	return $this->identifierExists;
4689 4689
   }
4690 4690
   public function setImageLink($imageLink)
4691 4691
   {
4692
-    $this->imageLink = $imageLink;
4692
+	$this->imageLink = $imageLink;
4693 4693
   }
4694 4694
   public function getImageLink()
4695 4695
   {
4696
-    return $this->imageLink;
4696
+	return $this->imageLink;
4697 4697
   }
4698 4698
   public function setInstallment(Google_Service_ShoppingContent_ProductInstallment $installment)
4699 4699
   {
4700
-    $this->installment = $installment;
4700
+	$this->installment = $installment;
4701 4701
   }
4702 4702
   public function getInstallment()
4703 4703
   {
4704
-    return $this->installment;
4704
+	return $this->installment;
4705 4705
   }
4706 4706
   public function setIsBundle($isBundle)
4707 4707
   {
4708
-    $this->isBundle = $isBundle;
4708
+	$this->isBundle = $isBundle;
4709 4709
   }
4710 4710
   public function getIsBundle()
4711 4711
   {
4712
-    return $this->isBundle;
4712
+	return $this->isBundle;
4713 4713
   }
4714 4714
   public function setItemGroupId($itemGroupId)
4715 4715
   {
4716
-    $this->itemGroupId = $itemGroupId;
4716
+	$this->itemGroupId = $itemGroupId;
4717 4717
   }
4718 4718
   public function getItemGroupId()
4719 4719
   {
4720
-    return $this->itemGroupId;
4720
+	return $this->itemGroupId;
4721 4721
   }
4722 4722
   public function setKind($kind)
4723 4723
   {
4724
-    $this->kind = $kind;
4724
+	$this->kind = $kind;
4725 4725
   }
4726 4726
   public function getKind()
4727 4727
   {
4728
-    return $this->kind;
4728
+	return $this->kind;
4729 4729
   }
4730 4730
   public function setLink($link)
4731 4731
   {
4732
-    $this->link = $link;
4732
+	$this->link = $link;
4733 4733
   }
4734 4734
   public function getLink()
4735 4735
   {
4736
-    return $this->link;
4736
+	return $this->link;
4737 4737
   }
4738 4738
   public function setLoyaltyPoints(Google_Service_ShoppingContent_LoyaltyPoints $loyaltyPoints)
4739 4739
   {
4740
-    $this->loyaltyPoints = $loyaltyPoints;
4740
+	$this->loyaltyPoints = $loyaltyPoints;
4741 4741
   }
4742 4742
   public function getLoyaltyPoints()
4743 4743
   {
4744
-    return $this->loyaltyPoints;
4744
+	return $this->loyaltyPoints;
4745 4745
   }
4746 4746
   public function setMaterial($material)
4747 4747
   {
4748
-    $this->material = $material;
4748
+	$this->material = $material;
4749 4749
   }
4750 4750
   public function getMaterial()
4751 4751
   {
4752
-    return $this->material;
4752
+	return $this->material;
4753 4753
   }
4754 4754
   public function setMobileLink($mobileLink)
4755 4755
   {
4756
-    $this->mobileLink = $mobileLink;
4756
+	$this->mobileLink = $mobileLink;
4757 4757
   }
4758 4758
   public function getMobileLink()
4759 4759
   {
4760
-    return $this->mobileLink;
4760
+	return $this->mobileLink;
4761 4761
   }
4762 4762
   public function setMpn($mpn)
4763 4763
   {
4764
-    $this->mpn = $mpn;
4764
+	$this->mpn = $mpn;
4765 4765
   }
4766 4766
   public function getMpn()
4767 4767
   {
4768
-    return $this->mpn;
4768
+	return $this->mpn;
4769 4769
   }
4770 4770
   public function setMultipack($multipack)
4771 4771
   {
4772
-    $this->multipack = $multipack;
4772
+	$this->multipack = $multipack;
4773 4773
   }
4774 4774
   public function getMultipack()
4775 4775
   {
4776
-    return $this->multipack;
4776
+	return $this->multipack;
4777 4777
   }
4778 4778
   public function setOfferId($offerId)
4779 4779
   {
4780
-    $this->offerId = $offerId;
4780
+	$this->offerId = $offerId;
4781 4781
   }
4782 4782
   public function getOfferId()
4783 4783
   {
4784
-    return $this->offerId;
4784
+	return $this->offerId;
4785 4785
   }
4786 4786
   public function setOnlineOnly($onlineOnly)
4787 4787
   {
4788
-    $this->onlineOnly = $onlineOnly;
4788
+	$this->onlineOnly = $onlineOnly;
4789 4789
   }
4790 4790
   public function getOnlineOnly()
4791 4791
   {
4792
-    return $this->onlineOnly;
4792
+	return $this->onlineOnly;
4793 4793
   }
4794 4794
   public function setPattern($pattern)
4795 4795
   {
4796
-    $this->pattern = $pattern;
4796
+	$this->pattern = $pattern;
4797 4797
   }
4798 4798
   public function getPattern()
4799 4799
   {
4800
-    return $this->pattern;
4800
+	return $this->pattern;
4801 4801
   }
4802 4802
   public function setPrice(Google_Service_ShoppingContent_Price $price)
4803 4803
   {
4804
-    $this->price = $price;
4804
+	$this->price = $price;
4805 4805
   }
4806 4806
   public function getPrice()
4807 4807
   {
4808
-    return $this->price;
4808
+	return $this->price;
4809 4809
   }
4810 4810
   public function setProductType($productType)
4811 4811
   {
4812
-    $this->productType = $productType;
4812
+	$this->productType = $productType;
4813 4813
   }
4814 4814
   public function getProductType()
4815 4815
   {
4816
-    return $this->productType;
4816
+	return $this->productType;
4817 4817
   }
4818 4818
   public function setSalePrice(Google_Service_ShoppingContent_Price $salePrice)
4819 4819
   {
4820
-    $this->salePrice = $salePrice;
4820
+	$this->salePrice = $salePrice;
4821 4821
   }
4822 4822
   public function getSalePrice()
4823 4823
   {
4824
-    return $this->salePrice;
4824
+	return $this->salePrice;
4825 4825
   }
4826 4826
   public function setSalePriceEffectiveDate($salePriceEffectiveDate)
4827 4827
   {
4828
-    $this->salePriceEffectiveDate = $salePriceEffectiveDate;
4828
+	$this->salePriceEffectiveDate = $salePriceEffectiveDate;
4829 4829
   }
4830 4830
   public function getSalePriceEffectiveDate()
4831 4831
   {
4832
-    return $this->salePriceEffectiveDate;
4832
+	return $this->salePriceEffectiveDate;
4833 4833
   }
4834 4834
   public function setShipping($shipping)
4835 4835
   {
4836
-    $this->shipping = $shipping;
4836
+	$this->shipping = $shipping;
4837 4837
   }
4838 4838
   public function getShipping()
4839 4839
   {
4840
-    return $this->shipping;
4840
+	return $this->shipping;
4841 4841
   }
4842 4842
   public function setShippingHeight(Google_Service_ShoppingContent_ProductShippingDimension $shippingHeight)
4843 4843
   {
4844
-    $this->shippingHeight = $shippingHeight;
4844
+	$this->shippingHeight = $shippingHeight;
4845 4845
   }
4846 4846
   public function getShippingHeight()
4847 4847
   {
4848
-    return $this->shippingHeight;
4848
+	return $this->shippingHeight;
4849 4849
   }
4850 4850
   public function setShippingLabel($shippingLabel)
4851 4851
   {
4852
-    $this->shippingLabel = $shippingLabel;
4852
+	$this->shippingLabel = $shippingLabel;
4853 4853
   }
4854 4854
   public function getShippingLabel()
4855 4855
   {
4856
-    return $this->shippingLabel;
4856
+	return $this->shippingLabel;
4857 4857
   }
4858 4858
   public function setShippingLength(Google_Service_ShoppingContent_ProductShippingDimension $shippingLength)
4859 4859
   {
4860
-    $this->shippingLength = $shippingLength;
4860
+	$this->shippingLength = $shippingLength;
4861 4861
   }
4862 4862
   public function getShippingLength()
4863 4863
   {
4864
-    return $this->shippingLength;
4864
+	return $this->shippingLength;
4865 4865
   }
4866 4866
   public function setShippingWeight(Google_Service_ShoppingContent_ProductShippingWeight $shippingWeight)
4867 4867
   {
4868
-    $this->shippingWeight = $shippingWeight;
4868
+	$this->shippingWeight = $shippingWeight;
4869 4869
   }
4870 4870
   public function getShippingWeight()
4871 4871
   {
4872
-    return $this->shippingWeight;
4872
+	return $this->shippingWeight;
4873 4873
   }
4874 4874
   public function setShippingWidth(Google_Service_ShoppingContent_ProductShippingDimension $shippingWidth)
4875 4875
   {
4876
-    $this->shippingWidth = $shippingWidth;
4876
+	$this->shippingWidth = $shippingWidth;
4877 4877
   }
4878 4878
   public function getShippingWidth()
4879 4879
   {
4880
-    return $this->shippingWidth;
4880
+	return $this->shippingWidth;
4881 4881
   }
4882 4882
   public function setSizeSystem($sizeSystem)
4883 4883
   {
4884
-    $this->sizeSystem = $sizeSystem;
4884
+	$this->sizeSystem = $sizeSystem;
4885 4885
   }
4886 4886
   public function getSizeSystem()
4887 4887
   {
4888
-    return $this->sizeSystem;
4888
+	return $this->sizeSystem;
4889 4889
   }
4890 4890
   public function setSizeType($sizeType)
4891 4891
   {
4892
-    $this->sizeType = $sizeType;
4892
+	$this->sizeType = $sizeType;
4893 4893
   }
4894 4894
   public function getSizeType()
4895 4895
   {
4896
-    return $this->sizeType;
4896
+	return $this->sizeType;
4897 4897
   }
4898 4898
   public function setSizes($sizes)
4899 4899
   {
4900
-    $this->sizes = $sizes;
4900
+	$this->sizes = $sizes;
4901 4901
   }
4902 4902
   public function getSizes()
4903 4903
   {
4904
-    return $this->sizes;
4904
+	return $this->sizes;
4905 4905
   }
4906 4906
   public function setTargetCountry($targetCountry)
4907 4907
   {
4908
-    $this->targetCountry = $targetCountry;
4908
+	$this->targetCountry = $targetCountry;
4909 4909
   }
4910 4910
   public function getTargetCountry()
4911 4911
   {
4912
-    return $this->targetCountry;
4912
+	return $this->targetCountry;
4913 4913
   }
4914 4914
   public function setTaxes($taxes)
4915 4915
   {
4916
-    $this->taxes = $taxes;
4916
+	$this->taxes = $taxes;
4917 4917
   }
4918 4918
   public function getTaxes()
4919 4919
   {
4920
-    return $this->taxes;
4920
+	return $this->taxes;
4921 4921
   }
4922 4922
   public function setTitle($title)
4923 4923
   {
4924
-    $this->title = $title;
4924
+	$this->title = $title;
4925 4925
   }
4926 4926
   public function getTitle()
4927 4927
   {
4928
-    return $this->title;
4928
+	return $this->title;
4929 4929
   }
4930 4930
   public function setUnitPricingBaseMeasure(Google_Service_ShoppingContent_ProductUnitPricingBaseMeasure $unitPricingBaseMeasure)
4931 4931
   {
4932
-    $this->unitPricingBaseMeasure = $unitPricingBaseMeasure;
4932
+	$this->unitPricingBaseMeasure = $unitPricingBaseMeasure;
4933 4933
   }
4934 4934
   public function getUnitPricingBaseMeasure()
4935 4935
   {
4936
-    return $this->unitPricingBaseMeasure;
4936
+	return $this->unitPricingBaseMeasure;
4937 4937
   }
4938 4938
   public function setUnitPricingMeasure(Google_Service_ShoppingContent_ProductUnitPricingMeasure $unitPricingMeasure)
4939 4939
   {
4940
-    $this->unitPricingMeasure = $unitPricingMeasure;
4940
+	$this->unitPricingMeasure = $unitPricingMeasure;
4941 4941
   }
4942 4942
   public function getUnitPricingMeasure()
4943 4943
   {
4944
-    return $this->unitPricingMeasure;
4944
+	return $this->unitPricingMeasure;
4945 4945
   }
4946 4946
   public function setValidatedDestinations($validatedDestinations)
4947 4947
   {
4948
-    $this->validatedDestinations = $validatedDestinations;
4948
+	$this->validatedDestinations = $validatedDestinations;
4949 4949
   }
4950 4950
   public function getValidatedDestinations()
4951 4951
   {
4952
-    return $this->validatedDestinations;
4952
+	return $this->validatedDestinations;
4953 4953
   }
4954 4954
   public function setWarnings($warnings)
4955 4955
   {
4956
-    $this->warnings = $warnings;
4956
+	$this->warnings = $warnings;
4957 4957
   }
4958 4958
   public function getWarnings()
4959 4959
   {
4960
-    return $this->warnings;
4960
+	return $this->warnings;
4961 4961
   }
4962 4962
 }
4963 4963
 
@@ -4972,27 +4972,27 @@  discard block
 block discarded – undo
4972 4972
 
4973 4973
   public function setAspectName($aspectName)
4974 4974
   {
4975
-    $this->aspectName = $aspectName;
4975
+	$this->aspectName = $aspectName;
4976 4976
   }
4977 4977
   public function getAspectName()
4978 4978
   {
4979
-    return $this->aspectName;
4979
+	return $this->aspectName;
4980 4980
   }
4981 4981
   public function setDestinationName($destinationName)
4982 4982
   {
4983
-    $this->destinationName = $destinationName;
4983
+	$this->destinationName = $destinationName;
4984 4984
   }
4985 4985
   public function getDestinationName()
4986 4986
   {
4987
-    return $this->destinationName;
4987
+	return $this->destinationName;
4988 4988
   }
4989 4989
   public function setIntention($intention)
4990 4990
   {
4991
-    $this->intention = $intention;
4991
+	$this->intention = $intention;
4992 4992
   }
4993 4993
   public function getIntention()
4994 4994
   {
4995
-    return $this->intention;
4995
+	return $this->intention;
4996 4996
   }
4997 4997
 }
4998 4998
 
@@ -5008,35 +5008,35 @@  discard block
 block discarded – undo
5008 5008
 
5009 5009
   public function setName($name)
5010 5010
   {
5011
-    $this->name = $name;
5011
+	$this->name = $name;
5012 5012
   }
5013 5013
   public function getName()
5014 5014
   {
5015
-    return $this->name;
5015
+	return $this->name;
5016 5016
   }
5017 5017
   public function setType($type)
5018 5018
   {
5019
-    $this->type = $type;
5019
+	$this->type = $type;
5020 5020
   }
5021 5021
   public function getType()
5022 5022
   {
5023
-    return $this->type;
5023
+	return $this->type;
5024 5024
   }
5025 5025
   public function setUnit($unit)
5026 5026
   {
5027
-    $this->unit = $unit;
5027
+	$this->unit = $unit;
5028 5028
   }
5029 5029
   public function getUnit()
5030 5030
   {
5031
-    return $this->unit;
5031
+	return $this->unit;
5032 5032
   }
5033 5033
   public function setValue($value)
5034 5034
   {
5035
-    $this->value = $value;
5035
+	$this->value = $value;
5036 5036
   }
5037 5037
   public function getValue()
5038 5038
   {
5039
-    return $this->value;
5039
+	return $this->value;
5040 5040
   }
5041 5041
 }
5042 5042
 
@@ -5052,19 +5052,19 @@  discard block
 block discarded – undo
5052 5052
 
5053 5053
   public function setAttributes($attributes)
5054 5054
   {
5055
-    $this->attributes = $attributes;
5055
+	$this->attributes = $attributes;
5056 5056
   }
5057 5057
   public function getAttributes()
5058 5058
   {
5059
-    return $this->attributes;
5059
+	return $this->attributes;
5060 5060
   }
5061 5061
   public function setName($name)
5062 5062
   {
5063
-    $this->name = $name;
5063
+	$this->name = $name;
5064 5064
   }
5065 5065
   public function getName()
5066 5066
   {
5067
-    return $this->name;
5067
+	return $this->name;
5068 5068
   }
5069 5069
 }
5070 5070
 
@@ -5078,19 +5078,19 @@  discard block
 block discarded – undo
5078 5078
 
5079 5079
   public function setDestinationName($destinationName)
5080 5080
   {
5081
-    $this->destinationName = $destinationName;
5081
+	$this->destinationName = $destinationName;
5082 5082
   }
5083 5083
   public function getDestinationName()
5084 5084
   {
5085
-    return $this->destinationName;
5085
+	return $this->destinationName;
5086 5086
   }
5087 5087
   public function setIntention($intention)
5088 5088
   {
5089
-    $this->intention = $intention;
5089
+	$this->intention = $intention;
5090 5090
   }
5091 5091
   public function getIntention()
5092 5092
   {
5093
-    return $this->intention;
5093
+	return $this->intention;
5094 5094
   }
5095 5095
 }
5096 5096
 
@@ -5105,19 +5105,19 @@  discard block
 block discarded – undo
5105 5105
 
5106 5106
   public function setAmount(Google_Service_ShoppingContent_Price $amount)
5107 5107
   {
5108
-    $this->amount = $amount;
5108
+	$this->amount = $amount;
5109 5109
   }
5110 5110
   public function getAmount()
5111 5111
   {
5112
-    return $this->amount;
5112
+	return $this->amount;
5113 5113
   }
5114 5114
   public function setMonths($months)
5115 5115
   {
5116
-    $this->months = $months;
5116
+	$this->months = $months;
5117 5117
   }
5118 5118
   public function getMonths()
5119 5119
   {
5120
-    return $this->months;
5120
+	return $this->months;
5121 5121
   }
5122 5122
 }
5123 5123
 
@@ -5137,59 +5137,59 @@  discard block
 block discarded – undo
5137 5137
 
5138 5138
   public function setCountry($country)
5139 5139
   {
5140
-    $this->country = $country;
5140
+	$this->country = $country;
5141 5141
   }
5142 5142
   public function getCountry()
5143 5143
   {
5144
-    return $this->country;
5144
+	return $this->country;
5145 5145
   }
5146 5146
   public function setLocationGroupName($locationGroupName)
5147 5147
   {
5148
-    $this->locationGroupName = $locationGroupName;
5148
+	$this->locationGroupName = $locationGroupName;
5149 5149
   }
5150 5150
   public function getLocationGroupName()
5151 5151
   {
5152
-    return $this->locationGroupName;
5152
+	return $this->locationGroupName;
5153 5153
   }
5154 5154
   public function setLocationId($locationId)
5155 5155
   {
5156
-    $this->locationId = $locationId;
5156
+	$this->locationId = $locationId;
5157 5157
   }
5158 5158
   public function getLocationId()
5159 5159
   {
5160
-    return $this->locationId;
5160
+	return $this->locationId;
5161 5161
   }
5162 5162
   public function setPostalCode($postalCode)
5163 5163
   {
5164
-    $this->postalCode = $postalCode;
5164
+	$this->postalCode = $postalCode;
5165 5165
   }
5166 5166
   public function getPostalCode()
5167 5167
   {
5168
-    return $this->postalCode;
5168
+	return $this->postalCode;
5169 5169
   }
5170 5170
   public function setPrice(Google_Service_ShoppingContent_Price $price)
5171 5171
   {
5172
-    $this->price = $price;
5172
+	$this->price = $price;
5173 5173
   }
5174 5174
   public function getPrice()
5175 5175
   {
5176
-    return $this->price;
5176
+	return $this->price;
5177 5177
   }
5178 5178
   public function setRegion($region)
5179 5179
   {
5180
-    $this->region = $region;
5180
+	$this->region = $region;
5181 5181
   }
5182 5182
   public function getRegion()
5183 5183
   {
5184
-    return $this->region;
5184
+	return $this->region;
5185 5185
   }
5186 5186
   public function setService($service)
5187 5187
   {
5188
-    $this->service = $service;
5188
+	$this->service = $service;
5189 5189
   }
5190 5190
   public function getService()
5191 5191
   {
5192
-    return $this->service;
5192
+	return $this->service;
5193 5193
   }
5194 5194
 }
5195 5195
 
@@ -5203,19 +5203,19 @@  discard block
 block discarded – undo
5203 5203
 
5204 5204
   public function setUnit($unit)
5205 5205
   {
5206
-    $this->unit = $unit;
5206
+	$this->unit = $unit;
5207 5207
   }
5208 5208
   public function getUnit()
5209 5209
   {
5210
-    return $this->unit;
5210
+	return $this->unit;
5211 5211
   }
5212 5212
   public function setValue($value)
5213 5213
   {
5214
-    $this->value = $value;
5214
+	$this->value = $value;
5215 5215
   }
5216 5216
   public function getValue()
5217 5217
   {
5218
-    return $this->value;
5218
+	return $this->value;
5219 5219
   }
5220 5220
 }
5221 5221
 
@@ -5229,19 +5229,19 @@  discard block
 block discarded – undo
5229 5229
 
5230 5230
   public function setUnit($unit)
5231 5231
   {
5232
-    $this->unit = $unit;
5232
+	$this->unit = $unit;
5233 5233
   }
5234 5234
   public function getUnit()
5235 5235
   {
5236
-    return $this->unit;
5236
+	return $this->unit;
5237 5237
   }
5238 5238
   public function setValue($value)
5239 5239
   {
5240
-    $this->value = $value;
5240
+	$this->value = $value;
5241 5241
   }
5242 5242
   public function getValue()
5243 5243
   {
5244
-    return $this->value;
5244
+	return $this->value;
5245 5245
   }
5246 5246
 }
5247 5247
 
@@ -5265,75 +5265,75 @@  discard block
 block discarded – undo
5265 5265
 
5266 5266
   public function setCreationDate($creationDate)
5267 5267
   {
5268
-    $this->creationDate = $creationDate;
5268
+	$this->creationDate = $creationDate;
5269 5269
   }
5270 5270
   public function getCreationDate()
5271 5271
   {
5272
-    return $this->creationDate;
5272
+	return $this->creationDate;
5273 5273
   }
5274 5274
   public function setDataQualityIssues($dataQualityIssues)
5275 5275
   {
5276
-    $this->dataQualityIssues = $dataQualityIssues;
5276
+	$this->dataQualityIssues = $dataQualityIssues;
5277 5277
   }
5278 5278
   public function getDataQualityIssues()
5279 5279
   {
5280
-    return $this->dataQualityIssues;
5280
+	return $this->dataQualityIssues;
5281 5281
   }
5282 5282
   public function setDestinationStatuses($destinationStatuses)
5283 5283
   {
5284
-    $this->destinationStatuses = $destinationStatuses;
5284
+	$this->destinationStatuses = $destinationStatuses;
5285 5285
   }
5286 5286
   public function getDestinationStatuses()
5287 5287
   {
5288
-    return $this->destinationStatuses;
5288
+	return $this->destinationStatuses;
5289 5289
   }
5290 5290
   public function setGoogleExpirationDate($googleExpirationDate)
5291 5291
   {
5292
-    $this->googleExpirationDate = $googleExpirationDate;
5292
+	$this->googleExpirationDate = $googleExpirationDate;
5293 5293
   }
5294 5294
   public function getGoogleExpirationDate()
5295 5295
   {
5296
-    return $this->googleExpirationDate;
5296
+	return $this->googleExpirationDate;
5297 5297
   }
5298 5298
   public function setKind($kind)
5299 5299
   {
5300
-    $this->kind = $kind;
5300
+	$this->kind = $kind;
5301 5301
   }
5302 5302
   public function getKind()
5303 5303
   {
5304
-    return $this->kind;
5304
+	return $this->kind;
5305 5305
   }
5306 5306
   public function setLastUpdateDate($lastUpdateDate)
5307 5307
   {
5308
-    $this->lastUpdateDate = $lastUpdateDate;
5308
+	$this->lastUpdateDate = $lastUpdateDate;
5309 5309
   }
5310 5310
   public function getLastUpdateDate()
5311 5311
   {
5312
-    return $this->lastUpdateDate;
5312
+	return $this->lastUpdateDate;
5313 5313
   }
5314 5314
   public function setLink($link)
5315 5315
   {
5316
-    $this->link = $link;
5316
+	$this->link = $link;
5317 5317
   }
5318 5318
   public function getLink()
5319 5319
   {
5320
-    return $this->link;
5320
+	return $this->link;
5321 5321
   }
5322 5322
   public function setProductId($productId)
5323 5323
   {
5324
-    $this->productId = $productId;
5324
+	$this->productId = $productId;
5325 5325
   }
5326 5326
   public function getProductId()
5327 5327
   {
5328
-    return $this->productId;
5328
+	return $this->productId;
5329 5329
   }
5330 5330
   public function setTitle($title)
5331 5331
   {
5332
-    $this->title = $title;
5332
+	$this->title = $title;
5333 5333
   }
5334 5334
   public function getTitle()
5335 5335
   {
5336
-    return $this->title;
5336
+	return $this->title;
5337 5337
   }
5338 5338
 }
5339 5339
 
@@ -5353,67 +5353,67 @@  discard block
 block discarded – undo
5353 5353
 
5354 5354
   public function setDetail($detail)
5355 5355
   {
5356
-    $this->detail = $detail;
5356
+	$this->detail = $detail;
5357 5357
   }
5358 5358
   public function getDetail()
5359 5359
   {
5360
-    return $this->detail;
5360
+	return $this->detail;
5361 5361
   }
5362 5362
   public function setFetchStatus($fetchStatus)
5363 5363
   {
5364
-    $this->fetchStatus = $fetchStatus;
5364
+	$this->fetchStatus = $fetchStatus;
5365 5365
   }
5366 5366
   public function getFetchStatus()
5367 5367
   {
5368
-    return $this->fetchStatus;
5368
+	return $this->fetchStatus;
5369 5369
   }
5370 5370
   public function setId($id)
5371 5371
   {
5372
-    $this->id = $id;
5372
+	$this->id = $id;
5373 5373
   }
5374 5374
   public function getId()
5375 5375
   {
5376
-    return $this->id;
5376
+	return $this->id;
5377 5377
   }
5378 5378
   public function setLocation($location)
5379 5379
   {
5380
-    $this->location = $location;
5380
+	$this->location = $location;
5381 5381
   }
5382 5382
   public function getLocation()
5383 5383
   {
5384
-    return $this->location;
5384
+	return $this->location;
5385 5385
   }
5386 5386
   public function setSeverity($severity)
5387 5387
   {
5388
-    $this->severity = $severity;
5388
+	$this->severity = $severity;
5389 5389
   }
5390 5390
   public function getSeverity()
5391 5391
   {
5392
-    return $this->severity;
5392
+	return $this->severity;
5393 5393
   }
5394 5394
   public function setTimestamp($timestamp)
5395 5395
   {
5396
-    $this->timestamp = $timestamp;
5396
+	$this->timestamp = $timestamp;
5397 5397
   }
5398 5398
   public function getTimestamp()
5399 5399
   {
5400
-    return $this->timestamp;
5400
+	return $this->timestamp;
5401 5401
   }
5402 5402
   public function setValueOnLandingPage($valueOnLandingPage)
5403 5403
   {
5404
-    $this->valueOnLandingPage = $valueOnLandingPage;
5404
+	$this->valueOnLandingPage = $valueOnLandingPage;
5405 5405
   }
5406 5406
   public function getValueOnLandingPage()
5407 5407
   {
5408
-    return $this->valueOnLandingPage;
5408
+	return $this->valueOnLandingPage;
5409 5409
   }
5410 5410
   public function setValueProvided($valueProvided)
5411 5411
   {
5412
-    $this->valueProvided = $valueProvided;
5412
+	$this->valueProvided = $valueProvided;
5413 5413
   }
5414 5414
   public function getValueProvided()
5415 5415
   {
5416
-    return $this->valueProvided;
5416
+	return $this->valueProvided;
5417 5417
   }
5418 5418
 }
5419 5419
 
@@ -5428,27 +5428,27 @@  discard block
 block discarded – undo
5428 5428
 
5429 5429
   public function setApprovalStatus($approvalStatus)
5430 5430
   {
5431
-    $this->approvalStatus = $approvalStatus;
5431
+	$this->approvalStatus = $approvalStatus;
5432 5432
   }
5433 5433
   public function getApprovalStatus()
5434 5434
   {
5435
-    return $this->approvalStatus;
5435
+	return $this->approvalStatus;
5436 5436
   }
5437 5437
   public function setDestination($destination)
5438 5438
   {
5439
-    $this->destination = $destination;
5439
+	$this->destination = $destination;
5440 5440
   }
5441 5441
   public function getDestination()
5442 5442
   {
5443
-    return $this->destination;
5443
+	return $this->destination;
5444 5444
   }
5445 5445
   public function setIntention($intention)
5446 5446
   {
5447
-    $this->intention = $intention;
5447
+	$this->intention = $intention;
5448 5448
   }
5449 5449
   public function getIntention()
5450 5450
   {
5451
-    return $this->intention;
5451
+	return $this->intention;
5452 5452
   }
5453 5453
 }
5454 5454
 
@@ -5466,51 +5466,51 @@  discard block
 block discarded – undo
5466 5466
 
5467 5467
   public function setCountry($country)
5468 5468
   {
5469
-    $this->country = $country;
5469
+	$this->country = $country;
5470 5470
   }
5471 5471
   public function getCountry()
5472 5472
   {
5473
-    return $this->country;
5473
+	return $this->country;
5474 5474
   }
5475 5475
   public function setLocationId($locationId)
5476 5476
   {
5477
-    $this->locationId = $locationId;
5477
+	$this->locationId = $locationId;
5478 5478
   }
5479 5479
   public function getLocationId()
5480 5480
   {
5481
-    return $this->locationId;
5481
+	return $this->locationId;
5482 5482
   }
5483 5483
   public function setPostalCode($postalCode)
5484 5484
   {
5485
-    $this->postalCode = $postalCode;
5485
+	$this->postalCode = $postalCode;
5486 5486
   }
5487 5487
   public function getPostalCode()
5488 5488
   {
5489
-    return $this->postalCode;
5489
+	return $this->postalCode;
5490 5490
   }
5491 5491
   public function setRate($rate)
5492 5492
   {
5493
-    $this->rate = $rate;
5493
+	$this->rate = $rate;
5494 5494
   }
5495 5495
   public function getRate()
5496 5496
   {
5497
-    return $this->rate;
5497
+	return $this->rate;
5498 5498
   }
5499 5499
   public function setRegion($region)
5500 5500
   {
5501
-    $this->region = $region;
5501
+	$this->region = $region;
5502 5502
   }
5503 5503
   public function getRegion()
5504 5504
   {
5505
-    return $this->region;
5505
+	return $this->region;
5506 5506
   }
5507 5507
   public function setTaxShip($taxShip)
5508 5508
   {
5509
-    $this->taxShip = $taxShip;
5509
+	$this->taxShip = $taxShip;
5510 5510
   }
5511 5511
   public function getTaxShip()
5512 5512
   {
5513
-    return $this->taxShip;
5513
+	return $this->taxShip;
5514 5514
   }
5515 5515
 }
5516 5516
 
@@ -5524,19 +5524,19 @@  discard block
 block discarded – undo
5524 5524
 
5525 5525
   public function setUnit($unit)
5526 5526
   {
5527
-    $this->unit = $unit;
5527
+	$this->unit = $unit;
5528 5528
   }
5529 5529
   public function getUnit()
5530 5530
   {
5531
-    return $this->unit;
5531
+	return $this->unit;
5532 5532
   }
5533 5533
   public function setValue($value)
5534 5534
   {
5535
-    $this->value = $value;
5535
+	$this->value = $value;
5536 5536
   }
5537 5537
   public function getValue()
5538 5538
   {
5539
-    return $this->value;
5539
+	return $this->value;
5540 5540
   }
5541 5541
 }
5542 5542
 
@@ -5550,19 +5550,19 @@  discard block
 block discarded – undo
5550 5550
 
5551 5551
   public function setUnit($unit)
5552 5552
   {
5553
-    $this->unit = $unit;
5553
+	$this->unit = $unit;
5554 5554
   }
5555 5555
   public function getUnit()
5556 5556
   {
5557
-    return $this->unit;
5557
+	return $this->unit;
5558 5558
   }
5559 5559
   public function setValue($value)
5560 5560
   {
5561
-    $this->value = $value;
5561
+	$this->value = $value;
5562 5562
   }
5563 5563
   public function getValue()
5564 5564
   {
5565
-    return $this->value;
5565
+	return $this->value;
5566 5566
   }
5567 5567
 }
5568 5568
 
@@ -5577,11 +5577,11 @@  discard block
 block discarded – undo
5577 5577
 
5578 5578
   public function setEntries($entries)
5579 5579
   {
5580
-    $this->entries = $entries;
5580
+	$this->entries = $entries;
5581 5581
   }
5582 5582
   public function getEntries()
5583 5583
   {
5584
-    return $this->entries;
5584
+	return $this->entries;
5585 5585
   }
5586 5586
 }
5587 5587
 
@@ -5599,43 +5599,43 @@  discard block
 block discarded – undo
5599 5599
 
5600 5600
   public function setBatchId($batchId)
5601 5601
   {
5602
-    $this->batchId = $batchId;
5602
+	$this->batchId = $batchId;
5603 5603
   }
5604 5604
   public function getBatchId()
5605 5605
   {
5606
-    return $this->batchId;
5606
+	return $this->batchId;
5607 5607
   }
5608 5608
   public function setMerchantId($merchantId)
5609 5609
   {
5610
-    $this->merchantId = $merchantId;
5610
+	$this->merchantId = $merchantId;
5611 5611
   }
5612 5612
   public function getMerchantId()
5613 5613
   {
5614
-    return $this->merchantId;
5614
+	return $this->merchantId;
5615 5615
   }
5616 5616
   public function setMethod($method)
5617 5617
   {
5618
-    $this->method = $method;
5618
+	$this->method = $method;
5619 5619
   }
5620 5620
   public function getMethod()
5621 5621
   {
5622
-    return $this->method;
5622
+	return $this->method;
5623 5623
   }
5624 5624
   public function setProduct(Google_Service_ShoppingContent_Product $product)
5625 5625
   {
5626
-    $this->product = $product;
5626
+	$this->product = $product;
5627 5627
   }
5628 5628
   public function getProduct()
5629 5629
   {
5630
-    return $this->product;
5630
+	return $this->product;
5631 5631
   }
5632 5632
   public function setProductId($productId)
5633 5633
   {
5634
-    $this->productId = $productId;
5634
+	$this->productId = $productId;
5635 5635
   }
5636 5636
   public function getProductId()
5637 5637
   {
5638
-    return $this->productId;
5638
+	return $this->productId;
5639 5639
   }
5640 5640
 }
5641 5641
 
@@ -5651,19 +5651,19 @@  discard block
 block discarded – undo
5651 5651
 
5652 5652
   public function setEntries($entries)
5653 5653
   {
5654
-    $this->entries = $entries;
5654
+	$this->entries = $entries;
5655 5655
   }
5656 5656
   public function getEntries()
5657 5657
   {
5658
-    return $this->entries;
5658
+	return $this->entries;
5659 5659
   }
5660 5660
   public function setKind($kind)
5661 5661
   {
5662
-    $this->kind = $kind;
5662
+	$this->kind = $kind;
5663 5663
   }
5664 5664
   public function getKind()
5665 5665
   {
5666
-    return $this->kind;
5666
+	return $this->kind;
5667 5667
   }
5668 5668
 }
5669 5669
 
@@ -5681,35 +5681,35 @@  discard block
 block discarded – undo
5681 5681
 
5682 5682
   public function setBatchId($batchId)
5683 5683
   {
5684
-    $this->batchId = $batchId;
5684
+	$this->batchId = $batchId;
5685 5685
   }
5686 5686
   public function getBatchId()
5687 5687
   {
5688
-    return $this->batchId;
5688
+	return $this->batchId;
5689 5689
   }
5690 5690
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
5691 5691
   {
5692
-    $this->errors = $errors;
5692
+	$this->errors = $errors;
5693 5693
   }
5694 5694
   public function getErrors()
5695 5695
   {
5696
-    return $this->errors;
5696
+	return $this->errors;
5697 5697
   }
5698 5698
   public function setKind($kind)
5699 5699
   {
5700
-    $this->kind = $kind;
5700
+	$this->kind = $kind;
5701 5701
   }
5702 5702
   public function getKind()
5703 5703
   {
5704
-    return $this->kind;
5704
+	return $this->kind;
5705 5705
   }
5706 5706
   public function setProduct(Google_Service_ShoppingContent_Product $product)
5707 5707
   {
5708
-    $this->product = $product;
5708
+	$this->product = $product;
5709 5709
   }
5710 5710
   public function getProduct()
5711 5711
   {
5712
-    return $this->product;
5712
+	return $this->product;
5713 5713
   }
5714 5714
 }
5715 5715
 
@@ -5726,27 +5726,27 @@  discard block
 block discarded – undo
5726 5726
 
5727 5727
   public function setKind($kind)
5728 5728
   {
5729
-    $this->kind = $kind;
5729
+	$this->kind = $kind;
5730 5730
   }
5731 5731
   public function getKind()
5732 5732
   {
5733
-    return $this->kind;
5733
+	return $this->kind;
5734 5734
   }
5735 5735
   public function setNextPageToken($nextPageToken)
5736 5736
   {
5737
-    $this->nextPageToken = $nextPageToken;
5737
+	$this->nextPageToken = $nextPageToken;
5738 5738
   }
5739 5739
   public function getNextPageToken()
5740 5740
   {
5741
-    return $this->nextPageToken;
5741
+	return $this->nextPageToken;
5742 5742
   }
5743 5743
   public function setResources($resources)
5744 5744
   {
5745
-    $this->resources = $resources;
5745
+	$this->resources = $resources;
5746 5746
   }
5747 5747
   public function getResources()
5748 5748
   {
5749
-    return $this->resources;
5749
+	return $this->resources;
5750 5750
   }
5751 5751
 }
5752 5752
 
@@ -5761,11 +5761,11 @@  discard block
 block discarded – undo
5761 5761
 
5762 5762
   public function setEntries($entries)
5763 5763
   {
5764
-    $this->entries = $entries;
5764
+	$this->entries = $entries;
5765 5765
   }
5766 5766
   public function getEntries()
5767 5767
   {
5768
-    return $this->entries;
5768
+	return $this->entries;
5769 5769
   }
5770 5770
 }
5771 5771
 
@@ -5781,35 +5781,35 @@  discard block
 block discarded – undo
5781 5781
 
5782 5782
   public function setBatchId($batchId)
5783 5783
   {
5784
-    $this->batchId = $batchId;
5784
+	$this->batchId = $batchId;
5785 5785
   }
5786 5786
   public function getBatchId()
5787 5787
   {
5788
-    return $this->batchId;
5788
+	return $this->batchId;
5789 5789
   }
5790 5790
   public function setMerchantId($merchantId)
5791 5791
   {
5792
-    $this->merchantId = $merchantId;
5792
+	$this->merchantId = $merchantId;
5793 5793
   }
5794 5794
   public function getMerchantId()
5795 5795
   {
5796
-    return $this->merchantId;
5796
+	return $this->merchantId;
5797 5797
   }
5798 5798
   public function setMethod($method)
5799 5799
   {
5800
-    $this->method = $method;
5800
+	$this->method = $method;
5801 5801
   }
5802 5802
   public function getMethod()
5803 5803
   {
5804
-    return $this->method;
5804
+	return $this->method;
5805 5805
   }
5806 5806
   public function setProductId($productId)
5807 5807
   {
5808
-    $this->productId = $productId;
5808
+	$this->productId = $productId;
5809 5809
   }
5810 5810
   public function getProductId()
5811 5811
   {
5812
-    return $this->productId;
5812
+	return $this->productId;
5813 5813
   }
5814 5814
 }
5815 5815
 
@@ -5825,19 +5825,19 @@  discard block
 block discarded – undo
5825 5825
 
5826 5826
   public function setEntries($entries)
5827 5827
   {
5828
-    $this->entries = $entries;
5828
+	$this->entries = $entries;
5829 5829
   }
5830 5830
   public function getEntries()
5831 5831
   {
5832
-    return $this->entries;
5832
+	return $this->entries;
5833 5833
   }
5834 5834
   public function setKind($kind)
5835 5835
   {
5836
-    $this->kind = $kind;
5836
+	$this->kind = $kind;
5837 5837
   }
5838 5838
   public function getKind()
5839 5839
   {
5840
-    return $this->kind;
5840
+	return $this->kind;
5841 5841
   }
5842 5842
 }
5843 5843
 
@@ -5855,35 +5855,35 @@  discard block
 block discarded – undo
5855 5855
 
5856 5856
   public function setBatchId($batchId)
5857 5857
   {
5858
-    $this->batchId = $batchId;
5858
+	$this->batchId = $batchId;
5859 5859
   }
5860 5860
   public function getBatchId()
5861 5861
   {
5862
-    return $this->batchId;
5862
+	return $this->batchId;
5863 5863
   }
5864 5864
   public function setErrors(Google_Service_ShoppingContent_Errors $errors)
5865 5865
   {
5866
-    $this->errors = $errors;
5866
+	$this->errors = $errors;
5867 5867
   }
5868 5868
   public function getErrors()
5869 5869
   {
5870
-    return $this->errors;
5870
+	return $this->errors;
5871 5871
   }
5872 5872
   public function setKind($kind)
5873 5873
   {
5874
-    $this->kind = $kind;
5874
+	$this->kind = $kind;
5875 5875
   }
5876 5876
   public function getKind()
5877 5877
   {
5878
-    return $this->kind;
5878
+	return $this->kind;
5879 5879
   }
5880 5880
   public function setProductStatus(Google_Service_ShoppingContent_ProductStatus $productStatus)
5881 5881
   {
5882
-    $this->productStatus = $productStatus;
5882
+	$this->productStatus = $productStatus;
5883 5883
   }
5884 5884
   public function getProductStatus()
5885 5885
   {
5886
-    return $this->productStatus;
5886
+	return $this->productStatus;
5887 5887
   }
5888 5888
 }
5889 5889
 
@@ -5900,27 +5900,27 @@  discard block
 block discarded – undo
5900 5900
 
5901 5901
   public function setKind($kind)
5902 5902
   {
5903
-    $this->kind = $kind;
5903
+	$this->kind = $kind;
5904 5904
   }
5905 5905
   public function getKind()
5906 5906
   {
5907
-    return $this->kind;
5907
+	return $this->kind;
5908 5908
   }
5909 5909
   public function setNextPageToken($nextPageToken)
5910 5910
   {
5911
-    $this->nextPageToken = $nextPageToken;
5911
+	$this->nextPageToken = $nextPageToken;
5912 5912
   }
5913 5913
   public function getNextPageToken()
5914 5914
   {
5915
-    return $this->nextPageToken;
5915
+	return $this->nextPageToken;
5916 5916
   }
5917 5917
   public function setResources($resources)
5918 5918
   {
5919
-    $this->resources = $resources;
5919
+	$this->resources = $resources;
5920 5920
   }
5921 5921
   public function getResources()
5922 5922
   {
5923
-    return $this->resources;
5923
+	return $this->resources;
5924 5924
   }
5925 5925
 }
5926 5926
 
@@ -5934,18 +5934,18 @@  discard block
 block discarded – undo
5934 5934
 
5935 5935
   public function setUnit($unit)
5936 5936
   {
5937
-    $this->unit = $unit;
5937
+	$this->unit = $unit;
5938 5938
   }
5939 5939
   public function getUnit()
5940 5940
   {
5941
-    return $this->unit;
5941
+	return $this->unit;
5942 5942
   }
5943 5943
   public function setValue($value)
5944 5944
   {
5945
-    $this->value = $value;
5945
+	$this->value = $value;
5946 5946
   }
5947 5947
   public function getValue()
5948 5948
   {
5949
-    return $this->value;
5949
+	return $this->value;
5950 5950
   }
5951 5951
 }
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -69,11 +69,11 @@  discard block
 block discarded – undo
69 69
               'path' => 'accounts/authinfo',
70 70
               'httpMethod' => 'GET',
71 71
               'parameters' => array(),
72
-            ),'custombatch' => array(
72
+            ), 'custombatch' => array(
73 73
               'path' => 'accounts/batch',
74 74
               'httpMethod' => 'POST',
75 75
               'parameters' => array(),
76
-            ),'delete' => array(
76
+            ), 'delete' => array(
77 77
               'path' => '{merchantId}/accounts/{accountId}',
78 78
               'httpMethod' => 'DELETE',
79 79
               'parameters' => array(
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                   'required' => true,
89 89
                 ),
90 90
               ),
91
-            ),'get' => array(
91
+            ), 'get' => array(
92 92
               'path' => '{merchantId}/accounts/{accountId}',
93 93
               'httpMethod' => 'GET',
94 94
               'parameters' => array(
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
                   'required' => true,
104 104
                 ),
105 105
               ),
106
-            ),'insert' => array(
106
+            ), 'insert' => array(
107 107
               'path' => '{merchantId}/accounts',
108 108
               'httpMethod' => 'POST',
109 109
               'parameters' => array(
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                   'required' => true,
114 114
                 ),
115 115
               ),
116
-            ),'list' => array(
116
+            ), 'list' => array(
117 117
               'path' => '{merchantId}/accounts',
118 118
               'httpMethod' => 'GET',
119 119
               'parameters' => array(
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
                   'type' => 'integer',
132 132
                 ),
133 133
               ),
134
-            ),'patch' => array(
134
+            ), 'patch' => array(
135 135
               'path' => '{merchantId}/accounts/{accountId}',
136 136
               'httpMethod' => 'PATCH',
137 137
               'parameters' => array(
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
                   'required' => true,
147 147
                 ),
148 148
               ),
149
-            ),'update' => array(
149
+            ), 'update' => array(
150 150
               'path' => '{merchantId}/accounts/{accountId}',
151 151
               'httpMethod' => 'PUT',
152 152
               'parameters' => array(
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
                   'type' => 'boolean',
181 181
                 ),
182 182
               ),
183
-            ),'get' => array(
183
+            ), 'get' => array(
184 184
               'path' => '{merchantId}/accountshipping/{accountId}',
185 185
               'httpMethod' => 'GET',
186 186
               'parameters' => array(
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
                   'required' => true,
196 196
                 ),
197 197
               ),
198
-            ),'list' => array(
198
+            ), 'list' => array(
199 199
               'path' => '{merchantId}/accountshipping',
200 200
               'httpMethod' => 'GET',
201 201
               'parameters' => array(
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                   'type' => 'integer',
214 214
                 ),
215 215
               ),
216
-            ),'patch' => array(
216
+            ), 'patch' => array(
217 217
               'path' => '{merchantId}/accountshipping/{accountId}',
218 218
               'httpMethod' => 'PATCH',
219 219
               'parameters' => array(
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
                   'type' => 'boolean',
233 233
                 ),
234 234
               ),
235
-            ),'update' => array(
235
+            ), 'update' => array(
236 236
               'path' => '{merchantId}/accountshipping/{accountId}',
237 237
               'httpMethod' => 'PUT',
238 238
               'parameters' => array(
@@ -265,7 +265,7 @@  discard block
 block discarded – undo
265 265
               'path' => 'accountstatuses/batch',
266 266
               'httpMethod' => 'POST',
267 267
               'parameters' => array(),
268
-            ),'get' => array(
268
+            ), 'get' => array(
269 269
               'path' => '{merchantId}/accountstatuses/{accountId}',
270 270
               'httpMethod' => 'GET',
271 271
               'parameters' => array(
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
280 280
                   'required' => true,
281 281
                 ),
282 282
               ),
283
-            ),'list' => array(
283
+            ), 'list' => array(
284 284
               'path' => '{merchantId}/accountstatuses',
285 285
               'httpMethod' => 'GET',
286 286
               'parameters' => array(
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
                   'type' => 'boolean',
318 318
                 ),
319 319
               ),
320
-            ),'get' => array(
320
+            ), 'get' => array(
321 321
               'path' => '{merchantId}/accounttax/{accountId}',
322 322
               'httpMethod' => 'GET',
323 323
               'parameters' => array(
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
                   'required' => true,
333 333
                 ),
334 334
               ),
335
-            ),'list' => array(
335
+            ), 'list' => array(
336 336
               'path' => '{merchantId}/accounttax',
337 337
               'httpMethod' => 'GET',
338 338
               'parameters' => array(
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
                   'type' => 'integer',
351 351
                 ),
352 352
               ),
353
-            ),'patch' => array(
353
+            ), 'patch' => array(
354 354
               'path' => '{merchantId}/accounttax/{accountId}',
355 355
               'httpMethod' => 'PATCH',
356 356
               'parameters' => array(
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
                   'type' => 'boolean',
370 370
                 ),
371 371
               ),
372
-            ),'update' => array(
372
+            ), 'update' => array(
373 373
               'path' => '{merchantId}/accounttax/{accountId}',
374 374
               'httpMethod' => 'PUT',
375 375
               'parameters' => array(
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
               'path' => 'datafeeds/batch',
403 403
               'httpMethod' => 'POST',
404 404
               'parameters' => array(),
405
-            ),'delete' => array(
405
+            ), 'delete' => array(
406 406
               'path' => '{merchantId}/datafeeds/{datafeedId}',
407 407
               'httpMethod' => 'DELETE',
408 408
               'parameters' => array(
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
                   'required' => true,
418 418
                 ),
419 419
               ),
420
-            ),'get' => array(
420
+            ), 'get' => array(
421 421
               'path' => '{merchantId}/datafeeds/{datafeedId}',
422 422
               'httpMethod' => 'GET',
423 423
               'parameters' => array(
@@ -432,7 +432,7 @@  discard block
 block discarded – undo
432 432
                   'required' => true,
433 433
                 ),
434 434
               ),
435
-            ),'insert' => array(
435
+            ), 'insert' => array(
436 436
               'path' => '{merchantId}/datafeeds',
437 437
               'httpMethod' => 'POST',
438 438
               'parameters' => array(
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
                   'required' => true,
443 443
                 ),
444 444
               ),
445
-            ),'list' => array(
445
+            ), 'list' => array(
446 446
               'path' => '{merchantId}/datafeeds',
447 447
               'httpMethod' => 'GET',
448 448
               'parameters' => array(
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
                   'type' => 'integer',
461 461
                 ),
462 462
               ),
463
-            ),'patch' => array(
463
+            ), 'patch' => array(
464 464
               'path' => '{merchantId}/datafeeds/{datafeedId}',
465 465
               'httpMethod' => 'PATCH',
466 466
               'parameters' => array(
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
                   'required' => true,
476 476
                 ),
477 477
               ),
478
-            ),'update' => array(
478
+            ), 'update' => array(
479 479
               'path' => '{merchantId}/datafeeds/{datafeedId}',
480 480
               'httpMethod' => 'PUT',
481 481
               'parameters' => array(
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
               'path' => 'datafeedstatuses/batch',
505 505
               'httpMethod' => 'POST',
506 506
               'parameters' => array(),
507
-            ),'get' => array(
507
+            ), 'get' => array(
508 508
               'path' => '{merchantId}/datafeedstatuses/{datafeedId}',
509 509
               'httpMethod' => 'GET',
510 510
               'parameters' => array(
@@ -519,7 +519,7 @@  discard block
 block discarded – undo
519 519
                   'required' => true,
520 520
                 ),
521 521
               ),
522
-            ),'list' => array(
522
+            ), 'list' => array(
523 523
               'path' => '{merchantId}/datafeedstatuses',
524 524
               'httpMethod' => 'GET',
525 525
               'parameters' => array(
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
               'path' => 'inventory/batch',
552 552
               'httpMethod' => 'POST',
553 553
               'parameters' => array(),
554
-            ),'set' => array(
554
+            ), 'set' => array(
555 555
               'path' => '{merchantId}/inventory/{storeCode}/products/{productId}',
556 556
               'httpMethod' => 'POST',
557 557
               'parameters' => array(
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
                   'type' => 'boolean',
591 591
                 ),
592 592
               ),
593
-            ),'delete' => array(
593
+            ), 'delete' => array(
594 594
               'path' => '{merchantId}/products/{productId}',
595 595
               'httpMethod' => 'DELETE',
596 596
               'parameters' => array(
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
                   'type' => 'boolean',
610 610
                 ),
611 611
               ),
612
-            ),'get' => array(
612
+            ), 'get' => array(
613 613
               'path' => '{merchantId}/products/{productId}',
614 614
               'httpMethod' => 'GET',
615 615
               'parameters' => array(
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
                   'required' => true,
625 625
                 ),
626 626
               ),
627
-            ),'insert' => array(
627
+            ), 'insert' => array(
628 628
               'path' => '{merchantId}/products',
629 629
               'httpMethod' => 'POST',
630 630
               'parameters' => array(
@@ -638,7 +638,7 @@  discard block
 block discarded – undo
638 638
                   'type' => 'boolean',
639 639
                 ),
640 640
               ),
641
-            ),'list' => array(
641
+            ), 'list' => array(
642 642
               'path' => '{merchantId}/products',
643 643
               'httpMethod' => 'GET',
644 644
               'parameters' => array(
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
               'path' => 'productstatuses/batch',
671 671
               'httpMethod' => 'POST',
672 672
               'parameters' => array(),
673
-            ),'get' => array(
673
+            ), 'get' => array(
674 674
               'path' => '{merchantId}/productstatuses/{productId}',
675 675
               'httpMethod' => 'GET',
676 676
               'parameters' => array(
@@ -685,7 +685,7 @@  discard block
 block discarded – undo
685 685
                   'required' => true,
686 686
                 ),
687 687
               ),
688
-            ),'list' => array(
688
+            ), 'list' => array(
689 689
               'path' => '{merchantId}/productstatuses',
690 690
               'httpMethod' => 'GET',
691 691
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/CivicInfo.php 2 patches
Indentation   +363 added lines, -363 removed lines patch added patch discarded remove patch
@@ -44,120 +44,120 @@  discard block
 block discarded – undo
44 44
    */
45 45
   public function __construct(Google_Client $client)
46 46
   {
47
-    parent::__construct($client);
48
-    $this->rootUrl = 'https://www.googleapis.com/';
49
-    $this->servicePath = 'civicinfo/v2/';
50
-    $this->version = 'v2';
51
-    $this->serviceName = 'civicinfo';
52
-
53
-    $this->divisions = new Google_Service_CivicInfo_Divisions_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'divisions',
57
-        array(
58
-          'methods' => array(
59
-            'search' => array(
60
-              'path' => 'divisions',
61
-              'httpMethod' => 'GET',
62
-              'parameters' => array(
63
-                'query' => array(
64
-                  'location' => 'query',
65
-                  'type' => 'string',
66
-                ),
67
-              ),
68
-            ),
69
-          )
70
-        )
71
-    );
72
-    $this->elections = new Google_Service_CivicInfo_Elections_Resource(
73
-        $this,
74
-        $this->serviceName,
75
-        'elections',
76
-        array(
77
-          'methods' => array(
78
-            'electionQuery' => array(
79
-              'path' => 'elections',
80
-              'httpMethod' => 'GET',
81
-              'parameters' => array(),
82
-            ),'voterInfoQuery' => array(
83
-              'path' => 'voterinfo',
84
-              'httpMethod' => 'GET',
85
-              'parameters' => array(
86
-                'address' => array(
87
-                  'location' => 'query',
88
-                  'type' => 'string',
89
-                  'required' => true,
90
-                ),
91
-                'electionId' => array(
92
-                  'location' => 'query',
93
-                  'type' => 'string',
94
-                ),
95
-                'officialOnly' => array(
96
-                  'location' => 'query',
97
-                  'type' => 'boolean',
98
-                ),
99
-              ),
100
-            ),
101
-          )
102
-        )
103
-    );
104
-    $this->representatives = new Google_Service_CivicInfo_Representatives_Resource(
105
-        $this,
106
-        $this->serviceName,
107
-        'representatives',
108
-        array(
109
-          'methods' => array(
110
-            'representativeInfoByAddress' => array(
111
-              'path' => 'representatives',
112
-              'httpMethod' => 'GET',
113
-              'parameters' => array(
114
-                'includeOffices' => array(
115
-                  'location' => 'query',
116
-                  'type' => 'boolean',
117
-                ),
118
-                'levels' => array(
119
-                  'location' => 'query',
120
-                  'type' => 'string',
121
-                  'repeated' => true,
122
-                ),
123
-                'roles' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                  'repeated' => true,
127
-                ),
128
-                'address' => array(
129
-                  'location' => 'query',
130
-                  'type' => 'string',
131
-                ),
132
-              ),
133
-            ),'representativeInfoByDivision' => array(
134
-              'path' => 'representatives/{ocdId}',
135
-              'httpMethod' => 'GET',
136
-              'parameters' => array(
137
-                'ocdId' => array(
138
-                  'location' => 'path',
139
-                  'type' => 'string',
140
-                  'required' => true,
141
-                ),
142
-                'levels' => array(
143
-                  'location' => 'query',
144
-                  'type' => 'string',
145
-                  'repeated' => true,
146
-                ),
147
-                'recursive' => array(
148
-                  'location' => 'query',
149
-                  'type' => 'boolean',
150
-                ),
151
-                'roles' => array(
152
-                  'location' => 'query',
153
-                  'type' => 'string',
154
-                  'repeated' => true,
155
-                ),
156
-              ),
157
-            ),
158
-          )
159
-        )
160
-    );
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'civicinfo/v2/';
50
+	$this->version = 'v2';
51
+	$this->serviceName = 'civicinfo';
52
+
53
+	$this->divisions = new Google_Service_CivicInfo_Divisions_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'divisions',
57
+		array(
58
+		  'methods' => array(
59
+			'search' => array(
60
+			  'path' => 'divisions',
61
+			  'httpMethod' => 'GET',
62
+			  'parameters' => array(
63
+				'query' => array(
64
+				  'location' => 'query',
65
+				  'type' => 'string',
66
+				),
67
+			  ),
68
+			),
69
+		  )
70
+		)
71
+	);
72
+	$this->elections = new Google_Service_CivicInfo_Elections_Resource(
73
+		$this,
74
+		$this->serviceName,
75
+		'elections',
76
+		array(
77
+		  'methods' => array(
78
+			'electionQuery' => array(
79
+			  'path' => 'elections',
80
+			  'httpMethod' => 'GET',
81
+			  'parameters' => array(),
82
+			),'voterInfoQuery' => array(
83
+			  'path' => 'voterinfo',
84
+			  'httpMethod' => 'GET',
85
+			  'parameters' => array(
86
+				'address' => array(
87
+				  'location' => 'query',
88
+				  'type' => 'string',
89
+				  'required' => true,
90
+				),
91
+				'electionId' => array(
92
+				  'location' => 'query',
93
+				  'type' => 'string',
94
+				),
95
+				'officialOnly' => array(
96
+				  'location' => 'query',
97
+				  'type' => 'boolean',
98
+				),
99
+			  ),
100
+			),
101
+		  )
102
+		)
103
+	);
104
+	$this->representatives = new Google_Service_CivicInfo_Representatives_Resource(
105
+		$this,
106
+		$this->serviceName,
107
+		'representatives',
108
+		array(
109
+		  'methods' => array(
110
+			'representativeInfoByAddress' => array(
111
+			  'path' => 'representatives',
112
+			  'httpMethod' => 'GET',
113
+			  'parameters' => array(
114
+				'includeOffices' => array(
115
+				  'location' => 'query',
116
+				  'type' => 'boolean',
117
+				),
118
+				'levels' => array(
119
+				  'location' => 'query',
120
+				  'type' => 'string',
121
+				  'repeated' => true,
122
+				),
123
+				'roles' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				  'repeated' => true,
127
+				),
128
+				'address' => array(
129
+				  'location' => 'query',
130
+				  'type' => 'string',
131
+				),
132
+			  ),
133
+			),'representativeInfoByDivision' => array(
134
+			  'path' => 'representatives/{ocdId}',
135
+			  'httpMethod' => 'GET',
136
+			  'parameters' => array(
137
+				'ocdId' => array(
138
+				  'location' => 'path',
139
+				  'type' => 'string',
140
+				  'required' => true,
141
+				),
142
+				'levels' => array(
143
+				  'location' => 'query',
144
+				  'type' => 'string',
145
+				  'repeated' => true,
146
+				),
147
+				'recursive' => array(
148
+				  'location' => 'query',
149
+				  'type' => 'boolean',
150
+				),
151
+				'roles' => array(
152
+				  'location' => 'query',
153
+				  'type' => 'string',
154
+				  'repeated' => true,
155
+				),
156
+			  ),
157
+			),
158
+		  )
159
+		)
160
+	);
161 161
   }
162 162
 }
163 163
 
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
    */
189 189
   public function search($optParams = array())
190 190
   {
191
-    $params = array();
192
-    $params = array_merge($params, $optParams);
193
-    return $this->call('search', array($params), "Google_Service_CivicInfo_DivisionSearchResponse");
191
+	$params = array();
192
+	$params = array_merge($params, $optParams);
193
+	return $this->call('search', array($params), "Google_Service_CivicInfo_DivisionSearchResponse");
194 194
   }
195 195
 }
196 196
 
@@ -213,9 +213,9 @@  discard block
 block discarded – undo
213 213
    */
214 214
   public function electionQuery($optParams = array())
215 215
   {
216
-    $params = array();
217
-    $params = array_merge($params, $optParams);
218
-    return $this->call('electionQuery', array($params), "Google_Service_CivicInfo_ElectionsQueryResponse");
216
+	$params = array();
217
+	$params = array_merge($params, $optParams);
218
+	return $this->call('electionQuery', array($params), "Google_Service_CivicInfo_ElectionsQueryResponse");
219 219
   }
220 220
 
221 221
   /**
@@ -234,9 +234,9 @@  discard block
 block discarded – undo
234 234
    */
235 235
   public function voterInfoQuery($address, $optParams = array())
236 236
   {
237
-    $params = array('address' => $address);
238
-    $params = array_merge($params, $optParams);
239
-    return $this->call('voterInfoQuery', array($params), "Google_Service_CivicInfo_VoterInfoResponse");
237
+	$params = array('address' => $address);
238
+	$params = array_merge($params, $optParams);
239
+	return $this->call('voterInfoQuery', array($params), "Google_Service_CivicInfo_VoterInfoResponse");
240 240
   }
241 241
 }
242 242
 
@@ -272,9 +272,9 @@  discard block
 block discarded – undo
272 272
    */
273 273
   public function representativeInfoByAddress($optParams = array())
274 274
   {
275
-    $params = array();
276
-    $params = array_merge($params, $optParams);
277
-    return $this->call('representativeInfoByAddress', array($params), "Google_Service_CivicInfo_RepresentativeInfoResponse");
275
+	$params = array();
276
+	$params = array_merge($params, $optParams);
277
+	return $this->call('representativeInfoByAddress', array($params), "Google_Service_CivicInfo_RepresentativeInfoResponse");
278 278
   }
279 279
 
280 280
   /**
@@ -299,9 +299,9 @@  discard block
 block discarded – undo
299 299
    */
300 300
   public function representativeInfoByDivision($ocdId, $optParams = array())
301 301
   {
302
-    $params = array('ocdId' => $ocdId);
303
-    $params = array_merge($params, $optParams);
304
-    return $this->call('representativeInfoByDivision', array($params), "Google_Service_CivicInfo_RepresentativeInfoData");
302
+	$params = array('ocdId' => $ocdId);
303
+	$params = array_merge($params, $optParams);
304
+	return $this->call('representativeInfoByDivision', array($params), "Google_Service_CivicInfo_RepresentativeInfoData");
305 305
   }
306 306
 }
307 307
 
@@ -312,7 +312,7 @@  discard block
 block discarded – undo
312 312
 {
313 313
   protected $collection_key = 'sources';
314 314
   protected $internal_gapi_mappings = array(
315
-        "localJurisdiction" => "local_jurisdiction",
315
+		"localJurisdiction" => "local_jurisdiction",
316 316
   );
317 317
   protected $electionAdministrationBodyType = 'Google_Service_CivicInfo_AdministrativeBody';
318 318
   protected $electionAdministrationBodyDataType = '';
@@ -326,43 +326,43 @@  discard block
 block discarded – undo
326 326
 
327 327
   public function setElectionAdministrationBody(Google_Service_CivicInfo_AdministrativeBody $electionAdministrationBody)
328 328
   {
329
-    $this->electionAdministrationBody = $electionAdministrationBody;
329
+	$this->electionAdministrationBody = $electionAdministrationBody;
330 330
   }
331 331
   public function getElectionAdministrationBody()
332 332
   {
333
-    return $this->electionAdministrationBody;
333
+	return $this->electionAdministrationBody;
334 334
   }
335 335
   public function setId($id)
336 336
   {
337
-    $this->id = $id;
337
+	$this->id = $id;
338 338
   }
339 339
   public function getId()
340 340
   {
341
-    return $this->id;
341
+	return $this->id;
342 342
   }
343 343
   public function setLocalJurisdiction(Google_Service_CivicInfo_AdministrationRegion $localJurisdiction)
344 344
   {
345
-    $this->localJurisdiction = $localJurisdiction;
345
+	$this->localJurisdiction = $localJurisdiction;
346 346
   }
347 347
   public function getLocalJurisdiction()
348 348
   {
349
-    return $this->localJurisdiction;
349
+	return $this->localJurisdiction;
350 350
   }
351 351
   public function setName($name)
352 352
   {
353
-    $this->name = $name;
353
+	$this->name = $name;
354 354
   }
355 355
   public function getName()
356 356
   {
357
-    return $this->name;
357
+	return $this->name;
358 358
   }
359 359
   public function setSources($sources)
360 360
   {
361
-    $this->sources = $sources;
361
+	$this->sources = $sources;
362 362
   }
363 363
   public function getSources()
364 364
   {
365
-    return $this->sources;
365
+	return $this->sources;
366 366
   }
367 367
 }
368 368
 
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
 {
371 371
   protected $collection_key = 'voter_services';
372 372
   protected $internal_gapi_mappings = array(
373
-        "voterServices" => "voter_services",
373
+		"voterServices" => "voter_services",
374 374
   );
375 375
   public $absenteeVotingInfoUrl;
376 376
   public $ballotInfoUrl;
@@ -392,107 +392,107 @@  discard block
 block discarded – undo
392 392
 
393 393
   public function setAbsenteeVotingInfoUrl($absenteeVotingInfoUrl)
394 394
   {
395
-    $this->absenteeVotingInfoUrl = $absenteeVotingInfoUrl;
395
+	$this->absenteeVotingInfoUrl = $absenteeVotingInfoUrl;
396 396
   }
397 397
   public function getAbsenteeVotingInfoUrl()
398 398
   {
399
-    return $this->absenteeVotingInfoUrl;
399
+	return $this->absenteeVotingInfoUrl;
400 400
   }
401 401
   public function setBallotInfoUrl($ballotInfoUrl)
402 402
   {
403
-    $this->ballotInfoUrl = $ballotInfoUrl;
403
+	$this->ballotInfoUrl = $ballotInfoUrl;
404 404
   }
405 405
   public function getBallotInfoUrl()
406 406
   {
407
-    return $this->ballotInfoUrl;
407
+	return $this->ballotInfoUrl;
408 408
   }
409 409
   public function setCorrespondenceAddress(Google_Service_CivicInfo_SimpleAddressType $correspondenceAddress)
410 410
   {
411
-    $this->correspondenceAddress = $correspondenceAddress;
411
+	$this->correspondenceAddress = $correspondenceAddress;
412 412
   }
413 413
   public function getCorrespondenceAddress()
414 414
   {
415
-    return $this->correspondenceAddress;
415
+	return $this->correspondenceAddress;
416 416
   }
417 417
   public function setElectionInfoUrl($electionInfoUrl)
418 418
   {
419
-    $this->electionInfoUrl = $electionInfoUrl;
419
+	$this->electionInfoUrl = $electionInfoUrl;
420 420
   }
421 421
   public function getElectionInfoUrl()
422 422
   {
423
-    return $this->electionInfoUrl;
423
+	return $this->electionInfoUrl;
424 424
   }
425 425
   public function setElectionOfficials($electionOfficials)
426 426
   {
427
-    $this->electionOfficials = $electionOfficials;
427
+	$this->electionOfficials = $electionOfficials;
428 428
   }
429 429
   public function getElectionOfficials()
430 430
   {
431
-    return $this->electionOfficials;
431
+	return $this->electionOfficials;
432 432
   }
433 433
   public function setElectionRegistrationConfirmationUrl($electionRegistrationConfirmationUrl)
434 434
   {
435
-    $this->electionRegistrationConfirmationUrl = $electionRegistrationConfirmationUrl;
435
+	$this->electionRegistrationConfirmationUrl = $electionRegistrationConfirmationUrl;
436 436
   }
437 437
   public function getElectionRegistrationConfirmationUrl()
438 438
   {
439
-    return $this->electionRegistrationConfirmationUrl;
439
+	return $this->electionRegistrationConfirmationUrl;
440 440
   }
441 441
   public function setElectionRegistrationUrl($electionRegistrationUrl)
442 442
   {
443
-    $this->electionRegistrationUrl = $electionRegistrationUrl;
443
+	$this->electionRegistrationUrl = $electionRegistrationUrl;
444 444
   }
445 445
   public function getElectionRegistrationUrl()
446 446
   {
447
-    return $this->electionRegistrationUrl;
447
+	return $this->electionRegistrationUrl;
448 448
   }
449 449
   public function setElectionRulesUrl($electionRulesUrl)
450 450
   {
451
-    $this->electionRulesUrl = $electionRulesUrl;
451
+	$this->electionRulesUrl = $electionRulesUrl;
452 452
   }
453 453
   public function getElectionRulesUrl()
454 454
   {
455
-    return $this->electionRulesUrl;
455
+	return $this->electionRulesUrl;
456 456
   }
457 457
   public function setHoursOfOperation($hoursOfOperation)
458 458
   {
459
-    $this->hoursOfOperation = $hoursOfOperation;
459
+	$this->hoursOfOperation = $hoursOfOperation;
460 460
   }
461 461
   public function getHoursOfOperation()
462 462
   {
463
-    return $this->hoursOfOperation;
463
+	return $this->hoursOfOperation;
464 464
   }
465 465
   public function setName($name)
466 466
   {
467
-    $this->name = $name;
467
+	$this->name = $name;
468 468
   }
469 469
   public function getName()
470 470
   {
471
-    return $this->name;
471
+	return $this->name;
472 472
   }
473 473
   public function setPhysicalAddress(Google_Service_CivicInfo_SimpleAddressType $physicalAddress)
474 474
   {
475
-    $this->physicalAddress = $physicalAddress;
475
+	$this->physicalAddress = $physicalAddress;
476 476
   }
477 477
   public function getPhysicalAddress()
478 478
   {
479
-    return $this->physicalAddress;
479
+	return $this->physicalAddress;
480 480
   }
481 481
   public function setVoterServices($voterServices)
482 482
   {
483
-    $this->voterServices = $voterServices;
483
+	$this->voterServices = $voterServices;
484 484
   }
485 485
   public function getVoterServices()
486 486
   {
487
-    return $this->voterServices;
487
+	return $this->voterServices;
488 488
   }
489 489
   public function setVotingLocationFinderUrl($votingLocationFinderUrl)
490 490
   {
491
-    $this->votingLocationFinderUrl = $votingLocationFinderUrl;
491
+	$this->votingLocationFinderUrl = $votingLocationFinderUrl;
492 492
   }
493 493
   public function getVotingLocationFinderUrl()
494 494
   {
495
-    return $this->votingLocationFinderUrl;
495
+	return $this->votingLocationFinderUrl;
496 496
   }
497 497
 }
498 498
 
@@ -514,67 +514,67 @@  discard block
 block discarded – undo
514 514
 
515 515
   public function setCandidateUrl($candidateUrl)
516 516
   {
517
-    $this->candidateUrl = $candidateUrl;
517
+	$this->candidateUrl = $candidateUrl;
518 518
   }
519 519
   public function getCandidateUrl()
520 520
   {
521
-    return $this->candidateUrl;
521
+	return $this->candidateUrl;
522 522
   }
523 523
   public function setChannels($channels)
524 524
   {
525
-    $this->channels = $channels;
525
+	$this->channels = $channels;
526 526
   }
527 527
   public function getChannels()
528 528
   {
529
-    return $this->channels;
529
+	return $this->channels;
530 530
   }
531 531
   public function setEmail($email)
532 532
   {
533
-    $this->email = $email;
533
+	$this->email = $email;
534 534
   }
535 535
   public function getEmail()
536 536
   {
537
-    return $this->email;
537
+	return $this->email;
538 538
   }
539 539
   public function setName($name)
540 540
   {
541
-    $this->name = $name;
541
+	$this->name = $name;
542 542
   }
543 543
   public function getName()
544 544
   {
545
-    return $this->name;
545
+	return $this->name;
546 546
   }
547 547
   public function setOrderOnBallot($orderOnBallot)
548 548
   {
549
-    $this->orderOnBallot = $orderOnBallot;
549
+	$this->orderOnBallot = $orderOnBallot;
550 550
   }
551 551
   public function getOrderOnBallot()
552 552
   {
553
-    return $this->orderOnBallot;
553
+	return $this->orderOnBallot;
554 554
   }
555 555
   public function setParty($party)
556 556
   {
557
-    $this->party = $party;
557
+	$this->party = $party;
558 558
   }
559 559
   public function getParty()
560 560
   {
561
-    return $this->party;
561
+	return $this->party;
562 562
   }
563 563
   public function setPhone($phone)
564 564
   {
565
-    $this->phone = $phone;
565
+	$this->phone = $phone;
566 566
   }
567 567
   public function getPhone()
568 568
   {
569
-    return $this->phone;
569
+	return $this->phone;
570 570
   }
571 571
   public function setPhotoUrl($photoUrl)
572 572
   {
573
-    $this->photoUrl = $photoUrl;
573
+	$this->photoUrl = $photoUrl;
574 574
   }
575 575
   public function getPhotoUrl()
576 576
   {
577
-    return $this->photoUrl;
577
+	return $this->photoUrl;
578 578
   }
579 579
 }
580 580
 
@@ -588,19 +588,19 @@  discard block
 block discarded – undo
588 588
 
589 589
   public function setId($id)
590 590
   {
591
-    $this->id = $id;
591
+	$this->id = $id;
592 592
   }
593 593
   public function getId()
594 594
   {
595
-    return $this->id;
595
+	return $this->id;
596 596
   }
597 597
   public function setType($type)
598 598
   {
599
-    $this->type = $type;
599
+	$this->type = $type;
600 600
   }
601 601
   public function getType()
602 602
   {
603
-    return $this->type;
603
+	return $this->type;
604 604
   }
605 605
 }
606 606
 
@@ -633,139 +633,139 @@  discard block
 block discarded – undo
633 633
 
634 634
   public function setBallotPlacement($ballotPlacement)
635 635
   {
636
-    $this->ballotPlacement = $ballotPlacement;
636
+	$this->ballotPlacement = $ballotPlacement;
637 637
   }
638 638
   public function getBallotPlacement()
639 639
   {
640
-    return $this->ballotPlacement;
640
+	return $this->ballotPlacement;
641 641
   }
642 642
   public function setCandidates($candidates)
643 643
   {
644
-    $this->candidates = $candidates;
644
+	$this->candidates = $candidates;
645 645
   }
646 646
   public function getCandidates()
647 647
   {
648
-    return $this->candidates;
648
+	return $this->candidates;
649 649
   }
650 650
   public function setDistrict(Google_Service_CivicInfo_ElectoralDistrict $district)
651 651
   {
652
-    $this->district = $district;
652
+	$this->district = $district;
653 653
   }
654 654
   public function getDistrict()
655 655
   {
656
-    return $this->district;
656
+	return $this->district;
657 657
   }
658 658
   public function setElectorateSpecifications($electorateSpecifications)
659 659
   {
660
-    $this->electorateSpecifications = $electorateSpecifications;
660
+	$this->electorateSpecifications = $electorateSpecifications;
661 661
   }
662 662
   public function getElectorateSpecifications()
663 663
   {
664
-    return $this->electorateSpecifications;
664
+	return $this->electorateSpecifications;
665 665
   }
666 666
   public function setId($id)
667 667
   {
668
-    $this->id = $id;
668
+	$this->id = $id;
669 669
   }
670 670
   public function getId()
671 671
   {
672
-    return $this->id;
672
+	return $this->id;
673 673
   }
674 674
   public function setLevel($level)
675 675
   {
676
-    $this->level = $level;
676
+	$this->level = $level;
677 677
   }
678 678
   public function getLevel()
679 679
   {
680
-    return $this->level;
680
+	return $this->level;
681 681
   }
682 682
   public function setNumberElected($numberElected)
683 683
   {
684
-    $this->numberElected = $numberElected;
684
+	$this->numberElected = $numberElected;
685 685
   }
686 686
   public function getNumberElected()
687 687
   {
688
-    return $this->numberElected;
688
+	return $this->numberElected;
689 689
   }
690 690
   public function setNumberVotingFor($numberVotingFor)
691 691
   {
692
-    $this->numberVotingFor = $numberVotingFor;
692
+	$this->numberVotingFor = $numberVotingFor;
693 693
   }
694 694
   public function getNumberVotingFor()
695 695
   {
696
-    return $this->numberVotingFor;
696
+	return $this->numberVotingFor;
697 697
   }
698 698
   public function setOffice($office)
699 699
   {
700
-    $this->office = $office;
700
+	$this->office = $office;
701 701
   }
702 702
   public function getOffice()
703 703
   {
704
-    return $this->office;
704
+	return $this->office;
705 705
   }
706 706
   public function setPrimaryParty($primaryParty)
707 707
   {
708
-    $this->primaryParty = $primaryParty;
708
+	$this->primaryParty = $primaryParty;
709 709
   }
710 710
   public function getPrimaryParty()
711 711
   {
712
-    return $this->primaryParty;
712
+	return $this->primaryParty;
713 713
   }
714 714
   public function setReferendumSubtitle($referendumSubtitle)
715 715
   {
716
-    $this->referendumSubtitle = $referendumSubtitle;
716
+	$this->referendumSubtitle = $referendumSubtitle;
717 717
   }
718 718
   public function getReferendumSubtitle()
719 719
   {
720
-    return $this->referendumSubtitle;
720
+	return $this->referendumSubtitle;
721 721
   }
722 722
   public function setReferendumTitle($referendumTitle)
723 723
   {
724
-    $this->referendumTitle = $referendumTitle;
724
+	$this->referendumTitle = $referendumTitle;
725 725
   }
726 726
   public function getReferendumTitle()
727 727
   {
728
-    return $this->referendumTitle;
728
+	return $this->referendumTitle;
729 729
   }
730 730
   public function setReferendumUrl($referendumUrl)
731 731
   {
732
-    $this->referendumUrl = $referendumUrl;
732
+	$this->referendumUrl = $referendumUrl;
733 733
   }
734 734
   public function getReferendumUrl()
735 735
   {
736
-    return $this->referendumUrl;
736
+	return $this->referendumUrl;
737 737
   }
738 738
   public function setRoles($roles)
739 739
   {
740
-    $this->roles = $roles;
740
+	$this->roles = $roles;
741 741
   }
742 742
   public function getRoles()
743 743
   {
744
-    return $this->roles;
744
+	return $this->roles;
745 745
   }
746 746
   public function setSources($sources)
747 747
   {
748
-    $this->sources = $sources;
748
+	$this->sources = $sources;
749 749
   }
750 750
   public function getSources()
751 751
   {
752
-    return $this->sources;
752
+	return $this->sources;
753 753
   }
754 754
   public function setSpecial($special)
755 755
   {
756
-    $this->special = $special;
756
+	$this->special = $special;
757 757
   }
758 758
   public function getSpecial()
759 759
   {
760
-    return $this->special;
760
+	return $this->special;
761 761
   }
762 762
   public function setType($type)
763 763
   {
764
-    $this->type = $type;
764
+	$this->type = $type;
765 765
   }
766 766
   public function getType()
767 767
   {
768
-    return $this->type;
768
+	return $this->type;
769 769
   }
770 770
 }
771 771
 
@@ -781,19 +781,19 @@  discard block
 block discarded – undo
781 781
 
782 782
   public function setKind($kind)
783 783
   {
784
-    $this->kind = $kind;
784
+	$this->kind = $kind;
785 785
   }
786 786
   public function getKind()
787 787
   {
788
-    return $this->kind;
788
+	return $this->kind;
789 789
   }
790 790
   public function setResults($results)
791 791
   {
792
-    $this->results = $results;
792
+	$this->results = $results;
793 793
   }
794 794
   public function getResults()
795 795
   {
796
-    return $this->results;
796
+	return $this->results;
797 797
   }
798 798
 }
799 799
 
@@ -809,27 +809,27 @@  discard block
 block discarded – undo
809 809
 
810 810
   public function setAliases($aliases)
811 811
   {
812
-    $this->aliases = $aliases;
812
+	$this->aliases = $aliases;
813 813
   }
814 814
   public function getAliases()
815 815
   {
816
-    return $this->aliases;
816
+	return $this->aliases;
817 817
   }
818 818
   public function setName($name)
819 819
   {
820
-    $this->name = $name;
820
+	$this->name = $name;
821 821
   }
822 822
   public function getName()
823 823
   {
824
-    return $this->name;
824
+	return $this->name;
825 825
   }
826 826
   public function setOcdId($ocdId)
827 827
   {
828
-    $this->ocdId = $ocdId;
828
+	$this->ocdId = $ocdId;
829 829
   }
830 830
   public function getOcdId()
831 831
   {
832
-    return $this->ocdId;
832
+	return $this->ocdId;
833 833
   }
834 834
 }
835 835
 
@@ -844,27 +844,27 @@  discard block
 block discarded – undo
844 844
 
845 845
   public function setElectionDay($electionDay)
846 846
   {
847
-    $this->electionDay = $electionDay;
847
+	$this->electionDay = $electionDay;
848 848
   }
849 849
   public function getElectionDay()
850 850
   {
851
-    return $this->electionDay;
851
+	return $this->electionDay;
852 852
   }
853 853
   public function setId($id)
854 854
   {
855
-    $this->id = $id;
855
+	$this->id = $id;
856 856
   }
857 857
   public function getId()
858 858
   {
859
-    return $this->id;
859
+	return $this->id;
860 860
   }
861 861
   public function setName($name)
862 862
   {
863
-    $this->name = $name;
863
+	$this->name = $name;
864 864
   }
865 865
   public function getName()
866 866
   {
867
-    return $this->name;
867
+	return $this->name;
868 868
   }
869 869
 }
870 870
 
@@ -881,43 +881,43 @@  discard block
 block discarded – undo
881 881
 
882 882
   public function setEmailAddress($emailAddress)
883 883
   {
884
-    $this->emailAddress = $emailAddress;
884
+	$this->emailAddress = $emailAddress;
885 885
   }
886 886
   public function getEmailAddress()
887 887
   {
888
-    return $this->emailAddress;
888
+	return $this->emailAddress;
889 889
   }
890 890
   public function setFaxNumber($faxNumber)
891 891
   {
892
-    $this->faxNumber = $faxNumber;
892
+	$this->faxNumber = $faxNumber;
893 893
   }
894 894
   public function getFaxNumber()
895 895
   {
896
-    return $this->faxNumber;
896
+	return $this->faxNumber;
897 897
   }
898 898
   public function setName($name)
899 899
   {
900
-    $this->name = $name;
900
+	$this->name = $name;
901 901
   }
902 902
   public function getName()
903 903
   {
904
-    return $this->name;
904
+	return $this->name;
905 905
   }
906 906
   public function setOfficePhoneNumber($officePhoneNumber)
907 907
   {
908
-    $this->officePhoneNumber = $officePhoneNumber;
908
+	$this->officePhoneNumber = $officePhoneNumber;
909 909
   }
910 910
   public function getOfficePhoneNumber()
911 911
   {
912
-    return $this->officePhoneNumber;
912
+	return $this->officePhoneNumber;
913 913
   }
914 914
   public function setTitle($title)
915 915
   {
916
-    $this->title = $title;
916
+	$this->title = $title;
917 917
   }
918 918
   public function getTitle()
919 919
   {
920
-    return $this->title;
920
+	return $this->title;
921 921
   }
922 922
 }
923 923
 
@@ -933,19 +933,19 @@  discard block
 block discarded – undo
933 933
 
934 934
   public function setElections($elections)
935 935
   {
936
-    $this->elections = $elections;
936
+	$this->elections = $elections;
937 937
   }
938 938
   public function getElections()
939 939
   {
940
-    return $this->elections;
940
+	return $this->elections;
941 941
   }
942 942
   public function setKind($kind)
943 943
   {
944
-    $this->kind = $kind;
944
+	$this->kind = $kind;
945 945
   }
946 946
   public function getKind()
947 947
   {
948
-    return $this->kind;
948
+	return $this->kind;
949 949
   }
950 950
 }
951 951
 
@@ -960,27 +960,27 @@  discard block
 block discarded – undo
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 setName($name)
970 970
   {
971
-    $this->name = $name;
971
+	$this->name = $name;
972 972
   }
973 973
   public function getName()
974 974
   {
975
-    return $this->name;
975
+	return $this->name;
976 976
   }
977 977
   public function setScope($scope)
978 978
   {
979
-    $this->scope = $scope;
979
+	$this->scope = $scope;
980 980
   }
981 981
   public function getScope()
982 982
   {
983
-    return $this->scope;
983
+	return $this->scope;
984 984
   }
985 985
 }
986 986
 
@@ -996,27 +996,27 @@  discard block
 block discarded – undo
996 996
 
997 997
   public function setAlsoKnownAs($alsoKnownAs)
998 998
   {
999
-    $this->alsoKnownAs = $alsoKnownAs;
999
+	$this->alsoKnownAs = $alsoKnownAs;
1000 1000
   }
1001 1001
   public function getAlsoKnownAs()
1002 1002
   {
1003
-    return $this->alsoKnownAs;
1003
+	return $this->alsoKnownAs;
1004 1004
   }
1005 1005
   public function setName($name)
1006 1006
   {
1007
-    $this->name = $name;
1007
+	$this->name = $name;
1008 1008
   }
1009 1009
   public function getName()
1010 1010
   {
1011
-    return $this->name;
1011
+	return $this->name;
1012 1012
   }
1013 1013
   public function setOfficeIndices($officeIndices)
1014 1014
   {
1015
-    $this->officeIndices = $officeIndices;
1015
+	$this->officeIndices = $officeIndices;
1016 1016
   }
1017 1017
   public function getOfficeIndices()
1018 1018
   {
1019
-    return $this->officeIndices;
1019
+	return $this->officeIndices;
1020 1020
   }
1021 1021
 }
1022 1022
 
@@ -1036,51 +1036,51 @@  discard block
 block discarded – undo
1036 1036
 
1037 1037
   public function setDivisionId($divisionId)
1038 1038
   {
1039
-    $this->divisionId = $divisionId;
1039
+	$this->divisionId = $divisionId;
1040 1040
   }
1041 1041
   public function getDivisionId()
1042 1042
   {
1043
-    return $this->divisionId;
1043
+	return $this->divisionId;
1044 1044
   }
1045 1045
   public function setLevels($levels)
1046 1046
   {
1047
-    $this->levels = $levels;
1047
+	$this->levels = $levels;
1048 1048
   }
1049 1049
   public function getLevels()
1050 1050
   {
1051
-    return $this->levels;
1051
+	return $this->levels;
1052 1052
   }
1053 1053
   public function setName($name)
1054 1054
   {
1055
-    $this->name = $name;
1055
+	$this->name = $name;
1056 1056
   }
1057 1057
   public function getName()
1058 1058
   {
1059
-    return $this->name;
1059
+	return $this->name;
1060 1060
   }
1061 1061
   public function setOfficialIndices($officialIndices)
1062 1062
   {
1063
-    $this->officialIndices = $officialIndices;
1063
+	$this->officialIndices = $officialIndices;
1064 1064
   }
1065 1065
   public function getOfficialIndices()
1066 1066
   {
1067
-    return $this->officialIndices;
1067
+	return $this->officialIndices;
1068 1068
   }
1069 1069
   public function setRoles($roles)
1070 1070
   {
1071
-    $this->roles = $roles;
1071
+	$this->roles = $roles;
1072 1072
   }
1073 1073
   public function getRoles()
1074 1074
   {
1075
-    return $this->roles;
1075
+	return $this->roles;
1076 1076
   }
1077 1077
   public function setSources($sources)
1078 1078
   {
1079
-    $this->sources = $sources;
1079
+	$this->sources = $sources;
1080 1080
   }
1081 1081
   public function getSources()
1082 1082
   {
1083
-    return $this->sources;
1083
+	return $this->sources;
1084 1084
   }
1085 1085
 }
1086 1086
 
@@ -1103,67 +1103,67 @@  discard block
 block discarded – undo
1103 1103
 
1104 1104
   public function setAddress($address)
1105 1105
   {
1106
-    $this->address = $address;
1106
+	$this->address = $address;
1107 1107
   }
1108 1108
   public function getAddress()
1109 1109
   {
1110
-    return $this->address;
1110
+	return $this->address;
1111 1111
   }
1112 1112
   public function setChannels($channels)
1113 1113
   {
1114
-    $this->channels = $channels;
1114
+	$this->channels = $channels;
1115 1115
   }
1116 1116
   public function getChannels()
1117 1117
   {
1118
-    return $this->channels;
1118
+	return $this->channels;
1119 1119
   }
1120 1120
   public function setEmails($emails)
1121 1121
   {
1122
-    $this->emails = $emails;
1122
+	$this->emails = $emails;
1123 1123
   }
1124 1124
   public function getEmails()
1125 1125
   {
1126
-    return $this->emails;
1126
+	return $this->emails;
1127 1127
   }
1128 1128
   public function setName($name)
1129 1129
   {
1130
-    $this->name = $name;
1130
+	$this->name = $name;
1131 1131
   }
1132 1132
   public function getName()
1133 1133
   {
1134
-    return $this->name;
1134
+	return $this->name;
1135 1135
   }
1136 1136
   public function setParty($party)
1137 1137
   {
1138
-    $this->party = $party;
1138
+	$this->party = $party;
1139 1139
   }
1140 1140
   public function getParty()
1141 1141
   {
1142
-    return $this->party;
1142
+	return $this->party;
1143 1143
   }
1144 1144
   public function setPhones($phones)
1145 1145
   {
1146
-    $this->phones = $phones;
1146
+	$this->phones = $phones;
1147 1147
   }
1148 1148
   public function getPhones()
1149 1149
   {
1150
-    return $this->phones;
1150
+	return $this->phones;
1151 1151
   }
1152 1152
   public function setPhotoUrl($photoUrl)
1153 1153
   {
1154
-    $this->photoUrl = $photoUrl;
1154
+	$this->photoUrl = $photoUrl;
1155 1155
   }
1156 1156
   public function getPhotoUrl()
1157 1157
   {
1158
-    return $this->photoUrl;
1158
+	return $this->photoUrl;
1159 1159
   }
1160 1160
   public function setUrls($urls)
1161 1161
   {
1162
-    $this->urls = $urls;
1162
+	$this->urls = $urls;
1163 1163
   }
1164 1164
   public function getUrls()
1165 1165
   {
1166
-    return $this->urls;
1166
+	return $this->urls;
1167 1167
   }
1168 1168
 }
1169 1169
 
@@ -1187,75 +1187,75 @@  discard block
 block discarded – undo
1187 1187
 
1188 1188
   public function setAddress(Google_Service_CivicInfo_SimpleAddressType $address)
1189 1189
   {
1190
-    $this->address = $address;
1190
+	$this->address = $address;
1191 1191
   }
1192 1192
   public function getAddress()
1193 1193
   {
1194
-    return $this->address;
1194
+	return $this->address;
1195 1195
   }
1196 1196
   public function setEndDate($endDate)
1197 1197
   {
1198
-    $this->endDate = $endDate;
1198
+	$this->endDate = $endDate;
1199 1199
   }
1200 1200
   public function getEndDate()
1201 1201
   {
1202
-    return $this->endDate;
1202
+	return $this->endDate;
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 setName($name)
1213 1213
   {
1214
-    $this->name = $name;
1214
+	$this->name = $name;
1215 1215
   }
1216 1216
   public function getName()
1217 1217
   {
1218
-    return $this->name;
1218
+	return $this->name;
1219 1219
   }
1220 1220
   public function setNotes($notes)
1221 1221
   {
1222
-    $this->notes = $notes;
1222
+	$this->notes = $notes;
1223 1223
   }
1224 1224
   public function getNotes()
1225 1225
   {
1226
-    return $this->notes;
1226
+	return $this->notes;
1227 1227
   }
1228 1228
   public function setPollingHours($pollingHours)
1229 1229
   {
1230
-    $this->pollingHours = $pollingHours;
1230
+	$this->pollingHours = $pollingHours;
1231 1231
   }
1232 1232
   public function getPollingHours()
1233 1233
   {
1234
-    return $this->pollingHours;
1234
+	return $this->pollingHours;
1235 1235
   }
1236 1236
   public function setSources($sources)
1237 1237
   {
1238
-    $this->sources = $sources;
1238
+	$this->sources = $sources;
1239 1239
   }
1240 1240
   public function getSources()
1241 1241
   {
1242
-    return $this->sources;
1242
+	return $this->sources;
1243 1243
   }
1244 1244
   public function setStartDate($startDate)
1245 1245
   {
1246
-    $this->startDate = $startDate;
1246
+	$this->startDate = $startDate;
1247 1247
   }
1248 1248
   public function getStartDate()
1249 1249
   {
1250
-    return $this->startDate;
1250
+	return $this->startDate;
1251 1251
   }
1252 1252
   public function setVoterServices($voterServices)
1253 1253
   {
1254
-    $this->voterServices = $voterServices;
1254
+	$this->voterServices = $voterServices;
1255 1255
   }
1256 1256
   public function getVoterServices()
1257 1257
   {
1258
-    return $this->voterServices;
1258
+	return $this->voterServices;
1259 1259
   }
1260 1260
 }
1261 1261
 
@@ -1274,27 +1274,27 @@  discard block
 block discarded – undo
1274 1274
 
1275 1275
   public function setDivisions($divisions)
1276 1276
   {
1277
-    $this->divisions = $divisions;
1277
+	$this->divisions = $divisions;
1278 1278
   }
1279 1279
   public function getDivisions()
1280 1280
   {
1281
-    return $this->divisions;
1281
+	return $this->divisions;
1282 1282
   }
1283 1283
   public function setOffices($offices)
1284 1284
   {
1285
-    $this->offices = $offices;
1285
+	$this->offices = $offices;
1286 1286
   }
1287 1287
   public function getOffices()
1288 1288
   {
1289
-    return $this->offices;
1289
+	return $this->offices;
1290 1290
   }
1291 1291
   public function setOfficials($officials)
1292 1292
   {
1293
-    $this->officials = $officials;
1293
+	$this->officials = $officials;
1294 1294
   }
1295 1295
   public function getOfficials()
1296 1296
   {
1297
-    return $this->officials;
1297
+	return $this->officials;
1298 1298
   }
1299 1299
 }
1300 1300
 
@@ -1320,43 +1320,43 @@  discard block
 block discarded – undo
1320 1320
 
1321 1321
   public function setDivisions($divisions)
1322 1322
   {
1323
-    $this->divisions = $divisions;
1323
+	$this->divisions = $divisions;
1324 1324
   }
1325 1325
   public function getDivisions()
1326 1326
   {
1327
-    return $this->divisions;
1327
+	return $this->divisions;
1328 1328
   }
1329 1329
   public function setKind($kind)
1330 1330
   {
1331
-    $this->kind = $kind;
1331
+	$this->kind = $kind;
1332 1332
   }
1333 1333
   public function getKind()
1334 1334
   {
1335
-    return $this->kind;
1335
+	return $this->kind;
1336 1336
   }
1337 1337
   public function setNormalizedInput(Google_Service_CivicInfo_SimpleAddressType $normalizedInput)
1338 1338
   {
1339
-    $this->normalizedInput = $normalizedInput;
1339
+	$this->normalizedInput = $normalizedInput;
1340 1340
   }
1341 1341
   public function getNormalizedInput()
1342 1342
   {
1343
-    return $this->normalizedInput;
1343
+	return $this->normalizedInput;
1344 1344
   }
1345 1345
   public function setOffices($offices)
1346 1346
   {
1347
-    $this->offices = $offices;
1347
+	$this->offices = $offices;
1348 1348
   }
1349 1349
   public function getOffices()
1350 1350
   {
1351
-    return $this->offices;
1351
+	return $this->offices;
1352 1352
   }
1353 1353
   public function setOfficials($officials)
1354 1354
   {
1355
-    $this->officials = $officials;
1355
+	$this->officials = $officials;
1356 1356
   }
1357 1357
   public function getOfficials()
1358 1358
   {
1359
-    return $this->officials;
1359
+	return $this->officials;
1360 1360
   }
1361 1361
 }
1362 1362
 
@@ -1379,59 +1379,59 @@  discard block
 block discarded – undo
1379 1379
 
1380 1380
   public function setCity($city)
1381 1381
   {
1382
-    $this->city = $city;
1382
+	$this->city = $city;
1383 1383
   }
1384 1384
   public function getCity()
1385 1385
   {
1386
-    return $this->city;
1386
+	return $this->city;
1387 1387
   }
1388 1388
   public function setLine1($line1)
1389 1389
   {
1390
-    $this->line1 = $line1;
1390
+	$this->line1 = $line1;
1391 1391
   }
1392 1392
   public function getLine1()
1393 1393
   {
1394
-    return $this->line1;
1394
+	return $this->line1;
1395 1395
   }
1396 1396
   public function setLine2($line2)
1397 1397
   {
1398
-    $this->line2 = $line2;
1398
+	$this->line2 = $line2;
1399 1399
   }
1400 1400
   public function getLine2()
1401 1401
   {
1402
-    return $this->line2;
1402
+	return $this->line2;
1403 1403
   }
1404 1404
   public function setLine3($line3)
1405 1405
   {
1406
-    $this->line3 = $line3;
1406
+	$this->line3 = $line3;
1407 1407
   }
1408 1408
   public function getLine3()
1409 1409
   {
1410
-    return $this->line3;
1410
+	return $this->line3;
1411 1411
   }
1412 1412
   public function setLocationName($locationName)
1413 1413
   {
1414
-    $this->locationName = $locationName;
1414
+	$this->locationName = $locationName;
1415 1415
   }
1416 1416
   public function getLocationName()
1417 1417
   {
1418
-    return $this->locationName;
1418
+	return $this->locationName;
1419 1419
   }
1420 1420
   public function setState($state)
1421 1421
   {
1422
-    $this->state = $state;
1422
+	$this->state = $state;
1423 1423
   }
1424 1424
   public function getState()
1425 1425
   {
1426
-    return $this->state;
1426
+	return $this->state;
1427 1427
   }
1428 1428
   public function setZip($zip)
1429 1429
   {
1430
-    $this->zip = $zip;
1430
+	$this->zip = $zip;
1431 1431
   }
1432 1432
   public function getZip()
1433 1433
   {
1434
-    return $this->zip;
1434
+	return $this->zip;
1435 1435
   }
1436 1436
 }
1437 1437
 
@@ -1445,19 +1445,19 @@  discard block
 block discarded – undo
1445 1445
 
1446 1446
   public function setName($name)
1447 1447
   {
1448
-    $this->name = $name;
1448
+	$this->name = $name;
1449 1449
   }
1450 1450
   public function getName()
1451 1451
   {
1452
-    return $this->name;
1452
+	return $this->name;
1453 1453
   }
1454 1454
   public function setOfficial($official)
1455 1455
   {
1456
-    $this->official = $official;
1456
+	$this->official = $official;
1457 1457
   }
1458 1458
   public function getOfficial()
1459 1459
   {
1460
-    return $this->official;
1460
+	return $this->official;
1461 1461
   }
1462 1462
 }
1463 1463
 
@@ -1488,82 +1488,82 @@  discard block
 block discarded – undo
1488 1488
 
1489 1489
   public function setContests($contests)
1490 1490
   {
1491
-    $this->contests = $contests;
1491
+	$this->contests = $contests;
1492 1492
   }
1493 1493
   public function getContests()
1494 1494
   {
1495
-    return $this->contests;
1495
+	return $this->contests;
1496 1496
   }
1497 1497
   public function setDropOffLocations($dropOffLocations)
1498 1498
   {
1499
-    $this->dropOffLocations = $dropOffLocations;
1499
+	$this->dropOffLocations = $dropOffLocations;
1500 1500
   }
1501 1501
   public function getDropOffLocations()
1502 1502
   {
1503
-    return $this->dropOffLocations;
1503
+	return $this->dropOffLocations;
1504 1504
   }
1505 1505
   public function setEarlyVoteSites($earlyVoteSites)
1506 1506
   {
1507
-    $this->earlyVoteSites = $earlyVoteSites;
1507
+	$this->earlyVoteSites = $earlyVoteSites;
1508 1508
   }
1509 1509
   public function getEarlyVoteSites()
1510 1510
   {
1511
-    return $this->earlyVoteSites;
1511
+	return $this->earlyVoteSites;
1512 1512
   }
1513 1513
   public function setElection(Google_Service_CivicInfo_Election $election)
1514 1514
   {
1515
-    $this->election = $election;
1515
+	$this->election = $election;
1516 1516
   }
1517 1517
   public function getElection()
1518 1518
   {
1519
-    return $this->election;
1519
+	return $this->election;
1520 1520
   }
1521 1521
   public function setKind($kind)
1522 1522
   {
1523
-    $this->kind = $kind;
1523
+	$this->kind = $kind;
1524 1524
   }
1525 1525
   public function getKind()
1526 1526
   {
1527
-    return $this->kind;
1527
+	return $this->kind;
1528 1528
   }
1529 1529
   public function setNormalizedInput(Google_Service_CivicInfo_SimpleAddressType $normalizedInput)
1530 1530
   {
1531
-    $this->normalizedInput = $normalizedInput;
1531
+	$this->normalizedInput = $normalizedInput;
1532 1532
   }
1533 1533
   public function getNormalizedInput()
1534 1534
   {
1535
-    return $this->normalizedInput;
1535
+	return $this->normalizedInput;
1536 1536
   }
1537 1537
   public function setOtherElections($otherElections)
1538 1538
   {
1539
-    $this->otherElections = $otherElections;
1539
+	$this->otherElections = $otherElections;
1540 1540
   }
1541 1541
   public function getOtherElections()
1542 1542
   {
1543
-    return $this->otherElections;
1543
+	return $this->otherElections;
1544 1544
   }
1545 1545
   public function setPollingLocations($pollingLocations)
1546 1546
   {
1547
-    $this->pollingLocations = $pollingLocations;
1547
+	$this->pollingLocations = $pollingLocations;
1548 1548
   }
1549 1549
   public function getPollingLocations()
1550 1550
   {
1551
-    return $this->pollingLocations;
1551
+	return $this->pollingLocations;
1552 1552
   }
1553 1553
   public function setPrecinctId($precinctId)
1554 1554
   {
1555
-    $this->precinctId = $precinctId;
1555
+	$this->precinctId = $precinctId;
1556 1556
   }
1557 1557
   public function getPrecinctId()
1558 1558
   {
1559
-    return $this->precinctId;
1559
+	return $this->precinctId;
1560 1560
   }
1561 1561
   public function setState($state)
1562 1562
   {
1563
-    $this->state = $state;
1563
+	$this->state = $state;
1564 1564
   }
1565 1565
   public function getState()
1566 1566
   {
1567
-    return $this->state;
1567
+	return $this->state;
1568 1568
   }
1569 1569
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
               'path' => 'elections',
80 80
               'httpMethod' => 'GET',
81 81
               'parameters' => array(),
82
-            ),'voterInfoQuery' => array(
82
+            ), 'voterInfoQuery' => array(
83 83
               'path' => 'voterinfo',
84 84
               'httpMethod' => 'GET',
85 85
               'parameters' => array(
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                   'type' => 'string',
131 131
                 ),
132 132
               ),
133
-            ),'representativeInfoByDivision' => array(
133
+            ), 'representativeInfoByDivision' => array(
134 134
               'path' => 'representatives/{ocdId}',
135 135
               'httpMethod' => 'GET',
136 136
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/Computeaccounts.php 2 patches
Indentation   +569 added lines, -569 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@  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
   /** New Service: https://www.googleapis.com/auth/computeaccounts. */
37 37
   const COMPUTEACCOUNTS =
38
-      "https://www.googleapis.com/auth/computeaccounts";
38
+	  "https://www.googleapis.com/auth/computeaccounts";
39 39
   /** New Service: https://www.googleapis.com/auth/computeaccounts.readonly. */
40 40
   const COMPUTEACCOUNTS_READONLY =
41
-      "https://www.googleapis.com/auth/computeaccounts.readonly";
41
+	  "https://www.googleapis.com/auth/computeaccounts.readonly";
42 42
 
43 43
   public $globalAccountsOperations;
44 44
   public $groups;
@@ -53,353 +53,353 @@  discard block
 block discarded – undo
53 53
    */
54 54
   public function __construct(Google_Client $client)
55 55
   {
56
-    parent::__construct($client);
57
-    $this->servicePath = 'computeaccounts/alpha/projects/';
58
-    $this->version = 'alpha';
59
-    $this->serviceName = 'computeaccounts';
60
-
61
-    $this->globalAccountsOperations = new Google_Service_Computeaccounts_GlobalAccountsOperations_Resource(
62
-        $this,
63
-        $this->serviceName,
64
-        'globalAccountsOperations',
65
-        array(
66
-          'methods' => array(
67
-            'delete' => array(
68
-              'path' => '{project}/global/operations/{operation}',
69
-              'httpMethod' => 'DELETE',
70
-              'parameters' => array(
71
-                'project' => array(
72
-                  'location' => 'path',
73
-                  'type' => 'string',
74
-                  'required' => true,
75
-                ),
76
-                'operation' => array(
77
-                  'location' => 'path',
78
-                  'type' => 'string',
79
-                  'required' => true,
80
-                ),
81
-              ),
82
-            ),'get' => array(
83
-              'path' => '{project}/global/operations/{operation}',
84
-              'httpMethod' => 'GET',
85
-              'parameters' => array(
86
-                'project' => array(
87
-                  'location' => 'path',
88
-                  'type' => 'string',
89
-                  'required' => true,
90
-                ),
91
-                'operation' => array(
92
-                  'location' => 'path',
93
-                  'type' => 'string',
94
-                  'required' => true,
95
-                ),
96
-              ),
97
-            ),'list' => array(
98
-              'path' => '{project}/global/operations',
99
-              'httpMethod' => 'GET',
100
-              'parameters' => array(
101
-                'project' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-                'filter' => array(
107
-                  'location' => 'query',
108
-                  'type' => 'string',
109
-                ),
110
-                'pageToken' => array(
111
-                  'location' => 'query',
112
-                  'type' => 'string',
113
-                ),
114
-                'maxResults' => array(
115
-                  'location' => 'query',
116
-                  'type' => 'integer',
117
-                ),
118
-              ),
119
-            ),
120
-          )
121
-        )
122
-    );
123
-    $this->groups = new Google_Service_Computeaccounts_Groups_Resource(
124
-        $this,
125
-        $this->serviceName,
126
-        'groups',
127
-        array(
128
-          'methods' => array(
129
-            'addMember' => array(
130
-              'path' => '{project}/global/groups/{groupName}/addMember',
131
-              'httpMethod' => 'POST',
132
-              'parameters' => array(
133
-                'project' => array(
134
-                  'location' => 'path',
135
-                  'type' => 'string',
136
-                  'required' => true,
137
-                ),
138
-                'groupName' => array(
139
-                  'location' => 'path',
140
-                  'type' => 'string',
141
-                  'required' => true,
142
-                ),
143
-              ),
144
-            ),'delete' => array(
145
-              'path' => '{project}/global/groups/{groupName}',
146
-              'httpMethod' => 'DELETE',
147
-              'parameters' => array(
148
-                'project' => array(
149
-                  'location' => 'path',
150
-                  'type' => 'string',
151
-                  'required' => true,
152
-                ),
153
-                'groupName' => array(
154
-                  'location' => 'path',
155
-                  'type' => 'string',
156
-                  'required' => true,
157
-                ),
158
-              ),
159
-            ),'get' => array(
160
-              'path' => '{project}/global/groups/{groupName}',
161
-              'httpMethod' => 'GET',
162
-              'parameters' => array(
163
-                'project' => array(
164
-                  'location' => 'path',
165
-                  'type' => 'string',
166
-                  'required' => true,
167
-                ),
168
-                'groupName' => array(
169
-                  'location' => 'path',
170
-                  'type' => 'string',
171
-                  'required' => true,
172
-                ),
173
-              ),
174
-            ),'insert' => array(
175
-              'path' => '{project}/global/groups',
176
-              'httpMethod' => 'POST',
177
-              'parameters' => array(
178
-                'project' => array(
179
-                  'location' => 'path',
180
-                  'type' => 'string',
181
-                  'required' => true,
182
-                ),
183
-              ),
184
-            ),'list' => array(
185
-              'path' => '{project}/global/groups',
186
-              'httpMethod' => 'GET',
187
-              'parameters' => array(
188
-                'project' => array(
189
-                  'location' => 'path',
190
-                  'type' => 'string',
191
-                  'required' => true,
192
-                ),
193
-                'filter' => array(
194
-                  'location' => 'query',
195
-                  'type' => 'string',
196
-                ),
197
-                'pageToken' => array(
198
-                  'location' => 'query',
199
-                  'type' => 'string',
200
-                ),
201
-                'maxResults' => array(
202
-                  'location' => 'query',
203
-                  'type' => 'integer',
204
-                ),
205
-              ),
206
-            ),'removeMember' => array(
207
-              'path' => '{project}/global/groups/{groupName}/removeMember',
208
-              'httpMethod' => 'POST',
209
-              'parameters' => array(
210
-                'project' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'string',
213
-                  'required' => true,
214
-                ),
215
-                'groupName' => array(
216
-                  'location' => 'path',
217
-                  'type' => 'string',
218
-                  'required' => true,
219
-                ),
220
-              ),
221
-            ),
222
-          )
223
-        )
224
-    );
225
-    $this->linux = new Google_Service_Computeaccounts_Linux_Resource(
226
-        $this,
227
-        $this->serviceName,
228
-        'linux',
229
-        array(
230
-          'methods' => array(
231
-            'getAuthorizedKeysView' => array(
232
-              'path' => '{project}/zones/{zone}/authorizedKeysView/{user}',
233
-              'httpMethod' => 'POST',
234
-              'parameters' => array(
235
-                'project' => array(
236
-                  'location' => 'path',
237
-                  'type' => 'string',
238
-                  'required' => true,
239
-                ),
240
-                'zone' => array(
241
-                  'location' => 'path',
242
-                  'type' => 'string',
243
-                  'required' => true,
244
-                ),
245
-                'user' => array(
246
-                  'location' => 'path',
247
-                  'type' => 'string',
248
-                  'required' => true,
249
-                ),
250
-                'instance' => array(
251
-                  'location' => 'query',
252
-                  'type' => 'string',
253
-                  'required' => true,
254
-                ),
255
-              ),
256
-            ),'getLinuxAccountViews' => array(
257
-              'path' => '{project}/zones/{zone}/linuxAccountViews',
258
-              'httpMethod' => 'POST',
259
-              'parameters' => array(
260
-                'project' => array(
261
-                  'location' => 'path',
262
-                  'type' => 'string',
263
-                  'required' => true,
264
-                ),
265
-                'zone' => array(
266
-                  'location' => 'path',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-                'instance' => array(
271
-                  'location' => 'query',
272
-                  'type' => 'string',
273
-                  'required' => true,
274
-                ),
275
-                'pageToken' => array(
276
-                  'location' => 'query',
277
-                  'type' => 'string',
278
-                ),
279
-                'maxResults' => array(
280
-                  'location' => 'query',
281
-                  'type' => 'integer',
282
-                ),
283
-                'filter' => array(
284
-                  'location' => 'query',
285
-                  'type' => 'string',
286
-                ),
287
-                'user' => array(
288
-                  'location' => 'query',
289
-                  'type' => 'string',
290
-                ),
291
-              ),
292
-            ),
293
-          )
294
-        )
295
-    );
296
-    $this->users = new Google_Service_Computeaccounts_Users_Resource(
297
-        $this,
298
-        $this->serviceName,
299
-        'users',
300
-        array(
301
-          'methods' => array(
302
-            'addPublicKey' => array(
303
-              'path' => '{project}/global/users/{user}/addPublicKey',
304
-              'httpMethod' => 'POST',
305
-              'parameters' => array(
306
-                'project' => array(
307
-                  'location' => 'path',
308
-                  'type' => 'string',
309
-                  'required' => true,
310
-                ),
311
-                'user' => array(
312
-                  'location' => 'path',
313
-                  'type' => 'string',
314
-                  'required' => true,
315
-                ),
316
-              ),
317
-            ),'delete' => array(
318
-              'path' => '{project}/global/users/{user}',
319
-              'httpMethod' => 'DELETE',
320
-              'parameters' => array(
321
-                'project' => array(
322
-                  'location' => 'path',
323
-                  'type' => 'string',
324
-                  'required' => true,
325
-                ),
326
-                'user' => array(
327
-                  'location' => 'path',
328
-                  'type' => 'string',
329
-                  'required' => true,
330
-                ),
331
-              ),
332
-            ),'get' => array(
333
-              'path' => '{project}/global/users/{user}',
334
-              'httpMethod' => 'GET',
335
-              'parameters' => array(
336
-                'project' => array(
337
-                  'location' => 'path',
338
-                  'type' => 'string',
339
-                  'required' => true,
340
-                ),
341
-                'user' => array(
342
-                  'location' => 'path',
343
-                  'type' => 'string',
344
-                  'required' => true,
345
-                ),
346
-              ),
347
-            ),'insert' => array(
348
-              'path' => '{project}/global/users',
349
-              'httpMethod' => 'POST',
350
-              'parameters' => array(
351
-                'project' => array(
352
-                  'location' => 'path',
353
-                  'type' => 'string',
354
-                  'required' => true,
355
-                ),
356
-              ),
357
-            ),'list' => array(
358
-              'path' => '{project}/global/users',
359
-              'httpMethod' => 'GET',
360
-              'parameters' => array(
361
-                'project' => array(
362
-                  'location' => 'path',
363
-                  'type' => 'string',
364
-                  'required' => true,
365
-                ),
366
-                'filter' => array(
367
-                  'location' => 'query',
368
-                  'type' => 'string',
369
-                ),
370
-                'pageToken' => array(
371
-                  'location' => 'query',
372
-                  'type' => 'string',
373
-                ),
374
-                'maxResults' => array(
375
-                  'location' => 'query',
376
-                  'type' => 'integer',
377
-                ),
378
-              ),
379
-            ),'removePublicKey' => array(
380
-              'path' => '{project}/global/users/{user}/removePublicKey',
381
-              'httpMethod' => 'POST',
382
-              'parameters' => array(
383
-                'project' => array(
384
-                  'location' => 'path',
385
-                  'type' => 'string',
386
-                  'required' => true,
387
-                ),
388
-                'user' => array(
389
-                  'location' => 'path',
390
-                  'type' => 'string',
391
-                  'required' => true,
392
-                ),
393
-                'fingerprint' => array(
394
-                  'location' => 'query',
395
-                  'type' => 'string',
396
-                  'required' => true,
397
-                ),
398
-              ),
399
-            ),
400
-          )
401
-        )
402
-    );
56
+	parent::__construct($client);
57
+	$this->servicePath = 'computeaccounts/alpha/projects/';
58
+	$this->version = 'alpha';
59
+	$this->serviceName = 'computeaccounts';
60
+
61
+	$this->globalAccountsOperations = new Google_Service_Computeaccounts_GlobalAccountsOperations_Resource(
62
+		$this,
63
+		$this->serviceName,
64
+		'globalAccountsOperations',
65
+		array(
66
+		  'methods' => array(
67
+			'delete' => array(
68
+			  'path' => '{project}/global/operations/{operation}',
69
+			  'httpMethod' => 'DELETE',
70
+			  'parameters' => array(
71
+				'project' => array(
72
+				  'location' => 'path',
73
+				  'type' => 'string',
74
+				  'required' => true,
75
+				),
76
+				'operation' => array(
77
+				  'location' => 'path',
78
+				  'type' => 'string',
79
+				  'required' => true,
80
+				),
81
+			  ),
82
+			),'get' => array(
83
+			  'path' => '{project}/global/operations/{operation}',
84
+			  'httpMethod' => 'GET',
85
+			  'parameters' => array(
86
+				'project' => array(
87
+				  'location' => 'path',
88
+				  'type' => 'string',
89
+				  'required' => true,
90
+				),
91
+				'operation' => array(
92
+				  'location' => 'path',
93
+				  'type' => 'string',
94
+				  'required' => true,
95
+				),
96
+			  ),
97
+			),'list' => array(
98
+			  'path' => '{project}/global/operations',
99
+			  'httpMethod' => 'GET',
100
+			  'parameters' => array(
101
+				'project' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+				'filter' => array(
107
+				  'location' => 'query',
108
+				  'type' => 'string',
109
+				),
110
+				'pageToken' => array(
111
+				  'location' => 'query',
112
+				  'type' => 'string',
113
+				),
114
+				'maxResults' => array(
115
+				  'location' => 'query',
116
+				  'type' => 'integer',
117
+				),
118
+			  ),
119
+			),
120
+		  )
121
+		)
122
+	);
123
+	$this->groups = new Google_Service_Computeaccounts_Groups_Resource(
124
+		$this,
125
+		$this->serviceName,
126
+		'groups',
127
+		array(
128
+		  'methods' => array(
129
+			'addMember' => array(
130
+			  'path' => '{project}/global/groups/{groupName}/addMember',
131
+			  'httpMethod' => 'POST',
132
+			  'parameters' => array(
133
+				'project' => array(
134
+				  'location' => 'path',
135
+				  'type' => 'string',
136
+				  'required' => true,
137
+				),
138
+				'groupName' => array(
139
+				  'location' => 'path',
140
+				  'type' => 'string',
141
+				  'required' => true,
142
+				),
143
+			  ),
144
+			),'delete' => array(
145
+			  'path' => '{project}/global/groups/{groupName}',
146
+			  'httpMethod' => 'DELETE',
147
+			  'parameters' => array(
148
+				'project' => array(
149
+				  'location' => 'path',
150
+				  'type' => 'string',
151
+				  'required' => true,
152
+				),
153
+				'groupName' => array(
154
+				  'location' => 'path',
155
+				  'type' => 'string',
156
+				  'required' => true,
157
+				),
158
+			  ),
159
+			),'get' => array(
160
+			  'path' => '{project}/global/groups/{groupName}',
161
+			  'httpMethod' => 'GET',
162
+			  'parameters' => array(
163
+				'project' => array(
164
+				  'location' => 'path',
165
+				  'type' => 'string',
166
+				  'required' => true,
167
+				),
168
+				'groupName' => array(
169
+				  'location' => 'path',
170
+				  'type' => 'string',
171
+				  'required' => true,
172
+				),
173
+			  ),
174
+			),'insert' => array(
175
+			  'path' => '{project}/global/groups',
176
+			  'httpMethod' => 'POST',
177
+			  'parameters' => array(
178
+				'project' => array(
179
+				  'location' => 'path',
180
+				  'type' => 'string',
181
+				  'required' => true,
182
+				),
183
+			  ),
184
+			),'list' => array(
185
+			  'path' => '{project}/global/groups',
186
+			  'httpMethod' => 'GET',
187
+			  'parameters' => array(
188
+				'project' => array(
189
+				  'location' => 'path',
190
+				  'type' => 'string',
191
+				  'required' => true,
192
+				),
193
+				'filter' => array(
194
+				  'location' => 'query',
195
+				  'type' => 'string',
196
+				),
197
+				'pageToken' => array(
198
+				  'location' => 'query',
199
+				  'type' => 'string',
200
+				),
201
+				'maxResults' => array(
202
+				  'location' => 'query',
203
+				  'type' => 'integer',
204
+				),
205
+			  ),
206
+			),'removeMember' => array(
207
+			  'path' => '{project}/global/groups/{groupName}/removeMember',
208
+			  'httpMethod' => 'POST',
209
+			  'parameters' => array(
210
+				'project' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'string',
213
+				  'required' => true,
214
+				),
215
+				'groupName' => array(
216
+				  'location' => 'path',
217
+				  'type' => 'string',
218
+				  'required' => true,
219
+				),
220
+			  ),
221
+			),
222
+		  )
223
+		)
224
+	);
225
+	$this->linux = new Google_Service_Computeaccounts_Linux_Resource(
226
+		$this,
227
+		$this->serviceName,
228
+		'linux',
229
+		array(
230
+		  'methods' => array(
231
+			'getAuthorizedKeysView' => array(
232
+			  'path' => '{project}/zones/{zone}/authorizedKeysView/{user}',
233
+			  'httpMethod' => 'POST',
234
+			  'parameters' => array(
235
+				'project' => array(
236
+				  'location' => 'path',
237
+				  'type' => 'string',
238
+				  'required' => true,
239
+				),
240
+				'zone' => array(
241
+				  'location' => 'path',
242
+				  'type' => 'string',
243
+				  'required' => true,
244
+				),
245
+				'user' => array(
246
+				  'location' => 'path',
247
+				  'type' => 'string',
248
+				  'required' => true,
249
+				),
250
+				'instance' => array(
251
+				  'location' => 'query',
252
+				  'type' => 'string',
253
+				  'required' => true,
254
+				),
255
+			  ),
256
+			),'getLinuxAccountViews' => array(
257
+			  'path' => '{project}/zones/{zone}/linuxAccountViews',
258
+			  'httpMethod' => 'POST',
259
+			  'parameters' => array(
260
+				'project' => array(
261
+				  'location' => 'path',
262
+				  'type' => 'string',
263
+				  'required' => true,
264
+				),
265
+				'zone' => array(
266
+				  'location' => 'path',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+				'instance' => array(
271
+				  'location' => 'query',
272
+				  'type' => 'string',
273
+				  'required' => true,
274
+				),
275
+				'pageToken' => array(
276
+				  'location' => 'query',
277
+				  'type' => 'string',
278
+				),
279
+				'maxResults' => array(
280
+				  'location' => 'query',
281
+				  'type' => 'integer',
282
+				),
283
+				'filter' => array(
284
+				  'location' => 'query',
285
+				  'type' => 'string',
286
+				),
287
+				'user' => array(
288
+				  'location' => 'query',
289
+				  'type' => 'string',
290
+				),
291
+			  ),
292
+			),
293
+		  )
294
+		)
295
+	);
296
+	$this->users = new Google_Service_Computeaccounts_Users_Resource(
297
+		$this,
298
+		$this->serviceName,
299
+		'users',
300
+		array(
301
+		  'methods' => array(
302
+			'addPublicKey' => array(
303
+			  'path' => '{project}/global/users/{user}/addPublicKey',
304
+			  'httpMethod' => 'POST',
305
+			  'parameters' => array(
306
+				'project' => array(
307
+				  'location' => 'path',
308
+				  'type' => 'string',
309
+				  'required' => true,
310
+				),
311
+				'user' => array(
312
+				  'location' => 'path',
313
+				  'type' => 'string',
314
+				  'required' => true,
315
+				),
316
+			  ),
317
+			),'delete' => array(
318
+			  'path' => '{project}/global/users/{user}',
319
+			  'httpMethod' => 'DELETE',
320
+			  'parameters' => array(
321
+				'project' => array(
322
+				  'location' => 'path',
323
+				  'type' => 'string',
324
+				  'required' => true,
325
+				),
326
+				'user' => array(
327
+				  'location' => 'path',
328
+				  'type' => 'string',
329
+				  'required' => true,
330
+				),
331
+			  ),
332
+			),'get' => array(
333
+			  'path' => '{project}/global/users/{user}',
334
+			  'httpMethod' => 'GET',
335
+			  'parameters' => array(
336
+				'project' => array(
337
+				  'location' => 'path',
338
+				  'type' => 'string',
339
+				  'required' => true,
340
+				),
341
+				'user' => array(
342
+				  'location' => 'path',
343
+				  'type' => 'string',
344
+				  'required' => true,
345
+				),
346
+			  ),
347
+			),'insert' => array(
348
+			  'path' => '{project}/global/users',
349
+			  'httpMethod' => 'POST',
350
+			  'parameters' => array(
351
+				'project' => array(
352
+				  'location' => 'path',
353
+				  'type' => 'string',
354
+				  'required' => true,
355
+				),
356
+			  ),
357
+			),'list' => array(
358
+			  'path' => '{project}/global/users',
359
+			  'httpMethod' => 'GET',
360
+			  'parameters' => array(
361
+				'project' => array(
362
+				  'location' => 'path',
363
+				  'type' => 'string',
364
+				  'required' => true,
365
+				),
366
+				'filter' => array(
367
+				  'location' => 'query',
368
+				  'type' => 'string',
369
+				),
370
+				'pageToken' => array(
371
+				  'location' => 'query',
372
+				  'type' => 'string',
373
+				),
374
+				'maxResults' => array(
375
+				  'location' => 'query',
376
+				  'type' => 'integer',
377
+				),
378
+			  ),
379
+			),'removePublicKey' => array(
380
+			  'path' => '{project}/global/users/{user}/removePublicKey',
381
+			  'httpMethod' => 'POST',
382
+			  'parameters' => array(
383
+				'project' => array(
384
+				  'location' => 'path',
385
+				  'type' => 'string',
386
+				  'required' => true,
387
+				),
388
+				'user' => array(
389
+				  'location' => 'path',
390
+				  'type' => 'string',
391
+				  'required' => true,
392
+				),
393
+				'fingerprint' => array(
394
+				  'location' => 'query',
395
+				  'type' => 'string',
396
+				  'required' => true,
397
+				),
398
+			  ),
399
+			),
400
+		  )
401
+		)
402
+	);
403 403
   }
404 404
 }
405 405
 
@@ -424,9 +424,9 @@  discard block
 block discarded – undo
424 424
    */
425 425
   public function delete($project, $operation, $optParams = array())
426 426
   {
427
-    $params = array('project' => $project, 'operation' => $operation);
428
-    $params = array_merge($params, $optParams);
429
-    return $this->call('delete', array($params));
427
+	$params = array('project' => $project, 'operation' => $operation);
428
+	$params = array_merge($params, $optParams);
429
+	return $this->call('delete', array($params));
430 430
   }
431 431
 
432 432
   /**
@@ -439,9 +439,9 @@  discard block
 block discarded – undo
439 439
    */
440 440
   public function get($project, $operation, $optParams = array())
441 441
   {
442
-    $params = array('project' => $project, 'operation' => $operation);
443
-    $params = array_merge($params, $optParams);
444
-    return $this->call('get', array($params), "Google_Service_Computeaccounts_Operation");
442
+	$params = array('project' => $project, 'operation' => $operation);
443
+	$params = array_merge($params, $optParams);
444
+	return $this->call('get', array($params), "Google_Service_Computeaccounts_Operation");
445 445
   }
446 446
 
447 447
   /**
@@ -461,9 +461,9 @@  discard block
 block discarded – undo
461 461
    */
462 462
   public function listGlobalAccountsOperations($project, $optParams = array())
463 463
   {
464
-    $params = array('project' => $project);
465
-    $params = array_merge($params, $optParams);
466
-    return $this->call('list', array($params), "Google_Service_Computeaccounts_OperationList");
464
+	$params = array('project' => $project);
465
+	$params = array_merge($params, $optParams);
466
+	return $this->call('list', array($params), "Google_Service_Computeaccounts_OperationList");
467 467
   }
468 468
 }
469 469
 
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
    */
490 490
   public function addMember($project, $groupName, Google_Service_Computeaccounts_GroupsAddMemberRequest $postBody, $optParams = array())
491 491
   {
492
-    $params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody);
493
-    $params = array_merge($params, $optParams);
494
-    return $this->call('addMember', array($params), "Google_Service_Computeaccounts_Operation");
492
+	$params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody);
493
+	$params = array_merge($params, $optParams);
494
+	return $this->call('addMember', array($params), "Google_Service_Computeaccounts_Operation");
495 495
   }
496 496
 
497 497
   /**
@@ -504,9 +504,9 @@  discard block
 block discarded – undo
504 504
    */
505 505
   public function delete($project, $groupName, $optParams = array())
506 506
   {
507
-    $params = array('project' => $project, 'groupName' => $groupName);
508
-    $params = array_merge($params, $optParams);
509
-    return $this->call('delete', array($params), "Google_Service_Computeaccounts_Operation");
507
+	$params = array('project' => $project, 'groupName' => $groupName);
508
+	$params = array_merge($params, $optParams);
509
+	return $this->call('delete', array($params), "Google_Service_Computeaccounts_Operation");
510 510
   }
511 511
 
512 512
   /**
@@ -519,9 +519,9 @@  discard block
 block discarded – undo
519 519
    */
520 520
   public function get($project, $groupName, $optParams = array())
521 521
   {
522
-    $params = array('project' => $project, 'groupName' => $groupName);
523
-    $params = array_merge($params, $optParams);
524
-    return $this->call('get', array($params), "Google_Service_Computeaccounts_Group");
522
+	$params = array('project' => $project, 'groupName' => $groupName);
523
+	$params = array_merge($params, $optParams);
524
+	return $this->call('get', array($params), "Google_Service_Computeaccounts_Group");
525 525
   }
526 526
 
527 527
   /**
@@ -535,9 +535,9 @@  discard block
 block discarded – undo
535 535
    */
536 536
   public function insert($project, Google_Service_Computeaccounts_Group $postBody, $optParams = array())
537 537
   {
538
-    $params = array('project' => $project, 'postBody' => $postBody);
539
-    $params = array_merge($params, $optParams);
540
-    return $this->call('insert', array($params), "Google_Service_Computeaccounts_Operation");
538
+	$params = array('project' => $project, 'postBody' => $postBody);
539
+	$params = array_merge($params, $optParams);
540
+	return $this->call('insert', array($params), "Google_Service_Computeaccounts_Operation");
541 541
   }
542 542
 
543 543
   /**
@@ -557,9 +557,9 @@  discard block
 block discarded – undo
557 557
    */
558 558
   public function listGroups($project, $optParams = array())
559 559
   {
560
-    $params = array('project' => $project);
561
-    $params = array_merge($params, $optParams);
562
-    return $this->call('list', array($params), "Google_Service_Computeaccounts_GroupList");
560
+	$params = array('project' => $project);
561
+	$params = array_merge($params, $optParams);
562
+	return $this->call('list', array($params), "Google_Service_Computeaccounts_GroupList");
563 563
   }
564 564
 
565 565
   /**
@@ -573,9 +573,9 @@  discard block
 block discarded – undo
573 573
    */
574 574
   public function removeMember($project, $groupName, Google_Service_Computeaccounts_GroupsRemoveMemberRequest $postBody, $optParams = array())
575 575
   {
576
-    $params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody);
577
-    $params = array_merge($params, $optParams);
578
-    return $this->call('removeMember', array($params), "Google_Service_Computeaccounts_Operation");
576
+	$params = array('project' => $project, 'groupName' => $groupName, 'postBody' => $postBody);
577
+	$params = array_merge($params, $optParams);
578
+	return $this->call('removeMember', array($params), "Google_Service_Computeaccounts_Operation");
579 579
   }
580 580
 }
581 581
 
@@ -604,9 +604,9 @@  discard block
 block discarded – undo
604 604
    */
605 605
   public function getAuthorizedKeysView($project, $zone, $user, $instance, $optParams = array())
606 606
   {
607
-    $params = array('project' => $project, 'zone' => $zone, 'user' => $user, 'instance' => $instance);
608
-    $params = array_merge($params, $optParams);
609
-    return $this->call('getAuthorizedKeysView', array($params), "Google_Service_Computeaccounts_LinuxGetAuthorizedKeysViewResponse");
607
+	$params = array('project' => $project, 'zone' => $zone, 'user' => $user, 'instance' => $instance);
608
+	$params = array_merge($params, $optParams);
609
+	return $this->call('getAuthorizedKeysView', array($params), "Google_Service_Computeaccounts_LinuxGetAuthorizedKeysViewResponse");
610 610
   }
611 611
 
612 612
   /**
@@ -631,9 +631,9 @@  discard block
 block discarded – undo
631 631
    */
632 632
   public function getLinuxAccountViews($project, $zone, $instance, $optParams = array())
633 633
   {
634
-    $params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
635
-    $params = array_merge($params, $optParams);
636
-    return $this->call('getLinuxAccountViews', array($params), "Google_Service_Computeaccounts_LinuxGetLinuxAccountViewsResponse");
634
+	$params = array('project' => $project, 'zone' => $zone, 'instance' => $instance);
635
+	$params = array_merge($params, $optParams);
636
+	return $this->call('getLinuxAccountViews', array($params), "Google_Service_Computeaccounts_LinuxGetLinuxAccountViewsResponse");
637 637
   }
638 638
 }
639 639
 
@@ -660,9 +660,9 @@  discard block
 block discarded – undo
660 660
    */
661 661
   public function addPublicKey($project, $user, Google_Service_Computeaccounts_PublicKey $postBody, $optParams = array())
662 662
   {
663
-    $params = array('project' => $project, 'user' => $user, 'postBody' => $postBody);
664
-    $params = array_merge($params, $optParams);
665
-    return $this->call('addPublicKey', array($params), "Google_Service_Computeaccounts_Operation");
663
+	$params = array('project' => $project, 'user' => $user, 'postBody' => $postBody);
664
+	$params = array_merge($params, $optParams);
665
+	return $this->call('addPublicKey', array($params), "Google_Service_Computeaccounts_Operation");
666 666
   }
667 667
 
668 668
   /**
@@ -675,9 +675,9 @@  discard block
 block discarded – undo
675 675
    */
676 676
   public function delete($project, $user, $optParams = array())
677 677
   {
678
-    $params = array('project' => $project, 'user' => $user);
679
-    $params = array_merge($params, $optParams);
680
-    return $this->call('delete', array($params), "Google_Service_Computeaccounts_Operation");
678
+	$params = array('project' => $project, 'user' => $user);
679
+	$params = array_merge($params, $optParams);
680
+	return $this->call('delete', array($params), "Google_Service_Computeaccounts_Operation");
681 681
   }
682 682
 
683 683
   /**
@@ -690,9 +690,9 @@  discard block
 block discarded – undo
690 690
    */
691 691
   public function get($project, $user, $optParams = array())
692 692
   {
693
-    $params = array('project' => $project, 'user' => $user);
694
-    $params = array_merge($params, $optParams);
695
-    return $this->call('get', array($params), "Google_Service_Computeaccounts_User");
693
+	$params = array('project' => $project, 'user' => $user);
694
+	$params = array_merge($params, $optParams);
695
+	return $this->call('get', array($params), "Google_Service_Computeaccounts_User");
696 696
   }
697 697
 
698 698
   /**
@@ -706,9 +706,9 @@  discard block
 block discarded – undo
706 706
    */
707 707
   public function insert($project, Google_Service_Computeaccounts_User $postBody, $optParams = array())
708 708
   {
709
-    $params = array('project' => $project, 'postBody' => $postBody);
710
-    $params = array_merge($params, $optParams);
711
-    return $this->call('insert', array($params), "Google_Service_Computeaccounts_Operation");
709
+	$params = array('project' => $project, 'postBody' => $postBody);
710
+	$params = array_merge($params, $optParams);
711
+	return $this->call('insert', array($params), "Google_Service_Computeaccounts_Operation");
712 712
   }
713 713
 
714 714
   /**
@@ -728,9 +728,9 @@  discard block
 block discarded – undo
728 728
    */
729 729
   public function listUsers($project, $optParams = array())
730 730
   {
731
-    $params = array('project' => $project);
732
-    $params = array_merge($params, $optParams);
733
-    return $this->call('list', array($params), "Google_Service_Computeaccounts_UserList");
731
+	$params = array('project' => $project);
732
+	$params = array_merge($params, $optParams);
733
+	return $this->call('list', array($params), "Google_Service_Computeaccounts_UserList");
734 734
   }
735 735
 
736 736
   /**
@@ -746,9 +746,9 @@  discard block
 block discarded – undo
746 746
    */
747 747
   public function removePublicKey($project, $user, $fingerprint, $optParams = array())
748 748
   {
749
-    $params = array('project' => $project, 'user' => $user, 'fingerprint' => $fingerprint);
750
-    $params = array_merge($params, $optParams);
751
-    return $this->call('removePublicKey', array($params), "Google_Service_Computeaccounts_Operation");
749
+	$params = array('project' => $project, 'user' => $user, 'fingerprint' => $fingerprint);
750
+	$params = array_merge($params, $optParams);
751
+	return $this->call('removePublicKey', array($params), "Google_Service_Computeaccounts_Operation");
752 752
   }
753 753
 }
754 754
 
@@ -765,11 +765,11 @@  discard block
 block discarded – undo
765 765
 
766 766
   public function setKeys($keys)
767 767
   {
768
-    $this->keys = $keys;
768
+	$this->keys = $keys;
769 769
   }
770 770
   public function getKeys()
771 771
   {
772
-    return $this->keys;
772
+	return $this->keys;
773 773
   }
774 774
 }
775 775
 
@@ -789,59 +789,59 @@  discard block
 block discarded – undo
789 789
 
790 790
   public function setCreationTimestamp($creationTimestamp)
791 791
   {
792
-    $this->creationTimestamp = $creationTimestamp;
792
+	$this->creationTimestamp = $creationTimestamp;
793 793
   }
794 794
   public function getCreationTimestamp()
795 795
   {
796
-    return $this->creationTimestamp;
796
+	return $this->creationTimestamp;
797 797
   }
798 798
   public function setDescription($description)
799 799
   {
800
-    $this->description = $description;
800
+	$this->description = $description;
801 801
   }
802 802
   public function getDescription()
803 803
   {
804
-    return $this->description;
804
+	return $this->description;
805 805
   }
806 806
   public function setId($id)
807 807
   {
808
-    $this->id = $id;
808
+	$this->id = $id;
809 809
   }
810 810
   public function getId()
811 811
   {
812
-    return $this->id;
812
+	return $this->id;
813 813
   }
814 814
   public function setKind($kind)
815 815
   {
816
-    $this->kind = $kind;
816
+	$this->kind = $kind;
817 817
   }
818 818
   public function getKind()
819 819
   {
820
-    return $this->kind;
820
+	return $this->kind;
821 821
   }
822 822
   public function setMembers($members)
823 823
   {
824
-    $this->members = $members;
824
+	$this->members = $members;
825 825
   }
826 826
   public function getMembers()
827 827
   {
828
-    return $this->members;
828
+	return $this->members;
829 829
   }
830 830
   public function setName($name)
831 831
   {
832
-    $this->name = $name;
832
+	$this->name = $name;
833 833
   }
834 834
   public function getName()
835 835
   {
836
-    return $this->name;
836
+	return $this->name;
837 837
   }
838 838
   public function setSelfLink($selfLink)
839 839
   {
840
-    $this->selfLink = $selfLink;
840
+	$this->selfLink = $selfLink;
841 841
   }
842 842
   public function getSelfLink()
843 843
   {
844
-    return $this->selfLink;
844
+	return $this->selfLink;
845 845
   }
846 846
 }
847 847
 
@@ -860,43 +860,43 @@  discard block
 block discarded – undo
860 860
 
861 861
   public function setId($id)
862 862
   {
863
-    $this->id = $id;
863
+	$this->id = $id;
864 864
   }
865 865
   public function getId()
866 866
   {
867
-    return $this->id;
867
+	return $this->id;
868 868
   }
869 869
   public function setItems($items)
870 870
   {
871
-    $this->items = $items;
871
+	$this->items = $items;
872 872
   }
873 873
   public function getItems()
874 874
   {
875
-    return $this->items;
875
+	return $this->items;
876 876
   }
877 877
   public function setKind($kind)
878 878
   {
879
-    $this->kind = $kind;
879
+	$this->kind = $kind;
880 880
   }
881 881
   public function getKind()
882 882
   {
883
-    return $this->kind;
883
+	return $this->kind;
884 884
   }
885 885
   public function setNextPageToken($nextPageToken)
886 886
   {
887
-    $this->nextPageToken = $nextPageToken;
887
+	$this->nextPageToken = $nextPageToken;
888 888
   }
889 889
   public function getNextPageToken()
890 890
   {
891
-    return $this->nextPageToken;
891
+	return $this->nextPageToken;
892 892
   }
893 893
   public function setSelfLink($selfLink)
894 894
   {
895
-    $this->selfLink = $selfLink;
895
+	$this->selfLink = $selfLink;
896 896
   }
897 897
   public function getSelfLink()
898 898
   {
899
-    return $this->selfLink;
899
+	return $this->selfLink;
900 900
   }
901 901
 }
902 902
 
@@ -910,11 +910,11 @@  discard block
 block discarded – undo
910 910
 
911 911
   public function setUsers($users)
912 912
   {
913
-    $this->users = $users;
913
+	$this->users = $users;
914 914
   }
915 915
   public function getUsers()
916 916
   {
917
-    return $this->users;
917
+	return $this->users;
918 918
   }
919 919
 }
920 920
 
@@ -928,11 +928,11 @@  discard block
 block discarded – undo
928 928
 
929 929
   public function setUsers($users)
930 930
   {
931
-    $this->users = $users;
931
+	$this->users = $users;
932 932
   }
933 933
   public function getUsers()
934 934
   {
935
-    return $this->users;
935
+	return $this->users;
936 936
   }
937 937
 }
938 938
 
@@ -950,27 +950,27 @@  discard block
 block discarded – undo
950 950
 
951 951
   public function setGroupViews($groupViews)
952 952
   {
953
-    $this->groupViews = $groupViews;
953
+	$this->groupViews = $groupViews;
954 954
   }
955 955
   public function getGroupViews()
956 956
   {
957
-    return $this->groupViews;
957
+	return $this->groupViews;
958 958
   }
959 959
   public function setKind($kind)
960 960
   {
961
-    $this->kind = $kind;
961
+	$this->kind = $kind;
962 962
   }
963 963
   public function getKind()
964 964
   {
965
-    return $this->kind;
965
+	return $this->kind;
966 966
   }
967 967
   public function setUserViews($userViews)
968 968
   {
969
-    $this->userViews = $userViews;
969
+	$this->userViews = $userViews;
970 970
   }
971 971
   public function getUserViews()
972 972
   {
973
-    return $this->userViews;
973
+	return $this->userViews;
974 974
   }
975 975
 }
976 976
 
@@ -984,11 +984,11 @@  discard block
 block discarded – undo
984 984
 
985 985
   public function setResource(Google_Service_Computeaccounts_AuthorizedKeysView $resource)
986 986
   {
987
-    $this->resource = $resource;
987
+	$this->resource = $resource;
988 988
   }
989 989
   public function getResource()
990 990
   {
991
-    return $this->resource;
991
+	return $this->resource;
992 992
   }
993 993
 }
994 994
 
@@ -1002,11 +1002,11 @@  discard block
 block discarded – undo
1002 1002
 
1003 1003
   public function setResource(Google_Service_Computeaccounts_LinuxAccountViews $resource)
1004 1004
   {
1005
-    $this->resource = $resource;
1005
+	$this->resource = $resource;
1006 1006
   }
1007 1007
   public function getResource()
1008 1008
   {
1009
-    return $this->resource;
1009
+	return $this->resource;
1010 1010
   }
1011 1011
 }
1012 1012
 
@@ -1022,27 +1022,27 @@  discard block
 block discarded – undo
1022 1022
 
1023 1023
   public function setGid($gid)
1024 1024
   {
1025
-    $this->gid = $gid;
1025
+	$this->gid = $gid;
1026 1026
   }
1027 1027
   public function getGid()
1028 1028
   {
1029
-    return $this->gid;
1029
+	return $this->gid;
1030 1030
   }
1031 1031
   public function setGroupName($groupName)
1032 1032
   {
1033
-    $this->groupName = $groupName;
1033
+	$this->groupName = $groupName;
1034 1034
   }
1035 1035
   public function getGroupName()
1036 1036
   {
1037
-    return $this->groupName;
1037
+	return $this->groupName;
1038 1038
   }
1039 1039
   public function setMembers($members)
1040 1040
   {
1041
-    $this->members = $members;
1041
+	$this->members = $members;
1042 1042
   }
1043 1043
   public function getMembers()
1044 1044
   {
1045
-    return $this->members;
1045
+	return $this->members;
1046 1046
   }
1047 1047
 }
1048 1048
 
@@ -1060,51 +1060,51 @@  discard block
 block discarded – undo
1060 1060
 
1061 1061
   public function setGecos($gecos)
1062 1062
   {
1063
-    $this->gecos = $gecos;
1063
+	$this->gecos = $gecos;
1064 1064
   }
1065 1065
   public function getGecos()
1066 1066
   {
1067
-    return $this->gecos;
1067
+	return $this->gecos;
1068 1068
   }
1069 1069
   public function setGid($gid)
1070 1070
   {
1071
-    $this->gid = $gid;
1071
+	$this->gid = $gid;
1072 1072
   }
1073 1073
   public function getGid()
1074 1074
   {
1075
-    return $this->gid;
1075
+	return $this->gid;
1076 1076
   }
1077 1077
   public function setHomeDirectory($homeDirectory)
1078 1078
   {
1079
-    $this->homeDirectory = $homeDirectory;
1079
+	$this->homeDirectory = $homeDirectory;
1080 1080
   }
1081 1081
   public function getHomeDirectory()
1082 1082
   {
1083
-    return $this->homeDirectory;
1083
+	return $this->homeDirectory;
1084 1084
   }
1085 1085
   public function setShell($shell)
1086 1086
   {
1087
-    $this->shell = $shell;
1087
+	$this->shell = $shell;
1088 1088
   }
1089 1089
   public function getShell()
1090 1090
   {
1091
-    return $this->shell;
1091
+	return $this->shell;
1092 1092
   }
1093 1093
   public function setUid($uid)
1094 1094
   {
1095
-    $this->uid = $uid;
1095
+	$this->uid = $uid;
1096 1096
   }
1097 1097
   public function getUid()
1098 1098
   {
1099
-    return $this->uid;
1099
+	return $this->uid;
1100 1100
   }
1101 1101
   public function setUsername($username)
1102 1102
   {
1103
-    $this->username = $username;
1103
+	$this->username = $username;
1104 1104
   }
1105 1105
   public function getUsername()
1106 1106
   {
1107
-    return $this->username;
1107
+	return $this->username;
1108 1108
   }
1109 1109
 }
1110 1110
 
@@ -1141,179 +1141,179 @@  discard block
 block discarded – undo
1141 1141
 
1142 1142
   public function setClientOperationId($clientOperationId)
1143 1143
   {
1144
-    $this->clientOperationId = $clientOperationId;
1144
+	$this->clientOperationId = $clientOperationId;
1145 1145
   }
1146 1146
   public function getClientOperationId()
1147 1147
   {
1148
-    return $this->clientOperationId;
1148
+	return $this->clientOperationId;
1149 1149
   }
1150 1150
   public function setCreationTimestamp($creationTimestamp)
1151 1151
   {
1152
-    $this->creationTimestamp = $creationTimestamp;
1152
+	$this->creationTimestamp = $creationTimestamp;
1153 1153
   }
1154 1154
   public function getCreationTimestamp()
1155 1155
   {
1156
-    return $this->creationTimestamp;
1156
+	return $this->creationTimestamp;
1157 1157
   }
1158 1158
   public function setEndTime($endTime)
1159 1159
   {
1160
-    $this->endTime = $endTime;
1160
+	$this->endTime = $endTime;
1161 1161
   }
1162 1162
   public function getEndTime()
1163 1163
   {
1164
-    return $this->endTime;
1164
+	return $this->endTime;
1165 1165
   }
1166 1166
   public function setError(Google_Service_Computeaccounts_OperationError $error)
1167 1167
   {
1168
-    $this->error = $error;
1168
+	$this->error = $error;
1169 1169
   }
1170 1170
   public function getError()
1171 1171
   {
1172
-    return $this->error;
1172
+	return $this->error;
1173 1173
   }
1174 1174
   public function setHttpErrorMessage($httpErrorMessage)
1175 1175
   {
1176
-    $this->httpErrorMessage = $httpErrorMessage;
1176
+	$this->httpErrorMessage = $httpErrorMessage;
1177 1177
   }
1178 1178
   public function getHttpErrorMessage()
1179 1179
   {
1180
-    return $this->httpErrorMessage;
1180
+	return $this->httpErrorMessage;
1181 1181
   }
1182 1182
   public function setHttpErrorStatusCode($httpErrorStatusCode)
1183 1183
   {
1184
-    $this->httpErrorStatusCode = $httpErrorStatusCode;
1184
+	$this->httpErrorStatusCode = $httpErrorStatusCode;
1185 1185
   }
1186 1186
   public function getHttpErrorStatusCode()
1187 1187
   {
1188
-    return $this->httpErrorStatusCode;
1188
+	return $this->httpErrorStatusCode;
1189 1189
   }
1190 1190
   public function setId($id)
1191 1191
   {
1192
-    $this->id = $id;
1192
+	$this->id = $id;
1193 1193
   }
1194 1194
   public function getId()
1195 1195
   {
1196
-    return $this->id;
1196
+	return $this->id;
1197 1197
   }
1198 1198
   public function setInsertTime($insertTime)
1199 1199
   {
1200
-    $this->insertTime = $insertTime;
1200
+	$this->insertTime = $insertTime;
1201 1201
   }
1202 1202
   public function getInsertTime()
1203 1203
   {
1204
-    return $this->insertTime;
1204
+	return $this->insertTime;
1205 1205
   }
1206 1206
   public function setKind($kind)
1207 1207
   {
1208
-    $this->kind = $kind;
1208
+	$this->kind = $kind;
1209 1209
   }
1210 1210
   public function getKind()
1211 1211
   {
1212
-    return $this->kind;
1212
+	return $this->kind;
1213 1213
   }
1214 1214
   public function setName($name)
1215 1215
   {
1216
-    $this->name = $name;
1216
+	$this->name = $name;
1217 1217
   }
1218 1218
   public function getName()
1219 1219
   {
1220
-    return $this->name;
1220
+	return $this->name;
1221 1221
   }
1222 1222
   public function setOperationType($operationType)
1223 1223
   {
1224
-    $this->operationType = $operationType;
1224
+	$this->operationType = $operationType;
1225 1225
   }
1226 1226
   public function getOperationType()
1227 1227
   {
1228
-    return $this->operationType;
1228
+	return $this->operationType;
1229 1229
   }
1230 1230
   public function setProgress($progress)
1231 1231
   {
1232
-    $this->progress = $progress;
1232
+	$this->progress = $progress;
1233 1233
   }
1234 1234
   public function getProgress()
1235 1235
   {
1236
-    return $this->progress;
1236
+	return $this->progress;
1237 1237
   }
1238 1238
   public function setRegion($region)
1239 1239
   {
1240
-    $this->region = $region;
1240
+	$this->region = $region;
1241 1241
   }
1242 1242
   public function getRegion()
1243 1243
   {
1244
-    return $this->region;
1244
+	return $this->region;
1245 1245
   }
1246 1246
   public function setSelfLink($selfLink)
1247 1247
   {
1248
-    $this->selfLink = $selfLink;
1248
+	$this->selfLink = $selfLink;
1249 1249
   }
1250 1250
   public function getSelfLink()
1251 1251
   {
1252
-    return $this->selfLink;
1252
+	return $this->selfLink;
1253 1253
   }
1254 1254
   public function setStartTime($startTime)
1255 1255
   {
1256
-    $this->startTime = $startTime;
1256
+	$this->startTime = $startTime;
1257 1257
   }
1258 1258
   public function getStartTime()
1259 1259
   {
1260
-    return $this->startTime;
1260
+	return $this->startTime;
1261 1261
   }
1262 1262
   public function setStatus($status)
1263 1263
   {
1264
-    $this->status = $status;
1264
+	$this->status = $status;
1265 1265
   }
1266 1266
   public function getStatus()
1267 1267
   {
1268
-    return $this->status;
1268
+	return $this->status;
1269 1269
   }
1270 1270
   public function setStatusMessage($statusMessage)
1271 1271
   {
1272
-    $this->statusMessage = $statusMessage;
1272
+	$this->statusMessage = $statusMessage;
1273 1273
   }
1274 1274
   public function getStatusMessage()
1275 1275
   {
1276
-    return $this->statusMessage;
1276
+	return $this->statusMessage;
1277 1277
   }
1278 1278
   public function setTargetId($targetId)
1279 1279
   {
1280
-    $this->targetId = $targetId;
1280
+	$this->targetId = $targetId;
1281 1281
   }
1282 1282
   public function getTargetId()
1283 1283
   {
1284
-    return $this->targetId;
1284
+	return $this->targetId;
1285 1285
   }
1286 1286
   public function setTargetLink($targetLink)
1287 1287
   {
1288
-    $this->targetLink = $targetLink;
1288
+	$this->targetLink = $targetLink;
1289 1289
   }
1290 1290
   public function getTargetLink()
1291 1291
   {
1292
-    return $this->targetLink;
1292
+	return $this->targetLink;
1293 1293
   }
1294 1294
   public function setUser($user)
1295 1295
   {
1296
-    $this->user = $user;
1296
+	$this->user = $user;
1297 1297
   }
1298 1298
   public function getUser()
1299 1299
   {
1300
-    return $this->user;
1300
+	return $this->user;
1301 1301
   }
1302 1302
   public function setWarnings($warnings)
1303 1303
   {
1304
-    $this->warnings = $warnings;
1304
+	$this->warnings = $warnings;
1305 1305
   }
1306 1306
   public function getWarnings()
1307 1307
   {
1308
-    return $this->warnings;
1308
+	return $this->warnings;
1309 1309
   }
1310 1310
   public function setZone($zone)
1311 1311
   {
1312
-    $this->zone = $zone;
1312
+	$this->zone = $zone;
1313 1313
   }
1314 1314
   public function getZone()
1315 1315
   {
1316
-    return $this->zone;
1316
+	return $this->zone;
1317 1317
   }
1318 1318
 }
1319 1319
 
@@ -1328,11 +1328,11 @@  discard block
 block discarded – undo
1328 1328
 
1329 1329
   public function setErrors($errors)
1330 1330
   {
1331
-    $this->errors = $errors;
1331
+	$this->errors = $errors;
1332 1332
   }
1333 1333
   public function getErrors()
1334 1334
   {
1335
-    return $this->errors;
1335
+	return $this->errors;
1336 1336
   }
1337 1337
 }
1338 1338
 
@@ -1347,27 +1347,27 @@  discard block
 block discarded – undo
1347 1347
 
1348 1348
   public function setCode($code)
1349 1349
   {
1350
-    $this->code = $code;
1350
+	$this->code = $code;
1351 1351
   }
1352 1352
   public function getCode()
1353 1353
   {
1354
-    return $this->code;
1354
+	return $this->code;
1355 1355
   }
1356 1356
   public function setLocation($location)
1357 1357
   {
1358
-    $this->location = $location;
1358
+	$this->location = $location;
1359 1359
   }
1360 1360
   public function getLocation()
1361 1361
   {
1362
-    return $this->location;
1362
+	return $this->location;
1363 1363
   }
1364 1364
   public function setMessage($message)
1365 1365
   {
1366
-    $this->message = $message;
1366
+	$this->message = $message;
1367 1367
   }
1368 1368
   public function getMessage()
1369 1369
   {
1370
-    return $this->message;
1370
+	return $this->message;
1371 1371
   }
1372 1372
 }
1373 1373
 
@@ -1386,43 +1386,43 @@  discard block
 block discarded – undo
1386 1386
 
1387 1387
   public function setId($id)
1388 1388
   {
1389
-    $this->id = $id;
1389
+	$this->id = $id;
1390 1390
   }
1391 1391
   public function getId()
1392 1392
   {
1393
-    return $this->id;
1393
+	return $this->id;
1394 1394
   }
1395 1395
   public function setItems($items)
1396 1396
   {
1397
-    $this->items = $items;
1397
+	$this->items = $items;
1398 1398
   }
1399 1399
   public function getItems()
1400 1400
   {
1401
-    return $this->items;
1401
+	return $this->items;
1402 1402
   }
1403 1403
   public function setKind($kind)
1404 1404
   {
1405
-    $this->kind = $kind;
1405
+	$this->kind = $kind;
1406 1406
   }
1407 1407
   public function getKind()
1408 1408
   {
1409
-    return $this->kind;
1409
+	return $this->kind;
1410 1410
   }
1411 1411
   public function setNextPageToken($nextPageToken)
1412 1412
   {
1413
-    $this->nextPageToken = $nextPageToken;
1413
+	$this->nextPageToken = $nextPageToken;
1414 1414
   }
1415 1415
   public function getNextPageToken()
1416 1416
   {
1417
-    return $this->nextPageToken;
1417
+	return $this->nextPageToken;
1418 1418
   }
1419 1419
   public function setSelfLink($selfLink)
1420 1420
   {
1421
-    $this->selfLink = $selfLink;
1421
+	$this->selfLink = $selfLink;
1422 1422
   }
1423 1423
   public function getSelfLink()
1424 1424
   {
1425
-    return $this->selfLink;
1425
+	return $this->selfLink;
1426 1426
   }
1427 1427
 }
1428 1428
 
@@ -1439,27 +1439,27 @@  discard block
 block discarded – undo
1439 1439
 
1440 1440
   public function setCode($code)
1441 1441
   {
1442
-    $this->code = $code;
1442
+	$this->code = $code;
1443 1443
   }
1444 1444
   public function getCode()
1445 1445
   {
1446
-    return $this->code;
1446
+	return $this->code;
1447 1447
   }
1448 1448
   public function setData($data)
1449 1449
   {
1450
-    $this->data = $data;
1450
+	$this->data = $data;
1451 1451
   }
1452 1452
   public function getData()
1453 1453
   {
1454
-    return $this->data;
1454
+	return $this->data;
1455 1455
   }
1456 1456
   public function setMessage($message)
1457 1457
   {
1458
-    $this->message = $message;
1458
+	$this->message = $message;
1459 1459
   }
1460 1460
   public function getMessage()
1461 1461
   {
1462
-    return $this->message;
1462
+	return $this->message;
1463 1463
   }
1464 1464
 }
1465 1465
 
@@ -1473,19 +1473,19 @@  discard block
 block discarded – undo
1473 1473
 
1474 1474
   public function setKey($key)
1475 1475
   {
1476
-    $this->key = $key;
1476
+	$this->key = $key;
1477 1477
   }
1478 1478
   public function getKey()
1479 1479
   {
1480
-    return $this->key;
1480
+	return $this->key;
1481 1481
   }
1482 1482
   public function setValue($value)
1483 1483
   {
1484
-    $this->value = $value;
1484
+	$this->value = $value;
1485 1485
   }
1486 1486
   public function getValue()
1487 1487
   {
1488
-    return $this->value;
1488
+	return $this->value;
1489 1489
   }
1490 1490
 }
1491 1491
 
@@ -1502,43 +1502,43 @@  discard block
 block discarded – undo
1502 1502
 
1503 1503
   public function setCreationTimestamp($creationTimestamp)
1504 1504
   {
1505
-    $this->creationTimestamp = $creationTimestamp;
1505
+	$this->creationTimestamp = $creationTimestamp;
1506 1506
   }
1507 1507
   public function getCreationTimestamp()
1508 1508
   {
1509
-    return $this->creationTimestamp;
1509
+	return $this->creationTimestamp;
1510 1510
   }
1511 1511
   public function setDescription($description)
1512 1512
   {
1513
-    $this->description = $description;
1513
+	$this->description = $description;
1514 1514
   }
1515 1515
   public function getDescription()
1516 1516
   {
1517
-    return $this->description;
1517
+	return $this->description;
1518 1518
   }
1519 1519
   public function setExpirationTimestamp($expirationTimestamp)
1520 1520
   {
1521
-    $this->expirationTimestamp = $expirationTimestamp;
1521
+	$this->expirationTimestamp = $expirationTimestamp;
1522 1522
   }
1523 1523
   public function getExpirationTimestamp()
1524 1524
   {
1525
-    return $this->expirationTimestamp;
1525
+	return $this->expirationTimestamp;
1526 1526
   }
1527 1527
   public function setFingerprint($fingerprint)
1528 1528
   {
1529
-    $this->fingerprint = $fingerprint;
1529
+	$this->fingerprint = $fingerprint;
1530 1530
   }
1531 1531
   public function getFingerprint()
1532 1532
   {
1533
-    return $this->fingerprint;
1533
+	return $this->fingerprint;
1534 1534
   }
1535 1535
   public function setKey($key)
1536 1536
   {
1537
-    $this->key = $key;
1537
+	$this->key = $key;
1538 1538
   }
1539 1539
   public function getKey()
1540 1540
   {
1541
-    return $this->key;
1541
+	return $this->key;
1542 1542
   }
1543 1543
 }
1544 1544
 
@@ -1561,75 +1561,75 @@  discard block
 block discarded – undo
1561 1561
 
1562 1562
   public function setCreationTimestamp($creationTimestamp)
1563 1563
   {
1564
-    $this->creationTimestamp = $creationTimestamp;
1564
+	$this->creationTimestamp = $creationTimestamp;
1565 1565
   }
1566 1566
   public function getCreationTimestamp()
1567 1567
   {
1568
-    return $this->creationTimestamp;
1568
+	return $this->creationTimestamp;
1569 1569
   }
1570 1570
   public function setDescription($description)
1571 1571
   {
1572
-    $this->description = $description;
1572
+	$this->description = $description;
1573 1573
   }
1574 1574
   public function getDescription()
1575 1575
   {
1576
-    return $this->description;
1576
+	return $this->description;
1577 1577
   }
1578 1578
   public function setGroups($groups)
1579 1579
   {
1580
-    $this->groups = $groups;
1580
+	$this->groups = $groups;
1581 1581
   }
1582 1582
   public function getGroups()
1583 1583
   {
1584
-    return $this->groups;
1584
+	return $this->groups;
1585 1585
   }
1586 1586
   public function setId($id)
1587 1587
   {
1588
-    $this->id = $id;
1588
+	$this->id = $id;
1589 1589
   }
1590 1590
   public function getId()
1591 1591
   {
1592
-    return $this->id;
1592
+	return $this->id;
1593 1593
   }
1594 1594
   public function setKind($kind)
1595 1595
   {
1596
-    $this->kind = $kind;
1596
+	$this->kind = $kind;
1597 1597
   }
1598 1598
   public function getKind()
1599 1599
   {
1600
-    return $this->kind;
1600
+	return $this->kind;
1601 1601
   }
1602 1602
   public function setName($name)
1603 1603
   {
1604
-    $this->name = $name;
1604
+	$this->name = $name;
1605 1605
   }
1606 1606
   public function getName()
1607 1607
   {
1608
-    return $this->name;
1608
+	return $this->name;
1609 1609
   }
1610 1610
   public function setOwner($owner)
1611 1611
   {
1612
-    $this->owner = $owner;
1612
+	$this->owner = $owner;
1613 1613
   }
1614 1614
   public function getOwner()
1615 1615
   {
1616
-    return $this->owner;
1616
+	return $this->owner;
1617 1617
   }
1618 1618
   public function setPublicKeys($publicKeys)
1619 1619
   {
1620
-    $this->publicKeys = $publicKeys;
1620
+	$this->publicKeys = $publicKeys;
1621 1621
   }
1622 1622
   public function getPublicKeys()
1623 1623
   {
1624
-    return $this->publicKeys;
1624
+	return $this->publicKeys;
1625 1625
   }
1626 1626
   public function setSelfLink($selfLink)
1627 1627
   {
1628
-    $this->selfLink = $selfLink;
1628
+	$this->selfLink = $selfLink;
1629 1629
   }
1630 1630
   public function getSelfLink()
1631 1631
   {
1632
-    return $this->selfLink;
1632
+	return $this->selfLink;
1633 1633
   }
1634 1634
 }
1635 1635
 
@@ -1648,42 +1648,42 @@  discard block
 block discarded – undo
1648 1648
 
1649 1649
   public function setId($id)
1650 1650
   {
1651
-    $this->id = $id;
1651
+	$this->id = $id;
1652 1652
   }
1653 1653
   public function getId()
1654 1654
   {
1655
-    return $this->id;
1655
+	return $this->id;
1656 1656
   }
1657 1657
   public function setItems($items)
1658 1658
   {
1659
-    $this->items = $items;
1659
+	$this->items = $items;
1660 1660
   }
1661 1661
   public function getItems()
1662 1662
   {
1663
-    return $this->items;
1663
+	return $this->items;
1664 1664
   }
1665 1665
   public function setKind($kind)
1666 1666
   {
1667
-    $this->kind = $kind;
1667
+	$this->kind = $kind;
1668 1668
   }
1669 1669
   public function getKind()
1670 1670
   {
1671
-    return $this->kind;
1671
+	return $this->kind;
1672 1672
   }
1673 1673
   public function setNextPageToken($nextPageToken)
1674 1674
   {
1675
-    $this->nextPageToken = $nextPageToken;
1675
+	$this->nextPageToken = $nextPageToken;
1676 1676
   }
1677 1677
   public function getNextPageToken()
1678 1678
   {
1679
-    return $this->nextPageToken;
1679
+	return $this->nextPageToken;
1680 1680
   }
1681 1681
   public function setSelfLink($selfLink)
1682 1682
   {
1683
-    $this->selfLink = $selfLink;
1683
+	$this->selfLink = $selfLink;
1684 1684
   }
1685 1685
   public function getSelfLink()
1686 1686
   {
1687
-    return $this->selfLink;
1687
+	return $this->selfLink;
1688 1688
   }
1689 1689
 }
Please login to merge, or discard this patch.
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
                   'required' => true,
80 80
                 ),
81 81
               ),
82
-            ),'get' => array(
82
+            ), 'get' => array(
83 83
               'path' => '{project}/global/operations/{operation}',
84 84
               'httpMethod' => 'GET',
85 85
               'parameters' => array(
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                   'required' => true,
95 95
                 ),
96 96
               ),
97
-            ),'list' => array(
97
+            ), 'list' => array(
98 98
               'path' => '{project}/global/operations',
99 99
               'httpMethod' => 'GET',
100 100
               'parameters' => array(
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
                   'required' => true,
142 142
                 ),
143 143
               ),
144
-            ),'delete' => array(
144
+            ), 'delete' => array(
145 145
               'path' => '{project}/global/groups/{groupName}',
146 146
               'httpMethod' => 'DELETE',
147 147
               'parameters' => array(
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                   'required' => true,
157 157
                 ),
158 158
               ),
159
-            ),'get' => array(
159
+            ), 'get' => array(
160 160
               'path' => '{project}/global/groups/{groupName}',
161 161
               'httpMethod' => 'GET',
162 162
               'parameters' => array(
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
                   'required' => true,
172 172
                 ),
173 173
               ),
174
-            ),'insert' => array(
174
+            ), 'insert' => array(
175 175
               'path' => '{project}/global/groups',
176 176
               'httpMethod' => 'POST',
177 177
               'parameters' => array(
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
                   'required' => true,
182 182
                 ),
183 183
               ),
184
-            ),'list' => array(
184
+            ), 'list' => array(
185 185
               'path' => '{project}/global/groups',
186 186
               'httpMethod' => 'GET',
187 187
               'parameters' => array(
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                   'type' => 'integer',
204 204
                 ),
205 205
               ),
206
-            ),'removeMember' => array(
206
+            ), 'removeMember' => array(
207 207
               'path' => '{project}/global/groups/{groupName}/removeMember',
208 208
               'httpMethod' => 'POST',
209 209
               'parameters' => array(
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
                   'required' => true,
254 254
                 ),
255 255
               ),
256
-            ),'getLinuxAccountViews' => array(
256
+            ), 'getLinuxAccountViews' => array(
257 257
               'path' => '{project}/zones/{zone}/linuxAccountViews',
258 258
               'httpMethod' => 'POST',
259 259
               'parameters' => array(
@@ -314,7 +314,7 @@  discard block
 block discarded – undo
314 314
                   'required' => true,
315 315
                 ),
316 316
               ),
317
-            ),'delete' => array(
317
+            ), 'delete' => array(
318 318
               'path' => '{project}/global/users/{user}',
319 319
               'httpMethod' => 'DELETE',
320 320
               'parameters' => array(
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
                   'required' => true,
330 330
                 ),
331 331
               ),
332
-            ),'get' => array(
332
+            ), 'get' => array(
333 333
               'path' => '{project}/global/users/{user}',
334 334
               'httpMethod' => 'GET',
335 335
               'parameters' => array(
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                   'required' => true,
345 345
                 ),
346 346
               ),
347
-            ),'insert' => array(
347
+            ), 'insert' => array(
348 348
               'path' => '{project}/global/users',
349 349
               'httpMethod' => 'POST',
350 350
               'parameters' => array(
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
                   'required' => true,
355 355
                 ),
356 356
               ),
357
-            ),'list' => array(
357
+            ), 'list' => array(
358 358
               'path' => '{project}/global/users',
359 359
               'httpMethod' => 'GET',
360 360
               'parameters' => array(
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
                   'type' => 'integer',
377 377
                 ),
378 378
               ),
379
-            ),'removePublicKey' => array(
379
+            ), 'removePublicKey' => array(
380 380
               'path' => '{project}/global/users/{user}/removePublicKey',
381 381
               'httpMethod' => 'POST',
382 382
               'parameters' => array(
Please login to merge, or discard this patch.