Test Failed
Pull Request — master (#473)
by Kiran
12:54
created
google-api-php-client/src/Google/Service/Resourceviews.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
    * @param string $project The project name of the resource view.
407 407
    * @param string $zone The zone name of the resource view.
408 408
    * @param string $resourceView The name of the resource view.
409
-   * @param Google_ZoneViewsAddResourcesRequest $postBody
409
+   * @param Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody
410 410
    * @param array $optParams Optional parameters.
411 411
    * @return Google_Service_Resourceviews_Operation
412 412
    */
@@ -474,7 +474,7 @@  discard block
 block discarded – undo
474 474
    *
475 475
    * @param string $project The project name of the resource view.
476 476
    * @param string $zone The zone name of the resource view.
477
-   * @param Google_ResourceView $postBody
477
+   * @param Google_Service_Resourceviews_ResourceView $postBody
478 478
    * @param array $optParams Optional parameters.
479 479
    * @return Google_Service_Resourceviews_Operation
480 480
    */
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
    * @param string $project The project name of the resource view.
543 543
    * @param string $zone The zone name of the resource view.
544 544
    * @param string $resourceView The name of the resource view.
545
-   * @param Google_ZoneViewsRemoveResourcesRequest $postBody
545
+   * @param Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody
546 546
    * @param array $optParams Optional parameters.
547 547
    * @return Google_Service_Resourceviews_Operation
548 548
    */
@@ -560,7 +560,7 @@  discard block
 block discarded – undo
560 560
    * @param string $project The project name of the resource view.
561 561
    * @param string $zone The zone name of the resource view.
562 562
    * @param string $resourceView The name of the resource view.
563
-   * @param Google_ZoneViewsSetServiceRequest $postBody
563
+   * @param Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody
564 564
    * @param array $optParams Optional parameters.
565 565
    * @return Google_Service_Resourceviews_Operation
566 566
    */
Please login to merge, or discard this patch.
Indentation   +449 added lines, -449 removed lines patch added patch discarded remove patch
@@ -33,19 +33,19 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your data across Google Cloud Platform services. */
35 35
   const CLOUD_PLATFORM =
36
-      "https://www.googleapis.com/auth/cloud-platform";
36
+	  "https://www.googleapis.com/auth/cloud-platform";
37 37
   /** View and manage your Google Compute Engine resources. */
38 38
   const COMPUTE =
39
-      "https://www.googleapis.com/auth/compute";
39
+	  "https://www.googleapis.com/auth/compute";
40 40
   /** View your Google Compute Engine resources. */
41 41
   const COMPUTE_READONLY =
42
-      "https://www.googleapis.com/auth/compute.readonly";
42
+	  "https://www.googleapis.com/auth/compute.readonly";
43 43
   /** View and manage your Google Cloud Platform management resources and deployment status information. */
44 44
   const NDEV_CLOUDMAN =
45
-      "https://www.googleapis.com/auth/ndev.cloudman";
45
+	  "https://www.googleapis.com/auth/ndev.cloudman";
46 46
   /** View your Google Cloud Platform management resources and deployment status information. */
47 47
   const NDEV_CLOUDMAN_READONLY =
48
-      "https://www.googleapis.com/auth/ndev.cloudman.readonly";
48
+	  "https://www.googleapis.com/auth/ndev.cloudman.readonly";
49 49
 
50 50
   public $zoneOperations;
51 51
   public $zoneViews;
@@ -58,281 +58,281 @@  discard block
 block discarded – undo
58 58
    */
59 59
   public function __construct(Google_Client $client)
60 60
   {
61
-    parent::__construct($client);
62
-    $this->rootUrl = 'https://www.googleapis.com/';
63
-    $this->servicePath = 'resourceviews/v1beta2/projects/';
64
-    $this->version = 'v1beta2';
65
-    $this->serviceName = 'resourceviews';
66
-
67
-    $this->zoneOperations = new Google_Service_Resourceviews_ZoneOperations_Resource(
68
-        $this,
69
-        $this->serviceName,
70
-        'zoneOperations',
71
-        array(
72
-          'methods' => array(
73
-            'get' => array(
74
-              'path' => '{project}/zones/{zone}/operations/{operation}',
75
-              'httpMethod' => 'GET',
76
-              'parameters' => array(
77
-                'project' => array(
78
-                  'location' => 'path',
79
-                  'type' => 'string',
80
-                  'required' => true,
81
-                ),
82
-                'zone' => array(
83
-                  'location' => 'path',
84
-                  'type' => 'string',
85
-                  'required' => true,
86
-                ),
87
-                'operation' => array(
88
-                  'location' => 'path',
89
-                  'type' => 'string',
90
-                  'required' => true,
91
-                ),
92
-              ),
93
-            ),'list' => array(
94
-              'path' => '{project}/zones/{zone}/operations',
95
-              'httpMethod' => 'GET',
96
-              'parameters' => array(
97
-                'project' => array(
98
-                  'location' => 'path',
99
-                  'type' => 'string',
100
-                  'required' => true,
101
-                ),
102
-                'zone' => array(
103
-                  'location' => 'path',
104
-                  'type' => 'string',
105
-                  'required' => true,
106
-                ),
107
-                'filter' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'string',
110
-                ),
111
-                'pageToken' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-                'maxResults' => array(
116
-                  'location' => 'query',
117
-                  'type' => 'integer',
118
-                ),
119
-              ),
120
-            ),
121
-          )
122
-        )
123
-    );
124
-    $this->zoneViews = new Google_Service_Resourceviews_ZoneViews_Resource(
125
-        $this,
126
-        $this->serviceName,
127
-        'zoneViews',
128
-        array(
129
-          'methods' => array(
130
-            'addResources' => array(
131
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources',
132
-              'httpMethod' => 'POST',
133
-              'parameters' => array(
134
-                'project' => array(
135
-                  'location' => 'path',
136
-                  'type' => 'string',
137
-                  'required' => true,
138
-                ),
139
-                'zone' => array(
140
-                  'location' => 'path',
141
-                  'type' => 'string',
142
-                  'required' => true,
143
-                ),
144
-                'resourceView' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-              ),
150
-            ),'delete' => array(
151
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
152
-              'httpMethod' => 'DELETE',
153
-              'parameters' => array(
154
-                'project' => array(
155
-                  'location' => 'path',
156
-                  'type' => 'string',
157
-                  'required' => true,
158
-                ),
159
-                'zone' => array(
160
-                  'location' => 'path',
161
-                  'type' => 'string',
162
-                  'required' => true,
163
-                ),
164
-                'resourceView' => array(
165
-                  'location' => 'path',
166
-                  'type' => 'string',
167
-                  'required' => true,
168
-                ),
169
-              ),
170
-            ),'get' => array(
171
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
172
-              'httpMethod' => 'GET',
173
-              'parameters' => array(
174
-                'project' => array(
175
-                  'location' => 'path',
176
-                  'type' => 'string',
177
-                  'required' => true,
178
-                ),
179
-                'zone' => array(
180
-                  'location' => 'path',
181
-                  'type' => 'string',
182
-                  'required' => true,
183
-                ),
184
-                'resourceView' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-              ),
190
-            ),'getService' => array(
191
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService',
192
-              'httpMethod' => 'POST',
193
-              'parameters' => array(
194
-                'project' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-                'zone' => array(
200
-                  'location' => 'path',
201
-                  'type' => 'string',
202
-                  'required' => true,
203
-                ),
204
-                'resourceView' => array(
205
-                  'location' => 'path',
206
-                  'type' => 'string',
207
-                  'required' => true,
208
-                ),
209
-                'resourceName' => array(
210
-                  'location' => 'query',
211
-                  'type' => 'string',
212
-                ),
213
-              ),
214
-            ),'insert' => array(
215
-              'path' => '{project}/zones/{zone}/resourceViews',
216
-              'httpMethod' => 'POST',
217
-              'parameters' => array(
218
-                'project' => array(
219
-                  'location' => 'path',
220
-                  'type' => 'string',
221
-                  'required' => true,
222
-                ),
223
-                'zone' => array(
224
-                  'location' => 'path',
225
-                  'type' => 'string',
226
-                  'required' => true,
227
-                ),
228
-              ),
229
-            ),'list' => array(
230
-              'path' => '{project}/zones/{zone}/resourceViews',
231
-              'httpMethod' => 'GET',
232
-              'parameters' => array(
233
-                'project' => array(
234
-                  'location' => 'path',
235
-                  'type' => 'string',
236
-                  'required' => true,
237
-                ),
238
-                'zone' => array(
239
-                  'location' => 'path',
240
-                  'type' => 'string',
241
-                  'required' => true,
242
-                ),
243
-                'pageToken' => array(
244
-                  'location' => 'query',
245
-                  'type' => 'string',
246
-                ),
247
-                'maxResults' => array(
248
-                  'location' => 'query',
249
-                  'type' => 'integer',
250
-                ),
251
-              ),
252
-            ),'listResources' => array(
253
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources',
254
-              'httpMethod' => 'GET',
255
-              'parameters' => array(
256
-                'project' => array(
257
-                  'location' => 'path',
258
-                  'type' => 'string',
259
-                  'required' => true,
260
-                ),
261
-                'zone' => array(
262
-                  'location' => 'path',
263
-                  'type' => 'string',
264
-                  'required' => true,
265
-                ),
266
-                'resourceView' => array(
267
-                  'location' => 'path',
268
-                  'type' => 'string',
269
-                  'required' => true,
270
-                ),
271
-                'listState' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'string',
274
-                ),
275
-                'format' => array(
276
-                  'location' => 'query',
277
-                  'type' => 'string',
278
-                ),
279
-                'maxResults' => array(
280
-                  'location' => 'query',
281
-                  'type' => 'integer',
282
-                ),
283
-                'pageToken' => array(
284
-                  'location' => 'query',
285
-                  'type' => 'string',
286
-                ),
287
-                'serviceName' => array(
288
-                  'location' => 'query',
289
-                  'type' => 'string',
290
-                ),
291
-              ),
292
-            ),'removeResources' => array(
293
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources',
294
-              'httpMethod' => 'POST',
295
-              'parameters' => array(
296
-                'project' => array(
297
-                  'location' => 'path',
298
-                  'type' => 'string',
299
-                  'required' => true,
300
-                ),
301
-                'zone' => array(
302
-                  'location' => 'path',
303
-                  'type' => 'string',
304
-                  'required' => true,
305
-                ),
306
-                'resourceView' => array(
307
-                  'location' => 'path',
308
-                  'type' => 'string',
309
-                  'required' => true,
310
-                ),
311
-              ),
312
-            ),'setService' => array(
313
-              'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService',
314
-              'httpMethod' => 'POST',
315
-              'parameters' => array(
316
-                'project' => array(
317
-                  'location' => 'path',
318
-                  'type' => 'string',
319
-                  'required' => true,
320
-                ),
321
-                'zone' => array(
322
-                  'location' => 'path',
323
-                  'type' => 'string',
324
-                  'required' => true,
325
-                ),
326
-                'resourceView' => array(
327
-                  'location' => 'path',
328
-                  'type' => 'string',
329
-                  'required' => true,
330
-                ),
331
-              ),
332
-            ),
333
-          )
334
-        )
335
-    );
61
+	parent::__construct($client);
62
+	$this->rootUrl = 'https://www.googleapis.com/';
63
+	$this->servicePath = 'resourceviews/v1beta2/projects/';
64
+	$this->version = 'v1beta2';
65
+	$this->serviceName = 'resourceviews';
66
+
67
+	$this->zoneOperations = new Google_Service_Resourceviews_ZoneOperations_Resource(
68
+		$this,
69
+		$this->serviceName,
70
+		'zoneOperations',
71
+		array(
72
+		  'methods' => array(
73
+			'get' => array(
74
+			  'path' => '{project}/zones/{zone}/operations/{operation}',
75
+			  'httpMethod' => 'GET',
76
+			  'parameters' => array(
77
+				'project' => array(
78
+				  'location' => 'path',
79
+				  'type' => 'string',
80
+				  'required' => true,
81
+				),
82
+				'zone' => array(
83
+				  'location' => 'path',
84
+				  'type' => 'string',
85
+				  'required' => true,
86
+				),
87
+				'operation' => array(
88
+				  'location' => 'path',
89
+				  'type' => 'string',
90
+				  'required' => true,
91
+				),
92
+			  ),
93
+			),'list' => array(
94
+			  'path' => '{project}/zones/{zone}/operations',
95
+			  'httpMethod' => 'GET',
96
+			  'parameters' => array(
97
+				'project' => array(
98
+				  'location' => 'path',
99
+				  'type' => 'string',
100
+				  'required' => true,
101
+				),
102
+				'zone' => array(
103
+				  'location' => 'path',
104
+				  'type' => 'string',
105
+				  'required' => true,
106
+				),
107
+				'filter' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'string',
110
+				),
111
+				'pageToken' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+				'maxResults' => array(
116
+				  'location' => 'query',
117
+				  'type' => 'integer',
118
+				),
119
+			  ),
120
+			),
121
+		  )
122
+		)
123
+	);
124
+	$this->zoneViews = new Google_Service_Resourceviews_ZoneViews_Resource(
125
+		$this,
126
+		$this->serviceName,
127
+		'zoneViews',
128
+		array(
129
+		  'methods' => array(
130
+			'addResources' => array(
131
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/addResources',
132
+			  'httpMethod' => 'POST',
133
+			  'parameters' => array(
134
+				'project' => array(
135
+				  'location' => 'path',
136
+				  'type' => 'string',
137
+				  'required' => true,
138
+				),
139
+				'zone' => array(
140
+				  'location' => 'path',
141
+				  'type' => 'string',
142
+				  'required' => true,
143
+				),
144
+				'resourceView' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+			  ),
150
+			),'delete' => array(
151
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
152
+			  'httpMethod' => 'DELETE',
153
+			  'parameters' => array(
154
+				'project' => array(
155
+				  'location' => 'path',
156
+				  'type' => 'string',
157
+				  'required' => true,
158
+				),
159
+				'zone' => array(
160
+				  'location' => 'path',
161
+				  'type' => 'string',
162
+				  'required' => true,
163
+				),
164
+				'resourceView' => array(
165
+				  'location' => 'path',
166
+				  'type' => 'string',
167
+				  'required' => true,
168
+				),
169
+			  ),
170
+			),'get' => array(
171
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
172
+			  'httpMethod' => 'GET',
173
+			  'parameters' => array(
174
+				'project' => array(
175
+				  'location' => 'path',
176
+				  'type' => 'string',
177
+				  'required' => true,
178
+				),
179
+				'zone' => array(
180
+				  'location' => 'path',
181
+				  'type' => 'string',
182
+				  'required' => true,
183
+				),
184
+				'resourceView' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+			  ),
190
+			),'getService' => array(
191
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService',
192
+			  'httpMethod' => 'POST',
193
+			  'parameters' => array(
194
+				'project' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+				'zone' => array(
200
+				  'location' => 'path',
201
+				  'type' => 'string',
202
+				  'required' => true,
203
+				),
204
+				'resourceView' => array(
205
+				  'location' => 'path',
206
+				  'type' => 'string',
207
+				  'required' => true,
208
+				),
209
+				'resourceName' => array(
210
+				  'location' => 'query',
211
+				  'type' => 'string',
212
+				),
213
+			  ),
214
+			),'insert' => array(
215
+			  'path' => '{project}/zones/{zone}/resourceViews',
216
+			  'httpMethod' => 'POST',
217
+			  'parameters' => array(
218
+				'project' => array(
219
+				  'location' => 'path',
220
+				  'type' => 'string',
221
+				  'required' => true,
222
+				),
223
+				'zone' => array(
224
+				  'location' => 'path',
225
+				  'type' => 'string',
226
+				  'required' => true,
227
+				),
228
+			  ),
229
+			),'list' => array(
230
+			  'path' => '{project}/zones/{zone}/resourceViews',
231
+			  'httpMethod' => 'GET',
232
+			  'parameters' => array(
233
+				'project' => array(
234
+				  'location' => 'path',
235
+				  'type' => 'string',
236
+				  'required' => true,
237
+				),
238
+				'zone' => array(
239
+				  'location' => 'path',
240
+				  'type' => 'string',
241
+				  'required' => true,
242
+				),
243
+				'pageToken' => array(
244
+				  'location' => 'query',
245
+				  'type' => 'string',
246
+				),
247
+				'maxResults' => array(
248
+				  'location' => 'query',
249
+				  'type' => 'integer',
250
+				),
251
+			  ),
252
+			),'listResources' => array(
253
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources',
254
+			  'httpMethod' => 'GET',
255
+			  'parameters' => array(
256
+				'project' => array(
257
+				  'location' => 'path',
258
+				  'type' => 'string',
259
+				  'required' => true,
260
+				),
261
+				'zone' => array(
262
+				  'location' => 'path',
263
+				  'type' => 'string',
264
+				  'required' => true,
265
+				),
266
+				'resourceView' => array(
267
+				  'location' => 'path',
268
+				  'type' => 'string',
269
+				  'required' => true,
270
+				),
271
+				'listState' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'string',
274
+				),
275
+				'format' => array(
276
+				  'location' => 'query',
277
+				  'type' => 'string',
278
+				),
279
+				'maxResults' => array(
280
+				  'location' => 'query',
281
+				  'type' => 'integer',
282
+				),
283
+				'pageToken' => array(
284
+				  'location' => 'query',
285
+				  'type' => 'string',
286
+				),
287
+				'serviceName' => array(
288
+				  'location' => 'query',
289
+				  'type' => 'string',
290
+				),
291
+			  ),
292
+			),'removeResources' => array(
293
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources',
294
+			  'httpMethod' => 'POST',
295
+			  'parameters' => array(
296
+				'project' => array(
297
+				  'location' => 'path',
298
+				  'type' => 'string',
299
+				  'required' => true,
300
+				),
301
+				'zone' => array(
302
+				  'location' => 'path',
303
+				  'type' => 'string',
304
+				  'required' => true,
305
+				),
306
+				'resourceView' => array(
307
+				  'location' => 'path',
308
+				  'type' => 'string',
309
+				  'required' => true,
310
+				),
311
+			  ),
312
+			),'setService' => array(
313
+			  'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService',
314
+			  'httpMethod' => 'POST',
315
+			  'parameters' => array(
316
+				'project' => array(
317
+				  'location' => 'path',
318
+				  'type' => 'string',
319
+				  'required' => true,
320
+				),
321
+				'zone' => array(
322
+				  'location' => 'path',
323
+				  'type' => 'string',
324
+				  'required' => true,
325
+				),
326
+				'resourceView' => array(
327
+				  'location' => 'path',
328
+				  'type' => 'string',
329
+				  'required' => true,
330
+				),
331
+			  ),
332
+			),
333
+		  )
334
+		)
335
+	);
336 336
   }
337 337
 }
338 338
 
@@ -360,9 +360,9 @@  discard block
 block discarded – undo
360 360
    */
361 361
   public function get($project, $zone, $operation, $optParams = array())
362 362
   {
363
-    $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
364
-    $params = array_merge($params, $optParams);
365
-    return $this->call('get', array($params), "Google_Service_Resourceviews_Operation");
363
+	$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
364
+	$params = array_merge($params, $optParams);
365
+	return $this->call('get', array($params), "Google_Service_Resourceviews_Operation");
366 366
   }
367 367
 
368 368
   /**
@@ -383,9 +383,9 @@  discard block
 block discarded – undo
383 383
    */
384 384
   public function listZoneOperations($project, $zone, $optParams = array())
385 385
   {
386
-    $params = array('project' => $project, 'zone' => $zone);
387
-    $params = array_merge($params, $optParams);
388
-    return $this->call('list', array($params), "Google_Service_Resourceviews_OperationList");
386
+	$params = array('project' => $project, 'zone' => $zone);
387
+	$params = array_merge($params, $optParams);
388
+	return $this->call('list', array($params), "Google_Service_Resourceviews_OperationList");
389 389
   }
390 390
 }
391 391
 
@@ -412,9 +412,9 @@  discard block
 block discarded – undo
412 412
    */
413 413
   public function addResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsAddResourcesRequest $postBody, $optParams = array())
414 414
   {
415
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
416
-    $params = array_merge($params, $optParams);
417
-    return $this->call('addResources', array($params), "Google_Service_Resourceviews_Operation");
415
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
416
+	$params = array_merge($params, $optParams);
417
+	return $this->call('addResources', array($params), "Google_Service_Resourceviews_Operation");
418 418
   }
419 419
 
420 420
   /**
@@ -428,9 +428,9 @@  discard block
 block discarded – undo
428 428
    */
429 429
   public function delete($project, $zone, $resourceView, $optParams = array())
430 430
   {
431
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
432
-    $params = array_merge($params, $optParams);
433
-    return $this->call('delete', array($params), "Google_Service_Resourceviews_Operation");
431
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
432
+	$params = array_merge($params, $optParams);
433
+	return $this->call('delete', array($params), "Google_Service_Resourceviews_Operation");
434 434
   }
435 435
 
436 436
   /**
@@ -444,9 +444,9 @@  discard block
 block discarded – undo
444 444
    */
445 445
   public function get($project, $zone, $resourceView, $optParams = array())
446 446
   {
447
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
448
-    $params = array_merge($params, $optParams);
449
-    return $this->call('get', array($params), "Google_Service_Resourceviews_ResourceView");
447
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
448
+	$params = array_merge($params, $optParams);
449
+	return $this->call('get', array($params), "Google_Service_Resourceviews_ResourceView");
450 450
   }
451 451
 
452 452
   /**
@@ -464,9 +464,9 @@  discard block
 block discarded – undo
464 464
    */
465 465
   public function getService($project, $zone, $resourceView, $optParams = array())
466 466
   {
467
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
468
-    $params = array_merge($params, $optParams);
469
-    return $this->call('getService', array($params), "Google_Service_Resourceviews_ZoneViewsGetServiceResponse");
467
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
468
+	$params = array_merge($params, $optParams);
469
+	return $this->call('getService', array($params), "Google_Service_Resourceviews_ZoneViewsGetServiceResponse");
470 470
   }
471 471
 
472 472
   /**
@@ -480,9 +480,9 @@  discard block
 block discarded – undo
480 480
    */
481 481
   public function insert($project, $zone, Google_Service_Resourceviews_ResourceView $postBody, $optParams = array())
482 482
   {
483
-    $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
484
-    $params = array_merge($params, $optParams);
485
-    return $this->call('insert', array($params), "Google_Service_Resourceviews_Operation");
483
+	$params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
484
+	$params = array_merge($params, $optParams);
485
+	return $this->call('insert', array($params), "Google_Service_Resourceviews_Operation");
486 486
   }
487 487
 
488 488
   /**
@@ -501,9 +501,9 @@  discard block
 block discarded – undo
501 501
    */
502 502
   public function listZoneViews($project, $zone, $optParams = array())
503 503
   {
504
-    $params = array('project' => $project, 'zone' => $zone);
505
-    $params = array_merge($params, $optParams);
506
-    return $this->call('list', array($params), "Google_Service_Resourceviews_ZoneViewsList");
504
+	$params = array('project' => $project, 'zone' => $zone);
505
+	$params = array_merge($params, $optParams);
506
+	return $this->call('list', array($params), "Google_Service_Resourceviews_ZoneViewsList");
507 507
   }
508 508
 
509 509
   /**
@@ -531,9 +531,9 @@  discard block
 block discarded – undo
531 531
    */
532 532
   public function listResources($project, $zone, $resourceView, $optParams = array())
533 533
   {
534
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
535
-    $params = array_merge($params, $optParams);
536
-    return $this->call('listResources', array($params), "Google_Service_Resourceviews_ZoneViewsListResourcesResponse");
534
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView);
535
+	$params = array_merge($params, $optParams);
536
+	return $this->call('listResources', array($params), "Google_Service_Resourceviews_ZoneViewsListResourcesResponse");
537 537
   }
538 538
 
539 539
   /**
@@ -548,9 +548,9 @@  discard block
 block discarded – undo
548 548
    */
549 549
   public function removeResources($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsRemoveResourcesRequest $postBody, $optParams = array())
550 550
   {
551
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
552
-    $params = array_merge($params, $optParams);
553
-    return $this->call('removeResources', array($params), "Google_Service_Resourceviews_Operation");
551
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
552
+	$params = array_merge($params, $optParams);
553
+	return $this->call('removeResources', array($params), "Google_Service_Resourceviews_Operation");
554 554
   }
555 555
 
556 556
   /**
@@ -566,9 +566,9 @@  discard block
 block discarded – undo
566 566
    */
567 567
   public function setService($project, $zone, $resourceView, Google_Service_Resourceviews_ZoneViewsSetServiceRequest $postBody, $optParams = array())
568 568
   {
569
-    $params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
570
-    $params = array_merge($params, $optParams);
571
-    return $this->call('setService', array($params), "Google_Service_Resourceviews_Operation");
569
+	$params = array('project' => $project, 'zone' => $zone, 'resourceView' => $resourceView, 'postBody' => $postBody);
570
+	$params = array_merge($params, $optParams);
571
+	return $this->call('setService', array($params), "Google_Service_Resourceviews_Operation");
572 572
   }
573 573
 }
574 574
 
@@ -585,19 +585,19 @@  discard block
 block discarded – undo
585 585
 
586 586
   public function setKey($key)
587 587
   {
588
-    $this->key = $key;
588
+	$this->key = $key;
589 589
   }
590 590
   public function getKey()
591 591
   {
592
-    return $this->key;
592
+	return $this->key;
593 593
   }
594 594
   public function setValue($value)
595 595
   {
596
-    $this->value = $value;
596
+	$this->value = $value;
597 597
   }
598 598
   public function getValue()
599 599
   {
600
-    return $this->value;
600
+	return $this->value;
601 601
   }
602 602
 }
603 603
 
@@ -611,19 +611,19 @@  discard block
 block discarded – undo
611 611
 
612 612
   public function setEndpoints($endpoints)
613 613
   {
614
-    $this->endpoints = $endpoints;
614
+	$this->endpoints = $endpoints;
615 615
   }
616 616
   public function getEndpoints()
617 617
   {
618
-    return $this->endpoints;
618
+	return $this->endpoints;
619 619
   }
620 620
   public function setResource($resource)
621 621
   {
622
-    $this->resource = $resource;
622
+	$this->resource = $resource;
623 623
   }
624 624
   public function getResource()
625 625
   {
626
-    return $this->resource;
626
+	return $this->resource;
627 627
   }
628 628
 }
629 629
 
@@ -664,179 +664,179 @@  discard block
 block discarded – undo
664 664
 
665 665
   public function setClientOperationId($clientOperationId)
666 666
   {
667
-    $this->clientOperationId = $clientOperationId;
667
+	$this->clientOperationId = $clientOperationId;
668 668
   }
669 669
   public function getClientOperationId()
670 670
   {
671
-    return $this->clientOperationId;
671
+	return $this->clientOperationId;
672 672
   }
673 673
   public function setCreationTimestamp($creationTimestamp)
674 674
   {
675
-    $this->creationTimestamp = $creationTimestamp;
675
+	$this->creationTimestamp = $creationTimestamp;
676 676
   }
677 677
   public function getCreationTimestamp()
678 678
   {
679
-    return $this->creationTimestamp;
679
+	return $this->creationTimestamp;
680 680
   }
681 681
   public function setEndTime($endTime)
682 682
   {
683
-    $this->endTime = $endTime;
683
+	$this->endTime = $endTime;
684 684
   }
685 685
   public function getEndTime()
686 686
   {
687
-    return $this->endTime;
687
+	return $this->endTime;
688 688
   }
689 689
   public function setError(Google_Service_Resourceviews_OperationError $error)
690 690
   {
691
-    $this->error = $error;
691
+	$this->error = $error;
692 692
   }
693 693
   public function getError()
694 694
   {
695
-    return $this->error;
695
+	return $this->error;
696 696
   }
697 697
   public function setHttpErrorMessage($httpErrorMessage)
698 698
   {
699
-    $this->httpErrorMessage = $httpErrorMessage;
699
+	$this->httpErrorMessage = $httpErrorMessage;
700 700
   }
701 701
   public function getHttpErrorMessage()
702 702
   {
703
-    return $this->httpErrorMessage;
703
+	return $this->httpErrorMessage;
704 704
   }
705 705
   public function setHttpErrorStatusCode($httpErrorStatusCode)
706 706
   {
707
-    $this->httpErrorStatusCode = $httpErrorStatusCode;
707
+	$this->httpErrorStatusCode = $httpErrorStatusCode;
708 708
   }
709 709
   public function getHttpErrorStatusCode()
710 710
   {
711
-    return $this->httpErrorStatusCode;
711
+	return $this->httpErrorStatusCode;
712 712
   }
713 713
   public function setId($id)
714 714
   {
715
-    $this->id = $id;
715
+	$this->id = $id;
716 716
   }
717 717
   public function getId()
718 718
   {
719
-    return $this->id;
719
+	return $this->id;
720 720
   }
721 721
   public function setInsertTime($insertTime)
722 722
   {
723
-    $this->insertTime = $insertTime;
723
+	$this->insertTime = $insertTime;
724 724
   }
725 725
   public function getInsertTime()
726 726
   {
727
-    return $this->insertTime;
727
+	return $this->insertTime;
728 728
   }
729 729
   public function setKind($kind)
730 730
   {
731
-    $this->kind = $kind;
731
+	$this->kind = $kind;
732 732
   }
733 733
   public function getKind()
734 734
   {
735
-    return $this->kind;
735
+	return $this->kind;
736 736
   }
737 737
   public function setName($name)
738 738
   {
739
-    $this->name = $name;
739
+	$this->name = $name;
740 740
   }
741 741
   public function getName()
742 742
   {
743
-    return $this->name;
743
+	return $this->name;
744 744
   }
745 745
   public function setOperationType($operationType)
746 746
   {
747
-    $this->operationType = $operationType;
747
+	$this->operationType = $operationType;
748 748
   }
749 749
   public function getOperationType()
750 750
   {
751
-    return $this->operationType;
751
+	return $this->operationType;
752 752
   }
753 753
   public function setProgress($progress)
754 754
   {
755
-    $this->progress = $progress;
755
+	$this->progress = $progress;
756 756
   }
757 757
   public function getProgress()
758 758
   {
759
-    return $this->progress;
759
+	return $this->progress;
760 760
   }
761 761
   public function setRegion($region)
762 762
   {
763
-    $this->region = $region;
763
+	$this->region = $region;
764 764
   }
765 765
   public function getRegion()
766 766
   {
767
-    return $this->region;
767
+	return $this->region;
768 768
   }
769 769
   public function setSelfLink($selfLink)
770 770
   {
771
-    $this->selfLink = $selfLink;
771
+	$this->selfLink = $selfLink;
772 772
   }
773 773
   public function getSelfLink()
774 774
   {
775
-    return $this->selfLink;
775
+	return $this->selfLink;
776 776
   }
777 777
   public function setStartTime($startTime)
778 778
   {
779
-    $this->startTime = $startTime;
779
+	$this->startTime = $startTime;
780 780
   }
781 781
   public function getStartTime()
782 782
   {
783
-    return $this->startTime;
783
+	return $this->startTime;
784 784
   }
785 785
   public function setStatus($status)
786 786
   {
787
-    $this->status = $status;
787
+	$this->status = $status;
788 788
   }
789 789
   public function getStatus()
790 790
   {
791
-    return $this->status;
791
+	return $this->status;
792 792
   }
793 793
   public function setStatusMessage($statusMessage)
794 794
   {
795
-    $this->statusMessage = $statusMessage;
795
+	$this->statusMessage = $statusMessage;
796 796
   }
797 797
   public function getStatusMessage()
798 798
   {
799
-    return $this->statusMessage;
799
+	return $this->statusMessage;
800 800
   }
801 801
   public function setTargetId($targetId)
802 802
   {
803
-    $this->targetId = $targetId;
803
+	$this->targetId = $targetId;
804 804
   }
805 805
   public function getTargetId()
806 806
   {
807
-    return $this->targetId;
807
+	return $this->targetId;
808 808
   }
809 809
   public function setTargetLink($targetLink)
810 810
   {
811
-    $this->targetLink = $targetLink;
811
+	$this->targetLink = $targetLink;
812 812
   }
813 813
   public function getTargetLink()
814 814
   {
815
-    return $this->targetLink;
815
+	return $this->targetLink;
816 816
   }
817 817
   public function setUser($user)
818 818
   {
819
-    $this->user = $user;
819
+	$this->user = $user;
820 820
   }
821 821
   public function getUser()
822 822
   {
823
-    return $this->user;
823
+	return $this->user;
824 824
   }
825 825
   public function setWarnings($warnings)
826 826
   {
827
-    $this->warnings = $warnings;
827
+	$this->warnings = $warnings;
828 828
   }
829 829
   public function getWarnings()
830 830
   {
831
-    return $this->warnings;
831
+	return $this->warnings;
832 832
   }
833 833
   public function setZone($zone)
834 834
   {
835
-    $this->zone = $zone;
835
+	$this->zone = $zone;
836 836
   }
837 837
   public function getZone()
838 838
   {
839
-    return $this->zone;
839
+	return $this->zone;
840 840
   }
841 841
 }
842 842
 
@@ -851,11 +851,11 @@  discard block
 block discarded – undo
851 851
 
852 852
   public function setErrors($errors)
853 853
   {
854
-    $this->errors = $errors;
854
+	$this->errors = $errors;
855 855
   }
856 856
   public function getErrors()
857 857
   {
858
-    return $this->errors;
858
+	return $this->errors;
859 859
   }
860 860
 }
861 861
 
@@ -870,27 +870,27 @@  discard block
 block discarded – undo
870 870
 
871 871
   public function setCode($code)
872 872
   {
873
-    $this->code = $code;
873
+	$this->code = $code;
874 874
   }
875 875
   public function getCode()
876 876
   {
877
-    return $this->code;
877
+	return $this->code;
878 878
   }
879 879
   public function setLocation($location)
880 880
   {
881
-    $this->location = $location;
881
+	$this->location = $location;
882 882
   }
883 883
   public function getLocation()
884 884
   {
885
-    return $this->location;
885
+	return $this->location;
886 886
   }
887 887
   public function setMessage($message)
888 888
   {
889
-    $this->message = $message;
889
+	$this->message = $message;
890 890
   }
891 891
   public function getMessage()
892 892
   {
893
-    return $this->message;
893
+	return $this->message;
894 894
   }
895 895
 }
896 896
 
@@ -909,43 +909,43 @@  discard block
 block discarded – undo
909 909
 
910 910
   public function setId($id)
911 911
   {
912
-    $this->id = $id;
912
+	$this->id = $id;
913 913
   }
914 914
   public function getId()
915 915
   {
916
-    return $this->id;
916
+	return $this->id;
917 917
   }
918 918
   public function setItems($items)
919 919
   {
920
-    $this->items = $items;
920
+	$this->items = $items;
921 921
   }
922 922
   public function getItems()
923 923
   {
924
-    return $this->items;
924
+	return $this->items;
925 925
   }
926 926
   public function setKind($kind)
927 927
   {
928
-    $this->kind = $kind;
928
+	$this->kind = $kind;
929 929
   }
930 930
   public function getKind()
931 931
   {
932
-    return $this->kind;
932
+	return $this->kind;
933 933
   }
934 934
   public function setNextPageToken($nextPageToken)
935 935
   {
936
-    $this->nextPageToken = $nextPageToken;
936
+	$this->nextPageToken = $nextPageToken;
937 937
   }
938 938
   public function getNextPageToken()
939 939
   {
940
-    return $this->nextPageToken;
940
+	return $this->nextPageToken;
941 941
   }
942 942
   public function setSelfLink($selfLink)
943 943
   {
944
-    $this->selfLink = $selfLink;
944
+	$this->selfLink = $selfLink;
945 945
   }
946 946
   public function getSelfLink()
947 947
   {
948
-    return $this->selfLink;
948
+	return $this->selfLink;
949 949
   }
950 950
 }
951 951
 
@@ -962,27 +962,27 @@  discard block
 block discarded – undo
962 962
 
963 963
   public function setCode($code)
964 964
   {
965
-    $this->code = $code;
965
+	$this->code = $code;
966 966
   }
967 967
   public function getCode()
968 968
   {
969
-    return $this->code;
969
+	return $this->code;
970 970
   }
971 971
   public function setData($data)
972 972
   {
973
-    $this->data = $data;
973
+	$this->data = $data;
974 974
   }
975 975
   public function getData()
976 976
   {
977
-    return $this->data;
977
+	return $this->data;
978 978
   }
979 979
   public function setMessage($message)
980 980
   {
981
-    $this->message = $message;
981
+	$this->message = $message;
982 982
   }
983 983
   public function getMessage()
984 984
   {
985
-    return $this->message;
985
+	return $this->message;
986 986
   }
987 987
 }
988 988
 
@@ -996,19 +996,19 @@  discard block
 block discarded – undo
996 996
 
997 997
   public function setKey($key)
998 998
   {
999
-    $this->key = $key;
999
+	$this->key = $key;
1000 1000
   }
1001 1001
   public function getKey()
1002 1002
   {
1003
-    return $this->key;
1003
+	return $this->key;
1004 1004
   }
1005 1005
   public function setValue($value)
1006 1006
   {
1007
-    $this->value = $value;
1007
+	$this->value = $value;
1008 1008
   }
1009 1009
   public function getValue()
1010 1010
   {
1011
-    return $this->value;
1011
+	return $this->value;
1012 1012
   }
1013 1013
 }
1014 1014
 
@@ -1035,99 +1035,99 @@  discard block
 block discarded – undo
1035 1035
 
1036 1036
   public function setCreationTimestamp($creationTimestamp)
1037 1037
   {
1038
-    $this->creationTimestamp = $creationTimestamp;
1038
+	$this->creationTimestamp = $creationTimestamp;
1039 1039
   }
1040 1040
   public function getCreationTimestamp()
1041 1041
   {
1042
-    return $this->creationTimestamp;
1042
+	return $this->creationTimestamp;
1043 1043
   }
1044 1044
   public function setDescription($description)
1045 1045
   {
1046
-    $this->description = $description;
1046
+	$this->description = $description;
1047 1047
   }
1048 1048
   public function getDescription()
1049 1049
   {
1050
-    return $this->description;
1050
+	return $this->description;
1051 1051
   }
1052 1052
   public function setEndpoints($endpoints)
1053 1053
   {
1054
-    $this->endpoints = $endpoints;
1054
+	$this->endpoints = $endpoints;
1055 1055
   }
1056 1056
   public function getEndpoints()
1057 1057
   {
1058
-    return $this->endpoints;
1058
+	return $this->endpoints;
1059 1059
   }
1060 1060
   public function setFingerprint($fingerprint)
1061 1061
   {
1062
-    $this->fingerprint = $fingerprint;
1062
+	$this->fingerprint = $fingerprint;
1063 1063
   }
1064 1064
   public function getFingerprint()
1065 1065
   {
1066
-    return $this->fingerprint;
1066
+	return $this->fingerprint;
1067 1067
   }
1068 1068
   public function setId($id)
1069 1069
   {
1070
-    $this->id = $id;
1070
+	$this->id = $id;
1071 1071
   }
1072 1072
   public function getId()
1073 1073
   {
1074
-    return $this->id;
1074
+	return $this->id;
1075 1075
   }
1076 1076
   public function setKind($kind)
1077 1077
   {
1078
-    $this->kind = $kind;
1078
+	$this->kind = $kind;
1079 1079
   }
1080 1080
   public function getKind()
1081 1081
   {
1082
-    return $this->kind;
1082
+	return $this->kind;
1083 1083
   }
1084 1084
   public function setLabels($labels)
1085 1085
   {
1086
-    $this->labels = $labels;
1086
+	$this->labels = $labels;
1087 1087
   }
1088 1088
   public function getLabels()
1089 1089
   {
1090
-    return $this->labels;
1090
+	return $this->labels;
1091 1091
   }
1092 1092
   public function setName($name)
1093 1093
   {
1094
-    $this->name = $name;
1094
+	$this->name = $name;
1095 1095
   }
1096 1096
   public function getName()
1097 1097
   {
1098
-    return $this->name;
1098
+	return $this->name;
1099 1099
   }
1100 1100
   public function setNetwork($network)
1101 1101
   {
1102
-    $this->network = $network;
1102
+	$this->network = $network;
1103 1103
   }
1104 1104
   public function getNetwork()
1105 1105
   {
1106
-    return $this->network;
1106
+	return $this->network;
1107 1107
   }
1108 1108
   public function setResources($resources)
1109 1109
   {
1110
-    $this->resources = $resources;
1110
+	$this->resources = $resources;
1111 1111
   }
1112 1112
   public function getResources()
1113 1113
   {
1114
-    return $this->resources;
1114
+	return $this->resources;
1115 1115
   }
1116 1116
   public function setSelfLink($selfLink)
1117 1117
   {
1118
-    $this->selfLink = $selfLink;
1118
+	$this->selfLink = $selfLink;
1119 1119
   }
1120 1120
   public function getSelfLink()
1121 1121
   {
1122
-    return $this->selfLink;
1122
+	return $this->selfLink;
1123 1123
   }
1124 1124
   public function setSize($size)
1125 1125
   {
1126
-    $this->size = $size;
1126
+	$this->size = $size;
1127 1127
   }
1128 1128
   public function getSize()
1129 1129
   {
1130
-    return $this->size;
1130
+	return $this->size;
1131 1131
   }
1132 1132
 }
1133 1133
 
@@ -1141,19 +1141,19 @@  discard block
 block discarded – undo
1141 1141
 
1142 1142
   public function setName($name)
1143 1143
   {
1144
-    $this->name = $name;
1144
+	$this->name = $name;
1145 1145
   }
1146 1146
   public function getName()
1147 1147
   {
1148
-    return $this->name;
1148
+	return $this->name;
1149 1149
   }
1150 1150
   public function setPort($port)
1151 1151
   {
1152
-    $this->port = $port;
1152
+	$this->port = $port;
1153 1153
   }
1154 1154
   public function getPort()
1155 1155
   {
1156
-    return $this->port;
1156
+	return $this->port;
1157 1157
   }
1158 1158
 }
1159 1159
 
@@ -1167,11 +1167,11 @@  discard block
 block discarded – undo
1167 1167
 
1168 1168
   public function setResources($resources)
1169 1169
   {
1170
-    $this->resources = $resources;
1170
+	$this->resources = $resources;
1171 1171
   }
1172 1172
   public function getResources()
1173 1173
   {
1174
-    return $this->resources;
1174
+	return $this->resources;
1175 1175
   }
1176 1176
 }
1177 1177
 
@@ -1187,19 +1187,19 @@  discard block
 block discarded – undo
1187 1187
 
1188 1188
   public function setEndpoints($endpoints)
1189 1189
   {
1190
-    $this->endpoints = $endpoints;
1190
+	$this->endpoints = $endpoints;
1191 1191
   }
1192 1192
   public function getEndpoints()
1193 1193
   {
1194
-    return $this->endpoints;
1194
+	return $this->endpoints;
1195 1195
   }
1196 1196
   public function setFingerprint($fingerprint)
1197 1197
   {
1198
-    $this->fingerprint = $fingerprint;
1198
+	$this->fingerprint = $fingerprint;
1199 1199
   }
1200 1200
   public function getFingerprint()
1201 1201
   {
1202
-    return $this->fingerprint;
1202
+	return $this->fingerprint;
1203 1203
   }
1204 1204
 }
1205 1205
 
@@ -1217,35 +1217,35 @@  discard block
 block discarded – undo
1217 1217
 
1218 1218
   public function setItems($items)
1219 1219
   {
1220
-    $this->items = $items;
1220
+	$this->items = $items;
1221 1221
   }
1222 1222
   public function getItems()
1223 1223
   {
1224
-    return $this->items;
1224
+	return $this->items;
1225 1225
   }
1226 1226
   public function setKind($kind)
1227 1227
   {
1228
-    $this->kind = $kind;
1228
+	$this->kind = $kind;
1229 1229
   }
1230 1230
   public function getKind()
1231 1231
   {
1232
-    return $this->kind;
1232
+	return $this->kind;
1233 1233
   }
1234 1234
   public function setNextPageToken($nextPageToken)
1235 1235
   {
1236
-    $this->nextPageToken = $nextPageToken;
1236
+	$this->nextPageToken = $nextPageToken;
1237 1237
   }
1238 1238
   public function getNextPageToken()
1239 1239
   {
1240
-    return $this->nextPageToken;
1240
+	return $this->nextPageToken;
1241 1241
   }
1242 1242
   public function setSelfLink($selfLink)
1243 1243
   {
1244
-    $this->selfLink = $selfLink;
1244
+	$this->selfLink = $selfLink;
1245 1245
   }
1246 1246
   public function getSelfLink()
1247 1247
   {
1248
-    return $this->selfLink;
1248
+	return $this->selfLink;
1249 1249
   }
1250 1250
 }
1251 1251
 
@@ -1262,27 +1262,27 @@  discard block
 block discarded – undo
1262 1262
 
1263 1263
   public function setItems($items)
1264 1264
   {
1265
-    $this->items = $items;
1265
+	$this->items = $items;
1266 1266
   }
1267 1267
   public function getItems()
1268 1268
   {
1269
-    return $this->items;
1269
+	return $this->items;
1270 1270
   }
1271 1271
   public function setNetwork($network)
1272 1272
   {
1273
-    $this->network = $network;
1273
+	$this->network = $network;
1274 1274
   }
1275 1275
   public function getNetwork()
1276 1276
   {
1277
-    return $this->network;
1277
+	return $this->network;
1278 1278
   }
1279 1279
   public function setNextPageToken($nextPageToken)
1280 1280
   {
1281
-    $this->nextPageToken = $nextPageToken;
1281
+	$this->nextPageToken = $nextPageToken;
1282 1282
   }
1283 1283
   public function getNextPageToken()
1284 1284
   {
1285
-    return $this->nextPageToken;
1285
+	return $this->nextPageToken;
1286 1286
   }
1287 1287
 }
1288 1288
 
@@ -1296,11 +1296,11 @@  discard block
 block discarded – undo
1296 1296
 
1297 1297
   public function setResources($resources)
1298 1298
   {
1299
-    $this->resources = $resources;
1299
+	$this->resources = $resources;
1300 1300
   }
1301 1301
   public function getResources()
1302 1302
   {
1303
-    return $this->resources;
1303
+	return $this->resources;
1304 1304
   }
1305 1305
 }
1306 1306
 
@@ -1317,26 +1317,26 @@  discard block
 block discarded – undo
1317 1317
 
1318 1318
   public function setEndpoints($endpoints)
1319 1319
   {
1320
-    $this->endpoints = $endpoints;
1320
+	$this->endpoints = $endpoints;
1321 1321
   }
1322 1322
   public function getEndpoints()
1323 1323
   {
1324
-    return $this->endpoints;
1324
+	return $this->endpoints;
1325 1325
   }
1326 1326
   public function setFingerprint($fingerprint)
1327 1327
   {
1328
-    $this->fingerprint = $fingerprint;
1328
+	$this->fingerprint = $fingerprint;
1329 1329
   }
1330 1330
   public function getFingerprint()
1331 1331
   {
1332
-    return $this->fingerprint;
1332
+	return $this->fingerprint;
1333 1333
   }
1334 1334
   public function setResourceName($resourceName)
1335 1335
   {
1336
-    $this->resourceName = $resourceName;
1336
+	$this->resourceName = $resourceName;
1337 1337
   }
1338 1338
   public function getResourceName()
1339 1339
   {
1340
-    return $this->resourceName;
1340
+	return $this->resourceName;
1341 1341
   }
1342 1342
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                   'required' => true,
91 91
                 ),
92 92
               ),
93
-            ),'list' => array(
93
+            ), 'list' => array(
94 94
               'path' => '{project}/zones/{zone}/operations',
95 95
               'httpMethod' => 'GET',
96 96
               'parameters' => array(
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                   'required' => true,
148 148
                 ),
149 149
               ),
150
-            ),'delete' => array(
150
+            ), 'delete' => array(
151 151
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
152 152
               'httpMethod' => 'DELETE',
153 153
               'parameters' => array(
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
                   'required' => true,
168 168
                 ),
169 169
               ),
170
-            ),'get' => array(
170
+            ), 'get' => array(
171 171
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}',
172 172
               'httpMethod' => 'GET',
173 173
               'parameters' => array(
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
                   'required' => true,
188 188
                 ),
189 189
               ),
190
-            ),'getService' => array(
190
+            ), 'getService' => array(
191 191
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/getService',
192 192
               'httpMethod' => 'POST',
193 193
               'parameters' => array(
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
                   'type' => 'string',
212 212
                 ),
213 213
               ),
214
-            ),'insert' => array(
214
+            ), 'insert' => array(
215 215
               'path' => '{project}/zones/{zone}/resourceViews',
216 216
               'httpMethod' => 'POST',
217 217
               'parameters' => array(
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
                   'required' => true,
227 227
                 ),
228 228
               ),
229
-            ),'list' => array(
229
+            ), 'list' => array(
230 230
               'path' => '{project}/zones/{zone}/resourceViews',
231 231
               'httpMethod' => 'GET',
232 232
               'parameters' => array(
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
                   'type' => 'integer',
250 250
                 ),
251 251
               ),
252
-            ),'listResources' => array(
252
+            ), 'listResources' => array(
253 253
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/resources',
254 254
               'httpMethod' => 'GET',
255 255
               'parameters' => array(
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
                   'type' => 'string',
290 290
                 ),
291 291
               ),
292
-            ),'removeResources' => array(
292
+            ), 'removeResources' => array(
293 293
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/removeResources',
294 294
               'httpMethod' => 'POST',
295 295
               'parameters' => array(
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
                   'required' => true,
310 310
                 ),
311 311
               ),
312
-            ),'setService' => array(
312
+            ), 'setService' => array(
313 313
               'path' => '{project}/zones/{zone}/resourceViews/{resourceView}/setService',
314 314
               'httpMethod' => 'POST',
315 315
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Script.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@
 block discarded – undo
125 125
    * @param string $scriptId The project key of the script to be executed. To find
126 126
    * the project key, open the project in the script editor, then select **File >
127 127
    * Project properties**.
128
-   * @param Google_ExecutionRequest $postBody
128
+   * @param Google_Service_Script_ExecutionRequest $postBody
129 129
    * @param array $optParams Optional parameters.
130 130
    * @return Google_Service_Script_Operation
131 131
    */
Please login to merge, or discard this patch.
Indentation   +74 added lines, -74 removed lines patch added patch discarded remove patch
@@ -32,34 +32,34 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your mail. */
34 34
   const MAIL_GOOGLE_COM =
35
-      "https://mail.google.com/";
35
+	  "https://mail.google.com/";
36 36
   /** Manage your calendars. */
37 37
   const WWW_GOOGLE_COM_CALENDAR_FEEDS =
38
-      "https://www.google.com/calendar/feeds";
38
+	  "https://www.google.com/calendar/feeds";
39 39
   /** Manage your contacts. */
40 40
   const WWW_GOOGLE_COM_M8_FEEDS =
41
-      "https://www.google.com/m8/feeds";
41
+	  "https://www.google.com/m8/feeds";
42 42
   /** View and manage the provisioning of groups on your domain. */
43 43
   const ADMIN_DIRECTORY_GROUP =
44
-      "https://www.googleapis.com/auth/admin.directory.group";
44
+	  "https://www.googleapis.com/auth/admin.directory.group";
45 45
   /** View and manage the provisioning of users on your domain. */
46 46
   const ADMIN_DIRECTORY_USER =
47
-      "https://www.googleapis.com/auth/admin.directory.user";
47
+	  "https://www.googleapis.com/auth/admin.directory.user";
48 48
   /** View and manage the files in your Google Drive. */
49 49
   const DRIVE =
50
-      "https://www.googleapis.com/auth/drive";
50
+	  "https://www.googleapis.com/auth/drive";
51 51
   /** View and manage your forms in Google Drive. */
52 52
   const FORMS =
53
-      "https://www.googleapis.com/auth/forms";
53
+	  "https://www.googleapis.com/auth/forms";
54 54
   /** View and manage forms that this application has been installed in. */
55 55
   const FORMS_CURRENTONLY =
56
-      "https://www.googleapis.com/auth/forms.currentonly";
56
+	  "https://www.googleapis.com/auth/forms.currentonly";
57 57
   /** View and manage your Google Groups. */
58 58
   const GROUPS =
59
-      "https://www.googleapis.com/auth/groups";
59
+	  "https://www.googleapis.com/auth/groups";
60 60
   /** View your email address. */
61 61
   const USERINFO_EMAIL =
62
-      "https://www.googleapis.com/auth/userinfo.email";
62
+	  "https://www.googleapis.com/auth/userinfo.email";
63 63
 
64 64
   public $scripts;
65 65
   
@@ -71,32 +71,32 @@  discard block
 block discarded – undo
71 71
    */
72 72
   public function __construct(Google_Client $client)
73 73
   {
74
-    parent::__construct($client);
75
-    $this->rootUrl = 'https://script.googleapis.com/';
76
-    $this->servicePath = '';
77
-    $this->version = 'v1';
78
-    $this->serviceName = 'script';
74
+	parent::__construct($client);
75
+	$this->rootUrl = 'https://script.googleapis.com/';
76
+	$this->servicePath = '';
77
+	$this->version = 'v1';
78
+	$this->serviceName = 'script';
79 79
 
80
-    $this->scripts = new Google_Service_Script_Scripts_Resource(
81
-        $this,
82
-        $this->serviceName,
83
-        'scripts',
84
-        array(
85
-          'methods' => array(
86
-            'run' => array(
87
-              'path' => 'v1/scripts/{scriptId}:run',
88
-              'httpMethod' => 'POST',
89
-              'parameters' => array(
90
-                'scriptId' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-              ),
96
-            ),
97
-          )
98
-        )
99
-    );
80
+	$this->scripts = new Google_Service_Script_Scripts_Resource(
81
+		$this,
82
+		$this->serviceName,
83
+		'scripts',
84
+		array(
85
+		  'methods' => array(
86
+			'run' => array(
87
+			  'path' => 'v1/scripts/{scriptId}:run',
88
+			  'httpMethod' => 'POST',
89
+			  'parameters' => array(
90
+				'scriptId' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+			  ),
96
+			),
97
+		  )
98
+		)
99
+	);
100 100
   }
101 101
 }
102 102
 
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
    */
132 132
   public function run($scriptId, Google_Service_Script_ExecutionRequest $postBody, $optParams = array())
133 133
   {
134
-    $params = array('scriptId' => $scriptId, 'postBody' => $postBody);
135
-    $params = array_merge($params, $optParams);
136
-    return $this->call('run', array($params), "Google_Service_Script_Operation");
134
+	$params = array('scriptId' => $scriptId, 'postBody' => $postBody);
135
+	$params = array_merge($params, $optParams);
136
+	return $this->call('run', array($params), "Google_Service_Script_Operation");
137 137
   }
138 138
 }
139 139
 
@@ -153,27 +153,27 @@  discard block
 block discarded – undo
153 153
 
154 154
   public function setErrorMessage($errorMessage)
155 155
   {
156
-    $this->errorMessage = $errorMessage;
156
+	$this->errorMessage = $errorMessage;
157 157
   }
158 158
   public function getErrorMessage()
159 159
   {
160
-    return $this->errorMessage;
160
+	return $this->errorMessage;
161 161
   }
162 162
   public function setErrorType($errorType)
163 163
   {
164
-    $this->errorType = $errorType;
164
+	$this->errorType = $errorType;
165 165
   }
166 166
   public function getErrorType()
167 167
   {
168
-    return $this->errorType;
168
+	return $this->errorType;
169 169
   }
170 170
   public function setScriptStackTraceElements($scriptStackTraceElements)
171 171
   {
172
-    $this->scriptStackTraceElements = $scriptStackTraceElements;
172
+	$this->scriptStackTraceElements = $scriptStackTraceElements;
173 173
   }
174 174
   public function getScriptStackTraceElements()
175 175
   {
176
-    return $this->scriptStackTraceElements;
176
+	return $this->scriptStackTraceElements;
177 177
   }
178 178
 }
179 179
 
@@ -190,35 +190,35 @@  discard block
 block discarded – undo
190 190
 
191 191
   public function setDevMode($devMode)
192 192
   {
193
-    $this->devMode = $devMode;
193
+	$this->devMode = $devMode;
194 194
   }
195 195
   public function getDevMode()
196 196
   {
197
-    return $this->devMode;
197
+	return $this->devMode;
198 198
   }
199 199
   public function setFunction($function)
200 200
   {
201
-    $this->function = $function;
201
+	$this->function = $function;
202 202
   }
203 203
   public function getFunction()
204 204
   {
205
-    return $this->function;
205
+	return $this->function;
206 206
   }
207 207
   public function setParameters($parameters)
208 208
   {
209
-    $this->parameters = $parameters;
209
+	$this->parameters = $parameters;
210 210
   }
211 211
   public function getParameters()
212 212
   {
213
-    return $this->parameters;
213
+	return $this->parameters;
214 214
   }
215 215
   public function setSessionState($sessionState)
216 216
   {
217
-    $this->sessionState = $sessionState;
217
+	$this->sessionState = $sessionState;
218 218
   }
219 219
   public function getSessionState()
220 220
   {
221
-    return $this->sessionState;
221
+	return $this->sessionState;
222 222
   }
223 223
 }
224 224
 
@@ -231,11 +231,11 @@  discard block
 block discarded – undo
231 231
 
232 232
   public function setResult($result)
233 233
   {
234
-    $this->result = $result;
234
+	$this->result = $result;
235 235
   }
236 236
   public function getResult()
237 237
   {
238
-    return $this->result;
238
+	return $this->result;
239 239
   }
240 240
 }
241 241
 
@@ -253,43 +253,43 @@  discard block
 block discarded – undo
253 253
 
254 254
   public function setDone($done)
255 255
   {
256
-    $this->done = $done;
256
+	$this->done = $done;
257 257
   }
258 258
   public function getDone()
259 259
   {
260
-    return $this->done;
260
+	return $this->done;
261 261
   }
262 262
   public function setError(Google_Service_Script_Status $error)
263 263
   {
264
-    $this->error = $error;
264
+	$this->error = $error;
265 265
   }
266 266
   public function getError()
267 267
   {
268
-    return $this->error;
268
+	return $this->error;
269 269
   }
270 270
   public function setMetadata($metadata)
271 271
   {
272
-    $this->metadata = $metadata;
272
+	$this->metadata = $metadata;
273 273
   }
274 274
   public function getMetadata()
275 275
   {
276
-    return $this->metadata;
276
+	return $this->metadata;
277 277
   }
278 278
   public function setName($name)
279 279
   {
280
-    $this->name = $name;
280
+	$this->name = $name;
281 281
   }
282 282
   public function getName()
283 283
   {
284
-    return $this->name;
284
+	return $this->name;
285 285
   }
286 286
   public function setResponse($response)
287 287
   {
288
-    $this->response = $response;
288
+	$this->response = $response;
289 289
   }
290 290
   public function getResponse()
291 291
   {
292
-    return $this->response;
292
+	return $this->response;
293 293
   }
294 294
 }
295 295
 
@@ -311,19 +311,19 @@  discard block
 block discarded – undo
311 311
 
312 312
   public function setFunction($function)
313 313
   {
314
-    $this->function = $function;
314
+	$this->function = $function;
315 315
   }
316 316
   public function getFunction()
317 317
   {
318
-    return $this->function;
318
+	return $this->function;
319 319
   }
320 320
   public function setLineNumber($lineNumber)
321 321
   {
322
-    $this->lineNumber = $lineNumber;
322
+	$this->lineNumber = $lineNumber;
323 323
   }
324 324
   public function getLineNumber()
325 325
   {
326
-    return $this->lineNumber;
326
+	return $this->lineNumber;
327 327
   }
328 328
 }
329 329
 
@@ -339,27 +339,27 @@  discard block
 block discarded – undo
339 339
 
340 340
   public function setCode($code)
341 341
   {
342
-    $this->code = $code;
342
+	$this->code = $code;
343 343
   }
344 344
   public function getCode()
345 345
   {
346
-    return $this->code;
346
+	return $this->code;
347 347
   }
348 348
   public function setDetails($details)
349 349
   {
350
-    $this->details = $details;
350
+	$this->details = $details;
351 351
   }
352 352
   public function getDetails()
353 353
   {
354
-    return $this->details;
354
+	return $this->details;
355 355
   }
356 356
   public function setMessage($message)
357 357
   {
358
-    $this->message = $message;
358
+	$this->message = $message;
359 359
   }
360 360
   public function getMessage()
361 361
   {
362
-    return $this->message;
362
+	return $this->message;
363 363
   }
364 364
 }
365 365
 
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/ShoppingContent.php 3 patches
Doc Comments   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -739,7 +739,7 @@  discard block
 block discarded – undo
739 739
    * Retrieves, inserts, updates, and deletes multiple Merchant Center
740 740
    * (sub-)accounts in a single request. (accounts.custombatch)
741 741
    *
742
-   * @param Google_AccountsCustomBatchRequest $postBody
742
+   * @param Google_Service_ShoppingContent_AccountsCustomBatchRequest $postBody
743 743
    * @param array $optParams Optional parameters.
744 744
    * @return Google_Service_ShoppingContent_AccountsCustomBatchResponse
745 745
    */
@@ -783,7 +783,7 @@  discard block
 block discarded – undo
783 783
    * Creates a Merchant Center sub-account. (accounts.insert)
784 784
    *
785 785
    * @param string $merchantId The ID of the managing account.
786
-   * @param Google_Account $postBody
786
+   * @param Google_Service_ShoppingContent_Account $postBody
787 787
    * @param array $optParams Optional parameters.
788 788
    * @return Google_Service_ShoppingContent_Account
789 789
    */
@@ -819,7 +819,7 @@  discard block
 block discarded – undo
819 819
    *
820 820
    * @param string $merchantId The ID of the managing account.
821 821
    * @param string $accountId The ID of the account.
822
-   * @param Google_Account $postBody
822
+   * @param Google_Service_ShoppingContent_Account $postBody
823 823
    * @param array $optParams Optional parameters.
824 824
    * @return Google_Service_ShoppingContent_Account
825 825
    */
@@ -835,7 +835,7 @@  discard block
 block discarded – undo
835 835
    *
836 836
    * @param string $merchantId The ID of the managing account.
837 837
    * @param string $accountId The ID of the account.
838
-   * @param Google_Account $postBody
838
+   * @param Google_Service_ShoppingContent_Account $postBody
839 839
    * @param array $optParams Optional parameters.
840 840
    * @return Google_Service_ShoppingContent_Account
841 841
    */
@@ -862,7 +862,7 @@  discard block
 block discarded – undo
862 862
    * Retrieves and updates the shipping settings of multiple accounts in a single
863 863
    * request. (accountshipping.custombatch)
864 864
    *
865
-   * @param Google_AccountshippingCustomBatchRequest $postBody
865
+   * @param Google_Service_ShoppingContent_AccountshippingCustomBatchRequest $postBody
866 866
    * @param array $optParams Optional parameters.
867 867
    *
868 868
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -917,7 +917,7 @@  discard block
 block discarded – undo
917 917
    * @param string $merchantId The ID of the managing account.
918 918
    * @param string $accountId The ID of the account for which to get/update
919 919
    * account shipping settings.
920
-   * @param Google_AccountShipping $postBody
920
+   * @param Google_Service_ShoppingContent_AccountShipping $postBody
921 921
    * @param array $optParams Optional parameters.
922 922
    *
923 923
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
    * @param string $merchantId The ID of the managing account.
937 937
    * @param string $accountId The ID of the account for which to get/update
938 938
    * account shipping settings.
939
-   * @param Google_AccountShipping $postBody
939
+   * @param Google_Service_ShoppingContent_AccountShipping $postBody
940 940
    * @param array $optParams Optional parameters.
941 941
    *
942 942
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -964,7 +964,7 @@  discard block
 block discarded – undo
964 964
   /**
965 965
    * (accountstatuses.custombatch)
966 966
    *
967
-   * @param Google_AccountstatusesCustomBatchRequest $postBody
967
+   * @param Google_Service_ShoppingContent_AccountstatusesCustomBatchRequest $postBody
968 968
    * @param array $optParams Optional parameters.
969 969
    * @return Google_Service_ShoppingContent_AccountstatusesCustomBatchResponse
970 970
    */
@@ -1025,7 +1025,7 @@  discard block
 block discarded – undo
1025 1025
    * Retrieves and updates tax settings of multiple accounts in a single request.
1026 1026
    * (accounttax.custombatch)
1027 1027
    *
1028
-   * @param Google_AccounttaxCustomBatchRequest $postBody
1028
+   * @param Google_Service_ShoppingContent_AccounttaxCustomBatchRequest $postBody
1029 1029
    * @param array $optParams Optional parameters.
1030 1030
    *
1031 1031
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
    * @param string $merchantId The ID of the managing account.
1081 1081
    * @param string $accountId The ID of the account for which to get/update
1082 1082
    * account tax settings.
1083
-   * @param Google_AccountTax $postBody
1083
+   * @param Google_Service_ShoppingContent_AccountTax $postBody
1084 1084
    * @param array $optParams Optional parameters.
1085 1085
    *
1086 1086
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -1099,7 +1099,7 @@  discard block
 block discarded – undo
1099 1099
    * @param string $merchantId The ID of the managing account.
1100 1100
    * @param string $accountId The ID of the account for which to get/update
1101 1101
    * account tax settings.
1102
-   * @param Google_AccountTax $postBody
1102
+   * @param Google_Service_ShoppingContent_AccountTax $postBody
1103 1103
    * @param array $optParams Optional parameters.
1104 1104
    *
1105 1105
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -1127,7 +1127,7 @@  discard block
 block discarded – undo
1127 1127
   /**
1128 1128
    * (datafeeds.custombatch)
1129 1129
    *
1130
-   * @param Google_DatafeedsCustomBatchRequest $postBody
1130
+   * @param Google_Service_ShoppingContent_DatafeedsCustomBatchRequest $postBody
1131 1131
    * @param array $optParams Optional parameters.
1132 1132
    * @return Google_Service_ShoppingContent_DatafeedsCustomBatchResponse
1133 1133
    */
@@ -1171,7 +1171,7 @@  discard block
 block discarded – undo
1171 1171
    * Registers a datafeed with your Merchant Center account. (datafeeds.insert)
1172 1172
    *
1173 1173
    * @param string $merchantId
1174
-   * @param Google_Datafeed $postBody
1174
+   * @param Google_Service_ShoppingContent_Datafeed $postBody
1175 1175
    * @param array $optParams Optional parameters.
1176 1176
    * @return Google_Service_ShoppingContent_Datafeed
1177 1177
    */
@@ -1207,7 +1207,7 @@  discard block
 block discarded – undo
1207 1207
    *
1208 1208
    * @param string $merchantId
1209 1209
    * @param string $datafeedId
1210
-   * @param Google_Datafeed $postBody
1210
+   * @param Google_Service_ShoppingContent_Datafeed $postBody
1211 1211
    * @param array $optParams Optional parameters.
1212 1212
    * @return Google_Service_ShoppingContent_Datafeed
1213 1213
    */
@@ -1223,7 +1223,7 @@  discard block
 block discarded – undo
1223 1223
    *
1224 1224
    * @param string $merchantId
1225 1225
    * @param string $datafeedId
1226
-   * @param Google_Datafeed $postBody
1226
+   * @param Google_Service_ShoppingContent_Datafeed $postBody
1227 1227
    * @param array $optParams Optional parameters.
1228 1228
    * @return Google_Service_ShoppingContent_Datafeed
1229 1229
    */
@@ -1249,7 +1249,7 @@  discard block
 block discarded – undo
1249 1249
   /**
1250 1250
    * (datafeedstatuses.custombatch)
1251 1251
    *
1252
-   * @param Google_DatafeedstatusesCustomBatchRequest $postBody
1252
+   * @param Google_Service_ShoppingContent_DatafeedstatusesCustomBatchRequest $postBody
1253 1253
    * @param array $optParams Optional parameters.
1254 1254
    * @return Google_Service_ShoppingContent_DatafeedstatusesCustomBatchResponse
1255 1255
    */
@@ -1311,7 +1311,7 @@  discard block
 block discarded – undo
1311 1311
    * Updates price and availability for multiple products or stores in a single
1312 1312
    * request. (inventory.custombatch)
1313 1313
    *
1314
-   * @param Google_InventoryCustomBatchRequest $postBody
1314
+   * @param Google_Service_ShoppingContent_InventoryCustomBatchRequest $postBody
1315 1315
    * @param array $optParams Optional parameters.
1316 1316
    * @return Google_Service_ShoppingContent_InventoryCustomBatchResponse
1317 1317
    */
@@ -1332,7 +1332,7 @@  discard block
 block discarded – undo
1332 1332
    * product.
1333 1333
    * @param string $productId The ID of the product for which to update price and
1334 1334
    * availability.
1335
-   * @param Google_InventorySetRequest $postBody
1335
+   * @param Google_Service_ShoppingContent_InventorySetRequest $postBody
1336 1336
    * @param array $optParams Optional parameters.
1337 1337
    * @return Google_Service_ShoppingContent_InventorySetResponse
1338 1338
    */
@@ -1359,7 +1359,7 @@  discard block
 block discarded – undo
1359 1359
    * Retrieves, inserts, and deletes multiple products in a single request.
1360 1360
    * (products.custombatch)
1361 1361
    *
1362
-   * @param Google_ProductsCustomBatchRequest $postBody
1362
+   * @param Google_Service_ShoppingContent_ProductsCustomBatchRequest $postBody
1363 1363
    * @param array $optParams Optional parameters.
1364 1364
    *
1365 1365
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -1407,7 +1407,7 @@  discard block
 block discarded – undo
1407 1407
    * Uploads a product to your Merchant Center account. (products.insert)
1408 1408
    *
1409 1409
    * @param string $merchantId The ID of the managing account.
1410
-   * @param Google_Product $postBody
1410
+   * @param Google_Service_ShoppingContent_Product $postBody
1411 1411
    * @param array $optParams Optional parameters.
1412 1412
    *
1413 1413
    * @opt_param bool dryRun Flag to run the request in dry-run mode.
@@ -1454,7 +1454,7 @@  discard block
 block discarded – undo
1454 1454
    * Gets the statuses of multiple products in a single request.
1455 1455
    * (productstatuses.custombatch)
1456 1456
    *
1457
-   * @param Google_ProductstatusesCustomBatchRequest $postBody
1457
+   * @param Google_Service_ShoppingContent_ProductstatusesCustomBatchRequest $postBody
1458 1458
    * @param array $optParams Optional parameters.
1459 1459
    * @return Google_Service_ShoppingContent_ProductstatusesCustomBatchResponse
1460 1460
    */
Please login to merge, or discard this patch.
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.
google-api-php-client/src/Google/Service/SiteVerification.php 3 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
    * Get a verification token for placing on a website or domain.
168 168
    * (webResource.getToken)
169 169
    *
170
-   * @param Google_SiteVerificationWebResourceGettokenRequest $postBody
170
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody
171 171
    * @param array $optParams Optional parameters.
172 172
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse
173 173
    */
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
    *
184 184
    * @param string $verificationMethod The method to use for verifying a site or
185 185
    * domain.
186
-   * @param Google_SiteVerificationWebResourceResource $postBody
186
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
187 187
    * @param array $optParams Optional parameters.
188 188
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
189 189
    */
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
    * patch semantics. (webResource.patch)
214 214
    *
215 215
    * @param string $id The id of a verified site or domain.
216
-   * @param Google_SiteVerificationWebResourceResource $postBody
216
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
217 217
    * @param array $optParams Optional parameters.
218 218
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
219 219
    */
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
    * Modify the list of owners for your website or domain. (webResource.update)
229 229
    *
230 230
    * @param string $id The id of a verified site or domain.
231
-   * @param Google_SiteVerificationWebResourceResource $postBody
231
+   * @param Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody
232 232
    * @param array $optParams Optional parameters.
233 233
    * @return Google_Service_SiteVerification_SiteVerificationWebResourceResource
234 234
    */
Please login to merge, or discard this patch.
Indentation   +121 added lines, -121 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage the list of sites and domains you control. */
34 34
   const SITEVERIFICATION =
35
-      "https://www.googleapis.com/auth/siteverification";
35
+	  "https://www.googleapis.com/auth/siteverification";
36 36
   /** Manage your new site verifications with Google. */
37 37
   const SITEVERIFICATION_VERIFY_ONLY =
38
-      "https://www.googleapis.com/auth/siteverification.verify_only";
38
+	  "https://www.googleapis.com/auth/siteverification.verify_only";
39 39
 
40 40
   public $webResource;
41 41
   
@@ -47,80 +47,80 @@  discard block
 block discarded – undo
47 47
    */
48 48
   public function __construct(Google_Client $client)
49 49
   {
50
-    parent::__construct($client);
51
-    $this->rootUrl = 'https://www.googleapis.com/';
52
-    $this->servicePath = 'siteVerification/v1/';
53
-    $this->version = 'v1';
54
-    $this->serviceName = 'siteVerification';
55
-
56
-    $this->webResource = new Google_Service_SiteVerification_WebResource_Resource(
57
-        $this,
58
-        $this->serviceName,
59
-        'webResource',
60
-        array(
61
-          'methods' => array(
62
-            'delete' => array(
63
-              'path' => 'webResource/{id}',
64
-              'httpMethod' => 'DELETE',
65
-              'parameters' => array(
66
-                'id' => array(
67
-                  'location' => 'path',
68
-                  'type' => 'string',
69
-                  'required' => true,
70
-                ),
71
-              ),
72
-            ),'get' => array(
73
-              'path' => 'webResource/{id}',
74
-              'httpMethod' => 'GET',
75
-              'parameters' => array(
76
-                'id' => array(
77
-                  'location' => 'path',
78
-                  'type' => 'string',
79
-                  'required' => true,
80
-                ),
81
-              ),
82
-            ),'getToken' => array(
83
-              'path' => 'token',
84
-              'httpMethod' => 'POST',
85
-              'parameters' => array(),
86
-            ),'insert' => array(
87
-              'path' => 'webResource',
88
-              'httpMethod' => 'POST',
89
-              'parameters' => array(
90
-                'verificationMethod' => array(
91
-                  'location' => 'query',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-              ),
96
-            ),'list' => array(
97
-              'path' => 'webResource',
98
-              'httpMethod' => 'GET',
99
-              'parameters' => array(),
100
-            ),'patch' => array(
101
-              'path' => 'webResource/{id}',
102
-              'httpMethod' => 'PATCH',
103
-              'parameters' => array(
104
-                'id' => array(
105
-                  'location' => 'path',
106
-                  'type' => 'string',
107
-                  'required' => true,
108
-                ),
109
-              ),
110
-            ),'update' => array(
111
-              'path' => 'webResource/{id}',
112
-              'httpMethod' => 'PUT',
113
-              'parameters' => array(
114
-                'id' => array(
115
-                  'location' => 'path',
116
-                  'type' => 'string',
117
-                  'required' => true,
118
-                ),
119
-              ),
120
-            ),
121
-          )
122
-        )
123
-    );
50
+	parent::__construct($client);
51
+	$this->rootUrl = 'https://www.googleapis.com/';
52
+	$this->servicePath = 'siteVerification/v1/';
53
+	$this->version = 'v1';
54
+	$this->serviceName = 'siteVerification';
55
+
56
+	$this->webResource = new Google_Service_SiteVerification_WebResource_Resource(
57
+		$this,
58
+		$this->serviceName,
59
+		'webResource',
60
+		array(
61
+		  'methods' => array(
62
+			'delete' => array(
63
+			  'path' => 'webResource/{id}',
64
+			  'httpMethod' => 'DELETE',
65
+			  'parameters' => array(
66
+				'id' => array(
67
+				  'location' => 'path',
68
+				  'type' => 'string',
69
+				  'required' => true,
70
+				),
71
+			  ),
72
+			),'get' => array(
73
+			  'path' => 'webResource/{id}',
74
+			  'httpMethod' => 'GET',
75
+			  'parameters' => array(
76
+				'id' => array(
77
+				  'location' => 'path',
78
+				  'type' => 'string',
79
+				  'required' => true,
80
+				),
81
+			  ),
82
+			),'getToken' => array(
83
+			  'path' => 'token',
84
+			  'httpMethod' => 'POST',
85
+			  'parameters' => array(),
86
+			),'insert' => array(
87
+			  'path' => 'webResource',
88
+			  'httpMethod' => 'POST',
89
+			  'parameters' => array(
90
+				'verificationMethod' => array(
91
+				  'location' => 'query',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+			  ),
96
+			),'list' => array(
97
+			  'path' => 'webResource',
98
+			  'httpMethod' => 'GET',
99
+			  'parameters' => array(),
100
+			),'patch' => array(
101
+			  'path' => 'webResource/{id}',
102
+			  'httpMethod' => 'PATCH',
103
+			  'parameters' => array(
104
+				'id' => array(
105
+				  'location' => 'path',
106
+				  'type' => 'string',
107
+				  'required' => true,
108
+				),
109
+			  ),
110
+			),'update' => array(
111
+			  'path' => 'webResource/{id}',
112
+			  'httpMethod' => 'PUT',
113
+			  'parameters' => array(
114
+				'id' => array(
115
+				  'location' => 'path',
116
+				  'type' => 'string',
117
+				  'required' => true,
118
+				),
119
+			  ),
120
+			),
121
+		  )
122
+		)
123
+	);
124 124
   }
125 125
 }
126 126
 
@@ -144,9 +144,9 @@  discard block
 block discarded – undo
144 144
    */
145 145
   public function delete($id, $optParams = array())
146 146
   {
147
-    $params = array('id' => $id);
148
-    $params = array_merge($params, $optParams);
149
-    return $this->call('delete', array($params));
147
+	$params = array('id' => $id);
148
+	$params = array_merge($params, $optParams);
149
+	return $this->call('delete', array($params));
150 150
   }
151 151
 
152 152
   /**
@@ -158,9 +158,9 @@  discard block
 block discarded – undo
158 158
    */
159 159
   public function get($id, $optParams = array())
160 160
   {
161
-    $params = array('id' => $id);
162
-    $params = array_merge($params, $optParams);
163
-    return $this->call('get', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
161
+	$params = array('id' => $id);
162
+	$params = array_merge($params, $optParams);
163
+	return $this->call('get', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
164 164
   }
165 165
 
166 166
   /**
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
    */
174 174
   public function getToken(Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequest $postBody, $optParams = array())
175 175
   {
176
-    $params = array('postBody' => $postBody);
177
-    $params = array_merge($params, $optParams);
178
-    return $this->call('getToken', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse");
176
+	$params = array('postBody' => $postBody);
177
+	$params = array_merge($params, $optParams);
178
+	return $this->call('getToken', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceGettokenResponse");
179 179
   }
180 180
 
181 181
   /**
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
    */
190 190
   public function insert($verificationMethod, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
191 191
   {
192
-    $params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody);
193
-    $params = array_merge($params, $optParams);
194
-    return $this->call('insert', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
192
+	$params = array('verificationMethod' => $verificationMethod, 'postBody' => $postBody);
193
+	$params = array_merge($params, $optParams);
194
+	return $this->call('insert', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
195 195
   }
196 196
 
197 197
   /**
@@ -203,9 +203,9 @@  discard block
 block discarded – undo
203 203
    */
204 204
   public function listWebResource($optParams = array())
205 205
   {
206
-    $params = array();
207
-    $params = array_merge($params, $optParams);
208
-    return $this->call('list', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceListResponse");
206
+	$params = array();
207
+	$params = array_merge($params, $optParams);
208
+	return $this->call('list', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceListResponse");
209 209
   }
210 210
 
211 211
   /**
@@ -219,9 +219,9 @@  discard block
 block discarded – undo
219 219
    */
220 220
   public function patch($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
221 221
   {
222
-    $params = array('id' => $id, 'postBody' => $postBody);
223
-    $params = array_merge($params, $optParams);
224
-    return $this->call('patch', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
222
+	$params = array('id' => $id, 'postBody' => $postBody);
223
+	$params = array_merge($params, $optParams);
224
+	return $this->call('patch', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
225 225
   }
226 226
 
227 227
   /**
@@ -234,9 +234,9 @@  discard block
 block discarded – undo
234 234
    */
235 235
   public function update($id, Google_Service_SiteVerification_SiteVerificationWebResourceResource $postBody, $optParams = array())
236 236
   {
237
-    $params = array('id' => $id, 'postBody' => $postBody);
238
-    $params = array_merge($params, $optParams);
239
-    return $this->call('update', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
237
+	$params = array('id' => $id, 'postBody' => $postBody);
238
+	$params = array_merge($params, $optParams);
239
+	return $this->call('update', array($params), "Google_Service_SiteVerification_SiteVerificationWebResourceResource");
240 240
   }
241 241
 }
242 242
 
@@ -254,19 +254,19 @@  discard block
 block discarded – undo
254 254
 
255 255
   public function setSite(Google_Service_SiteVerification_SiteVerificationWebResourceGettokenRequestSite $site)
256 256
   {
257
-    $this->site = $site;
257
+	$this->site = $site;
258 258
   }
259 259
   public function getSite()
260 260
   {
261
-    return $this->site;
261
+	return $this->site;
262 262
   }
263 263
   public function setVerificationMethod($verificationMethod)
264 264
   {
265
-    $this->verificationMethod = $verificationMethod;
265
+	$this->verificationMethod = $verificationMethod;
266 266
   }
267 267
   public function getVerificationMethod()
268 268
   {
269
-    return $this->verificationMethod;
269
+	return $this->verificationMethod;
270 270
   }
271 271
 }
272 272
 
@@ -280,19 +280,19 @@  discard block
 block discarded – undo
280 280
 
281 281
   public function setIdentifier($identifier)
282 282
   {
283
-    $this->identifier = $identifier;
283
+	$this->identifier = $identifier;
284 284
   }
285 285
   public function getIdentifier()
286 286
   {
287
-    return $this->identifier;
287
+	return $this->identifier;
288 288
   }
289 289
   public function setType($type)
290 290
   {
291
-    $this->type = $type;
291
+	$this->type = $type;
292 292
   }
293 293
   public function getType()
294 294
   {
295
-    return $this->type;
295
+	return $this->type;
296 296
   }
297 297
 }
298 298
 
@@ -306,19 +306,19 @@  discard block
 block discarded – undo
306 306
 
307 307
   public function setMethod($method)
308 308
   {
309
-    $this->method = $method;
309
+	$this->method = $method;
310 310
   }
311 311
   public function getMethod()
312 312
   {
313
-    return $this->method;
313
+	return $this->method;
314 314
   }
315 315
   public function setToken($token)
316 316
   {
317
-    $this->token = $token;
317
+	$this->token = $token;
318 318
   }
319 319
   public function getToken()
320 320
   {
321
-    return $this->token;
321
+	return $this->token;
322 322
   }
323 323
 }
324 324
 
@@ -333,11 +333,11 @@  discard block
 block discarded – undo
333 333
 
334 334
   public function setItems($items)
335 335
   {
336
-    $this->items = $items;
336
+	$this->items = $items;
337 337
   }
338 338
   public function getItems()
339 339
   {
340
-    return $this->items;
340
+	return $this->items;
341 341
   }
342 342
 }
343 343
 
@@ -354,27 +354,27 @@  discard block
 block discarded – undo
354 354
 
355 355
   public function setId($id)
356 356
   {
357
-    $this->id = $id;
357
+	$this->id = $id;
358 358
   }
359 359
   public function getId()
360 360
   {
361
-    return $this->id;
361
+	return $this->id;
362 362
   }
363 363
   public function setOwners($owners)
364 364
   {
365
-    $this->owners = $owners;
365
+	$this->owners = $owners;
366 366
   }
367 367
   public function getOwners()
368 368
   {
369
-    return $this->owners;
369
+	return $this->owners;
370 370
   }
371 371
   public function setSite(Google_Service_SiteVerification_SiteVerificationWebResourceResourceSite $site)
372 372
   {
373
-    $this->site = $site;
373
+	$this->site = $site;
374 374
   }
375 375
   public function getSite()
376 376
   {
377
-    return $this->site;
377
+	return $this->site;
378 378
   }
379 379
 }
380 380
 
@@ -388,18 +388,18 @@  discard block
 block discarded – undo
388 388
 
389 389
   public function setIdentifier($identifier)
390 390
   {
391
-    $this->identifier = $identifier;
391
+	$this->identifier = $identifier;
392 392
   }
393 393
   public function getIdentifier()
394 394
   {
395
-    return $this->identifier;
395
+	return $this->identifier;
396 396
   }
397 397
   public function setType($type)
398 398
   {
399
-    $this->type = $type;
399
+	$this->type = $type;
400 400
   }
401 401
   public function getType()
402 402
   {
403
-    return $this->type;
403
+	return $this->type;
404 404
   }
405 405
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
                   'required' => true,
70 70
                 ),
71 71
               ),
72
-            ),'get' => array(
72
+            ), 'get' => array(
73 73
               'path' => 'webResource/{id}',
74 74
               'httpMethod' => 'GET',
75 75
               'parameters' => array(
@@ -79,11 +79,11 @@  discard block
 block discarded – undo
79 79
                   'required' => true,
80 80
                 ),
81 81
               ),
82
-            ),'getToken' => array(
82
+            ), 'getToken' => array(
83 83
               'path' => 'token',
84 84
               'httpMethod' => 'POST',
85 85
               'parameters' => array(),
86
-            ),'insert' => array(
86
+            ), 'insert' => array(
87 87
               'path' => 'webResource',
88 88
               'httpMethod' => 'POST',
89 89
               'parameters' => array(
@@ -93,11 +93,11 @@  discard block
 block discarded – undo
93 93
                   'required' => true,
94 94
                 ),
95 95
               ),
96
-            ),'list' => array(
96
+            ), 'list' => array(
97 97
               'path' => 'webResource',
98 98
               'httpMethod' => 'GET',
99 99
               'parameters' => array(),
100
-            ),'patch' => array(
100
+            ), 'patch' => array(
101 101
               'path' => 'webResource/{id}',
102 102
               'httpMethod' => 'PATCH',
103 103
               'parameters' => array(
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                   'required' => true,
108 108
                 ),
109 109
               ),
110
-            ),'update' => array(
110
+            ), 'update' => array(
111 111
               'path' => 'webResource/{id}',
112 112
               'httpMethod' => 'PUT',
113 113
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Spectrum.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
    * Requests from a fixed-mode device must include owner information so the
103 103
    * device can be registered with the database. (paws.getSpectrum)
104 104
    *
105
-   * @param Google_PawsGetSpectrumRequest $postBody
105
+   * @param Google_Service_Spectrum_PawsGetSpectrumRequest $postBody
106 106
    * @param array $optParams Optional parameters.
107 107
    * @return Google_Service_Spectrum_PawsGetSpectrumResponse
108 108
    */
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
    * The Google Spectrum Database does not support batch requests, so this method
118 118
    * always yields an UNIMPLEMENTED error. (paws.getSpectrumBatch)
119 119
    *
120
-   * @param Google_PawsGetSpectrumBatchRequest $postBody
120
+   * @param Google_Service_Spectrum_PawsGetSpectrumBatchRequest $postBody
121 121
    * @param array $optParams Optional parameters.
122 122
    * @return Google_Service_Spectrum_PawsGetSpectrumBatchResponse
123 123
    */
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
    * Initializes the connection between a white space device and the database.
133 133
    * (paws.init)
134 134
    *
135
-   * @param Google_PawsInitRequest $postBody
135
+   * @param Google_Service_Spectrum_PawsInitRequest $postBody
136 136
    * @param array $optParams Optional parameters.
137 137
    * @return Google_Service_Spectrum_PawsInitResponse
138 138
    */
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
    * notification, so this always yields an UNIMPLEMENTED error.
151 151
    * (paws.notifySpectrumUse)
152 152
    *
153
-   * @param Google_PawsNotifySpectrumUseRequest $postBody
153
+   * @param Google_Service_Spectrum_PawsNotifySpectrumUseRequest $postBody
154 154
    * @param array $optParams Optional parameters.
155 155
    * @return Google_Service_Spectrum_PawsNotifySpectrumUseResponse
156 156
    */
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
    * The Google Spectrum Database implements registration in the getSpectrum
166 166
    * method. As such this always returns an UNIMPLEMENTED error. (paws.register)
167 167
    *
168
-   * @param Google_PawsRegisterRequest $postBody
168
+   * @param Google_Service_Spectrum_PawsRegisterRequest $postBody
169 169
    * @param array $optParams Optional parameters.
170 170
    * @return Google_Service_Spectrum_PawsRegisterResponse
171 171
    */
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
    * The Google Spectrum Database does not support master/slave configurations, so
182 182
    * this always yields an UNIMPLEMENTED error. (paws.verifyDevice)
183 183
    *
184
-   * @param Google_PawsVerifyDeviceRequest $postBody
184
+   * @param Google_Service_Spectrum_PawsVerifyDeviceRequest $postBody
185 185
    * @param array $optParams Optional parameters.
186 186
    * @return Google_Service_Spectrum_PawsVerifyDeviceResponse
187 187
    */
Please login to merge, or discard this patch.
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/SQLAdmin.php 3 patches
Doc Comments   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -828,7 +828,7 @@  discard block
 block discarded – undo
828 828
    * @param string $project Project ID of the project that contains the instance.
829 829
    * @param string $instance Database instance ID. This does not include the
830 830
    * project ID.
831
-   * @param Google_Database $postBody
831
+   * @param Google_Service_SQLAdmin_Database $postBody
832 832
    * @param array $optParams Optional parameters.
833 833
    * @return Google_Service_SQLAdmin_Operation
834 834
    */
@@ -865,7 +865,7 @@  discard block
 block discarded – undo
865 865
    * @param string $instance Database instance ID. This does not include the
866 866
    * project ID.
867 867
    * @param string $database Name of the database to be updated in the instance.
868
-   * @param Google_Database $postBody
868
+   * @param Google_Service_SQLAdmin_Database $postBody
869 869
    * @param array $optParams Optional parameters.
870 870
    * @return Google_Service_SQLAdmin_Operation
871 871
    */
@@ -884,7 +884,7 @@  discard block
 block discarded – undo
884 884
    * @param string $instance Database instance ID. This does not include the
885 885
    * project ID.
886 886
    * @param string $database Name of the database to be updated in the instance.
887
-   * @param Google_Database $postBody
887
+   * @param Google_Service_SQLAdmin_Database $postBody
888 888
    * @param array $optParams Optional parameters.
889 889
    * @return Google_Service_SQLAdmin_Operation
890 890
    */
@@ -941,7 +941,7 @@  discard block
 block discarded – undo
941 941
    * SQL instance.
942 942
    * @param string $instance The ID of the Cloud SQL instance to be cloned
943 943
    * (source). This does not include the project ID.
944
-   * @param Google_InstancesCloneRequest $postBody
944
+   * @param Google_Service_SQLAdmin_InstancesCloneRequest $postBody
945 945
    * @param array $optParams Optional parameters.
946 946
    * @return Google_Service_SQLAdmin_Operation
947 947
    */
@@ -977,7 +977,7 @@  discard block
 block discarded – undo
977 977
    * to be exported.
978 978
    * @param string $instance Cloud SQL instance ID. This does not include the
979 979
    * project ID.
980
-   * @param Google_InstancesExportRequest $postBody
980
+   * @param Google_Service_SQLAdmin_InstancesExportRequest $postBody
981 981
    * @param array $optParams Optional parameters.
982 982
    * @return Google_Service_SQLAdmin_Operation
983 983
    */
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
    * @param string $project Project ID of the project that contains the instance.
1013 1013
    * @param string $instance Cloud SQL instance ID. This does not include the
1014 1014
    * project ID.
1015
-   * @param Google_InstancesImportRequest $postBody
1015
+   * @param Google_Service_SQLAdmin_InstancesImportRequest $postBody
1016 1016
    * @param array $optParams Optional parameters.
1017 1017
    * @return Google_Service_SQLAdmin_Operation
1018 1018
    */
@@ -1028,7 +1028,7 @@  discard block
 block discarded – undo
1028 1028
    *
1029 1029
    * @param string $project Project ID of the project to which the newly created
1030 1030
    * Cloud SQL instances should belong.
1031
-   * @param Google_DatabaseInstance $postBody
1031
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1032 1032
    * @param array $optParams Optional parameters.
1033 1033
    * @return Google_Service_SQLAdmin_Operation
1034 1034
    */
@@ -1069,7 +1069,7 @@  discard block
 block discarded – undo
1069 1069
    * @param string $project Project ID of the project that contains the instance.
1070 1070
    * @param string $instance Cloud SQL instance ID. This does not include the
1071 1071
    * project ID.
1072
-   * @param Google_DatabaseInstance $postBody
1072
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1073 1073
    * @param array $optParams Optional parameters.
1074 1074
    * @return Google_Service_SQLAdmin_Operation
1075 1075
    */
@@ -1138,7 +1138,7 @@  discard block
 block discarded – undo
1138 1138
    * @param string $project Project ID of the project that contains the instance.
1139 1139
    * @param string $instance Cloud SQL instance ID. This does not include the
1140 1140
    * project ID.
1141
-   * @param Google_InstancesRestoreBackupRequest $postBody
1141
+   * @param Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody
1142 1142
    * @param array $optParams Optional parameters.
1143 1143
    * @return Google_Service_SQLAdmin_Operation
1144 1144
    */
@@ -1187,7 +1187,7 @@  discard block
 block discarded – undo
1187 1187
    * @param string $project Project ID of the project that contains the instance.
1188 1188
    * @param string $instance Cloud SQL instance ID. This does not include the
1189 1189
    * project ID.
1190
-   * @param Google_DatabaseInstance $postBody
1190
+   * @param Google_Service_SQLAdmin_DatabaseInstance $postBody
1191 1191
    * @param array $optParams Optional parameters.
1192 1192
    * @return Google_Service_SQLAdmin_Operation
1193 1193
    */
@@ -1307,7 +1307,7 @@  discard block
 block discarded – undo
1307 1307
    * Cloud SQL instances should belong.
1308 1308
    * @param string $instance Cloud SQL instance ID. This does not include the
1309 1309
    * project ID.
1310
-   * @param Google_SslCertsInsertRequest $postBody
1310
+   * @param Google_Service_SQLAdmin_SslCertsInsertRequest $postBody
1311 1311
    * @param array $optParams Optional parameters.
1312 1312
    * @return Google_Service_SQLAdmin_SslCertsInsertResponse
1313 1313
    */
@@ -1399,7 +1399,7 @@  discard block
 block discarded – undo
1399 1399
    * @param string $project Project ID of the project that contains the instance.
1400 1400
    * @param string $instance Database instance ID. This does not include the
1401 1401
    * project ID.
1402
-   * @param Google_User $postBody
1402
+   * @param Google_Service_SQLAdmin_User $postBody
1403 1403
    * @param array $optParams Optional parameters.
1404 1404
    * @return Google_Service_SQLAdmin_Operation
1405 1405
    */
@@ -1434,7 +1434,7 @@  discard block
 block discarded – undo
1434 1434
    * project ID.
1435 1435
    * @param string $host Host of the user in the instance.
1436 1436
    * @param string $name Name of the user in the instance.
1437
-   * @param Google_User $postBody
1437
+   * @param Google_Service_SQLAdmin_User $postBody
1438 1438
    * @param array $optParams Optional parameters.
1439 1439
    * @return Google_Service_SQLAdmin_Operation
1440 1440
    */
Please login to merge, or discard this patch.
Indentation   +1145 added lines, -1145 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your data across Google Cloud Platform services. */
34 34
   const CLOUD_PLATFORM =
35
-      "https://www.googleapis.com/auth/cloud-platform";
35
+	  "https://www.googleapis.com/auth/cloud-platform";
36 36
   /** Manage your Google SQL Service instances. */
37 37
   const SQLSERVICE_ADMIN =
38
-      "https://www.googleapis.com/auth/sqlservice.admin";
38
+	  "https://www.googleapis.com/auth/sqlservice.admin";
39 39
 
40 40
   public $backupRuns;
41 41
   public $databases;
@@ -54,670 +54,670 @@  discard block
 block discarded – undo
54 54
    */
55 55
   public function __construct(Google_Client $client)
56 56
   {
57
-    parent::__construct($client);
58
-    $this->rootUrl = 'https://www.googleapis.com/';
59
-    $this->servicePath = 'sql/v1beta4/';
60
-    $this->version = 'v1beta4';
61
-    $this->serviceName = 'sqladmin';
62
-
63
-    $this->backupRuns = new Google_Service_SQLAdmin_BackupRuns_Resource(
64
-        $this,
65
-        $this->serviceName,
66
-        'backupRuns',
67
-        array(
68
-          'methods' => array(
69
-            'get' => array(
70
-              'path' => 'projects/{project}/instances/{instance}/backupRuns/{id}',
71
-              'httpMethod' => 'GET',
72
-              'parameters' => array(
73
-                'project' => array(
74
-                  'location' => 'path',
75
-                  'type' => 'string',
76
-                  'required' => true,
77
-                ),
78
-                'instance' => array(
79
-                  'location' => 'path',
80
-                  'type' => 'string',
81
-                  'required' => true,
82
-                ),
83
-                'id' => array(
84
-                  'location' => 'path',
85
-                  'type' => 'string',
86
-                  'required' => true,
87
-                ),
88
-              ),
89
-            ),'list' => array(
90
-              'path' => 'projects/{project}/instances/{instance}/backupRuns',
91
-              'httpMethod' => 'GET',
92
-              'parameters' => array(
93
-                'project' => array(
94
-                  'location' => 'path',
95
-                  'type' => 'string',
96
-                  'required' => true,
97
-                ),
98
-                'instance' => array(
99
-                  'location' => 'path',
100
-                  'type' => 'string',
101
-                  'required' => true,
102
-                ),
103
-                'maxResults' => array(
104
-                  'location' => 'query',
105
-                  'type' => 'integer',
106
-                ),
107
-                'pageToken' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'string',
110
-                ),
111
-              ),
112
-            ),
113
-          )
114
-        )
115
-    );
116
-    $this->databases = new Google_Service_SQLAdmin_Databases_Resource(
117
-        $this,
118
-        $this->serviceName,
119
-        'databases',
120
-        array(
121
-          'methods' => array(
122
-            'delete' => array(
123
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
124
-              'httpMethod' => 'DELETE',
125
-              'parameters' => array(
126
-                'project' => array(
127
-                  'location' => 'path',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-                'instance' => array(
132
-                  'location' => 'path',
133
-                  'type' => 'string',
134
-                  'required' => true,
135
-                ),
136
-                'database' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-              ),
142
-            ),'get' => array(
143
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144
-              'httpMethod' => 'GET',
145
-              'parameters' => array(
146
-                'project' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'instance' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'database' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-              ),
162
-            ),'insert' => array(
163
-              'path' => 'projects/{project}/instances/{instance}/databases',
164
-              'httpMethod' => 'POST',
165
-              'parameters' => array(
166
-                'project' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'instance' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-              ),
177
-            ),'list' => array(
178
-              'path' => 'projects/{project}/instances/{instance}/databases',
179
-              'httpMethod' => 'GET',
180
-              'parameters' => array(
181
-                'project' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-                'instance' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-              ),
192
-            ),'patch' => array(
193
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194
-              'httpMethod' => 'PATCH',
195
-              'parameters' => array(
196
-                'project' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-                'instance' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-                'database' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-              ),
212
-            ),'update' => array(
213
-              'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214
-              'httpMethod' => 'PUT',
215
-              'parameters' => array(
216
-                'project' => array(
217
-                  'location' => 'path',
218
-                  'type' => 'string',
219
-                  'required' => true,
220
-                ),
221
-                'instance' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'database' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-              ),
232
-            ),
233
-          )
234
-        )
235
-    );
236
-    $this->flags = new Google_Service_SQLAdmin_Flags_Resource(
237
-        $this,
238
-        $this->serviceName,
239
-        'flags',
240
-        array(
241
-          'methods' => array(
242
-            'list' => array(
243
-              'path' => 'flags',
244
-              'httpMethod' => 'GET',
245
-              'parameters' => array(),
246
-            ),
247
-          )
248
-        )
249
-    );
250
-    $this->instances = new Google_Service_SQLAdmin_Instances_Resource(
251
-        $this,
252
-        $this->serviceName,
253
-        'instances',
254
-        array(
255
-          'methods' => array(
256
-            'clone' => array(
257
-              'path' => 'projects/{project}/instances/{instance}/clone',
258
-              'httpMethod' => 'POST',
259
-              'parameters' => array(
260
-                'project' => array(
261
-                  'location' => 'path',
262
-                  'type' => 'string',
263
-                  'required' => true,
264
-                ),
265
-                'instance' => array(
266
-                  'location' => 'path',
267
-                  'type' => 'string',
268
-                  'required' => true,
269
-                ),
270
-              ),
271
-            ),'delete' => array(
272
-              'path' => 'projects/{project}/instances/{instance}',
273
-              'httpMethod' => 'DELETE',
274
-              'parameters' => array(
275
-                'project' => array(
276
-                  'location' => 'path',
277
-                  'type' => 'string',
278
-                  'required' => true,
279
-                ),
280
-                'instance' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'string',
283
-                  'required' => true,
284
-                ),
285
-              ),
286
-            ),'export' => array(
287
-              'path' => 'projects/{project}/instances/{instance}/export',
288
-              'httpMethod' => 'POST',
289
-              'parameters' => array(
290
-                'project' => array(
291
-                  'location' => 'path',
292
-                  'type' => 'string',
293
-                  'required' => true,
294
-                ),
295
-                'instance' => array(
296
-                  'location' => 'path',
297
-                  'type' => 'string',
298
-                  'required' => true,
299
-                ),
300
-              ),
301
-            ),'get' => array(
302
-              'path' => 'projects/{project}/instances/{instance}',
303
-              'httpMethod' => 'GET',
304
-              'parameters' => array(
305
-                'project' => array(
306
-                  'location' => 'path',
307
-                  'type' => 'string',
308
-                  'required' => true,
309
-                ),
310
-                'instance' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-              ),
316
-            ),'import' => array(
317
-              'path' => 'projects/{project}/instances/{instance}/import',
318
-              'httpMethod' => 'POST',
319
-              'parameters' => array(
320
-                'project' => array(
321
-                  'location' => 'path',
322
-                  'type' => 'string',
323
-                  'required' => true,
324
-                ),
325
-                'instance' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-              ),
331
-            ),'insert' => array(
332
-              'path' => 'projects/{project}/instances',
333
-              'httpMethod' => 'POST',
334
-              'parameters' => array(
335
-                'project' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-              ),
341
-            ),'list' => array(
342
-              'path' => 'projects/{project}/instances',
343
-              'httpMethod' => 'GET',
344
-              'parameters' => array(
345
-                'project' => array(
346
-                  'location' => 'path',
347
-                  'type' => 'string',
348
-                  'required' => true,
349
-                ),
350
-                'pageToken' => array(
351
-                  'location' => 'query',
352
-                  'type' => 'string',
353
-                ),
354
-                'maxResults' => array(
355
-                  'location' => 'query',
356
-                  'type' => 'integer',
357
-                ),
358
-              ),
359
-            ),'patch' => array(
360
-              'path' => 'projects/{project}/instances/{instance}',
361
-              'httpMethod' => 'PATCH',
362
-              'parameters' => array(
363
-                'project' => array(
364
-                  'location' => 'path',
365
-                  'type' => 'string',
366
-                  'required' => true,
367
-                ),
368
-                'instance' => array(
369
-                  'location' => 'path',
370
-                  'type' => 'string',
371
-                  'required' => true,
372
-                ),
373
-              ),
374
-            ),'promoteReplica' => array(
375
-              'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376
-              'httpMethod' => 'POST',
377
-              'parameters' => array(
378
-                'project' => array(
379
-                  'location' => 'path',
380
-                  'type' => 'string',
381
-                  'required' => true,
382
-                ),
383
-                'instance' => array(
384
-                  'location' => 'path',
385
-                  'type' => 'string',
386
-                  'required' => true,
387
-                ),
388
-              ),
389
-            ),'resetSslConfig' => array(
390
-              'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391
-              'httpMethod' => 'POST',
392
-              'parameters' => array(
393
-                'project' => array(
394
-                  'location' => 'path',
395
-                  'type' => 'string',
396
-                  'required' => true,
397
-                ),
398
-                'instance' => array(
399
-                  'location' => 'path',
400
-                  'type' => 'string',
401
-                  'required' => true,
402
-                ),
403
-              ),
404
-            ),'restart' => array(
405
-              'path' => 'projects/{project}/instances/{instance}/restart',
406
-              'httpMethod' => 'POST',
407
-              'parameters' => array(
408
-                'project' => array(
409
-                  'location' => 'path',
410
-                  'type' => 'string',
411
-                  'required' => true,
412
-                ),
413
-                'instance' => array(
414
-                  'location' => 'path',
415
-                  'type' => 'string',
416
-                  'required' => true,
417
-                ),
418
-              ),
419
-            ),'restoreBackup' => array(
420
-              'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421
-              'httpMethod' => 'POST',
422
-              'parameters' => array(
423
-                'project' => array(
424
-                  'location' => 'path',
425
-                  'type' => 'string',
426
-                  'required' => true,
427
-                ),
428
-                'instance' => array(
429
-                  'location' => 'path',
430
-                  'type' => 'string',
431
-                  'required' => true,
432
-                ),
433
-              ),
434
-            ),'startReplica' => array(
435
-              'path' => 'projects/{project}/instances/{instance}/startReplica',
436
-              'httpMethod' => 'POST',
437
-              'parameters' => array(
438
-                'project' => array(
439
-                  'location' => 'path',
440
-                  'type' => 'string',
441
-                  'required' => true,
442
-                ),
443
-                'instance' => array(
444
-                  'location' => 'path',
445
-                  'type' => 'string',
446
-                  'required' => true,
447
-                ),
448
-              ),
449
-            ),'stopReplica' => array(
450
-              'path' => 'projects/{project}/instances/{instance}/stopReplica',
451
-              'httpMethod' => 'POST',
452
-              'parameters' => array(
453
-                'project' => array(
454
-                  'location' => 'path',
455
-                  'type' => 'string',
456
-                  'required' => true,
457
-                ),
458
-                'instance' => array(
459
-                  'location' => 'path',
460
-                  'type' => 'string',
461
-                  'required' => true,
462
-                ),
463
-              ),
464
-            ),'update' => array(
465
-              'path' => 'projects/{project}/instances/{instance}',
466
-              'httpMethod' => 'PUT',
467
-              'parameters' => array(
468
-                'project' => array(
469
-                  'location' => 'path',
470
-                  'type' => 'string',
471
-                  'required' => true,
472
-                ),
473
-                'instance' => array(
474
-                  'location' => 'path',
475
-                  'type' => 'string',
476
-                  'required' => true,
477
-                ),
478
-              ),
479
-            ),
480
-          )
481
-        )
482
-    );
483
-    $this->operations = new Google_Service_SQLAdmin_Operations_Resource(
484
-        $this,
485
-        $this->serviceName,
486
-        'operations',
487
-        array(
488
-          'methods' => array(
489
-            'get' => array(
490
-              'path' => 'projects/{project}/operations/{operation}',
491
-              'httpMethod' => 'GET',
492
-              'parameters' => array(
493
-                'project' => array(
494
-                  'location' => 'path',
495
-                  'type' => 'string',
496
-                  'required' => true,
497
-                ),
498
-                'operation' => array(
499
-                  'location' => 'path',
500
-                  'type' => 'string',
501
-                  'required' => true,
502
-                ),
503
-              ),
504
-            ),'list' => array(
505
-              'path' => 'projects/{project}/operations',
506
-              'httpMethod' => 'GET',
507
-              'parameters' => array(
508
-                'project' => array(
509
-                  'location' => 'path',
510
-                  'type' => 'string',
511
-                  'required' => true,
512
-                ),
513
-                'instance' => array(
514
-                  'location' => 'query',
515
-                  'type' => 'string',
516
-                  'required' => true,
517
-                ),
518
-                'maxResults' => array(
519
-                  'location' => 'query',
520
-                  'type' => 'integer',
521
-                ),
522
-                'pageToken' => array(
523
-                  'location' => 'query',
524
-                  'type' => 'string',
525
-                ),
526
-              ),
527
-            ),
528
-          )
529
-        )
530
-    );
531
-    $this->sslCerts = new Google_Service_SQLAdmin_SslCerts_Resource(
532
-        $this,
533
-        $this->serviceName,
534
-        'sslCerts',
535
-        array(
536
-          'methods' => array(
537
-            'delete' => array(
538
-              'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
539
-              'httpMethod' => 'DELETE',
540
-              'parameters' => array(
541
-                'project' => array(
542
-                  'location' => 'path',
543
-                  'type' => 'string',
544
-                  'required' => true,
545
-                ),
546
-                'instance' => array(
547
-                  'location' => 'path',
548
-                  'type' => 'string',
549
-                  'required' => true,
550
-                ),
551
-                'sha1Fingerprint' => array(
552
-                  'location' => 'path',
553
-                  'type' => 'string',
554
-                  'required' => true,
555
-                ),
556
-              ),
557
-            ),'get' => array(
558
-              'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559
-              'httpMethod' => 'GET',
560
-              'parameters' => array(
561
-                'project' => array(
562
-                  'location' => 'path',
563
-                  'type' => 'string',
564
-                  'required' => true,
565
-                ),
566
-                'instance' => array(
567
-                  'location' => 'path',
568
-                  'type' => 'string',
569
-                  'required' => true,
570
-                ),
571
-                'sha1Fingerprint' => array(
572
-                  'location' => 'path',
573
-                  'type' => 'string',
574
-                  'required' => true,
575
-                ),
576
-              ),
577
-            ),'insert' => array(
578
-              'path' => 'projects/{project}/instances/{instance}/sslCerts',
579
-              'httpMethod' => 'POST',
580
-              'parameters' => array(
581
-                'project' => array(
582
-                  'location' => 'path',
583
-                  'type' => 'string',
584
-                  'required' => true,
585
-                ),
586
-                'instance' => array(
587
-                  'location' => 'path',
588
-                  'type' => 'string',
589
-                  'required' => true,
590
-                ),
591
-              ),
592
-            ),'list' => array(
593
-              'path' => 'projects/{project}/instances/{instance}/sslCerts',
594
-              'httpMethod' => 'GET',
595
-              'parameters' => array(
596
-                'project' => array(
597
-                  'location' => 'path',
598
-                  'type' => 'string',
599
-                  'required' => true,
600
-                ),
601
-                'instance' => array(
602
-                  'location' => 'path',
603
-                  'type' => 'string',
604
-                  'required' => true,
605
-                ),
606
-              ),
607
-            ),
608
-          )
609
-        )
610
-    );
611
-    $this->tiers = new Google_Service_SQLAdmin_Tiers_Resource(
612
-        $this,
613
-        $this->serviceName,
614
-        'tiers',
615
-        array(
616
-          'methods' => array(
617
-            'list' => array(
618
-              'path' => 'projects/{project}/tiers',
619
-              'httpMethod' => 'GET',
620
-              'parameters' => array(
621
-                'project' => array(
622
-                  'location' => 'path',
623
-                  'type' => 'string',
624
-                  'required' => true,
625
-                ),
626
-              ),
627
-            ),
628
-          )
629
-        )
630
-    );
631
-    $this->users = new Google_Service_SQLAdmin_Users_Resource(
632
-        $this,
633
-        $this->serviceName,
634
-        'users',
635
-        array(
636
-          'methods' => array(
637
-            'delete' => array(
638
-              'path' => 'projects/{project}/instances/{instance}/users',
639
-              'httpMethod' => 'DELETE',
640
-              'parameters' => array(
641
-                'project' => array(
642
-                  'location' => 'path',
643
-                  'type' => 'string',
644
-                  'required' => true,
645
-                ),
646
-                'instance' => array(
647
-                  'location' => 'path',
648
-                  'type' => 'string',
649
-                  'required' => true,
650
-                ),
651
-                'host' => array(
652
-                  'location' => 'query',
653
-                  'type' => 'string',
654
-                  'required' => true,
655
-                ),
656
-                'name' => array(
657
-                  'location' => 'query',
658
-                  'type' => 'string',
659
-                  'required' => true,
660
-                ),
661
-              ),
662
-            ),'insert' => array(
663
-              'path' => 'projects/{project}/instances/{instance}/users',
664
-              'httpMethod' => 'POST',
665
-              'parameters' => array(
666
-                'project' => array(
667
-                  'location' => 'path',
668
-                  'type' => 'string',
669
-                  'required' => true,
670
-                ),
671
-                'instance' => array(
672
-                  'location' => 'path',
673
-                  'type' => 'string',
674
-                  'required' => true,
675
-                ),
676
-              ),
677
-            ),'list' => array(
678
-              'path' => 'projects/{project}/instances/{instance}/users',
679
-              'httpMethod' => 'GET',
680
-              'parameters' => array(
681
-                'project' => array(
682
-                  'location' => 'path',
683
-                  'type' => 'string',
684
-                  'required' => true,
685
-                ),
686
-                'instance' => array(
687
-                  'location' => 'path',
688
-                  'type' => 'string',
689
-                  'required' => true,
690
-                ),
691
-              ),
692
-            ),'update' => array(
693
-              'path' => 'projects/{project}/instances/{instance}/users',
694
-              'httpMethod' => 'PUT',
695
-              'parameters' => array(
696
-                'project' => array(
697
-                  'location' => 'path',
698
-                  'type' => 'string',
699
-                  'required' => true,
700
-                ),
701
-                'instance' => array(
702
-                  'location' => 'path',
703
-                  'type' => 'string',
704
-                  'required' => true,
705
-                ),
706
-                'host' => array(
707
-                  'location' => 'query',
708
-                  'type' => 'string',
709
-                  'required' => true,
710
-                ),
711
-                'name' => array(
712
-                  'location' => 'query',
713
-                  'type' => 'string',
714
-                  'required' => true,
715
-                ),
716
-              ),
717
-            ),
718
-          )
719
-        )
720
-    );
57
+	parent::__construct($client);
58
+	$this->rootUrl = 'https://www.googleapis.com/';
59
+	$this->servicePath = 'sql/v1beta4/';
60
+	$this->version = 'v1beta4';
61
+	$this->serviceName = 'sqladmin';
62
+
63
+	$this->backupRuns = new Google_Service_SQLAdmin_BackupRuns_Resource(
64
+		$this,
65
+		$this->serviceName,
66
+		'backupRuns',
67
+		array(
68
+		  'methods' => array(
69
+			'get' => array(
70
+			  'path' => 'projects/{project}/instances/{instance}/backupRuns/{id}',
71
+			  'httpMethod' => 'GET',
72
+			  'parameters' => array(
73
+				'project' => array(
74
+				  'location' => 'path',
75
+				  'type' => 'string',
76
+				  'required' => true,
77
+				),
78
+				'instance' => array(
79
+				  'location' => 'path',
80
+				  'type' => 'string',
81
+				  'required' => true,
82
+				),
83
+				'id' => array(
84
+				  'location' => 'path',
85
+				  'type' => 'string',
86
+				  'required' => true,
87
+				),
88
+			  ),
89
+			),'list' => array(
90
+			  'path' => 'projects/{project}/instances/{instance}/backupRuns',
91
+			  'httpMethod' => 'GET',
92
+			  'parameters' => array(
93
+				'project' => array(
94
+				  'location' => 'path',
95
+				  'type' => 'string',
96
+				  'required' => true,
97
+				),
98
+				'instance' => array(
99
+				  'location' => 'path',
100
+				  'type' => 'string',
101
+				  'required' => true,
102
+				),
103
+				'maxResults' => array(
104
+				  'location' => 'query',
105
+				  'type' => 'integer',
106
+				),
107
+				'pageToken' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'string',
110
+				),
111
+			  ),
112
+			),
113
+		  )
114
+		)
115
+	);
116
+	$this->databases = new Google_Service_SQLAdmin_Databases_Resource(
117
+		$this,
118
+		$this->serviceName,
119
+		'databases',
120
+		array(
121
+		  'methods' => array(
122
+			'delete' => array(
123
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
124
+			  'httpMethod' => 'DELETE',
125
+			  'parameters' => array(
126
+				'project' => array(
127
+				  'location' => 'path',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+				'instance' => array(
132
+				  'location' => 'path',
133
+				  'type' => 'string',
134
+				  'required' => true,
135
+				),
136
+				'database' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+			  ),
142
+			),'get' => array(
143
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144
+			  'httpMethod' => 'GET',
145
+			  'parameters' => array(
146
+				'project' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'instance' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'database' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+			  ),
162
+			),'insert' => array(
163
+			  'path' => 'projects/{project}/instances/{instance}/databases',
164
+			  'httpMethod' => 'POST',
165
+			  'parameters' => array(
166
+				'project' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'instance' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+			  ),
177
+			),'list' => array(
178
+			  'path' => 'projects/{project}/instances/{instance}/databases',
179
+			  'httpMethod' => 'GET',
180
+			  'parameters' => array(
181
+				'project' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+				'instance' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+			  ),
192
+			),'patch' => array(
193
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194
+			  'httpMethod' => 'PATCH',
195
+			  'parameters' => array(
196
+				'project' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+				'instance' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+				'database' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+			  ),
212
+			),'update' => array(
213
+			  'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214
+			  'httpMethod' => 'PUT',
215
+			  'parameters' => array(
216
+				'project' => array(
217
+				  'location' => 'path',
218
+				  'type' => 'string',
219
+				  'required' => true,
220
+				),
221
+				'instance' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'database' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+			  ),
232
+			),
233
+		  )
234
+		)
235
+	);
236
+	$this->flags = new Google_Service_SQLAdmin_Flags_Resource(
237
+		$this,
238
+		$this->serviceName,
239
+		'flags',
240
+		array(
241
+		  'methods' => array(
242
+			'list' => array(
243
+			  'path' => 'flags',
244
+			  'httpMethod' => 'GET',
245
+			  'parameters' => array(),
246
+			),
247
+		  )
248
+		)
249
+	);
250
+	$this->instances = new Google_Service_SQLAdmin_Instances_Resource(
251
+		$this,
252
+		$this->serviceName,
253
+		'instances',
254
+		array(
255
+		  'methods' => array(
256
+			'clone' => array(
257
+			  'path' => 'projects/{project}/instances/{instance}/clone',
258
+			  'httpMethod' => 'POST',
259
+			  'parameters' => array(
260
+				'project' => array(
261
+				  'location' => 'path',
262
+				  'type' => 'string',
263
+				  'required' => true,
264
+				),
265
+				'instance' => array(
266
+				  'location' => 'path',
267
+				  'type' => 'string',
268
+				  'required' => true,
269
+				),
270
+			  ),
271
+			),'delete' => array(
272
+			  'path' => 'projects/{project}/instances/{instance}',
273
+			  'httpMethod' => 'DELETE',
274
+			  'parameters' => array(
275
+				'project' => array(
276
+				  'location' => 'path',
277
+				  'type' => 'string',
278
+				  'required' => true,
279
+				),
280
+				'instance' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'string',
283
+				  'required' => true,
284
+				),
285
+			  ),
286
+			),'export' => array(
287
+			  'path' => 'projects/{project}/instances/{instance}/export',
288
+			  'httpMethod' => 'POST',
289
+			  'parameters' => array(
290
+				'project' => array(
291
+				  'location' => 'path',
292
+				  'type' => 'string',
293
+				  'required' => true,
294
+				),
295
+				'instance' => array(
296
+				  'location' => 'path',
297
+				  'type' => 'string',
298
+				  'required' => true,
299
+				),
300
+			  ),
301
+			),'get' => array(
302
+			  'path' => 'projects/{project}/instances/{instance}',
303
+			  'httpMethod' => 'GET',
304
+			  'parameters' => array(
305
+				'project' => array(
306
+				  'location' => 'path',
307
+				  'type' => 'string',
308
+				  'required' => true,
309
+				),
310
+				'instance' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+			  ),
316
+			),'import' => array(
317
+			  'path' => 'projects/{project}/instances/{instance}/import',
318
+			  'httpMethod' => 'POST',
319
+			  'parameters' => array(
320
+				'project' => array(
321
+				  'location' => 'path',
322
+				  'type' => 'string',
323
+				  'required' => true,
324
+				),
325
+				'instance' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+			  ),
331
+			),'insert' => array(
332
+			  'path' => 'projects/{project}/instances',
333
+			  'httpMethod' => 'POST',
334
+			  'parameters' => array(
335
+				'project' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+			  ),
341
+			),'list' => array(
342
+			  'path' => 'projects/{project}/instances',
343
+			  'httpMethod' => 'GET',
344
+			  'parameters' => array(
345
+				'project' => array(
346
+				  'location' => 'path',
347
+				  'type' => 'string',
348
+				  'required' => true,
349
+				),
350
+				'pageToken' => array(
351
+				  'location' => 'query',
352
+				  'type' => 'string',
353
+				),
354
+				'maxResults' => array(
355
+				  'location' => 'query',
356
+				  'type' => 'integer',
357
+				),
358
+			  ),
359
+			),'patch' => array(
360
+			  'path' => 'projects/{project}/instances/{instance}',
361
+			  'httpMethod' => 'PATCH',
362
+			  'parameters' => array(
363
+				'project' => array(
364
+				  'location' => 'path',
365
+				  'type' => 'string',
366
+				  'required' => true,
367
+				),
368
+				'instance' => array(
369
+				  'location' => 'path',
370
+				  'type' => 'string',
371
+				  'required' => true,
372
+				),
373
+			  ),
374
+			),'promoteReplica' => array(
375
+			  'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376
+			  'httpMethod' => 'POST',
377
+			  'parameters' => array(
378
+				'project' => array(
379
+				  'location' => 'path',
380
+				  'type' => 'string',
381
+				  'required' => true,
382
+				),
383
+				'instance' => array(
384
+				  'location' => 'path',
385
+				  'type' => 'string',
386
+				  'required' => true,
387
+				),
388
+			  ),
389
+			),'resetSslConfig' => array(
390
+			  'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391
+			  'httpMethod' => 'POST',
392
+			  'parameters' => array(
393
+				'project' => array(
394
+				  'location' => 'path',
395
+				  'type' => 'string',
396
+				  'required' => true,
397
+				),
398
+				'instance' => array(
399
+				  'location' => 'path',
400
+				  'type' => 'string',
401
+				  'required' => true,
402
+				),
403
+			  ),
404
+			),'restart' => array(
405
+			  'path' => 'projects/{project}/instances/{instance}/restart',
406
+			  'httpMethod' => 'POST',
407
+			  'parameters' => array(
408
+				'project' => array(
409
+				  'location' => 'path',
410
+				  'type' => 'string',
411
+				  'required' => true,
412
+				),
413
+				'instance' => array(
414
+				  'location' => 'path',
415
+				  'type' => 'string',
416
+				  'required' => true,
417
+				),
418
+			  ),
419
+			),'restoreBackup' => array(
420
+			  'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421
+			  'httpMethod' => 'POST',
422
+			  'parameters' => array(
423
+				'project' => array(
424
+				  'location' => 'path',
425
+				  'type' => 'string',
426
+				  'required' => true,
427
+				),
428
+				'instance' => array(
429
+				  'location' => 'path',
430
+				  'type' => 'string',
431
+				  'required' => true,
432
+				),
433
+			  ),
434
+			),'startReplica' => array(
435
+			  'path' => 'projects/{project}/instances/{instance}/startReplica',
436
+			  'httpMethod' => 'POST',
437
+			  'parameters' => array(
438
+				'project' => array(
439
+				  'location' => 'path',
440
+				  'type' => 'string',
441
+				  'required' => true,
442
+				),
443
+				'instance' => array(
444
+				  'location' => 'path',
445
+				  'type' => 'string',
446
+				  'required' => true,
447
+				),
448
+			  ),
449
+			),'stopReplica' => array(
450
+			  'path' => 'projects/{project}/instances/{instance}/stopReplica',
451
+			  'httpMethod' => 'POST',
452
+			  'parameters' => array(
453
+				'project' => array(
454
+				  'location' => 'path',
455
+				  'type' => 'string',
456
+				  'required' => true,
457
+				),
458
+				'instance' => array(
459
+				  'location' => 'path',
460
+				  'type' => 'string',
461
+				  'required' => true,
462
+				),
463
+			  ),
464
+			),'update' => array(
465
+			  'path' => 'projects/{project}/instances/{instance}',
466
+			  'httpMethod' => 'PUT',
467
+			  'parameters' => array(
468
+				'project' => array(
469
+				  'location' => 'path',
470
+				  'type' => 'string',
471
+				  'required' => true,
472
+				),
473
+				'instance' => array(
474
+				  'location' => 'path',
475
+				  'type' => 'string',
476
+				  'required' => true,
477
+				),
478
+			  ),
479
+			),
480
+		  )
481
+		)
482
+	);
483
+	$this->operations = new Google_Service_SQLAdmin_Operations_Resource(
484
+		$this,
485
+		$this->serviceName,
486
+		'operations',
487
+		array(
488
+		  'methods' => array(
489
+			'get' => array(
490
+			  'path' => 'projects/{project}/operations/{operation}',
491
+			  'httpMethod' => 'GET',
492
+			  'parameters' => array(
493
+				'project' => array(
494
+				  'location' => 'path',
495
+				  'type' => 'string',
496
+				  'required' => true,
497
+				),
498
+				'operation' => array(
499
+				  'location' => 'path',
500
+				  'type' => 'string',
501
+				  'required' => true,
502
+				),
503
+			  ),
504
+			),'list' => array(
505
+			  'path' => 'projects/{project}/operations',
506
+			  'httpMethod' => 'GET',
507
+			  'parameters' => array(
508
+				'project' => array(
509
+				  'location' => 'path',
510
+				  'type' => 'string',
511
+				  'required' => true,
512
+				),
513
+				'instance' => array(
514
+				  'location' => 'query',
515
+				  'type' => 'string',
516
+				  'required' => true,
517
+				),
518
+				'maxResults' => array(
519
+				  'location' => 'query',
520
+				  'type' => 'integer',
521
+				),
522
+				'pageToken' => array(
523
+				  'location' => 'query',
524
+				  'type' => 'string',
525
+				),
526
+			  ),
527
+			),
528
+		  )
529
+		)
530
+	);
531
+	$this->sslCerts = new Google_Service_SQLAdmin_SslCerts_Resource(
532
+		$this,
533
+		$this->serviceName,
534
+		'sslCerts',
535
+		array(
536
+		  'methods' => array(
537
+			'delete' => array(
538
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
539
+			  'httpMethod' => 'DELETE',
540
+			  'parameters' => array(
541
+				'project' => array(
542
+				  'location' => 'path',
543
+				  'type' => 'string',
544
+				  'required' => true,
545
+				),
546
+				'instance' => array(
547
+				  'location' => 'path',
548
+				  'type' => 'string',
549
+				  'required' => true,
550
+				),
551
+				'sha1Fingerprint' => array(
552
+				  'location' => 'path',
553
+				  'type' => 'string',
554
+				  'required' => true,
555
+				),
556
+			  ),
557
+			),'get' => array(
558
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559
+			  'httpMethod' => 'GET',
560
+			  'parameters' => array(
561
+				'project' => array(
562
+				  'location' => 'path',
563
+				  'type' => 'string',
564
+				  'required' => true,
565
+				),
566
+				'instance' => array(
567
+				  'location' => 'path',
568
+				  'type' => 'string',
569
+				  'required' => true,
570
+				),
571
+				'sha1Fingerprint' => array(
572
+				  'location' => 'path',
573
+				  'type' => 'string',
574
+				  'required' => true,
575
+				),
576
+			  ),
577
+			),'insert' => array(
578
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts',
579
+			  'httpMethod' => 'POST',
580
+			  'parameters' => array(
581
+				'project' => array(
582
+				  'location' => 'path',
583
+				  'type' => 'string',
584
+				  'required' => true,
585
+				),
586
+				'instance' => array(
587
+				  'location' => 'path',
588
+				  'type' => 'string',
589
+				  'required' => true,
590
+				),
591
+			  ),
592
+			),'list' => array(
593
+			  'path' => 'projects/{project}/instances/{instance}/sslCerts',
594
+			  'httpMethod' => 'GET',
595
+			  'parameters' => array(
596
+				'project' => array(
597
+				  'location' => 'path',
598
+				  'type' => 'string',
599
+				  'required' => true,
600
+				),
601
+				'instance' => array(
602
+				  'location' => 'path',
603
+				  'type' => 'string',
604
+				  'required' => true,
605
+				),
606
+			  ),
607
+			),
608
+		  )
609
+		)
610
+	);
611
+	$this->tiers = new Google_Service_SQLAdmin_Tiers_Resource(
612
+		$this,
613
+		$this->serviceName,
614
+		'tiers',
615
+		array(
616
+		  'methods' => array(
617
+			'list' => array(
618
+			  'path' => 'projects/{project}/tiers',
619
+			  'httpMethod' => 'GET',
620
+			  'parameters' => array(
621
+				'project' => array(
622
+				  'location' => 'path',
623
+				  'type' => 'string',
624
+				  'required' => true,
625
+				),
626
+			  ),
627
+			),
628
+		  )
629
+		)
630
+	);
631
+	$this->users = new Google_Service_SQLAdmin_Users_Resource(
632
+		$this,
633
+		$this->serviceName,
634
+		'users',
635
+		array(
636
+		  'methods' => array(
637
+			'delete' => array(
638
+			  'path' => 'projects/{project}/instances/{instance}/users',
639
+			  'httpMethod' => 'DELETE',
640
+			  'parameters' => array(
641
+				'project' => array(
642
+				  'location' => 'path',
643
+				  'type' => 'string',
644
+				  'required' => true,
645
+				),
646
+				'instance' => array(
647
+				  'location' => 'path',
648
+				  'type' => 'string',
649
+				  'required' => true,
650
+				),
651
+				'host' => array(
652
+				  'location' => 'query',
653
+				  'type' => 'string',
654
+				  'required' => true,
655
+				),
656
+				'name' => array(
657
+				  'location' => 'query',
658
+				  'type' => 'string',
659
+				  'required' => true,
660
+				),
661
+			  ),
662
+			),'insert' => array(
663
+			  'path' => 'projects/{project}/instances/{instance}/users',
664
+			  'httpMethod' => 'POST',
665
+			  'parameters' => array(
666
+				'project' => array(
667
+				  'location' => 'path',
668
+				  'type' => 'string',
669
+				  'required' => true,
670
+				),
671
+				'instance' => array(
672
+				  'location' => 'path',
673
+				  'type' => 'string',
674
+				  'required' => true,
675
+				),
676
+			  ),
677
+			),'list' => array(
678
+			  'path' => 'projects/{project}/instances/{instance}/users',
679
+			  'httpMethod' => 'GET',
680
+			  'parameters' => array(
681
+				'project' => array(
682
+				  'location' => 'path',
683
+				  'type' => 'string',
684
+				  'required' => true,
685
+				),
686
+				'instance' => array(
687
+				  'location' => 'path',
688
+				  'type' => 'string',
689
+				  'required' => true,
690
+				),
691
+			  ),
692
+			),'update' => array(
693
+			  'path' => 'projects/{project}/instances/{instance}/users',
694
+			  'httpMethod' => 'PUT',
695
+			  'parameters' => array(
696
+				'project' => array(
697
+				  'location' => 'path',
698
+				  'type' => 'string',
699
+				  'required' => true,
700
+				),
701
+				'instance' => array(
702
+				  'location' => 'path',
703
+				  'type' => 'string',
704
+				  'required' => true,
705
+				),
706
+				'host' => array(
707
+				  'location' => 'query',
708
+				  'type' => 'string',
709
+				  'required' => true,
710
+				),
711
+				'name' => array(
712
+				  'location' => 'query',
713
+				  'type' => 'string',
714
+				  'required' => true,
715
+				),
716
+			  ),
717
+			),
718
+		  )
719
+		)
720
+	);
721 721
   }
722 722
 }
723 723
 
@@ -746,9 +746,9 @@  discard block
 block discarded – undo
746 746
    */
747 747
   public function get($project, $instance, $id, $optParams = array())
748 748
   {
749
-    $params = array('project' => $project, 'instance' => $instance, 'id' => $id);
750
-    $params = array_merge($params, $optParams);
751
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_BackupRun");
749
+	$params = array('project' => $project, 'instance' => $instance, 'id' => $id);
750
+	$params = array_merge($params, $optParams);
751
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_BackupRun");
752 752
   }
753 753
 
754 754
   /**
@@ -768,9 +768,9 @@  discard block
 block discarded – undo
768 768
    */
769 769
   public function listBackupRuns($project, $instance, $optParams = array())
770 770
   {
771
-    $params = array('project' => $project, 'instance' => $instance);
772
-    $params = array_merge($params, $optParams);
773
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_BackupRunsListResponse");
771
+	$params = array('project' => $project, 'instance' => $instance);
772
+	$params = array_merge($params, $optParams);
773
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_BackupRunsListResponse");
774 774
   }
775 775
 }
776 776
 
@@ -798,9 +798,9 @@  discard block
 block discarded – undo
798 798
    */
799 799
   public function delete($project, $instance, $database, $optParams = array())
800 800
   {
801
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database);
802
-    $params = array_merge($params, $optParams);
803
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
801
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database);
802
+	$params = array_merge($params, $optParams);
803
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
804 804
   }
805 805
 
806 806
   /**
@@ -816,9 +816,9 @@  discard block
 block discarded – undo
816 816
    */
817 817
   public function get($project, $instance, $database, $optParams = array())
818 818
   {
819
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database);
820
-    $params = array_merge($params, $optParams);
821
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_Database");
819
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database);
820
+	$params = array_merge($params, $optParams);
821
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_Database");
822 822
   }
823 823
 
824 824
   /**
@@ -834,9 +834,9 @@  discard block
 block discarded – undo
834 834
    */
835 835
   public function insert($project, $instance, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
836 836
   {
837
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
838
-    $params = array_merge($params, $optParams);
839
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
837
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
838
+	$params = array_merge($params, $optParams);
839
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
840 840
   }
841 841
 
842 842
   /**
@@ -852,9 +852,9 @@  discard block
 block discarded – undo
852 852
    */
853 853
   public function listDatabases($project, $instance, $optParams = array())
854 854
   {
855
-    $params = array('project' => $project, 'instance' => $instance);
856
-    $params = array_merge($params, $optParams);
857
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_DatabasesListResponse");
855
+	$params = array('project' => $project, 'instance' => $instance);
856
+	$params = array_merge($params, $optParams);
857
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_DatabasesListResponse");
858 858
   }
859 859
 
860 860
   /**
@@ -871,9 +871,9 @@  discard block
 block discarded – undo
871 871
    */
872 872
   public function patch($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
873 873
   {
874
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
875
-    $params = array_merge($params, $optParams);
876
-    return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
874
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
875
+	$params = array_merge($params, $optParams);
876
+	return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
877 877
   }
878 878
 
879 879
   /**
@@ -890,9 +890,9 @@  discard block
 block discarded – undo
890 890
    */
891 891
   public function update($project, $instance, $database, Google_Service_SQLAdmin_Database $postBody, $optParams = array())
892 892
   {
893
-    $params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
894
-    $params = array_merge($params, $optParams);
895
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
893
+	$params = array('project' => $project, 'instance' => $instance, 'database' => $database, 'postBody' => $postBody);
894
+	$params = array_merge($params, $optParams);
895
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
896 896
   }
897 897
 }
898 898
 
@@ -916,9 +916,9 @@  discard block
 block discarded – undo
916 916
    */
917 917
   public function listFlags($optParams = array())
918 918
   {
919
-    $params = array();
920
-    $params = array_merge($params, $optParams);
921
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_FlagsListResponse");
919
+	$params = array();
920
+	$params = array_merge($params, $optParams);
921
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_FlagsListResponse");
922 922
   }
923 923
 }
924 924
 
@@ -947,9 +947,9 @@  discard block
 block discarded – undo
947 947
    */
948 948
   public function cloneInstances($project, $instance, Google_Service_SQLAdmin_InstancesCloneRequest $postBody, $optParams = array())
949 949
   {
950
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
951
-    $params = array_merge($params, $optParams);
952
-    return $this->call('clone', array($params), "Google_Service_SQLAdmin_Operation");
950
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
951
+	$params = array_merge($params, $optParams);
952
+	return $this->call('clone', array($params), "Google_Service_SQLAdmin_Operation");
953 953
   }
954 954
 
955 955
   /**
@@ -964,9 +964,9 @@  discard block
 block discarded – undo
964 964
    */
965 965
   public function delete($project, $instance, $optParams = array())
966 966
   {
967
-    $params = array('project' => $project, 'instance' => $instance);
968
-    $params = array_merge($params, $optParams);
969
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
967
+	$params = array('project' => $project, 'instance' => $instance);
968
+	$params = array_merge($params, $optParams);
969
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
970 970
   }
971 971
 
972 972
   /**
@@ -983,9 +983,9 @@  discard block
 block discarded – undo
983 983
    */
984 984
   public function export($project, $instance, Google_Service_SQLAdmin_InstancesExportRequest $postBody, $optParams = array())
985 985
   {
986
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
987
-    $params = array_merge($params, $optParams);
988
-    return $this->call('export', array($params), "Google_Service_SQLAdmin_Operation");
986
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
987
+	$params = array_merge($params, $optParams);
988
+	return $this->call('export', array($params), "Google_Service_SQLAdmin_Operation");
989 989
   }
990 990
 
991 991
   /**
@@ -1000,9 +1000,9 @@  discard block
 block discarded – undo
1000 1000
    */
1001 1001
   public function get($project, $instance, $optParams = array())
1002 1002
   {
1003
-    $params = array('project' => $project, 'instance' => $instance);
1004
-    $params = array_merge($params, $optParams);
1005
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_DatabaseInstance");
1003
+	$params = array('project' => $project, 'instance' => $instance);
1004
+	$params = array_merge($params, $optParams);
1005
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_DatabaseInstance");
1006 1006
   }
1007 1007
 
1008 1008
   /**
@@ -1018,9 +1018,9 @@  discard block
 block discarded – undo
1018 1018
    */
1019 1019
   public function import($project, $instance, Google_Service_SQLAdmin_InstancesImportRequest $postBody, $optParams = array())
1020 1020
   {
1021
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1022
-    $params = array_merge($params, $optParams);
1023
-    return $this->call('import', array($params), "Google_Service_SQLAdmin_Operation");
1021
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1022
+	$params = array_merge($params, $optParams);
1023
+	return $this->call('import', array($params), "Google_Service_SQLAdmin_Operation");
1024 1024
   }
1025 1025
 
1026 1026
   /**
@@ -1034,9 +1034,9 @@  discard block
 block discarded – undo
1034 1034
    */
1035 1035
   public function insert($project, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1036 1036
   {
1037
-    $params = array('project' => $project, 'postBody' => $postBody);
1038
-    $params = array_merge($params, $optParams);
1039
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1037
+	$params = array('project' => $project, 'postBody' => $postBody);
1038
+	$params = array_merge($params, $optParams);
1039
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1040 1040
   }
1041 1041
 
1042 1042
   /**
@@ -1055,9 +1055,9 @@  discard block
 block discarded – undo
1055 1055
    */
1056 1056
   public function listInstances($project, $optParams = array())
1057 1057
   {
1058
-    $params = array('project' => $project);
1059
-    $params = array_merge($params, $optParams);
1060
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_InstancesListResponse");
1058
+	$params = array('project' => $project);
1059
+	$params = array_merge($params, $optParams);
1060
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_InstancesListResponse");
1061 1061
   }
1062 1062
 
1063 1063
   /**
@@ -1075,9 +1075,9 @@  discard block
 block discarded – undo
1075 1075
    */
1076 1076
   public function patch($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1077 1077
   {
1078
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1079
-    $params = array_merge($params, $optParams);
1080
-    return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
1078
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1079
+	$params = array_merge($params, $optParams);
1080
+	return $this->call('patch', array($params), "Google_Service_SQLAdmin_Operation");
1081 1081
   }
1082 1082
 
1083 1083
   /**
@@ -1091,9 +1091,9 @@  discard block
 block discarded – undo
1091 1091
    */
1092 1092
   public function promoteReplica($project, $instance, $optParams = array())
1093 1093
   {
1094
-    $params = array('project' => $project, 'instance' => $instance);
1095
-    $params = array_merge($params, $optParams);
1096
-    return $this->call('promoteReplica', array($params), "Google_Service_SQLAdmin_Operation");
1094
+	$params = array('project' => $project, 'instance' => $instance);
1095
+	$params = array_merge($params, $optParams);
1096
+	return $this->call('promoteReplica', array($params), "Google_Service_SQLAdmin_Operation");
1097 1097
   }
1098 1098
 
1099 1099
   /**
@@ -1110,9 +1110,9 @@  discard block
 block discarded – undo
1110 1110
    */
1111 1111
   public function resetSslConfig($project, $instance, $optParams = array())
1112 1112
   {
1113
-    $params = array('project' => $project, 'instance' => $instance);
1114
-    $params = array_merge($params, $optParams);
1115
-    return $this->call('resetSslConfig', array($params), "Google_Service_SQLAdmin_Operation");
1113
+	$params = array('project' => $project, 'instance' => $instance);
1114
+	$params = array_merge($params, $optParams);
1115
+	return $this->call('resetSslConfig', array($params), "Google_Service_SQLAdmin_Operation");
1116 1116
   }
1117 1117
 
1118 1118
   /**
@@ -1127,9 +1127,9 @@  discard block
 block discarded – undo
1127 1127
    */
1128 1128
   public function restart($project, $instance, $optParams = array())
1129 1129
   {
1130
-    $params = array('project' => $project, 'instance' => $instance);
1131
-    $params = array_merge($params, $optParams);
1132
-    return $this->call('restart', array($params), "Google_Service_SQLAdmin_Operation");
1130
+	$params = array('project' => $project, 'instance' => $instance);
1131
+	$params = array_merge($params, $optParams);
1132
+	return $this->call('restart', array($params), "Google_Service_SQLAdmin_Operation");
1133 1133
   }
1134 1134
 
1135 1135
   /**
@@ -1144,9 +1144,9 @@  discard block
 block discarded – undo
1144 1144
    */
1145 1145
   public function restoreBackup($project, $instance, Google_Service_SQLAdmin_InstancesRestoreBackupRequest $postBody, $optParams = array())
1146 1146
   {
1147
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1148
-    $params = array_merge($params, $optParams);
1149
-    return $this->call('restoreBackup', array($params), "Google_Service_SQLAdmin_Operation");
1147
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1148
+	$params = array_merge($params, $optParams);
1149
+	return $this->call('restoreBackup', array($params), "Google_Service_SQLAdmin_Operation");
1150 1150
   }
1151 1151
 
1152 1152
   /**
@@ -1159,9 +1159,9 @@  discard block
 block discarded – undo
1159 1159
    */
1160 1160
   public function startReplica($project, $instance, $optParams = array())
1161 1161
   {
1162
-    $params = array('project' => $project, 'instance' => $instance);
1163
-    $params = array_merge($params, $optParams);
1164
-    return $this->call('startReplica', array($params), "Google_Service_SQLAdmin_Operation");
1162
+	$params = array('project' => $project, 'instance' => $instance);
1163
+	$params = array_merge($params, $optParams);
1164
+	return $this->call('startReplica', array($params), "Google_Service_SQLAdmin_Operation");
1165 1165
   }
1166 1166
 
1167 1167
   /**
@@ -1174,9 +1174,9 @@  discard block
 block discarded – undo
1174 1174
    */
1175 1175
   public function stopReplica($project, $instance, $optParams = array())
1176 1176
   {
1177
-    $params = array('project' => $project, 'instance' => $instance);
1178
-    $params = array_merge($params, $optParams);
1179
-    return $this->call('stopReplica', array($params), "Google_Service_SQLAdmin_Operation");
1177
+	$params = array('project' => $project, 'instance' => $instance);
1178
+	$params = array_merge($params, $optParams);
1179
+	return $this->call('stopReplica', array($params), "Google_Service_SQLAdmin_Operation");
1180 1180
   }
1181 1181
 
1182 1182
   /**
@@ -1193,9 +1193,9 @@  discard block
 block discarded – undo
1193 1193
    */
1194 1194
   public function update($project, $instance, Google_Service_SQLAdmin_DatabaseInstance $postBody, $optParams = array())
1195 1195
   {
1196
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1197
-    $params = array_merge($params, $optParams);
1198
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1196
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1197
+	$params = array_merge($params, $optParams);
1198
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1199 1199
   }
1200 1200
 }
1201 1201
 
@@ -1221,9 +1221,9 @@  discard block
 block discarded – undo
1221 1221
    */
1222 1222
   public function get($project, $operation, $optParams = array())
1223 1223
   {
1224
-    $params = array('project' => $project, 'operation' => $operation);
1225
-    $params = array_merge($params, $optParams);
1226
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_Operation");
1224
+	$params = array('project' => $project, 'operation' => $operation);
1225
+	$params = array_merge($params, $optParams);
1226
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_Operation");
1227 1227
   }
1228 1228
 
1229 1229
   /**
@@ -1243,9 +1243,9 @@  discard block
 block discarded – undo
1243 1243
    */
1244 1244
   public function listOperations($project, $instance, $optParams = array())
1245 1245
   {
1246
-    $params = array('project' => $project, 'instance' => $instance);
1247
-    $params = array_merge($params, $optParams);
1248
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_OperationsListResponse");
1246
+	$params = array('project' => $project, 'instance' => $instance);
1247
+	$params = array_merge($params, $optParams);
1248
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_OperationsListResponse");
1249 1249
   }
1250 1250
 }
1251 1251
 
@@ -1274,9 +1274,9 @@  discard block
 block discarded – undo
1274 1274
    */
1275 1275
   public function delete($project, $instance, $sha1Fingerprint, $optParams = array())
1276 1276
   {
1277
-    $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1278
-    $params = array_merge($params, $optParams);
1279
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1277
+	$params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1278
+	$params = array_merge($params, $optParams);
1279
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1280 1280
   }
1281 1281
 
1282 1282
   /**
@@ -1293,9 +1293,9 @@  discard block
 block discarded – undo
1293 1293
    */
1294 1294
   public function get($project, $instance, $sha1Fingerprint, $optParams = array())
1295 1295
   {
1296
-    $params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1297
-    $params = array_merge($params, $optParams);
1298
-    return $this->call('get', array($params), "Google_Service_SQLAdmin_SslCert");
1296
+	$params = array('project' => $project, 'instance' => $instance, 'sha1Fingerprint' => $sha1Fingerprint);
1297
+	$params = array_merge($params, $optParams);
1298
+	return $this->call('get', array($params), "Google_Service_SQLAdmin_SslCert");
1299 1299
   }
1300 1300
 
1301 1301
   /**
@@ -1313,9 +1313,9 @@  discard block
 block discarded – undo
1313 1313
    */
1314 1314
   public function insert($project, $instance, Google_Service_SQLAdmin_SslCertsInsertRequest $postBody, $optParams = array())
1315 1315
   {
1316
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1317
-    $params = array_merge($params, $optParams);
1318
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_SslCertsInsertResponse");
1316
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1317
+	$params = array_merge($params, $optParams);
1318
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_SslCertsInsertResponse");
1319 1319
   }
1320 1320
 
1321 1321
   /**
@@ -1331,9 +1331,9 @@  discard block
 block discarded – undo
1331 1331
    */
1332 1332
   public function listSslCerts($project, $instance, $optParams = array())
1333 1333
   {
1334
-    $params = array('project' => $project, 'instance' => $instance);
1335
-    $params = array_merge($params, $optParams);
1336
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_SslCertsListResponse");
1334
+	$params = array('project' => $project, 'instance' => $instance);
1335
+	$params = array_merge($params, $optParams);
1336
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_SslCertsListResponse");
1337 1337
   }
1338 1338
 }
1339 1339
 
@@ -1358,9 +1358,9 @@  discard block
 block discarded – undo
1358 1358
    */
1359 1359
   public function listTiers($project, $optParams = array())
1360 1360
   {
1361
-    $params = array('project' => $project);
1362
-    $params = array_merge($params, $optParams);
1363
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_TiersListResponse");
1361
+	$params = array('project' => $project);
1362
+	$params = array_merge($params, $optParams);
1363
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_TiersListResponse");
1364 1364
   }
1365 1365
 }
1366 1366
 
@@ -1388,9 +1388,9 @@  discard block
 block discarded – undo
1388 1388
    */
1389 1389
   public function delete($project, $instance, $host, $name, $optParams = array())
1390 1390
   {
1391
-    $params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name);
1392
-    $params = array_merge($params, $optParams);
1393
-    return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1391
+	$params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name);
1392
+	$params = array_merge($params, $optParams);
1393
+	return $this->call('delete', array($params), "Google_Service_SQLAdmin_Operation");
1394 1394
   }
1395 1395
 
1396 1396
   /**
@@ -1405,9 +1405,9 @@  discard block
 block discarded – undo
1405 1405
    */
1406 1406
   public function insert($project, $instance, Google_Service_SQLAdmin_User $postBody, $optParams = array())
1407 1407
   {
1408
-    $params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1409
-    $params = array_merge($params, $optParams);
1410
-    return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1408
+	$params = array('project' => $project, 'instance' => $instance, 'postBody' => $postBody);
1409
+	$params = array_merge($params, $optParams);
1410
+	return $this->call('insert', array($params), "Google_Service_SQLAdmin_Operation");
1411 1411
   }
1412 1412
 
1413 1413
   /**
@@ -1421,9 +1421,9 @@  discard block
 block discarded – undo
1421 1421
    */
1422 1422
   public function listUsers($project, $instance, $optParams = array())
1423 1423
   {
1424
-    $params = array('project' => $project, 'instance' => $instance);
1425
-    $params = array_merge($params, $optParams);
1426
-    return $this->call('list', array($params), "Google_Service_SQLAdmin_UsersListResponse");
1424
+	$params = array('project' => $project, 'instance' => $instance);
1425
+	$params = array_merge($params, $optParams);
1426
+	return $this->call('list', array($params), "Google_Service_SQLAdmin_UsersListResponse");
1427 1427
   }
1428 1428
 
1429 1429
   /**
@@ -1440,9 +1440,9 @@  discard block
 block discarded – undo
1440 1440
    */
1441 1441
   public function update($project, $instance, $host, $name, Google_Service_SQLAdmin_User $postBody, $optParams = array())
1442 1442
   {
1443
-    $params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name, 'postBody' => $postBody);
1444
-    $params = array_merge($params, $optParams);
1445
-    return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1443
+	$params = array('project' => $project, 'instance' => $instance, 'host' => $host, 'name' => $name, 'postBody' => $postBody);
1444
+	$params = array_merge($params, $optParams);
1445
+	return $this->call('update', array($params), "Google_Service_SQLAdmin_Operation");
1446 1446
   }
1447 1447
 }
1448 1448
 
@@ -1461,35 +1461,35 @@  discard block
 block discarded – undo
1461 1461
 
1462 1462
   public function setExpirationTime($expirationTime)
1463 1463
   {
1464
-    $this->expirationTime = $expirationTime;
1464
+	$this->expirationTime = $expirationTime;
1465 1465
   }
1466 1466
   public function getExpirationTime()
1467 1467
   {
1468
-    return $this->expirationTime;
1468
+	return $this->expirationTime;
1469 1469
   }
1470 1470
   public function setKind($kind)
1471 1471
   {
1472
-    $this->kind = $kind;
1472
+	$this->kind = $kind;
1473 1473
   }
1474 1474
   public function getKind()
1475 1475
   {
1476
-    return $this->kind;
1476
+	return $this->kind;
1477 1477
   }
1478 1478
   public function setName($name)
1479 1479
   {
1480
-    $this->name = $name;
1480
+	$this->name = $name;
1481 1481
   }
1482 1482
   public function getName()
1483 1483
   {
1484
-    return $this->name;
1484
+	return $this->name;
1485 1485
   }
1486 1486
   public function setValue($value)
1487 1487
   {
1488
-    $this->value = $value;
1488
+	$this->value = $value;
1489 1489
   }
1490 1490
   public function getValue()
1491 1491
   {
1492
-    return $this->value;
1492
+	return $this->value;
1493 1493
   }
1494 1494
 }
1495 1495
 
@@ -1505,35 +1505,35 @@  discard block
 block discarded – undo
1505 1505
 
1506 1506
   public function setBinaryLogEnabled($binaryLogEnabled)
1507 1507
   {
1508
-    $this->binaryLogEnabled = $binaryLogEnabled;
1508
+	$this->binaryLogEnabled = $binaryLogEnabled;
1509 1509
   }
1510 1510
   public function getBinaryLogEnabled()
1511 1511
   {
1512
-    return $this->binaryLogEnabled;
1512
+	return $this->binaryLogEnabled;
1513 1513
   }
1514 1514
   public function setEnabled($enabled)
1515 1515
   {
1516
-    $this->enabled = $enabled;
1516
+	$this->enabled = $enabled;
1517 1517
   }
1518 1518
   public function getEnabled()
1519 1519
   {
1520
-    return $this->enabled;
1520
+	return $this->enabled;
1521 1521
   }
1522 1522
   public function setKind($kind)
1523 1523
   {
1524
-    $this->kind = $kind;
1524
+	$this->kind = $kind;
1525 1525
   }
1526 1526
   public function getKind()
1527 1527
   {
1528
-    return $this->kind;
1528
+	return $this->kind;
1529 1529
   }
1530 1530
   public function setStartTime($startTime)
1531 1531
   {
1532
-    $this->startTime = $startTime;
1532
+	$this->startTime = $startTime;
1533 1533
   }
1534 1534
   public function getStartTime()
1535 1535
   {
1536
-    return $this->startTime;
1536
+	return $this->startTime;
1537 1537
   }
1538 1538
 }
1539 1539
 
@@ -1556,83 +1556,83 @@  discard block
 block discarded – undo
1556 1556
 
1557 1557
   public function setEndTime($endTime)
1558 1558
   {
1559
-    $this->endTime = $endTime;
1559
+	$this->endTime = $endTime;
1560 1560
   }
1561 1561
   public function getEndTime()
1562 1562
   {
1563
-    return $this->endTime;
1563
+	return $this->endTime;
1564 1564
   }
1565 1565
   public function setEnqueuedTime($enqueuedTime)
1566 1566
   {
1567
-    $this->enqueuedTime = $enqueuedTime;
1567
+	$this->enqueuedTime = $enqueuedTime;
1568 1568
   }
1569 1569
   public function getEnqueuedTime()
1570 1570
   {
1571
-    return $this->enqueuedTime;
1571
+	return $this->enqueuedTime;
1572 1572
   }
1573 1573
   public function setError(Google_Service_SQLAdmin_OperationError $error)
1574 1574
   {
1575
-    $this->error = $error;
1575
+	$this->error = $error;
1576 1576
   }
1577 1577
   public function getError()
1578 1578
   {
1579
-    return $this->error;
1579
+	return $this->error;
1580 1580
   }
1581 1581
   public function setId($id)
1582 1582
   {
1583
-    $this->id = $id;
1583
+	$this->id = $id;
1584 1584
   }
1585 1585
   public function getId()
1586 1586
   {
1587
-    return $this->id;
1587
+	return $this->id;
1588 1588
   }
1589 1589
   public function setInstance($instance)
1590 1590
   {
1591
-    $this->instance = $instance;
1591
+	$this->instance = $instance;
1592 1592
   }
1593 1593
   public function getInstance()
1594 1594
   {
1595
-    return $this->instance;
1595
+	return $this->instance;
1596 1596
   }
1597 1597
   public function setKind($kind)
1598 1598
   {
1599
-    $this->kind = $kind;
1599
+	$this->kind = $kind;
1600 1600
   }
1601 1601
   public function getKind()
1602 1602
   {
1603
-    return $this->kind;
1603
+	return $this->kind;
1604 1604
   }
1605 1605
   public function setSelfLink($selfLink)
1606 1606
   {
1607
-    $this->selfLink = $selfLink;
1607
+	$this->selfLink = $selfLink;
1608 1608
   }
1609 1609
   public function getSelfLink()
1610 1610
   {
1611
-    return $this->selfLink;
1611
+	return $this->selfLink;
1612 1612
   }
1613 1613
   public function setStartTime($startTime)
1614 1614
   {
1615
-    $this->startTime = $startTime;
1615
+	$this->startTime = $startTime;
1616 1616
   }
1617 1617
   public function getStartTime()
1618 1618
   {
1619
-    return $this->startTime;
1619
+	return $this->startTime;
1620 1620
   }
1621 1621
   public function setStatus($status)
1622 1622
   {
1623
-    $this->status = $status;
1623
+	$this->status = $status;
1624 1624
   }
1625 1625
   public function getStatus()
1626 1626
   {
1627
-    return $this->status;
1627
+	return $this->status;
1628 1628
   }
1629 1629
   public function setWindowStartTime($windowStartTime)
1630 1630
   {
1631
-    $this->windowStartTime = $windowStartTime;
1631
+	$this->windowStartTime = $windowStartTime;
1632 1632
   }
1633 1633
   public function getWindowStartTime()
1634 1634
   {
1635
-    return $this->windowStartTime;
1635
+	return $this->windowStartTime;
1636 1636
   }
1637 1637
 }
1638 1638
 
@@ -1649,27 +1649,27 @@  discard block
 block discarded – undo
1649 1649
 
1650 1650
   public function setItems($items)
1651 1651
   {
1652
-    $this->items = $items;
1652
+	$this->items = $items;
1653 1653
   }
1654 1654
   public function getItems()
1655 1655
   {
1656
-    return $this->items;
1656
+	return $this->items;
1657 1657
   }
1658 1658
   public function setKind($kind)
1659 1659
   {
1660
-    $this->kind = $kind;
1660
+	$this->kind = $kind;
1661 1661
   }
1662 1662
   public function getKind()
1663 1663
   {
1664
-    return $this->kind;
1664
+	return $this->kind;
1665 1665
   }
1666 1666
   public function setNextPageToken($nextPageToken)
1667 1667
   {
1668
-    $this->nextPageToken = $nextPageToken;
1668
+	$this->nextPageToken = $nextPageToken;
1669 1669
   }
1670 1670
   public function getNextPageToken()
1671 1671
   {
1672
-    return $this->nextPageToken;
1672
+	return $this->nextPageToken;
1673 1673
   }
1674 1674
 }
1675 1675
 
@@ -1684,27 +1684,27 @@  discard block
 block discarded – undo
1684 1684
 
1685 1685
   public function setBinLogFileName($binLogFileName)
1686 1686
   {
1687
-    $this->binLogFileName = $binLogFileName;
1687
+	$this->binLogFileName = $binLogFileName;
1688 1688
   }
1689 1689
   public function getBinLogFileName()
1690 1690
   {
1691
-    return $this->binLogFileName;
1691
+	return $this->binLogFileName;
1692 1692
   }
1693 1693
   public function setBinLogPosition($binLogPosition)
1694 1694
   {
1695
-    $this->binLogPosition = $binLogPosition;
1695
+	$this->binLogPosition = $binLogPosition;
1696 1696
   }
1697 1697
   public function getBinLogPosition()
1698 1698
   {
1699
-    return $this->binLogPosition;
1699
+	return $this->binLogPosition;
1700 1700
   }
1701 1701
   public function setKind($kind)
1702 1702
   {
1703
-    $this->kind = $kind;
1703
+	$this->kind = $kind;
1704 1704
   }
1705 1705
   public function getKind()
1706 1706
   {
1707
-    return $this->kind;
1707
+	return $this->kind;
1708 1708
   }
1709 1709
 }
1710 1710
 
@@ -1720,27 +1720,27 @@  discard block
 block discarded – undo
1720 1720
 
1721 1721
   public function setBinLogCoordinates(Google_Service_SQLAdmin_BinLogCoordinates $binLogCoordinates)
1722 1722
   {
1723
-    $this->binLogCoordinates = $binLogCoordinates;
1723
+	$this->binLogCoordinates = $binLogCoordinates;
1724 1724
   }
1725 1725
   public function getBinLogCoordinates()
1726 1726
   {
1727
-    return $this->binLogCoordinates;
1727
+	return $this->binLogCoordinates;
1728 1728
   }
1729 1729
   public function setDestinationInstanceName($destinationInstanceName)
1730 1730
   {
1731
-    $this->destinationInstanceName = $destinationInstanceName;
1731
+	$this->destinationInstanceName = $destinationInstanceName;
1732 1732
   }
1733 1733
   public function getDestinationInstanceName()
1734 1734
   {
1735
-    return $this->destinationInstanceName;
1735
+	return $this->destinationInstanceName;
1736 1736
   }
1737 1737
   public function setKind($kind)
1738 1738
   {
1739
-    $this->kind = $kind;
1739
+	$this->kind = $kind;
1740 1740
   }
1741 1741
   public function getKind()
1742 1742
   {
1743
-    return $this->kind;
1743
+	return $this->kind;
1744 1744
   }
1745 1745
 }
1746 1746
 
@@ -1760,67 +1760,67 @@  discard block
 block discarded – undo
1760 1760
 
1761 1761
   public function setCharset($charset)
1762 1762
   {
1763
-    $this->charset = $charset;
1763
+	$this->charset = $charset;
1764 1764
   }
1765 1765
   public function getCharset()
1766 1766
   {
1767
-    return $this->charset;
1767
+	return $this->charset;
1768 1768
   }
1769 1769
   public function setCollation($collation)
1770 1770
   {
1771
-    $this->collation = $collation;
1771
+	$this->collation = $collation;
1772 1772
   }
1773 1773
   public function getCollation()
1774 1774
   {
1775
-    return $this->collation;
1775
+	return $this->collation;
1776 1776
   }
1777 1777
   public function setEtag($etag)
1778 1778
   {
1779
-    $this->etag = $etag;
1779
+	$this->etag = $etag;
1780 1780
   }
1781 1781
   public function getEtag()
1782 1782
   {
1783
-    return $this->etag;
1783
+	return $this->etag;
1784 1784
   }
1785 1785
   public function setInstance($instance)
1786 1786
   {
1787
-    $this->instance = $instance;
1787
+	$this->instance = $instance;
1788 1788
   }
1789 1789
   public function getInstance()
1790 1790
   {
1791
-    return $this->instance;
1791
+	return $this->instance;
1792 1792
   }
1793 1793
   public function setKind($kind)
1794 1794
   {
1795
-    $this->kind = $kind;
1795
+	$this->kind = $kind;
1796 1796
   }
1797 1797
   public function getKind()
1798 1798
   {
1799
-    return $this->kind;
1799
+	return $this->kind;
1800 1800
   }
1801 1801
   public function setName($name)
1802 1802
   {
1803
-    $this->name = $name;
1803
+	$this->name = $name;
1804 1804
   }
1805 1805
   public function getName()
1806 1806
   {
1807
-    return $this->name;
1807
+	return $this->name;
1808 1808
   }
1809 1809
   public function setProject($project)
1810 1810
   {
1811
-    $this->project = $project;
1811
+	$this->project = $project;
1812 1812
   }
1813 1813
   public function getProject()
1814 1814
   {
1815
-    return $this->project;
1815
+	return $this->project;
1816 1816
   }
1817 1817
   public function setSelfLink($selfLink)
1818 1818
   {
1819
-    $this->selfLink = $selfLink;
1819
+	$this->selfLink = $selfLink;
1820 1820
   }
1821 1821
   public function getSelfLink()
1822 1822
   {
1823
-    return $this->selfLink;
1823
+	return $this->selfLink;
1824 1824
   }
1825 1825
 }
1826 1826
 
@@ -1834,19 +1834,19 @@  discard block
 block discarded – undo
1834 1834
 
1835 1835
   public function setName($name)
1836 1836
   {
1837
-    $this->name = $name;
1837
+	$this->name = $name;
1838 1838
   }
1839 1839
   public function getName()
1840 1840
   {
1841
-    return $this->name;
1841
+	return $this->name;
1842 1842
   }
1843 1843
   public function setValue($value)
1844 1844
   {
1845
-    $this->value = $value;
1845
+	$this->value = $value;
1846 1846
   }
1847 1847
   public function getValue()
1848 1848
   {
1849
-    return $this->value;
1849
+	return $this->value;
1850 1850
   }
1851 1851
 }
1852 1852
 
@@ -1884,163 +1884,163 @@  discard block
 block discarded – undo
1884 1884
 
1885 1885
   public function setCurrentDiskSize($currentDiskSize)
1886 1886
   {
1887
-    $this->currentDiskSize = $currentDiskSize;
1887
+	$this->currentDiskSize = $currentDiskSize;
1888 1888
   }
1889 1889
   public function getCurrentDiskSize()
1890 1890
   {
1891
-    return $this->currentDiskSize;
1891
+	return $this->currentDiskSize;
1892 1892
   }
1893 1893
   public function setDatabaseVersion($databaseVersion)
1894 1894
   {
1895
-    $this->databaseVersion = $databaseVersion;
1895
+	$this->databaseVersion = $databaseVersion;
1896 1896
   }
1897 1897
   public function getDatabaseVersion()
1898 1898
   {
1899
-    return $this->databaseVersion;
1899
+	return $this->databaseVersion;
1900 1900
   }
1901 1901
   public function setEtag($etag)
1902 1902
   {
1903
-    $this->etag = $etag;
1903
+	$this->etag = $etag;
1904 1904
   }
1905 1905
   public function getEtag()
1906 1906
   {
1907
-    return $this->etag;
1907
+	return $this->etag;
1908 1908
   }
1909 1909
   public function setInstanceType($instanceType)
1910 1910
   {
1911
-    $this->instanceType = $instanceType;
1911
+	$this->instanceType = $instanceType;
1912 1912
   }
1913 1913
   public function getInstanceType()
1914 1914
   {
1915
-    return $this->instanceType;
1915
+	return $this->instanceType;
1916 1916
   }
1917 1917
   public function setIpAddresses($ipAddresses)
1918 1918
   {
1919
-    $this->ipAddresses = $ipAddresses;
1919
+	$this->ipAddresses = $ipAddresses;
1920 1920
   }
1921 1921
   public function getIpAddresses()
1922 1922
   {
1923
-    return $this->ipAddresses;
1923
+	return $this->ipAddresses;
1924 1924
   }
1925 1925
   public function setIpv6Address($ipv6Address)
1926 1926
   {
1927
-    $this->ipv6Address = $ipv6Address;
1927
+	$this->ipv6Address = $ipv6Address;
1928 1928
   }
1929 1929
   public function getIpv6Address()
1930 1930
   {
1931
-    return $this->ipv6Address;
1931
+	return $this->ipv6Address;
1932 1932
   }
1933 1933
   public function setKind($kind)
1934 1934
   {
1935
-    $this->kind = $kind;
1935
+	$this->kind = $kind;
1936 1936
   }
1937 1937
   public function getKind()
1938 1938
   {
1939
-    return $this->kind;
1939
+	return $this->kind;
1940 1940
   }
1941 1941
   public function setMasterInstanceName($masterInstanceName)
1942 1942
   {
1943
-    $this->masterInstanceName = $masterInstanceName;
1943
+	$this->masterInstanceName = $masterInstanceName;
1944 1944
   }
1945 1945
   public function getMasterInstanceName()
1946 1946
   {
1947
-    return $this->masterInstanceName;
1947
+	return $this->masterInstanceName;
1948 1948
   }
1949 1949
   public function setMaxDiskSize($maxDiskSize)
1950 1950
   {
1951
-    $this->maxDiskSize = $maxDiskSize;
1951
+	$this->maxDiskSize = $maxDiskSize;
1952 1952
   }
1953 1953
   public function getMaxDiskSize()
1954 1954
   {
1955
-    return $this->maxDiskSize;
1955
+	return $this->maxDiskSize;
1956 1956
   }
1957 1957
   public function setName($name)
1958 1958
   {
1959
-    $this->name = $name;
1959
+	$this->name = $name;
1960 1960
   }
1961 1961
   public function getName()
1962 1962
   {
1963
-    return $this->name;
1963
+	return $this->name;
1964 1964
   }
1965 1965
   public function setOnPremisesConfiguration(Google_Service_SQLAdmin_OnPremisesConfiguration $onPremisesConfiguration)
1966 1966
   {
1967
-    $this->onPremisesConfiguration = $onPremisesConfiguration;
1967
+	$this->onPremisesConfiguration = $onPremisesConfiguration;
1968 1968
   }
1969 1969
   public function getOnPremisesConfiguration()
1970 1970
   {
1971
-    return $this->onPremisesConfiguration;
1971
+	return $this->onPremisesConfiguration;
1972 1972
   }
1973 1973
   public function setProject($project)
1974 1974
   {
1975
-    $this->project = $project;
1975
+	$this->project = $project;
1976 1976
   }
1977 1977
   public function getProject()
1978 1978
   {
1979
-    return $this->project;
1979
+	return $this->project;
1980 1980
   }
1981 1981
   public function setRegion($region)
1982 1982
   {
1983
-    $this->region = $region;
1983
+	$this->region = $region;
1984 1984
   }
1985 1985
   public function getRegion()
1986 1986
   {
1987
-    return $this->region;
1987
+	return $this->region;
1988 1988
   }
1989 1989
   public function setReplicaConfiguration(Google_Service_SQLAdmin_ReplicaConfiguration $replicaConfiguration)
1990 1990
   {
1991
-    $this->replicaConfiguration = $replicaConfiguration;
1991
+	$this->replicaConfiguration = $replicaConfiguration;
1992 1992
   }
1993 1993
   public function getReplicaConfiguration()
1994 1994
   {
1995
-    return $this->replicaConfiguration;
1995
+	return $this->replicaConfiguration;
1996 1996
   }
1997 1997
   public function setReplicaNames($replicaNames)
1998 1998
   {
1999
-    $this->replicaNames = $replicaNames;
1999
+	$this->replicaNames = $replicaNames;
2000 2000
   }
2001 2001
   public function getReplicaNames()
2002 2002
   {
2003
-    return $this->replicaNames;
2003
+	return $this->replicaNames;
2004 2004
   }
2005 2005
   public function setSelfLink($selfLink)
2006 2006
   {
2007
-    $this->selfLink = $selfLink;
2007
+	$this->selfLink = $selfLink;
2008 2008
   }
2009 2009
   public function getSelfLink()
2010 2010
   {
2011
-    return $this->selfLink;
2011
+	return $this->selfLink;
2012 2012
   }
2013 2013
   public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert)
2014 2014
   {
2015
-    $this->serverCaCert = $serverCaCert;
2015
+	$this->serverCaCert = $serverCaCert;
2016 2016
   }
2017 2017
   public function getServerCaCert()
2018 2018
   {
2019
-    return $this->serverCaCert;
2019
+	return $this->serverCaCert;
2020 2020
   }
2021 2021
   public function setServiceAccountEmailAddress($serviceAccountEmailAddress)
2022 2022
   {
2023
-    $this->serviceAccountEmailAddress = $serviceAccountEmailAddress;
2023
+	$this->serviceAccountEmailAddress = $serviceAccountEmailAddress;
2024 2024
   }
2025 2025
   public function getServiceAccountEmailAddress()
2026 2026
   {
2027
-    return $this->serviceAccountEmailAddress;
2027
+	return $this->serviceAccountEmailAddress;
2028 2028
   }
2029 2029
   public function setSettings(Google_Service_SQLAdmin_Settings $settings)
2030 2030
   {
2031
-    $this->settings = $settings;
2031
+	$this->settings = $settings;
2032 2032
   }
2033 2033
   public function getSettings()
2034 2034
   {
2035
-    return $this->settings;
2035
+	return $this->settings;
2036 2036
   }
2037 2037
   public function setState($state)
2038 2038
   {
2039
-    $this->state = $state;
2039
+	$this->state = $state;
2040 2040
   }
2041 2041
   public function getState()
2042 2042
   {
2043
-    return $this->state;
2043
+	return $this->state;
2044 2044
   }
2045 2045
 }
2046 2046
 
@@ -2056,19 +2056,19 @@  discard block
 block discarded – undo
2056 2056
 
2057 2057
   public function setItems($items)
2058 2058
   {
2059
-    $this->items = $items;
2059
+	$this->items = $items;
2060 2060
   }
2061 2061
   public function getItems()
2062 2062
   {
2063
-    return $this->items;
2063
+	return $this->items;
2064 2064
   }
2065 2065
   public function setKind($kind)
2066 2066
   {
2067
-    $this->kind = $kind;
2067
+	$this->kind = $kind;
2068 2068
   }
2069 2069
   public function getKind()
2070 2070
   {
2071
-    return $this->kind;
2071
+	return $this->kind;
2072 2072
   }
2073 2073
 }
2074 2074
 
@@ -2089,51 +2089,51 @@  discard block
 block discarded – undo
2089 2089
 
2090 2090
   public function setCsvExportOptions(Google_Service_SQLAdmin_ExportContextCsvExportOptions $csvExportOptions)
2091 2091
   {
2092
-    $this->csvExportOptions = $csvExportOptions;
2092
+	$this->csvExportOptions = $csvExportOptions;
2093 2093
   }
2094 2094
   public function getCsvExportOptions()
2095 2095
   {
2096
-    return $this->csvExportOptions;
2096
+	return $this->csvExportOptions;
2097 2097
   }
2098 2098
   public function setDatabases($databases)
2099 2099
   {
2100
-    $this->databases = $databases;
2100
+	$this->databases = $databases;
2101 2101
   }
2102 2102
   public function getDatabases()
2103 2103
   {
2104
-    return $this->databases;
2104
+	return $this->databases;
2105 2105
   }
2106 2106
   public function setFileType($fileType)
2107 2107
   {
2108
-    $this->fileType = $fileType;
2108
+	$this->fileType = $fileType;
2109 2109
   }
2110 2110
   public function getFileType()
2111 2111
   {
2112
-    return $this->fileType;
2112
+	return $this->fileType;
2113 2113
   }
2114 2114
   public function setKind($kind)
2115 2115
   {
2116
-    $this->kind = $kind;
2116
+	$this->kind = $kind;
2117 2117
   }
2118 2118
   public function getKind()
2119 2119
   {
2120
-    return $this->kind;
2120
+	return $this->kind;
2121 2121
   }
2122 2122
   public function setSqlExportOptions(Google_Service_SQLAdmin_ExportContextSqlExportOptions $sqlExportOptions)
2123 2123
   {
2124
-    $this->sqlExportOptions = $sqlExportOptions;
2124
+	$this->sqlExportOptions = $sqlExportOptions;
2125 2125
   }
2126 2126
   public function getSqlExportOptions()
2127 2127
   {
2128
-    return $this->sqlExportOptions;
2128
+	return $this->sqlExportOptions;
2129 2129
   }
2130 2130
   public function setUri($uri)
2131 2131
   {
2132
-    $this->uri = $uri;
2132
+	$this->uri = $uri;
2133 2133
   }
2134 2134
   public function getUri()
2135 2135
   {
2136
-    return $this->uri;
2136
+	return $this->uri;
2137 2137
   }
2138 2138
 }
2139 2139
 
@@ -2146,11 +2146,11 @@  discard block
 block discarded – undo
2146 2146
 
2147 2147
   public function setSelectQuery($selectQuery)
2148 2148
   {
2149
-    $this->selectQuery = $selectQuery;
2149
+	$this->selectQuery = $selectQuery;
2150 2150
   }
2151 2151
   public function getSelectQuery()
2152 2152
   {
2153
-    return $this->selectQuery;
2153
+	return $this->selectQuery;
2154 2154
   }
2155 2155
 }
2156 2156
 
@@ -2164,11 +2164,11 @@  discard block
 block discarded – undo
2164 2164
 
2165 2165
   public function setTables($tables)
2166 2166
   {
2167
-    $this->tables = $tables;
2167
+	$this->tables = $tables;
2168 2168
   }
2169 2169
   public function getTables()
2170 2170
   {
2171
-    return $this->tables;
2171
+	return $this->tables;
2172 2172
   }
2173 2173
 }
2174 2174
 
@@ -2188,59 +2188,59 @@  discard block
 block discarded – undo
2188 2188
 
2189 2189
   public function setAllowedStringValues($allowedStringValues)
2190 2190
   {
2191
-    $this->allowedStringValues = $allowedStringValues;
2191
+	$this->allowedStringValues = $allowedStringValues;
2192 2192
   }
2193 2193
   public function getAllowedStringValues()
2194 2194
   {
2195
-    return $this->allowedStringValues;
2195
+	return $this->allowedStringValues;
2196 2196
   }
2197 2197
   public function setAppliesTo($appliesTo)
2198 2198
   {
2199
-    $this->appliesTo = $appliesTo;
2199
+	$this->appliesTo = $appliesTo;
2200 2200
   }
2201 2201
   public function getAppliesTo()
2202 2202
   {
2203
-    return $this->appliesTo;
2203
+	return $this->appliesTo;
2204 2204
   }
2205 2205
   public function setKind($kind)
2206 2206
   {
2207
-    $this->kind = $kind;
2207
+	$this->kind = $kind;
2208 2208
   }
2209 2209
   public function getKind()
2210 2210
   {
2211
-    return $this->kind;
2211
+	return $this->kind;
2212 2212
   }
2213 2213
   public function setMaxValue($maxValue)
2214 2214
   {
2215
-    $this->maxValue = $maxValue;
2215
+	$this->maxValue = $maxValue;
2216 2216
   }
2217 2217
   public function getMaxValue()
2218 2218
   {
2219
-    return $this->maxValue;
2219
+	return $this->maxValue;
2220 2220
   }
2221 2221
   public function setMinValue($minValue)
2222 2222
   {
2223
-    $this->minValue = $minValue;
2223
+	$this->minValue = $minValue;
2224 2224
   }
2225 2225
   public function getMinValue()
2226 2226
   {
2227
-    return $this->minValue;
2227
+	return $this->minValue;
2228 2228
   }
2229 2229
   public function setName($name)
2230 2230
   {
2231
-    $this->name = $name;
2231
+	$this->name = $name;
2232 2232
   }
2233 2233
   public function getName()
2234 2234
   {
2235
-    return $this->name;
2235
+	return $this->name;
2236 2236
   }
2237 2237
   public function setType($type)
2238 2238
   {
2239
-    $this->type = $type;
2239
+	$this->type = $type;
2240 2240
   }
2241 2241
   public function getType()
2242 2242
   {
2243
-    return $this->type;
2243
+	return $this->type;
2244 2244
   }
2245 2245
 }
2246 2246
 
@@ -2256,19 +2256,19 @@  discard block
 block discarded – undo
2256 2256
 
2257 2257
   public function setItems($items)
2258 2258
   {
2259
-    $this->items = $items;
2259
+	$this->items = $items;
2260 2260
   }
2261 2261
   public function getItems()
2262 2262
   {
2263
-    return $this->items;
2263
+	return $this->items;
2264 2264
   }
2265 2265
   public function setKind($kind)
2266 2266
   {
2267
-    $this->kind = $kind;
2267
+	$this->kind = $kind;
2268 2268
   }
2269 2269
   public function getKind()
2270 2270
   {
2271
-    return $this->kind;
2271
+	return $this->kind;
2272 2272
   }
2273 2273
 }
2274 2274
 
@@ -2286,43 +2286,43 @@  discard block
 block discarded – undo
2286 2286
 
2287 2287
   public function setCsvImportOptions(Google_Service_SQLAdmin_ImportContextCsvImportOptions $csvImportOptions)
2288 2288
   {
2289
-    $this->csvImportOptions = $csvImportOptions;
2289
+	$this->csvImportOptions = $csvImportOptions;
2290 2290
   }
2291 2291
   public function getCsvImportOptions()
2292 2292
   {
2293
-    return $this->csvImportOptions;
2293
+	return $this->csvImportOptions;
2294 2294
   }
2295 2295
   public function setDatabase($database)
2296 2296
   {
2297
-    $this->database = $database;
2297
+	$this->database = $database;
2298 2298
   }
2299 2299
   public function getDatabase()
2300 2300
   {
2301
-    return $this->database;
2301
+	return $this->database;
2302 2302
   }
2303 2303
   public function setFileType($fileType)
2304 2304
   {
2305
-    $this->fileType = $fileType;
2305
+	$this->fileType = $fileType;
2306 2306
   }
2307 2307
   public function getFileType()
2308 2308
   {
2309
-    return $this->fileType;
2309
+	return $this->fileType;
2310 2310
   }
2311 2311
   public function setKind($kind)
2312 2312
   {
2313
-    $this->kind = $kind;
2313
+	$this->kind = $kind;
2314 2314
   }
2315 2315
   public function getKind()
2316 2316
   {
2317
-    return $this->kind;
2317
+	return $this->kind;
2318 2318
   }
2319 2319
   public function setUri($uri)
2320 2320
   {
2321
-    $this->uri = $uri;
2321
+	$this->uri = $uri;
2322 2322
   }
2323 2323
   public function getUri()
2324 2324
   {
2325
-    return $this->uri;
2325
+	return $this->uri;
2326 2326
   }
2327 2327
 }
2328 2328
 
@@ -2337,19 +2337,19 @@  discard block
 block discarded – undo
2337 2337
 
2338 2338
   public function setColumns($columns)
2339 2339
   {
2340
-    $this->columns = $columns;
2340
+	$this->columns = $columns;
2341 2341
   }
2342 2342
   public function getColumns()
2343 2343
   {
2344
-    return $this->columns;
2344
+	return $this->columns;
2345 2345
   }
2346 2346
   public function setTable($table)
2347 2347
   {
2348
-    $this->table = $table;
2348
+	$this->table = $table;
2349 2349
   }
2350 2350
   public function getTable()
2351 2351
   {
2352
-    return $this->table;
2352
+	return $this->table;
2353 2353
   }
2354 2354
 }
2355 2355
 
@@ -2363,11 +2363,11 @@  discard block
 block discarded – undo
2363 2363
 
2364 2364
   public function setCloneContext(Google_Service_SQLAdmin_CloneContext $cloneContext)
2365 2365
   {
2366
-    $this->cloneContext = $cloneContext;
2366
+	$this->cloneContext = $cloneContext;
2367 2367
   }
2368 2368
   public function getCloneContext()
2369 2369
   {
2370
-    return $this->cloneContext;
2370
+	return $this->cloneContext;
2371 2371
   }
2372 2372
 }
2373 2373
 
@@ -2381,11 +2381,11 @@  discard block
 block discarded – undo
2381 2381
 
2382 2382
   public function setExportContext(Google_Service_SQLAdmin_ExportContext $exportContext)
2383 2383
   {
2384
-    $this->exportContext = $exportContext;
2384
+	$this->exportContext = $exportContext;
2385 2385
   }
2386 2386
   public function getExportContext()
2387 2387
   {
2388
-    return $this->exportContext;
2388
+	return $this->exportContext;
2389 2389
   }
2390 2390
 }
2391 2391
 
@@ -2399,11 +2399,11 @@  discard block
 block discarded – undo
2399 2399
 
2400 2400
   public function setImportContext(Google_Service_SQLAdmin_ImportContext $importContext)
2401 2401
   {
2402
-    $this->importContext = $importContext;
2402
+	$this->importContext = $importContext;
2403 2403
   }
2404 2404
   public function getImportContext()
2405 2405
   {
2406
-    return $this->importContext;
2406
+	return $this->importContext;
2407 2407
   }
2408 2408
 }
2409 2409
 
@@ -2420,27 +2420,27 @@  discard block
 block discarded – undo
2420 2420
 
2421 2421
   public function setItems($items)
2422 2422
   {
2423
-    $this->items = $items;
2423
+	$this->items = $items;
2424 2424
   }
2425 2425
   public function getItems()
2426 2426
   {
2427
-    return $this->items;
2427
+	return $this->items;
2428 2428
   }
2429 2429
   public function setKind($kind)
2430 2430
   {
2431
-    $this->kind = $kind;
2431
+	$this->kind = $kind;
2432 2432
   }
2433 2433
   public function getKind()
2434 2434
   {
2435
-    return $this->kind;
2435
+	return $this->kind;
2436 2436
   }
2437 2437
   public function setNextPageToken($nextPageToken)
2438 2438
   {
2439
-    $this->nextPageToken = $nextPageToken;
2439
+	$this->nextPageToken = $nextPageToken;
2440 2440
   }
2441 2441
   public function getNextPageToken()
2442 2442
   {
2443
-    return $this->nextPageToken;
2443
+	return $this->nextPageToken;
2444 2444
   }
2445 2445
 }
2446 2446
 
@@ -2454,11 +2454,11 @@  discard block
 block discarded – undo
2454 2454
 
2455 2455
   public function setRestoreBackupContext(Google_Service_SQLAdmin_RestoreBackupContext $restoreBackupContext)
2456 2456
   {
2457
-    $this->restoreBackupContext = $restoreBackupContext;
2457
+	$this->restoreBackupContext = $restoreBackupContext;
2458 2458
   }
2459 2459
   public function getRestoreBackupContext()
2460 2460
   {
2461
-    return $this->restoreBackupContext;
2461
+	return $this->restoreBackupContext;
2462 2462
   }
2463 2463
 }
2464 2464
 
@@ -2475,27 +2475,27 @@  discard block
 block discarded – undo
2475 2475
 
2476 2476
   public function setAuthorizedNetworks($authorizedNetworks)
2477 2477
   {
2478
-    $this->authorizedNetworks = $authorizedNetworks;
2478
+	$this->authorizedNetworks = $authorizedNetworks;
2479 2479
   }
2480 2480
   public function getAuthorizedNetworks()
2481 2481
   {
2482
-    return $this->authorizedNetworks;
2482
+	return $this->authorizedNetworks;
2483 2483
   }
2484 2484
   public function setIpv4Enabled($ipv4Enabled)
2485 2485
   {
2486
-    $this->ipv4Enabled = $ipv4Enabled;
2486
+	$this->ipv4Enabled = $ipv4Enabled;
2487 2487
   }
2488 2488
   public function getIpv4Enabled()
2489 2489
   {
2490
-    return $this->ipv4Enabled;
2490
+	return $this->ipv4Enabled;
2491 2491
   }
2492 2492
   public function setRequireSsl($requireSsl)
2493 2493
   {
2494
-    $this->requireSsl = $requireSsl;
2494
+	$this->requireSsl = $requireSsl;
2495 2495
   }
2496 2496
   public function getRequireSsl()
2497 2497
   {
2498
-    return $this->requireSsl;
2498
+	return $this->requireSsl;
2499 2499
   }
2500 2500
 }
2501 2501
 
@@ -2509,19 +2509,19 @@  discard block
 block discarded – undo
2509 2509
 
2510 2510
   public function setIpAddress($ipAddress)
2511 2511
   {
2512
-    $this->ipAddress = $ipAddress;
2512
+	$this->ipAddress = $ipAddress;
2513 2513
   }
2514 2514
   public function getIpAddress()
2515 2515
   {
2516
-    return $this->ipAddress;
2516
+	return $this->ipAddress;
2517 2517
   }
2518 2518
   public function setTimeToRetire($timeToRetire)
2519 2519
   {
2520
-    $this->timeToRetire = $timeToRetire;
2520
+	$this->timeToRetire = $timeToRetire;
2521 2521
   }
2522 2522
   public function getTimeToRetire()
2523 2523
   {
2524
-    return $this->timeToRetire;
2524
+	return $this->timeToRetire;
2525 2525
   }
2526 2526
 }
2527 2527
 
@@ -2536,27 +2536,27 @@  discard block
 block discarded – undo
2536 2536
 
2537 2537
   public function setFollowGaeApplication($followGaeApplication)
2538 2538
   {
2539
-    $this->followGaeApplication = $followGaeApplication;
2539
+	$this->followGaeApplication = $followGaeApplication;
2540 2540
   }
2541 2541
   public function getFollowGaeApplication()
2542 2542
   {
2543
-    return $this->followGaeApplication;
2543
+	return $this->followGaeApplication;
2544 2544
   }
2545 2545
   public function setKind($kind)
2546 2546
   {
2547
-    $this->kind = $kind;
2547
+	$this->kind = $kind;
2548 2548
   }
2549 2549
   public function getKind()
2550 2550
   {
2551
-    return $this->kind;
2551
+	return $this->kind;
2552 2552
   }
2553 2553
   public function setZone($zone)
2554 2554
   {
2555
-    $this->zone = $zone;
2555
+	$this->zone = $zone;
2556 2556
   }
2557 2557
   public function getZone()
2558 2558
   {
2559
-    return $this->zone;
2559
+	return $this->zone;
2560 2560
   }
2561 2561
 }
2562 2562
 
@@ -2579,91 +2579,91 @@  discard block
 block discarded – undo
2579 2579
 
2580 2580
   public function setCaCertificate($caCertificate)
2581 2581
   {
2582
-    $this->caCertificate = $caCertificate;
2582
+	$this->caCertificate = $caCertificate;
2583 2583
   }
2584 2584
   public function getCaCertificate()
2585 2585
   {
2586
-    return $this->caCertificate;
2586
+	return $this->caCertificate;
2587 2587
   }
2588 2588
   public function setClientCertificate($clientCertificate)
2589 2589
   {
2590
-    $this->clientCertificate = $clientCertificate;
2590
+	$this->clientCertificate = $clientCertificate;
2591 2591
   }
2592 2592
   public function getClientCertificate()
2593 2593
   {
2594
-    return $this->clientCertificate;
2594
+	return $this->clientCertificate;
2595 2595
   }
2596 2596
   public function setClientKey($clientKey)
2597 2597
   {
2598
-    $this->clientKey = $clientKey;
2598
+	$this->clientKey = $clientKey;
2599 2599
   }
2600 2600
   public function getClientKey()
2601 2601
   {
2602
-    return $this->clientKey;
2602
+	return $this->clientKey;
2603 2603
   }
2604 2604
   public function setConnectRetryInterval($connectRetryInterval)
2605 2605
   {
2606
-    $this->connectRetryInterval = $connectRetryInterval;
2606
+	$this->connectRetryInterval = $connectRetryInterval;
2607 2607
   }
2608 2608
   public function getConnectRetryInterval()
2609 2609
   {
2610
-    return $this->connectRetryInterval;
2610
+	return $this->connectRetryInterval;
2611 2611
   }
2612 2612
   public function setDumpFilePath($dumpFilePath)
2613 2613
   {
2614
-    $this->dumpFilePath = $dumpFilePath;
2614
+	$this->dumpFilePath = $dumpFilePath;
2615 2615
   }
2616 2616
   public function getDumpFilePath()
2617 2617
   {
2618
-    return $this->dumpFilePath;
2618
+	return $this->dumpFilePath;
2619 2619
   }
2620 2620
   public function setKind($kind)
2621 2621
   {
2622
-    $this->kind = $kind;
2622
+	$this->kind = $kind;
2623 2623
   }
2624 2624
   public function getKind()
2625 2625
   {
2626
-    return $this->kind;
2626
+	return $this->kind;
2627 2627
   }
2628 2628
   public function setMasterHeartbeatPeriod($masterHeartbeatPeriod)
2629 2629
   {
2630
-    $this->masterHeartbeatPeriod = $masterHeartbeatPeriod;
2630
+	$this->masterHeartbeatPeriod = $masterHeartbeatPeriod;
2631 2631
   }
2632 2632
   public function getMasterHeartbeatPeriod()
2633 2633
   {
2634
-    return $this->masterHeartbeatPeriod;
2634
+	return $this->masterHeartbeatPeriod;
2635 2635
   }
2636 2636
   public function setPassword($password)
2637 2637
   {
2638
-    $this->password = $password;
2638
+	$this->password = $password;
2639 2639
   }
2640 2640
   public function getPassword()
2641 2641
   {
2642
-    return $this->password;
2642
+	return $this->password;
2643 2643
   }
2644 2644
   public function setSslCipher($sslCipher)
2645 2645
   {
2646
-    $this->sslCipher = $sslCipher;
2646
+	$this->sslCipher = $sslCipher;
2647 2647
   }
2648 2648
   public function getSslCipher()
2649 2649
   {
2650
-    return $this->sslCipher;
2650
+	return $this->sslCipher;
2651 2651
   }
2652 2652
   public function setUsername($username)
2653 2653
   {
2654
-    $this->username = $username;
2654
+	$this->username = $username;
2655 2655
   }
2656 2656
   public function getUsername()
2657 2657
   {
2658
-    return $this->username;
2658
+	return $this->username;
2659 2659
   }
2660 2660
   public function setVerifyServerCertificate($verifyServerCertificate)
2661 2661
   {
2662
-    $this->verifyServerCertificate = $verifyServerCertificate;
2662
+	$this->verifyServerCertificate = $verifyServerCertificate;
2663 2663
   }
2664 2664
   public function getVerifyServerCertificate()
2665 2665
   {
2666
-    return $this->verifyServerCertificate;
2666
+	return $this->verifyServerCertificate;
2667 2667
   }
2668 2668
 }
2669 2669
 
@@ -2677,19 +2677,19 @@  discard block
 block discarded – undo
2677 2677
 
2678 2678
   public function setHostPort($hostPort)
2679 2679
   {
2680
-    $this->hostPort = $hostPort;
2680
+	$this->hostPort = $hostPort;
2681 2681
   }
2682 2682
   public function getHostPort()
2683 2683
   {
2684
-    return $this->hostPort;
2684
+	return $this->hostPort;
2685 2685
   }
2686 2686
   public function setKind($kind)
2687 2687
   {
2688
-    $this->kind = $kind;
2688
+	$this->kind = $kind;
2689 2689
   }
2690 2690
   public function getKind()
2691 2691
   {
2692
-    return $this->kind;
2692
+	return $this->kind;
2693 2693
   }
2694 2694
 }
2695 2695
 
@@ -2719,123 +2719,123 @@  discard block
 block discarded – undo
2719 2719
 
2720 2720
   public function setEndTime($endTime)
2721 2721
   {
2722
-    $this->endTime = $endTime;
2722
+	$this->endTime = $endTime;
2723 2723
   }
2724 2724
   public function getEndTime()
2725 2725
   {
2726
-    return $this->endTime;
2726
+	return $this->endTime;
2727 2727
   }
2728 2728
   public function setError(Google_Service_SQLAdmin_OperationErrors $error)
2729 2729
   {
2730
-    $this->error = $error;
2730
+	$this->error = $error;
2731 2731
   }
2732 2732
   public function getError()
2733 2733
   {
2734
-    return $this->error;
2734
+	return $this->error;
2735 2735
   }
2736 2736
   public function setExportContext(Google_Service_SQLAdmin_ExportContext $exportContext)
2737 2737
   {
2738
-    $this->exportContext = $exportContext;
2738
+	$this->exportContext = $exportContext;
2739 2739
   }
2740 2740
   public function getExportContext()
2741 2741
   {
2742
-    return $this->exportContext;
2742
+	return $this->exportContext;
2743 2743
   }
2744 2744
   public function setImportContext(Google_Service_SQLAdmin_ImportContext $importContext)
2745 2745
   {
2746
-    $this->importContext = $importContext;
2746
+	$this->importContext = $importContext;
2747 2747
   }
2748 2748
   public function getImportContext()
2749 2749
   {
2750
-    return $this->importContext;
2750
+	return $this->importContext;
2751 2751
   }
2752 2752
   public function setInsertTime($insertTime)
2753 2753
   {
2754
-    $this->insertTime = $insertTime;
2754
+	$this->insertTime = $insertTime;
2755 2755
   }
2756 2756
   public function getInsertTime()
2757 2757
   {
2758
-    return $this->insertTime;
2758
+	return $this->insertTime;
2759 2759
   }
2760 2760
   public function setKind($kind)
2761 2761
   {
2762
-    $this->kind = $kind;
2762
+	$this->kind = $kind;
2763 2763
   }
2764 2764
   public function getKind()
2765 2765
   {
2766
-    return $this->kind;
2766
+	return $this->kind;
2767 2767
   }
2768 2768
   public function setName($name)
2769 2769
   {
2770
-    $this->name = $name;
2770
+	$this->name = $name;
2771 2771
   }
2772 2772
   public function getName()
2773 2773
   {
2774
-    return $this->name;
2774
+	return $this->name;
2775 2775
   }
2776 2776
   public function setOperationType($operationType)
2777 2777
   {
2778
-    $this->operationType = $operationType;
2778
+	$this->operationType = $operationType;
2779 2779
   }
2780 2780
   public function getOperationType()
2781 2781
   {
2782
-    return $this->operationType;
2782
+	return $this->operationType;
2783 2783
   }
2784 2784
   public function setSelfLink($selfLink)
2785 2785
   {
2786
-    $this->selfLink = $selfLink;
2786
+	$this->selfLink = $selfLink;
2787 2787
   }
2788 2788
   public function getSelfLink()
2789 2789
   {
2790
-    return $this->selfLink;
2790
+	return $this->selfLink;
2791 2791
   }
2792 2792
   public function setStartTime($startTime)
2793 2793
   {
2794
-    $this->startTime = $startTime;
2794
+	$this->startTime = $startTime;
2795 2795
   }
2796 2796
   public function getStartTime()
2797 2797
   {
2798
-    return $this->startTime;
2798
+	return $this->startTime;
2799 2799
   }
2800 2800
   public function setStatus($status)
2801 2801
   {
2802
-    $this->status = $status;
2802
+	$this->status = $status;
2803 2803
   }
2804 2804
   public function getStatus()
2805 2805
   {
2806
-    return $this->status;
2806
+	return $this->status;
2807 2807
   }
2808 2808
   public function setTargetId($targetId)
2809 2809
   {
2810
-    $this->targetId = $targetId;
2810
+	$this->targetId = $targetId;
2811 2811
   }
2812 2812
   public function getTargetId()
2813 2813
   {
2814
-    return $this->targetId;
2814
+	return $this->targetId;
2815 2815
   }
2816 2816
   public function setTargetLink($targetLink)
2817 2817
   {
2818
-    $this->targetLink = $targetLink;
2818
+	$this->targetLink = $targetLink;
2819 2819
   }
2820 2820
   public function getTargetLink()
2821 2821
   {
2822
-    return $this->targetLink;
2822
+	return $this->targetLink;
2823 2823
   }
2824 2824
   public function setTargetProject($targetProject)
2825 2825
   {
2826
-    $this->targetProject = $targetProject;
2826
+	$this->targetProject = $targetProject;
2827 2827
   }
2828 2828
   public function getTargetProject()
2829 2829
   {
2830
-    return $this->targetProject;
2830
+	return $this->targetProject;
2831 2831
   }
2832 2832
   public function setUser($user)
2833 2833
   {
2834
-    $this->user = $user;
2834
+	$this->user = $user;
2835 2835
   }
2836 2836
   public function getUser()
2837 2837
   {
2838
-    return $this->user;
2838
+	return $this->user;
2839 2839
   }
2840 2840
 }
2841 2841
 
@@ -2850,27 +2850,27 @@  discard block
 block discarded – undo
2850 2850
 
2851 2851
   public function setCode($code)
2852 2852
   {
2853
-    $this->code = $code;
2853
+	$this->code = $code;
2854 2854
   }
2855 2855
   public function getCode()
2856 2856
   {
2857
-    return $this->code;
2857
+	return $this->code;
2858 2858
   }
2859 2859
   public function setKind($kind)
2860 2860
   {
2861
-    $this->kind = $kind;
2861
+	$this->kind = $kind;
2862 2862
   }
2863 2863
   public function getKind()
2864 2864
   {
2865
-    return $this->kind;
2865
+	return $this->kind;
2866 2866
   }
2867 2867
   public function setMessage($message)
2868 2868
   {
2869
-    $this->message = $message;
2869
+	$this->message = $message;
2870 2870
   }
2871 2871
   public function getMessage()
2872 2872
   {
2873
-    return $this->message;
2873
+	return $this->message;
2874 2874
   }
2875 2875
 }
2876 2876
 
@@ -2886,19 +2886,19 @@  discard block
 block discarded – undo
2886 2886
 
2887 2887
   public function setErrors($errors)
2888 2888
   {
2889
-    $this->errors = $errors;
2889
+	$this->errors = $errors;
2890 2890
   }
2891 2891
   public function getErrors()
2892 2892
   {
2893
-    return $this->errors;
2893
+	return $this->errors;
2894 2894
   }
2895 2895
   public function setKind($kind)
2896 2896
   {
2897
-    $this->kind = $kind;
2897
+	$this->kind = $kind;
2898 2898
   }
2899 2899
   public function getKind()
2900 2900
   {
2901
-    return $this->kind;
2901
+	return $this->kind;
2902 2902
   }
2903 2903
 }
2904 2904
 
@@ -2915,27 +2915,27 @@  discard block
 block discarded – undo
2915 2915
 
2916 2916
   public function setItems($items)
2917 2917
   {
2918
-    $this->items = $items;
2918
+	$this->items = $items;
2919 2919
   }
2920 2920
   public function getItems()
2921 2921
   {
2922
-    return $this->items;
2922
+	return $this->items;
2923 2923
   }
2924 2924
   public function setKind($kind)
2925 2925
   {
2926
-    $this->kind = $kind;
2926
+	$this->kind = $kind;
2927 2927
   }
2928 2928
   public function getKind()
2929 2929
   {
2930
-    return $this->kind;
2930
+	return $this->kind;
2931 2931
   }
2932 2932
   public function setNextPageToken($nextPageToken)
2933 2933
   {
2934
-    $this->nextPageToken = $nextPageToken;
2934
+	$this->nextPageToken = $nextPageToken;
2935 2935
   }
2936 2936
   public function getNextPageToken()
2937 2937
   {
2938
-    return $this->nextPageToken;
2938
+	return $this->nextPageToken;
2939 2939
   }
2940 2940
 }
2941 2941
 
@@ -2950,19 +2950,19 @@  discard block
 block discarded – undo
2950 2950
 
2951 2951
   public function setKind($kind)
2952 2952
   {
2953
-    $this->kind = $kind;
2953
+	$this->kind = $kind;
2954 2954
   }
2955 2955
   public function getKind()
2956 2956
   {
2957
-    return $this->kind;
2957
+	return $this->kind;
2958 2958
   }
2959 2959
   public function setMysqlReplicaConfiguration(Google_Service_SQLAdmin_MySqlReplicaConfiguration $mysqlReplicaConfiguration)
2960 2960
   {
2961
-    $this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration;
2961
+	$this->mysqlReplicaConfiguration = $mysqlReplicaConfiguration;
2962 2962
   }
2963 2963
   public function getMysqlReplicaConfiguration()
2964 2964
   {
2965
-    return $this->mysqlReplicaConfiguration;
2965
+	return $this->mysqlReplicaConfiguration;
2966 2966
   }
2967 2967
 }
2968 2968
 
@@ -2977,27 +2977,27 @@  discard block
 block discarded – undo
2977 2977
 
2978 2978
   public function setBackupRunId($backupRunId)
2979 2979
   {
2980
-    $this->backupRunId = $backupRunId;
2980
+	$this->backupRunId = $backupRunId;
2981 2981
   }
2982 2982
   public function getBackupRunId()
2983 2983
   {
2984
-    return $this->backupRunId;
2984
+	return $this->backupRunId;
2985 2985
   }
2986 2986
   public function setInstanceId($instanceId)
2987 2987
   {
2988
-    $this->instanceId = $instanceId;
2988
+	$this->instanceId = $instanceId;
2989 2989
   }
2990 2990
   public function getInstanceId()
2991 2991
   {
2992
-    return $this->instanceId;
2992
+	return $this->instanceId;
2993 2993
   }
2994 2994
   public function setKind($kind)
2995 2995
   {
2996
-    $this->kind = $kind;
2996
+	$this->kind = $kind;
2997 2997
   }
2998 2998
   public function getKind()
2999 2999
   {
3000
-    return $this->kind;
3000
+	return $this->kind;
3001 3001
   }
3002 3002
 }
3003 3003
 
@@ -3027,107 +3027,107 @@  discard block
 block discarded – undo
3027 3027
 
3028 3028
   public function setActivationPolicy($activationPolicy)
3029 3029
   {
3030
-    $this->activationPolicy = $activationPolicy;
3030
+	$this->activationPolicy = $activationPolicy;
3031 3031
   }
3032 3032
   public function getActivationPolicy()
3033 3033
   {
3034
-    return $this->activationPolicy;
3034
+	return $this->activationPolicy;
3035 3035
   }
3036 3036
   public function setAuthorizedGaeApplications($authorizedGaeApplications)
3037 3037
   {
3038
-    $this->authorizedGaeApplications = $authorizedGaeApplications;
3038
+	$this->authorizedGaeApplications = $authorizedGaeApplications;
3039 3039
   }
3040 3040
   public function getAuthorizedGaeApplications()
3041 3041
   {
3042
-    return $this->authorizedGaeApplications;
3042
+	return $this->authorizedGaeApplications;
3043 3043
   }
3044 3044
   public function setBackupConfiguration(Google_Service_SQLAdmin_BackupConfiguration $backupConfiguration)
3045 3045
   {
3046
-    $this->backupConfiguration = $backupConfiguration;
3046
+	$this->backupConfiguration = $backupConfiguration;
3047 3047
   }
3048 3048
   public function getBackupConfiguration()
3049 3049
   {
3050
-    return $this->backupConfiguration;
3050
+	return $this->backupConfiguration;
3051 3051
   }
3052 3052
   public function setCrashSafeReplicationEnabled($crashSafeReplicationEnabled)
3053 3053
   {
3054
-    $this->crashSafeReplicationEnabled = $crashSafeReplicationEnabled;
3054
+	$this->crashSafeReplicationEnabled = $crashSafeReplicationEnabled;
3055 3055
   }
3056 3056
   public function getCrashSafeReplicationEnabled()
3057 3057
   {
3058
-    return $this->crashSafeReplicationEnabled;
3058
+	return $this->crashSafeReplicationEnabled;
3059 3059
   }
3060 3060
   public function setDatabaseFlags($databaseFlags)
3061 3061
   {
3062
-    $this->databaseFlags = $databaseFlags;
3062
+	$this->databaseFlags = $databaseFlags;
3063 3063
   }
3064 3064
   public function getDatabaseFlags()
3065 3065
   {
3066
-    return $this->databaseFlags;
3066
+	return $this->databaseFlags;
3067 3067
   }
3068 3068
   public function setDatabaseReplicationEnabled($databaseReplicationEnabled)
3069 3069
   {
3070
-    $this->databaseReplicationEnabled = $databaseReplicationEnabled;
3070
+	$this->databaseReplicationEnabled = $databaseReplicationEnabled;
3071 3071
   }
3072 3072
   public function getDatabaseReplicationEnabled()
3073 3073
   {
3074
-    return $this->databaseReplicationEnabled;
3074
+	return $this->databaseReplicationEnabled;
3075 3075
   }
3076 3076
   public function setIpConfiguration(Google_Service_SQLAdmin_IpConfiguration $ipConfiguration)
3077 3077
   {
3078
-    $this->ipConfiguration = $ipConfiguration;
3078
+	$this->ipConfiguration = $ipConfiguration;
3079 3079
   }
3080 3080
   public function getIpConfiguration()
3081 3081
   {
3082
-    return $this->ipConfiguration;
3082
+	return $this->ipConfiguration;
3083 3083
   }
3084 3084
   public function setKind($kind)
3085 3085
   {
3086
-    $this->kind = $kind;
3086
+	$this->kind = $kind;
3087 3087
   }
3088 3088
   public function getKind()
3089 3089
   {
3090
-    return $this->kind;
3090
+	return $this->kind;
3091 3091
   }
3092 3092
   public function setLocationPreference(Google_Service_SQLAdmin_LocationPreference $locationPreference)
3093 3093
   {
3094
-    $this->locationPreference = $locationPreference;
3094
+	$this->locationPreference = $locationPreference;
3095 3095
   }
3096 3096
   public function getLocationPreference()
3097 3097
   {
3098
-    return $this->locationPreference;
3098
+	return $this->locationPreference;
3099 3099
   }
3100 3100
   public function setPricingPlan($pricingPlan)
3101 3101
   {
3102
-    $this->pricingPlan = $pricingPlan;
3102
+	$this->pricingPlan = $pricingPlan;
3103 3103
   }
3104 3104
   public function getPricingPlan()
3105 3105
   {
3106
-    return $this->pricingPlan;
3106
+	return $this->pricingPlan;
3107 3107
   }
3108 3108
   public function setReplicationType($replicationType)
3109 3109
   {
3110
-    $this->replicationType = $replicationType;
3110
+	$this->replicationType = $replicationType;
3111 3111
   }
3112 3112
   public function getReplicationType()
3113 3113
   {
3114
-    return $this->replicationType;
3114
+	return $this->replicationType;
3115 3115
   }
3116 3116
   public function setSettingsVersion($settingsVersion)
3117 3117
   {
3118
-    $this->settingsVersion = $settingsVersion;
3118
+	$this->settingsVersion = $settingsVersion;
3119 3119
   }
3120 3120
   public function getSettingsVersion()
3121 3121
   {
3122
-    return $this->settingsVersion;
3122
+	return $this->settingsVersion;
3123 3123
   }
3124 3124
   public function setTier($tier)
3125 3125
   {
3126
-    $this->tier = $tier;
3126
+	$this->tier = $tier;
3127 3127
   }
3128 3128
   public function getTier()
3129 3129
   {
3130
-    return $this->tier;
3130
+	return $this->tier;
3131 3131
   }
3132 3132
 }
3133 3133
 
@@ -3148,75 +3148,75 @@  discard block
 block discarded – undo
3148 3148
 
3149 3149
   public function setCert($cert)
3150 3150
   {
3151
-    $this->cert = $cert;
3151
+	$this->cert = $cert;
3152 3152
   }
3153 3153
   public function getCert()
3154 3154
   {
3155
-    return $this->cert;
3155
+	return $this->cert;
3156 3156
   }
3157 3157
   public function setCertSerialNumber($certSerialNumber)
3158 3158
   {
3159
-    $this->certSerialNumber = $certSerialNumber;
3159
+	$this->certSerialNumber = $certSerialNumber;
3160 3160
   }
3161 3161
   public function getCertSerialNumber()
3162 3162
   {
3163
-    return $this->certSerialNumber;
3163
+	return $this->certSerialNumber;
3164 3164
   }
3165 3165
   public function setCommonName($commonName)
3166 3166
   {
3167
-    $this->commonName = $commonName;
3167
+	$this->commonName = $commonName;
3168 3168
   }
3169 3169
   public function getCommonName()
3170 3170
   {
3171
-    return $this->commonName;
3171
+	return $this->commonName;
3172 3172
   }
3173 3173
   public function setCreateTime($createTime)
3174 3174
   {
3175
-    $this->createTime = $createTime;
3175
+	$this->createTime = $createTime;
3176 3176
   }
3177 3177
   public function getCreateTime()
3178 3178
   {
3179
-    return $this->createTime;
3179
+	return $this->createTime;
3180 3180
   }
3181 3181
   public function setExpirationTime($expirationTime)
3182 3182
   {
3183
-    $this->expirationTime = $expirationTime;
3183
+	$this->expirationTime = $expirationTime;
3184 3184
   }
3185 3185
   public function getExpirationTime()
3186 3186
   {
3187
-    return $this->expirationTime;
3187
+	return $this->expirationTime;
3188 3188
   }
3189 3189
   public function setInstance($instance)
3190 3190
   {
3191
-    $this->instance = $instance;
3191
+	$this->instance = $instance;
3192 3192
   }
3193 3193
   public function getInstance()
3194 3194
   {
3195
-    return $this->instance;
3195
+	return $this->instance;
3196 3196
   }
3197 3197
   public function setKind($kind)
3198 3198
   {
3199
-    $this->kind = $kind;
3199
+	$this->kind = $kind;
3200 3200
   }
3201 3201
   public function getKind()
3202 3202
   {
3203
-    return $this->kind;
3203
+	return $this->kind;
3204 3204
   }
3205 3205
   public function setSelfLink($selfLink)
3206 3206
   {
3207
-    $this->selfLink = $selfLink;
3207
+	$this->selfLink = $selfLink;
3208 3208
   }
3209 3209
   public function getSelfLink()
3210 3210
   {
3211
-    return $this->selfLink;
3211
+	return $this->selfLink;
3212 3212
   }
3213 3213
   public function setSha1Fingerprint($sha1Fingerprint)
3214 3214
   {
3215
-    $this->sha1Fingerprint = $sha1Fingerprint;
3215
+	$this->sha1Fingerprint = $sha1Fingerprint;
3216 3216
   }
3217 3217
   public function getSha1Fingerprint()
3218 3218
   {
3219
-    return $this->sha1Fingerprint;
3219
+	return $this->sha1Fingerprint;
3220 3220
   }
3221 3221
 }
3222 3222
 
@@ -3231,19 +3231,19 @@  discard block
 block discarded – undo
3231 3231
 
3232 3232
   public function setCertInfo(Google_Service_SQLAdmin_SslCert $certInfo)
3233 3233
   {
3234
-    $this->certInfo = $certInfo;
3234
+	$this->certInfo = $certInfo;
3235 3235
   }
3236 3236
   public function getCertInfo()
3237 3237
   {
3238
-    return $this->certInfo;
3238
+	return $this->certInfo;
3239 3239
   }
3240 3240
   public function setCertPrivateKey($certPrivateKey)
3241 3241
   {
3242
-    $this->certPrivateKey = $certPrivateKey;
3242
+	$this->certPrivateKey = $certPrivateKey;
3243 3243
   }
3244 3244
   public function getCertPrivateKey()
3245 3245
   {
3246
-    return $this->certPrivateKey;
3246
+	return $this->certPrivateKey;
3247 3247
   }
3248 3248
 }
3249 3249
 
@@ -3256,11 +3256,11 @@  discard block
 block discarded – undo
3256 3256
 
3257 3257
   public function setCommonName($commonName)
3258 3258
   {
3259
-    $this->commonName = $commonName;
3259
+	$this->commonName = $commonName;
3260 3260
   }
3261 3261
   public function getCommonName()
3262 3262
   {
3263
-    return $this->commonName;
3263
+	return $this->commonName;
3264 3264
   }
3265 3265
 }
3266 3266
 
@@ -3277,27 +3277,27 @@  discard block
 block discarded – undo
3277 3277
 
3278 3278
   public function setClientCert(Google_Service_SQLAdmin_SslCertDetail $clientCert)
3279 3279
   {
3280
-    $this->clientCert = $clientCert;
3280
+	$this->clientCert = $clientCert;
3281 3281
   }
3282 3282
   public function getClientCert()
3283 3283
   {
3284
-    return $this->clientCert;
3284
+	return $this->clientCert;
3285 3285
   }
3286 3286
   public function setKind($kind)
3287 3287
   {
3288
-    $this->kind = $kind;
3288
+	$this->kind = $kind;
3289 3289
   }
3290 3290
   public function getKind()
3291 3291
   {
3292
-    return $this->kind;
3292
+	return $this->kind;
3293 3293
   }
3294 3294
   public function setServerCaCert(Google_Service_SQLAdmin_SslCert $serverCaCert)
3295 3295
   {
3296
-    $this->serverCaCert = $serverCaCert;
3296
+	$this->serverCaCert = $serverCaCert;
3297 3297
   }
3298 3298
   public function getServerCaCert()
3299 3299
   {
3300
-    return $this->serverCaCert;
3300
+	return $this->serverCaCert;
3301 3301
   }
3302 3302
 }
3303 3303
 
@@ -3313,19 +3313,19 @@  discard block
 block discarded – undo
3313 3313
 
3314 3314
   public function setItems($items)
3315 3315
   {
3316
-    $this->items = $items;
3316
+	$this->items = $items;
3317 3317
   }
3318 3318
   public function getItems()
3319 3319
   {
3320
-    return $this->items;
3320
+	return $this->items;
3321 3321
   }
3322 3322
   public function setKind($kind)
3323 3323
   {
3324
-    $this->kind = $kind;
3324
+	$this->kind = $kind;
3325 3325
   }
3326 3326
   public function getKind()
3327 3327
   {
3328
-    return $this->kind;
3328
+	return $this->kind;
3329 3329
   }
3330 3330
 }
3331 3331
 
@@ -3333,8 +3333,8 @@  discard block
 block discarded – undo
3333 3333
 {
3334 3334
   protected $collection_key = 'region';
3335 3335
   protected $internal_gapi_mappings = array(
3336
-        "diskQuota" => "DiskQuota",
3337
-        "rAM" => "RAM",
3336
+		"diskQuota" => "DiskQuota",
3337
+		"rAM" => "RAM",
3338 3338
   );
3339 3339
   public $diskQuota;
3340 3340
   public $rAM;
@@ -3345,43 +3345,43 @@  discard block
 block discarded – undo
3345 3345
 
3346 3346
   public function setDiskQuota($diskQuota)
3347 3347
   {
3348
-    $this->diskQuota = $diskQuota;
3348
+	$this->diskQuota = $diskQuota;
3349 3349
   }
3350 3350
   public function getDiskQuota()
3351 3351
   {
3352
-    return $this->diskQuota;
3352
+	return $this->diskQuota;
3353 3353
   }
3354 3354
   public function setRAM($rAM)
3355 3355
   {
3356
-    $this->rAM = $rAM;
3356
+	$this->rAM = $rAM;
3357 3357
   }
3358 3358
   public function getRAM()
3359 3359
   {
3360
-    return $this->rAM;
3360
+	return $this->rAM;
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 setRegion($region)
3371 3371
   {
3372
-    $this->region = $region;
3372
+	$this->region = $region;
3373 3373
   }
3374 3374
   public function getRegion()
3375 3375
   {
3376
-    return $this->region;
3376
+	return $this->region;
3377 3377
   }
3378 3378
   public function setTier($tier)
3379 3379
   {
3380
-    $this->tier = $tier;
3380
+	$this->tier = $tier;
3381 3381
   }
3382 3382
   public function getTier()
3383 3383
   {
3384
-    return $this->tier;
3384
+	return $this->tier;
3385 3385
   }
3386 3386
 }
3387 3387
 
@@ -3397,19 +3397,19 @@  discard block
 block discarded – undo
3397 3397
 
3398 3398
   public function setItems($items)
3399 3399
   {
3400
-    $this->items = $items;
3400
+	$this->items = $items;
3401 3401
   }
3402 3402
   public function getItems()
3403 3403
   {
3404
-    return $this->items;
3404
+	return $this->items;
3405 3405
   }
3406 3406
   public function setKind($kind)
3407 3407
   {
3408
-    $this->kind = $kind;
3408
+	$this->kind = $kind;
3409 3409
   }
3410 3410
   public function getKind()
3411 3411
   {
3412
-    return $this->kind;
3412
+	return $this->kind;
3413 3413
   }
3414 3414
 }
3415 3415
 
@@ -3428,59 +3428,59 @@  discard block
 block discarded – undo
3428 3428
 
3429 3429
   public function setEtag($etag)
3430 3430
   {
3431
-    $this->etag = $etag;
3431
+	$this->etag = $etag;
3432 3432
   }
3433 3433
   public function getEtag()
3434 3434
   {
3435
-    return $this->etag;
3435
+	return $this->etag;
3436 3436
   }
3437 3437
   public function setHost($host)
3438 3438
   {
3439
-    $this->host = $host;
3439
+	$this->host = $host;
3440 3440
   }
3441 3441
   public function getHost()
3442 3442
   {
3443
-    return $this->host;
3443
+	return $this->host;
3444 3444
   }
3445 3445
   public function setInstance($instance)
3446 3446
   {
3447
-    $this->instance = $instance;
3447
+	$this->instance = $instance;
3448 3448
   }
3449 3449
   public function getInstance()
3450 3450
   {
3451
-    return $this->instance;
3451
+	return $this->instance;
3452 3452
   }
3453 3453
   public function setKind($kind)
3454 3454
   {
3455
-    $this->kind = $kind;
3455
+	$this->kind = $kind;
3456 3456
   }
3457 3457
   public function getKind()
3458 3458
   {
3459
-    return $this->kind;
3459
+	return $this->kind;
3460 3460
   }
3461 3461
   public function setName($name)
3462 3462
   {
3463
-    $this->name = $name;
3463
+	$this->name = $name;
3464 3464
   }
3465 3465
   public function getName()
3466 3466
   {
3467
-    return $this->name;
3467
+	return $this->name;
3468 3468
   }
3469 3469
   public function setPassword($password)
3470 3470
   {
3471
-    $this->password = $password;
3471
+	$this->password = $password;
3472 3472
   }
3473 3473
   public function getPassword()
3474 3474
   {
3475
-    return $this->password;
3475
+	return $this->password;
3476 3476
   }
3477 3477
   public function setProject($project)
3478 3478
   {
3479
-    $this->project = $project;
3479
+	$this->project = $project;
3480 3480
   }
3481 3481
   public function getProject()
3482 3482
   {
3483
-    return $this->project;
3483
+	return $this->project;
3484 3484
   }
3485 3485
 }
3486 3486
 
@@ -3497,26 +3497,26 @@  discard block
 block discarded – undo
3497 3497
 
3498 3498
   public function setItems($items)
3499 3499
   {
3500
-    $this->items = $items;
3500
+	$this->items = $items;
3501 3501
   }
3502 3502
   public function getItems()
3503 3503
   {
3504
-    return $this->items;
3504
+	return $this->items;
3505 3505
   }
3506 3506
   public function setKind($kind)
3507 3507
   {
3508
-    $this->kind = $kind;
3508
+	$this->kind = $kind;
3509 3509
   }
3510 3510
   public function getKind()
3511 3511
   {
3512
-    return $this->kind;
3512
+	return $this->kind;
3513 3513
   }
3514 3514
   public function setNextPageToken($nextPageToken)
3515 3515
   {
3516
-    $this->nextPageToken = $nextPageToken;
3516
+	$this->nextPageToken = $nextPageToken;
3517 3517
   }
3518 3518
   public function getNextPageToken()
3519 3519
   {
3520
-    return $this->nextPageToken;
3520
+	return $this->nextPageToken;
3521 3521
   }
3522 3522
 }
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                   'required' => true,
87 87
                 ),
88 88
               ),
89
-            ),'list' => array(
89
+            ), 'list' => array(
90 90
               'path' => 'projects/{project}/instances/{instance}/backupRuns',
91 91
               'httpMethod' => 'GET',
92 92
               'parameters' => array(
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                   'required' => true,
140 140
                 ),
141 141
               ),
142
-            ),'get' => array(
142
+            ), 'get' => array(
143 143
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
144 144
               'httpMethod' => 'GET',
145 145
               'parameters' => array(
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                   'required' => true,
160 160
                 ),
161 161
               ),
162
-            ),'insert' => array(
162
+            ), 'insert' => array(
163 163
               'path' => 'projects/{project}/instances/{instance}/databases',
164 164
               'httpMethod' => 'POST',
165 165
               'parameters' => array(
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
                   'required' => true,
175 175
                 ),
176 176
               ),
177
-            ),'list' => array(
177
+            ), 'list' => array(
178 178
               'path' => 'projects/{project}/instances/{instance}/databases',
179 179
               'httpMethod' => 'GET',
180 180
               'parameters' => array(
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
                   'required' => true,
190 190
                 ),
191 191
               ),
192
-            ),'patch' => array(
192
+            ), 'patch' => array(
193 193
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
194 194
               'httpMethod' => 'PATCH',
195 195
               'parameters' => array(
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
                   'required' => true,
210 210
                 ),
211 211
               ),
212
-            ),'update' => array(
212
+            ), 'update' => array(
213 213
               'path' => 'projects/{project}/instances/{instance}/databases/{database}',
214 214
               'httpMethod' => 'PUT',
215 215
               'parameters' => array(
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
                   'required' => true,
269 269
                 ),
270 270
               ),
271
-            ),'delete' => array(
271
+            ), 'delete' => array(
272 272
               'path' => 'projects/{project}/instances/{instance}',
273 273
               'httpMethod' => 'DELETE',
274 274
               'parameters' => array(
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
                   'required' => true,
284 284
                 ),
285 285
               ),
286
-            ),'export' => array(
286
+            ), 'export' => array(
287 287
               'path' => 'projects/{project}/instances/{instance}/export',
288 288
               'httpMethod' => 'POST',
289 289
               'parameters' => array(
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                   'required' => true,
299 299
                 ),
300 300
               ),
301
-            ),'get' => array(
301
+            ), 'get' => array(
302 302
               'path' => 'projects/{project}/instances/{instance}',
303 303
               'httpMethod' => 'GET',
304 304
               'parameters' => array(
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
                   'required' => true,
314 314
                 ),
315 315
               ),
316
-            ),'import' => array(
316
+            ), 'import' => array(
317 317
               'path' => 'projects/{project}/instances/{instance}/import',
318 318
               'httpMethod' => 'POST',
319 319
               'parameters' => array(
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
                   'required' => true,
329 329
                 ),
330 330
               ),
331
-            ),'insert' => array(
331
+            ), 'insert' => array(
332 332
               'path' => 'projects/{project}/instances',
333 333
               'httpMethod' => 'POST',
334 334
               'parameters' => array(
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
                   'required' => true,
339 339
                 ),
340 340
               ),
341
-            ),'list' => array(
341
+            ), 'list' => array(
342 342
               'path' => 'projects/{project}/instances',
343 343
               'httpMethod' => 'GET',
344 344
               'parameters' => array(
@@ -356,7 +356,7 @@  discard block
 block discarded – undo
356 356
                   'type' => 'integer',
357 357
                 ),
358 358
               ),
359
-            ),'patch' => array(
359
+            ), 'patch' => array(
360 360
               'path' => 'projects/{project}/instances/{instance}',
361 361
               'httpMethod' => 'PATCH',
362 362
               'parameters' => array(
@@ -371,7 +371,7 @@  discard block
 block discarded – undo
371 371
                   'required' => true,
372 372
                 ),
373 373
               ),
374
-            ),'promoteReplica' => array(
374
+            ), 'promoteReplica' => array(
375 375
               'path' => 'projects/{project}/instances/{instance}/promoteReplica',
376 376
               'httpMethod' => 'POST',
377 377
               'parameters' => array(
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
                   'required' => true,
387 387
                 ),
388 388
               ),
389
-            ),'resetSslConfig' => array(
389
+            ), 'resetSslConfig' => array(
390 390
               'path' => 'projects/{project}/instances/{instance}/resetSslConfig',
391 391
               'httpMethod' => 'POST',
392 392
               'parameters' => array(
@@ -401,7 +401,7 @@  discard block
 block discarded – undo
401 401
                   'required' => true,
402 402
                 ),
403 403
               ),
404
-            ),'restart' => array(
404
+            ), 'restart' => array(
405 405
               'path' => 'projects/{project}/instances/{instance}/restart',
406 406
               'httpMethod' => 'POST',
407 407
               'parameters' => array(
@@ -416,7 +416,7 @@  discard block
 block discarded – undo
416 416
                   'required' => true,
417 417
                 ),
418 418
               ),
419
-            ),'restoreBackup' => array(
419
+            ), 'restoreBackup' => array(
420 420
               'path' => 'projects/{project}/instances/{instance}/restoreBackup',
421 421
               'httpMethod' => 'POST',
422 422
               'parameters' => array(
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
                   'required' => true,
432 432
                 ),
433 433
               ),
434
-            ),'startReplica' => array(
434
+            ), 'startReplica' => array(
435 435
               'path' => 'projects/{project}/instances/{instance}/startReplica',
436 436
               'httpMethod' => 'POST',
437 437
               'parameters' => array(
@@ -446,7 +446,7 @@  discard block
 block discarded – undo
446 446
                   'required' => true,
447 447
                 ),
448 448
               ),
449
-            ),'stopReplica' => array(
449
+            ), 'stopReplica' => array(
450 450
               'path' => 'projects/{project}/instances/{instance}/stopReplica',
451 451
               'httpMethod' => 'POST',
452 452
               'parameters' => array(
@@ -461,7 +461,7 @@  discard block
 block discarded – undo
461 461
                   'required' => true,
462 462
                 ),
463 463
               ),
464
-            ),'update' => array(
464
+            ), 'update' => array(
465 465
               'path' => 'projects/{project}/instances/{instance}',
466 466
               'httpMethod' => 'PUT',
467 467
               'parameters' => array(
@@ -501,7 +501,7 @@  discard block
 block discarded – undo
501 501
                   'required' => true,
502 502
                 ),
503 503
               ),
504
-            ),'list' => array(
504
+            ), 'list' => array(
505 505
               'path' => 'projects/{project}/operations',
506 506
               'httpMethod' => 'GET',
507 507
               'parameters' => array(
@@ -554,7 +554,7 @@  discard block
 block discarded – undo
554 554
                   'required' => true,
555 555
                 ),
556 556
               ),
557
-            ),'get' => array(
557
+            ), 'get' => array(
558 558
               'path' => 'projects/{project}/instances/{instance}/sslCerts/{sha1Fingerprint}',
559 559
               'httpMethod' => 'GET',
560 560
               'parameters' => array(
@@ -574,7 +574,7 @@  discard block
 block discarded – undo
574 574
                   'required' => true,
575 575
                 ),
576 576
               ),
577
-            ),'insert' => array(
577
+            ), 'insert' => array(
578 578
               'path' => 'projects/{project}/instances/{instance}/sslCerts',
579 579
               'httpMethod' => 'POST',
580 580
               'parameters' => array(
@@ -589,7 +589,7 @@  discard block
 block discarded – undo
589 589
                   'required' => true,
590 590
                 ),
591 591
               ),
592
-            ),'list' => array(
592
+            ), 'list' => array(
593 593
               'path' => 'projects/{project}/instances/{instance}/sslCerts',
594 594
               'httpMethod' => 'GET',
595 595
               'parameters' => array(
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
                   'required' => true,
660 660
                 ),
661 661
               ),
662
-            ),'insert' => array(
662
+            ), 'insert' => array(
663 663
               'path' => 'projects/{project}/instances/{instance}/users',
664 664
               'httpMethod' => 'POST',
665 665
               'parameters' => array(
@@ -674,7 +674,7 @@  discard block
 block discarded – undo
674 674
                   'required' => true,
675 675
                 ),
676 676
               ),
677
-            ),'list' => array(
677
+            ), 'list' => array(
678 678
               'path' => 'projects/{project}/instances/{instance}/users',
679 679
               'httpMethod' => 'GET',
680 680
               'parameters' => array(
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
                   'required' => true,
690 690
                 ),
691 691
               ),
692
-            ),'update' => array(
692
+            ), 'update' => array(
693 693
               'path' => 'projects/{project}/instances/{instance}/users',
694 694
               'httpMethod' => 'PUT',
695 695
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Storage.php 3 patches
Doc Comments   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -1076,7 +1076,7 @@  discard block
 block discarded – undo
1076 1076
    * (bucketAccessControls.insert)
1077 1077
    *
1078 1078
    * @param string $bucket Name of a bucket.
1079
-   * @param Google_BucketAccessControl $postBody
1079
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1080 1080
    * @param array $optParams Optional parameters.
1081 1081
    * @return Google_Service_Storage_BucketAccessControl
1082 1082
    */
@@ -1110,7 +1110,7 @@  discard block
 block discarded – undo
1110 1110
    * @param string $entity The entity holding the permission. Can be user-userId,
1111 1111
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1112 1112
    * allAuthenticatedUsers.
1113
-   * @param Google_BucketAccessControl $postBody
1113
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1114 1114
    * @param array $optParams Optional parameters.
1115 1115
    * @return Google_Service_Storage_BucketAccessControl
1116 1116
    */
@@ -1128,7 +1128,7 @@  discard block
 block discarded – undo
1128 1128
    * @param string $entity The entity holding the permission. Can be user-userId,
1129 1129
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1130 1130
    * allAuthenticatedUsers.
1131
-   * @param Google_BucketAccessControl $postBody
1131
+   * @param Google_Service_Storage_BucketAccessControl $postBody
1132 1132
    * @param array $optParams Optional parameters.
1133 1133
    * @return Google_Service_Storage_BucketAccessControl
1134 1134
    */
@@ -1195,7 +1195,7 @@  discard block
 block discarded – undo
1195 1195
    * Creates a new bucket. (buckets.insert)
1196 1196
    *
1197 1197
    * @param string $project A valid API project identifier.
1198
-   * @param Google_Bucket $postBody
1198
+   * @param Google_Service_Storage_Bucket $postBody
1199 1199
    * @param array $optParams Optional parameters.
1200 1200
    *
1201 1201
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1239,7 +1239,7 @@  discard block
 block discarded – undo
1239 1239
    * Updates a bucket. This method supports patch semantics. (buckets.patch)
1240 1240
    *
1241 1241
    * @param string $bucket Name of a bucket.
1242
-   * @param Google_Bucket $postBody
1242
+   * @param Google_Service_Storage_Bucket $postBody
1243 1243
    * @param array $optParams Optional parameters.
1244 1244
    *
1245 1245
    * @opt_param string projection Set of properties to return. Defaults to full.
@@ -1266,7 +1266,7 @@  discard block
 block discarded – undo
1266 1266
    * Updates a bucket. (buckets.update)
1267 1267
    *
1268 1268
    * @param string $bucket Name of a bucket.
1269
-   * @param Google_Bucket $postBody
1269
+   * @param Google_Service_Storage_Bucket $postBody
1270 1270
    * @param array $optParams Optional parameters.
1271 1271
    *
1272 1272
    * @opt_param string projection Set of properties to return. Defaults to full.
@@ -1304,7 +1304,7 @@  discard block
 block discarded – undo
1304 1304
   /**
1305 1305
    * Stop watching resources through this channel (channels.stop)
1306 1306
    *
1307
-   * @param Google_Channel $postBody
1307
+   * @param Google_Service_Storage_Channel $postBody
1308 1308
    * @param array $optParams Optional parameters.
1309 1309
    */
1310 1310
   public function stop(Google_Service_Storage_Channel $postBody, $optParams = array())
@@ -1366,7 +1366,7 @@  discard block
 block discarded – undo
1366 1366
    * (defaultObjectAccessControls.insert)
1367 1367
    *
1368 1368
    * @param string $bucket Name of a bucket.
1369
-   * @param Google_ObjectAccessControl $postBody
1369
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1370 1370
    * @param array $optParams Optional parameters.
1371 1371
    * @return Google_Service_Storage_ObjectAccessControl
1372 1372
    */
@@ -1406,7 +1406,7 @@  discard block
 block discarded – undo
1406 1406
    * @param string $entity The entity holding the permission. Can be user-userId,
1407 1407
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1408 1408
    * allAuthenticatedUsers.
1409
-   * @param Google_ObjectAccessControl $postBody
1409
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1410 1410
    * @param array $optParams Optional parameters.
1411 1411
    * @return Google_Service_Storage_ObjectAccessControl
1412 1412
    */
@@ -1425,7 +1425,7 @@  discard block
 block discarded – undo
1425 1425
    * @param string $entity The entity holding the permission. Can be user-userId,
1426 1426
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1427 1427
    * allAuthenticatedUsers.
1428
-   * @param Google_ObjectAccessControl $postBody
1428
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1429 1429
    * @param array $optParams Optional parameters.
1430 1430
    * @return Google_Service_Storage_ObjectAccessControl
1431 1431
    */
@@ -1497,7 +1497,7 @@  discard block
 block discarded – undo
1497 1497
    *
1498 1498
    * @param string $bucket Name of a bucket.
1499 1499
    * @param string $object Name of the object.
1500
-   * @param Google_ObjectAccessControl $postBody
1500
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1501 1501
    * @param array $optParams Optional parameters.
1502 1502
    *
1503 1503
    * @opt_param string generation If present, selects a specific revision of this
@@ -1539,7 +1539,7 @@  discard block
 block discarded – undo
1539 1539
    * @param string $entity The entity holding the permission. Can be user-userId,
1540 1540
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1541 1541
    * allAuthenticatedUsers.
1542
-   * @param Google_ObjectAccessControl $postBody
1542
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1543 1543
    * @param array $optParams Optional parameters.
1544 1544
    *
1545 1545
    * @opt_param string generation If present, selects a specific revision of this
@@ -1561,7 +1561,7 @@  discard block
 block discarded – undo
1561 1561
    * @param string $entity The entity holding the permission. Can be user-userId,
1562 1562
    * user-emailAddress, group-groupId, group-emailAddress, allUsers, or
1563 1563
    * allAuthenticatedUsers.
1564
-   * @param Google_ObjectAccessControl $postBody
1564
+   * @param Google_Service_Storage_ObjectAccessControl $postBody
1565 1565
    * @param array $optParams Optional parameters.
1566 1566
    *
1567 1567
    * @opt_param string generation If present, selects a specific revision of this
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
    * @param string $destinationBucket Name of the bucket in which to store the new
1595 1595
    * object.
1596 1596
    * @param string $destinationObject Name of the new object.
1597
-   * @param Google_ComposeRequest $postBody
1597
+   * @param Google_Service_Storage_ComposeRequest $postBody
1598 1598
    * @param array $optParams Optional parameters.
1599 1599
    *
1600 1600
    * @opt_param string ifGenerationMatch Makes the operation conditional on
@@ -1624,7 +1624,7 @@  discard block
 block discarded – undo
1624 1624
    * @param string $destinationObject Name of the new object. Required when the
1625 1625
    * object metadata is not otherwise provided. Overrides the object metadata's
1626 1626
    * name value, if any.
1627
-   * @param Google_StorageObject $postBody
1627
+   * @param Google_Service_Storage_StorageObject $postBody
1628 1628
    * @param array $optParams Optional parameters.
1629 1629
    *
1630 1630
    * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional
@@ -1723,7 +1723,7 @@  discard block
 block discarded – undo
1723 1723
    *
1724 1724
    * @param string $bucket Name of the bucket in which to store the new object.
1725 1725
    * Overrides the provided object metadata's bucket value, if any.
1726
-   * @param Google_StorageObject $postBody
1726
+   * @param Google_Service_Storage_StorageObject $postBody
1727 1727
    * @param array $optParams Optional parameters.
1728 1728
    *
1729 1729
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1792,7 +1792,7 @@  discard block
 block discarded – undo
1792 1792
    *
1793 1793
    * @param string $bucket Name of the bucket in which the object resides.
1794 1794
    * @param string $object Name of the object.
1795
-   * @param Google_StorageObject $postBody
1795
+   * @param Google_Service_Storage_StorageObject $postBody
1796 1796
    * @param array $optParams Optional parameters.
1797 1797
    *
1798 1798
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1829,7 +1829,7 @@  discard block
 block discarded – undo
1829 1829
    * @param string $destinationObject Name of the new object. Required when the
1830 1830
    * object metadata is not otherwise provided. Overrides the object metadata's
1831 1831
    * name value, if any.
1832
-   * @param Google_StorageObject $postBody
1832
+   * @param Google_Service_Storage_StorageObject $postBody
1833 1833
    * @param array $optParams Optional parameters.
1834 1834
    *
1835 1835
    * @opt_param string ifSourceGenerationNotMatch Makes the operation conditional
@@ -1886,7 +1886,7 @@  discard block
 block discarded – undo
1886 1886
    *
1887 1887
    * @param string $bucket Name of the bucket in which the object resides.
1888 1888
    * @param string $object Name of the object.
1889
-   * @param Google_StorageObject $postBody
1889
+   * @param Google_Service_Storage_StorageObject $postBody
1890 1890
    * @param array $optParams Optional parameters.
1891 1891
    *
1892 1892
    * @opt_param string predefinedAcl Apply a predefined set of access controls to
@@ -1915,7 +1915,7 @@  discard block
 block discarded – undo
1915 1915
    * Watch for changes on all objects in a bucket. (objects.watchAll)
1916 1916
    *
1917 1917
    * @param string $bucket Name of the bucket in which to look for objects.
1918
-   * @param Google_Channel $postBody
1918
+   * @param Google_Service_Storage_Channel $postBody
1919 1919
    * @param array $optParams Optional parameters.
1920 1920
    *
1921 1921
    * @opt_param string projection Set of properties to return. Defaults to noAcl.
Please login to merge, or discard this patch.
Indentation   +1322 added lines, -1322 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@  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
   /** Manage your data and permissions in Google Cloud Storage. */
37 37
   const DEVSTORAGE_FULL_CONTROL =
38
-      "https://www.googleapis.com/auth/devstorage.full_control";
38
+	  "https://www.googleapis.com/auth/devstorage.full_control";
39 39
   /** View your data in Google Cloud Storage. */
40 40
   const DEVSTORAGE_READ_ONLY =
41
-      "https://www.googleapis.com/auth/devstorage.read_only";
41
+	  "https://www.googleapis.com/auth/devstorage.read_only";
42 42
   /** Manage your data in Google Cloud Storage. */
43 43
   const DEVSTORAGE_READ_WRITE =
44
-      "https://www.googleapis.com/auth/devstorage.read_write";
44
+	  "https://www.googleapis.com/auth/devstorage.read_write";
45 45
 
46 46
   public $bucketAccessControls;
47 47
   public $buckets;
@@ -58,969 +58,969 @@  discard block
 block discarded – undo
58 58
    */
59 59
   public function __construct(Google_Client $client)
60 60
   {
61
-    parent::__construct($client);
62
-    $this->rootUrl = 'https://www.googleapis.com/';
63
-    $this->servicePath = 'storage/v1/';
64
-    $this->version = 'v1';
65
-    $this->serviceName = 'storage';
66
-
67
-    $this->bucketAccessControls = new Google_Service_Storage_BucketAccessControls_Resource(
68
-        $this,
69
-        $this->serviceName,
70
-        'bucketAccessControls',
71
-        array(
72
-          'methods' => array(
73
-            'delete' => array(
74
-              'path' => 'b/{bucket}/acl/{entity}',
75
-              'httpMethod' => 'DELETE',
76
-              'parameters' => array(
77
-                'bucket' => array(
78
-                  'location' => 'path',
79
-                  'type' => 'string',
80
-                  'required' => true,
81
-                ),
82
-                'entity' => array(
83
-                  'location' => 'path',
84
-                  'type' => 'string',
85
-                  'required' => true,
86
-                ),
87
-              ),
88
-            ),'get' => array(
89
-              'path' => 'b/{bucket}/acl/{entity}',
90
-              'httpMethod' => 'GET',
91
-              'parameters' => array(
92
-                'bucket' => array(
93
-                  'location' => 'path',
94
-                  'type' => 'string',
95
-                  'required' => true,
96
-                ),
97
-                'entity' => array(
98
-                  'location' => 'path',
99
-                  'type' => 'string',
100
-                  'required' => true,
101
-                ),
102
-              ),
103
-            ),'insert' => array(
104
-              'path' => 'b/{bucket}/acl',
105
-              'httpMethod' => 'POST',
106
-              'parameters' => array(
107
-                'bucket' => array(
108
-                  'location' => 'path',
109
-                  'type' => 'string',
110
-                  'required' => true,
111
-                ),
112
-              ),
113
-            ),'list' => array(
114
-              'path' => 'b/{bucket}/acl',
115
-              'httpMethod' => 'GET',
116
-              'parameters' => array(
117
-                'bucket' => array(
118
-                  'location' => 'path',
119
-                  'type' => 'string',
120
-                  'required' => true,
121
-                ),
122
-              ),
123
-            ),'patch' => array(
124
-              'path' => 'b/{bucket}/acl/{entity}',
125
-              'httpMethod' => 'PATCH',
126
-              'parameters' => array(
127
-                'bucket' => array(
128
-                  'location' => 'path',
129
-                  'type' => 'string',
130
-                  'required' => true,
131
-                ),
132
-                'entity' => array(
133
-                  'location' => 'path',
134
-                  'type' => 'string',
135
-                  'required' => true,
136
-                ),
137
-              ),
138
-            ),'update' => array(
139
-              'path' => 'b/{bucket}/acl/{entity}',
140
-              'httpMethod' => 'PUT',
141
-              'parameters' => array(
142
-                'bucket' => array(
143
-                  'location' => 'path',
144
-                  'type' => 'string',
145
-                  'required' => true,
146
-                ),
147
-                'entity' => array(
148
-                  'location' => 'path',
149
-                  'type' => 'string',
150
-                  'required' => true,
151
-                ),
152
-              ),
153
-            ),
154
-          )
155
-        )
156
-    );
157
-    $this->buckets = new Google_Service_Storage_Buckets_Resource(
158
-        $this,
159
-        $this->serviceName,
160
-        'buckets',
161
-        array(
162
-          'methods' => array(
163
-            'delete' => array(
164
-              'path' => 'b/{bucket}',
165
-              'httpMethod' => 'DELETE',
166
-              'parameters' => array(
167
-                'bucket' => array(
168
-                  'location' => 'path',
169
-                  'type' => 'string',
170
-                  'required' => true,
171
-                ),
172
-                'ifMetagenerationMatch' => array(
173
-                  'location' => 'query',
174
-                  'type' => 'string',
175
-                ),
176
-                'ifMetagenerationNotMatch' => array(
177
-                  'location' => 'query',
178
-                  'type' => 'string',
179
-                ),
180
-              ),
181
-            ),'get' => array(
182
-              'path' => 'b/{bucket}',
183
-              'httpMethod' => 'GET',
184
-              'parameters' => array(
185
-                'bucket' => array(
186
-                  'location' => 'path',
187
-                  'type' => 'string',
188
-                  'required' => true,
189
-                ),
190
-                'ifMetagenerationMatch' => array(
191
-                  'location' => 'query',
192
-                  'type' => 'string',
193
-                ),
194
-                'ifMetagenerationNotMatch' => array(
195
-                  'location' => 'query',
196
-                  'type' => 'string',
197
-                ),
198
-                'projection' => array(
199
-                  'location' => 'query',
200
-                  'type' => 'string',
201
-                ),
202
-              ),
203
-            ),'insert' => array(
204
-              'path' => 'b',
205
-              'httpMethod' => 'POST',
206
-              'parameters' => array(
207
-                'project' => array(
208
-                  'location' => 'query',
209
-                  'type' => 'string',
210
-                  'required' => true,
211
-                ),
212
-                'predefinedAcl' => array(
213
-                  'location' => 'query',
214
-                  'type' => 'string',
215
-                ),
216
-                'projection' => array(
217
-                  'location' => 'query',
218
-                  'type' => 'string',
219
-                ),
220
-                'predefinedDefaultObjectAcl' => array(
221
-                  'location' => 'query',
222
-                  'type' => 'string',
223
-                ),
224
-              ),
225
-            ),'list' => array(
226
-              'path' => 'b',
227
-              'httpMethod' => 'GET',
228
-              'parameters' => array(
229
-                'project' => array(
230
-                  'location' => 'query',
231
-                  'type' => 'string',
232
-                  'required' => true,
233
-                ),
234
-                'pageToken' => array(
235
-                  'location' => 'query',
236
-                  'type' => 'string',
237
-                ),
238
-                'prefix' => array(
239
-                  'location' => 'query',
240
-                  'type' => 'string',
241
-                ),
242
-                'projection' => array(
243
-                  'location' => 'query',
244
-                  'type' => 'string',
245
-                ),
246
-                'maxResults' => array(
247
-                  'location' => 'query',
248
-                  'type' => 'integer',
249
-                ),
250
-              ),
251
-            ),'patch' => array(
252
-              'path' => 'b/{bucket}',
253
-              'httpMethod' => 'PATCH',
254
-              'parameters' => array(
255
-                'bucket' => array(
256
-                  'location' => 'path',
257
-                  'type' => 'string',
258
-                  'required' => true,
259
-                ),
260
-                'projection' => array(
261
-                  'location' => 'query',
262
-                  'type' => 'string',
263
-                ),
264
-                'ifMetagenerationMatch' => array(
265
-                  'location' => 'query',
266
-                  'type' => 'string',
267
-                ),
268
-                'predefinedDefaultObjectAcl' => array(
269
-                  'location' => 'query',
270
-                  'type' => 'string',
271
-                ),
272
-                'predefinedAcl' => array(
273
-                  'location' => 'query',
274
-                  'type' => 'string',
275
-                ),
276
-                'ifMetagenerationNotMatch' => array(
277
-                  'location' => 'query',
278
-                  'type' => 'string',
279
-                ),
280
-              ),
281
-            ),'update' => array(
282
-              'path' => 'b/{bucket}',
283
-              'httpMethod' => 'PUT',
284
-              'parameters' => array(
285
-                'bucket' => array(
286
-                  'location' => 'path',
287
-                  'type' => 'string',
288
-                  'required' => true,
289
-                ),
290
-                'projection' => array(
291
-                  'location' => 'query',
292
-                  'type' => 'string',
293
-                ),
294
-                'ifMetagenerationMatch' => array(
295
-                  'location' => 'query',
296
-                  'type' => 'string',
297
-                ),
298
-                'predefinedDefaultObjectAcl' => array(
299
-                  'location' => 'query',
300
-                  'type' => 'string',
301
-                ),
302
-                'predefinedAcl' => array(
303
-                  'location' => 'query',
304
-                  'type' => 'string',
305
-                ),
306
-                'ifMetagenerationNotMatch' => array(
307
-                  'location' => 'query',
308
-                  'type' => 'string',
309
-                ),
310
-              ),
311
-            ),
312
-          )
313
-        )
314
-    );
315
-    $this->channels = new Google_Service_Storage_Channels_Resource(
316
-        $this,
317
-        $this->serviceName,
318
-        'channels',
319
-        array(
320
-          'methods' => array(
321
-            'stop' => array(
322
-              'path' => 'channels/stop',
323
-              'httpMethod' => 'POST',
324
-              'parameters' => array(),
325
-            ),
326
-          )
327
-        )
328
-    );
329
-    $this->defaultObjectAccessControls = new Google_Service_Storage_DefaultObjectAccessControls_Resource(
330
-        $this,
331
-        $this->serviceName,
332
-        'defaultObjectAccessControls',
333
-        array(
334
-          'methods' => array(
335
-            'delete' => array(
336
-              'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
337
-              'httpMethod' => 'DELETE',
338
-              'parameters' => array(
339
-                'bucket' => array(
340
-                  'location' => 'path',
341
-                  'type' => 'string',
342
-                  'required' => true,
343
-                ),
344
-                'entity' => array(
345
-                  'location' => 'path',
346
-                  'type' => 'string',
347
-                  'required' => true,
348
-                ),
349
-              ),
350
-            ),'get' => array(
351
-              'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
352
-              'httpMethod' => 'GET',
353
-              'parameters' => array(
354
-                'bucket' => array(
355
-                  'location' => 'path',
356
-                  'type' => 'string',
357
-                  'required' => true,
358
-                ),
359
-                'entity' => array(
360
-                  'location' => 'path',
361
-                  'type' => 'string',
362
-                  'required' => true,
363
-                ),
364
-              ),
365
-            ),'insert' => array(
366
-              'path' => 'b/{bucket}/defaultObjectAcl',
367
-              'httpMethod' => 'POST',
368
-              'parameters' => array(
369
-                'bucket' => array(
370
-                  'location' => 'path',
371
-                  'type' => 'string',
372
-                  'required' => true,
373
-                ),
374
-              ),
375
-            ),'list' => array(
376
-              'path' => 'b/{bucket}/defaultObjectAcl',
377
-              'httpMethod' => 'GET',
378
-              'parameters' => array(
379
-                'bucket' => array(
380
-                  'location' => 'path',
381
-                  'type' => 'string',
382
-                  'required' => true,
383
-                ),
384
-                'ifMetagenerationMatch' => array(
385
-                  'location' => 'query',
386
-                  'type' => 'string',
387
-                ),
388
-                'ifMetagenerationNotMatch' => array(
389
-                  'location' => 'query',
390
-                  'type' => 'string',
391
-                ),
392
-              ),
393
-            ),'patch' => array(
394
-              'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
395
-              'httpMethod' => 'PATCH',
396
-              'parameters' => array(
397
-                'bucket' => array(
398
-                  'location' => 'path',
399
-                  'type' => 'string',
400
-                  'required' => true,
401
-                ),
402
-                'entity' => array(
403
-                  'location' => 'path',
404
-                  'type' => 'string',
405
-                  'required' => true,
406
-                ),
407
-              ),
408
-            ),'update' => array(
409
-              'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
410
-              'httpMethod' => 'PUT',
411
-              'parameters' => array(
412
-                'bucket' => array(
413
-                  'location' => 'path',
414
-                  'type' => 'string',
415
-                  'required' => true,
416
-                ),
417
-                'entity' => array(
418
-                  'location' => 'path',
419
-                  'type' => 'string',
420
-                  'required' => true,
421
-                ),
422
-              ),
423
-            ),
424
-          )
425
-        )
426
-    );
427
-    $this->objectAccessControls = new Google_Service_Storage_ObjectAccessControls_Resource(
428
-        $this,
429
-        $this->serviceName,
430
-        'objectAccessControls',
431
-        array(
432
-          'methods' => array(
433
-            'delete' => array(
434
-              'path' => 'b/{bucket}/o/{object}/acl/{entity}',
435
-              'httpMethod' => 'DELETE',
436
-              'parameters' => array(
437
-                'bucket' => array(
438
-                  'location' => 'path',
439
-                  'type' => 'string',
440
-                  'required' => true,
441
-                ),
442
-                'object' => array(
443
-                  'location' => 'path',
444
-                  'type' => 'string',
445
-                  'required' => true,
446
-                ),
447
-                'entity' => array(
448
-                  'location' => 'path',
449
-                  'type' => 'string',
450
-                  'required' => true,
451
-                ),
452
-                'generation' => array(
453
-                  'location' => 'query',
454
-                  'type' => 'string',
455
-                ),
456
-              ),
457
-            ),'get' => array(
458
-              'path' => 'b/{bucket}/o/{object}/acl/{entity}',
459
-              'httpMethod' => 'GET',
460
-              'parameters' => array(
461
-                'bucket' => array(
462
-                  'location' => 'path',
463
-                  'type' => 'string',
464
-                  'required' => true,
465
-                ),
466
-                'object' => array(
467
-                  'location' => 'path',
468
-                  'type' => 'string',
469
-                  'required' => true,
470
-                ),
471
-                'entity' => array(
472
-                  'location' => 'path',
473
-                  'type' => 'string',
474
-                  'required' => true,
475
-                ),
476
-                'generation' => array(
477
-                  'location' => 'query',
478
-                  'type' => 'string',
479
-                ),
480
-              ),
481
-            ),'insert' => array(
482
-              'path' => 'b/{bucket}/o/{object}/acl',
483
-              'httpMethod' => 'POST',
484
-              'parameters' => array(
485
-                'bucket' => array(
486
-                  'location' => 'path',
487
-                  'type' => 'string',
488
-                  'required' => true,
489
-                ),
490
-                'object' => array(
491
-                  'location' => 'path',
492
-                  'type' => 'string',
493
-                  'required' => true,
494
-                ),
495
-                'generation' => array(
496
-                  'location' => 'query',
497
-                  'type' => 'string',
498
-                ),
499
-              ),
500
-            ),'list' => array(
501
-              'path' => 'b/{bucket}/o/{object}/acl',
502
-              'httpMethod' => 'GET',
503
-              'parameters' => array(
504
-                'bucket' => array(
505
-                  'location' => 'path',
506
-                  'type' => 'string',
507
-                  'required' => true,
508
-                ),
509
-                'object' => array(
510
-                  'location' => 'path',
511
-                  'type' => 'string',
512
-                  'required' => true,
513
-                ),
514
-                'generation' => array(
515
-                  'location' => 'query',
516
-                  'type' => 'string',
517
-                ),
518
-              ),
519
-            ),'patch' => array(
520
-              'path' => 'b/{bucket}/o/{object}/acl/{entity}',
521
-              'httpMethod' => 'PATCH',
522
-              'parameters' => array(
523
-                'bucket' => array(
524
-                  'location' => 'path',
525
-                  'type' => 'string',
526
-                  'required' => true,
527
-                ),
528
-                'object' => array(
529
-                  'location' => 'path',
530
-                  'type' => 'string',
531
-                  'required' => true,
532
-                ),
533
-                'entity' => array(
534
-                  'location' => 'path',
535
-                  'type' => 'string',
536
-                  'required' => true,
537
-                ),
538
-                'generation' => array(
539
-                  'location' => 'query',
540
-                  'type' => 'string',
541
-                ),
542
-              ),
543
-            ),'update' => array(
544
-              'path' => 'b/{bucket}/o/{object}/acl/{entity}',
545
-              'httpMethod' => 'PUT',
546
-              'parameters' => array(
547
-                'bucket' => array(
548
-                  'location' => 'path',
549
-                  'type' => 'string',
550
-                  'required' => true,
551
-                ),
552
-                'object' => array(
553
-                  'location' => 'path',
554
-                  'type' => 'string',
555
-                  'required' => true,
556
-                ),
557
-                'entity' => array(
558
-                  'location' => 'path',
559
-                  'type' => 'string',
560
-                  'required' => true,
561
-                ),
562
-                'generation' => array(
563
-                  'location' => 'query',
564
-                  'type' => 'string',
565
-                ),
566
-              ),
567
-            ),
568
-          )
569
-        )
570
-    );
571
-    $this->objects = new Google_Service_Storage_Objects_Resource(
572
-        $this,
573
-        $this->serviceName,
574
-        'objects',
575
-        array(
576
-          'methods' => array(
577
-            'compose' => array(
578
-              'path' => 'b/{destinationBucket}/o/{destinationObject}/compose',
579
-              'httpMethod' => 'POST',
580
-              'parameters' => array(
581
-                'destinationBucket' => array(
582
-                  'location' => 'path',
583
-                  'type' => 'string',
584
-                  'required' => true,
585
-                ),
586
-                'destinationObject' => array(
587
-                  'location' => 'path',
588
-                  'type' => 'string',
589
-                  'required' => true,
590
-                ),
591
-                'ifGenerationMatch' => array(
592
-                  'location' => 'query',
593
-                  'type' => 'string',
594
-                ),
595
-                'ifMetagenerationMatch' => array(
596
-                  'location' => 'query',
597
-                  'type' => 'string',
598
-                ),
599
-                'destinationPredefinedAcl' => array(
600
-                  'location' => 'query',
601
-                  'type' => 'string',
602
-                ),
603
-              ),
604
-            ),'copy' => array(
605
-              'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}',
606
-              'httpMethod' => 'POST',
607
-              'parameters' => array(
608
-                'sourceBucket' => array(
609
-                  'location' => 'path',
610
-                  'type' => 'string',
611
-                  'required' => true,
612
-                ),
613
-                'sourceObject' => array(
614
-                  'location' => 'path',
615
-                  'type' => 'string',
616
-                  'required' => true,
617
-                ),
618
-                'destinationBucket' => array(
619
-                  'location' => 'path',
620
-                  'type' => 'string',
621
-                  'required' => true,
622
-                ),
623
-                'destinationObject' => array(
624
-                  'location' => 'path',
625
-                  'type' => 'string',
626
-                  'required' => true,
627
-                ),
628
-                'ifSourceGenerationNotMatch' => array(
629
-                  'location' => 'query',
630
-                  'type' => 'string',
631
-                ),
632
-                'ifGenerationNotMatch' => array(
633
-                  'location' => 'query',
634
-                  'type' => 'string',
635
-                ),
636
-                'ifSourceMetagenerationNotMatch' => array(
637
-                  'location' => 'query',
638
-                  'type' => 'string',
639
-                ),
640
-                'ifMetagenerationMatch' => array(
641
-                  'location' => 'query',
642
-                  'type' => 'string',
643
-                ),
644
-                'sourceGeneration' => array(
645
-                  'location' => 'query',
646
-                  'type' => 'string',
647
-                ),
648
-                'destinationPredefinedAcl' => array(
649
-                  'location' => 'query',
650
-                  'type' => 'string',
651
-                ),
652
-                'ifSourceGenerationMatch' => array(
653
-                  'location' => 'query',
654
-                  'type' => 'string',
655
-                ),
656
-                'ifSourceMetagenerationMatch' => array(
657
-                  'location' => 'query',
658
-                  'type' => 'string',
659
-                ),
660
-                'ifGenerationMatch' => array(
661
-                  'location' => 'query',
662
-                  'type' => 'string',
663
-                ),
664
-                'ifMetagenerationNotMatch' => array(
665
-                  'location' => 'query',
666
-                  'type' => 'string',
667
-                ),
668
-                'projection' => array(
669
-                  'location' => 'query',
670
-                  'type' => 'string',
671
-                ),
672
-              ),
673
-            ),'delete' => array(
674
-              'path' => 'b/{bucket}/o/{object}',
675
-              'httpMethod' => 'DELETE',
676
-              'parameters' => array(
677
-                'bucket' => array(
678
-                  'location' => 'path',
679
-                  'type' => 'string',
680
-                  'required' => true,
681
-                ),
682
-                'object' => array(
683
-                  'location' => 'path',
684
-                  'type' => 'string',
685
-                  'required' => true,
686
-                ),
687
-                'ifGenerationNotMatch' => array(
688
-                  'location' => 'query',
689
-                  'type' => 'string',
690
-                ),
691
-                'generation' => array(
692
-                  'location' => 'query',
693
-                  'type' => 'string',
694
-                ),
695
-                'ifMetagenerationMatch' => array(
696
-                  'location' => 'query',
697
-                  'type' => 'string',
698
-                ),
699
-                'ifGenerationMatch' => array(
700
-                  'location' => 'query',
701
-                  'type' => 'string',
702
-                ),
703
-                'ifMetagenerationNotMatch' => array(
704
-                  'location' => 'query',
705
-                  'type' => 'string',
706
-                ),
707
-              ),
708
-            ),'get' => array(
709
-              'path' => 'b/{bucket}/o/{object}',
710
-              'httpMethod' => 'GET',
711
-              'parameters' => array(
712
-                'bucket' => array(
713
-                  'location' => 'path',
714
-                  'type' => 'string',
715
-                  'required' => true,
716
-                ),
717
-                'object' => array(
718
-                  'location' => 'path',
719
-                  'type' => 'string',
720
-                  'required' => true,
721
-                ),
722
-                'ifGenerationNotMatch' => array(
723
-                  'location' => 'query',
724
-                  'type' => 'string',
725
-                ),
726
-                'generation' => array(
727
-                  'location' => 'query',
728
-                  'type' => 'string',
729
-                ),
730
-                'ifMetagenerationMatch' => array(
731
-                  'location' => 'query',
732
-                  'type' => 'string',
733
-                ),
734
-                'ifGenerationMatch' => array(
735
-                  'location' => 'query',
736
-                  'type' => 'string',
737
-                ),
738
-                'ifMetagenerationNotMatch' => array(
739
-                  'location' => 'query',
740
-                  'type' => 'string',
741
-                ),
742
-                'projection' => array(
743
-                  'location' => 'query',
744
-                  'type' => 'string',
745
-                ),
746
-              ),
747
-            ),'insert' => array(
748
-              'path' => 'b/{bucket}/o',
749
-              'httpMethod' => 'POST',
750
-              'parameters' => array(
751
-                'bucket' => array(
752
-                  'location' => 'path',
753
-                  'type' => 'string',
754
-                  'required' => true,
755
-                ),
756
-                'predefinedAcl' => array(
757
-                  'location' => 'query',
758
-                  'type' => 'string',
759
-                ),
760
-                'projection' => array(
761
-                  'location' => 'query',
762
-                  'type' => 'string',
763
-                ),
764
-                'ifGenerationNotMatch' => array(
765
-                  'location' => 'query',
766
-                  'type' => 'string',
767
-                ),
768
-                'ifMetagenerationMatch' => array(
769
-                  'location' => 'query',
770
-                  'type' => 'string',
771
-                ),
772
-                'contentEncoding' => array(
773
-                  'location' => 'query',
774
-                  'type' => 'string',
775
-                ),
776
-                'ifGenerationMatch' => array(
777
-                  'location' => 'query',
778
-                  'type' => 'string',
779
-                ),
780
-                'ifMetagenerationNotMatch' => array(
781
-                  'location' => 'query',
782
-                  'type' => 'string',
783
-                ),
784
-                'name' => array(
785
-                  'location' => 'query',
786
-                  'type' => 'string',
787
-                ),
788
-              ),
789
-            ),'list' => array(
790
-              'path' => 'b/{bucket}/o',
791
-              'httpMethod' => 'GET',
792
-              'parameters' => array(
793
-                'bucket' => array(
794
-                  'location' => 'path',
795
-                  'type' => 'string',
796
-                  'required' => true,
797
-                ),
798
-                'projection' => array(
799
-                  'location' => 'query',
800
-                  'type' => 'string',
801
-                ),
802
-                'versions' => array(
803
-                  'location' => 'query',
804
-                  'type' => 'boolean',
805
-                ),
806
-                'prefix' => array(
807
-                  'location' => 'query',
808
-                  'type' => 'string',
809
-                ),
810
-                'maxResults' => array(
811
-                  'location' => 'query',
812
-                  'type' => 'integer',
813
-                ),
814
-                'pageToken' => array(
815
-                  'location' => 'query',
816
-                  'type' => 'string',
817
-                ),
818
-                'delimiter' => array(
819
-                  'location' => 'query',
820
-                  'type' => 'string',
821
-                ),
822
-              ),
823
-            ),'patch' => array(
824
-              'path' => 'b/{bucket}/o/{object}',
825
-              'httpMethod' => 'PATCH',
826
-              'parameters' => array(
827
-                'bucket' => array(
828
-                  'location' => 'path',
829
-                  'type' => 'string',
830
-                  'required' => true,
831
-                ),
832
-                'object' => array(
833
-                  'location' => 'path',
834
-                  'type' => 'string',
835
-                  'required' => true,
836
-                ),
837
-                'predefinedAcl' => array(
838
-                  'location' => 'query',
839
-                  'type' => 'string',
840
-                ),
841
-                'ifGenerationNotMatch' => array(
842
-                  'location' => 'query',
843
-                  'type' => 'string',
844
-                ),
845
-                'generation' => array(
846
-                  'location' => 'query',
847
-                  'type' => 'string',
848
-                ),
849
-                'ifMetagenerationMatch' => array(
850
-                  'location' => 'query',
851
-                  'type' => 'string',
852
-                ),
853
-                'ifGenerationMatch' => array(
854
-                  'location' => 'query',
855
-                  'type' => 'string',
856
-                ),
857
-                'ifMetagenerationNotMatch' => array(
858
-                  'location' => 'query',
859
-                  'type' => 'string',
860
-                ),
861
-                'projection' => array(
862
-                  'location' => 'query',
863
-                  'type' => 'string',
864
-                ),
865
-              ),
866
-            ),'rewrite' => array(
867
-              'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}',
868
-              'httpMethod' => 'POST',
869
-              'parameters' => array(
870
-                'sourceBucket' => array(
871
-                  'location' => 'path',
872
-                  'type' => 'string',
873
-                  'required' => true,
874
-                ),
875
-                'sourceObject' => array(
876
-                  'location' => 'path',
877
-                  'type' => 'string',
878
-                  'required' => true,
879
-                ),
880
-                'destinationBucket' => array(
881
-                  'location' => 'path',
882
-                  'type' => 'string',
883
-                  'required' => true,
884
-                ),
885
-                'destinationObject' => array(
886
-                  'location' => 'path',
887
-                  'type' => 'string',
888
-                  'required' => true,
889
-                ),
890
-                'ifSourceGenerationNotMatch' => array(
891
-                  'location' => 'query',
892
-                  'type' => 'string',
893
-                ),
894
-                'ifGenerationNotMatch' => array(
895
-                  'location' => 'query',
896
-                  'type' => 'string',
897
-                ),
898
-                'rewriteToken' => array(
899
-                  'location' => 'query',
900
-                  'type' => 'string',
901
-                ),
902
-                'ifSourceMetagenerationNotMatch' => array(
903
-                  'location' => 'query',
904
-                  'type' => 'string',
905
-                ),
906
-                'ifMetagenerationMatch' => array(
907
-                  'location' => 'query',
908
-                  'type' => 'string',
909
-                ),
910
-                'sourceGeneration' => array(
911
-                  'location' => 'query',
912
-                  'type' => 'string',
913
-                ),
914
-                'destinationPredefinedAcl' => array(
915
-                  'location' => 'query',
916
-                  'type' => 'string',
917
-                ),
918
-                'ifSourceGenerationMatch' => array(
919
-                  'location' => 'query',
920
-                  'type' => 'string',
921
-                ),
922
-                'maxBytesRewrittenPerCall' => array(
923
-                  'location' => 'query',
924
-                  'type' => 'string',
925
-                ),
926
-                'ifSourceMetagenerationMatch' => array(
927
-                  'location' => 'query',
928
-                  'type' => 'string',
929
-                ),
930
-                'ifGenerationMatch' => array(
931
-                  'location' => 'query',
932
-                  'type' => 'string',
933
-                ),
934
-                'ifMetagenerationNotMatch' => array(
935
-                  'location' => 'query',
936
-                  'type' => 'string',
937
-                ),
938
-                'projection' => array(
939
-                  'location' => 'query',
940
-                  'type' => 'string',
941
-                ),
942
-              ),
943
-            ),'update' => array(
944
-              'path' => 'b/{bucket}/o/{object}',
945
-              'httpMethod' => 'PUT',
946
-              'parameters' => array(
947
-                'bucket' => array(
948
-                  'location' => 'path',
949
-                  'type' => 'string',
950
-                  'required' => true,
951
-                ),
952
-                'object' => array(
953
-                  'location' => 'path',
954
-                  'type' => 'string',
955
-                  'required' => true,
956
-                ),
957
-                'predefinedAcl' => array(
958
-                  'location' => 'query',
959
-                  'type' => 'string',
960
-                ),
961
-                'ifGenerationNotMatch' => array(
962
-                  'location' => 'query',
963
-                  'type' => 'string',
964
-                ),
965
-                'generation' => array(
966
-                  'location' => 'query',
967
-                  'type' => 'string',
968
-                ),
969
-                'ifMetagenerationMatch' => array(
970
-                  'location' => 'query',
971
-                  'type' => 'string',
972
-                ),
973
-                'ifGenerationMatch' => array(
974
-                  'location' => 'query',
975
-                  'type' => 'string',
976
-                ),
977
-                'ifMetagenerationNotMatch' => array(
978
-                  'location' => 'query',
979
-                  'type' => 'string',
980
-                ),
981
-                'projection' => array(
982
-                  'location' => 'query',
983
-                  'type' => 'string',
984
-                ),
985
-              ),
986
-            ),'watchAll' => array(
987
-              'path' => 'b/{bucket}/o/watch',
988
-              'httpMethod' => 'POST',
989
-              'parameters' => array(
990
-                'bucket' => array(
991
-                  'location' => 'path',
992
-                  'type' => 'string',
993
-                  'required' => true,
994
-                ),
995
-                'projection' => array(
996
-                  'location' => 'query',
997
-                  'type' => 'string',
998
-                ),
999
-                'versions' => array(
1000
-                  'location' => 'query',
1001
-                  'type' => 'boolean',
1002
-                ),
1003
-                'prefix' => array(
1004
-                  'location' => 'query',
1005
-                  'type' => 'string',
1006
-                ),
1007
-                'maxResults' => array(
1008
-                  'location' => 'query',
1009
-                  'type' => 'integer',
1010
-                ),
1011
-                'pageToken' => array(
1012
-                  'location' => 'query',
1013
-                  'type' => 'string',
1014
-                ),
1015
-                'delimiter' => array(
1016
-                  'location' => 'query',
1017
-                  'type' => 'string',
1018
-                ),
1019
-              ),
1020
-            ),
1021
-          )
1022
-        )
1023
-    );
61
+	parent::__construct($client);
62
+	$this->rootUrl = 'https://www.googleapis.com/';
63
+	$this->servicePath = 'storage/v1/';
64
+	$this->version = 'v1';
65
+	$this->serviceName = 'storage';
66
+
67
+	$this->bucketAccessControls = new Google_Service_Storage_BucketAccessControls_Resource(
68
+		$this,
69
+		$this->serviceName,
70
+		'bucketAccessControls',
71
+		array(
72
+		  'methods' => array(
73
+			'delete' => array(
74
+			  'path' => 'b/{bucket}/acl/{entity}',
75
+			  'httpMethod' => 'DELETE',
76
+			  'parameters' => array(
77
+				'bucket' => array(
78
+				  'location' => 'path',
79
+				  'type' => 'string',
80
+				  'required' => true,
81
+				),
82
+				'entity' => array(
83
+				  'location' => 'path',
84
+				  'type' => 'string',
85
+				  'required' => true,
86
+				),
87
+			  ),
88
+			),'get' => array(
89
+			  'path' => 'b/{bucket}/acl/{entity}',
90
+			  'httpMethod' => 'GET',
91
+			  'parameters' => array(
92
+				'bucket' => array(
93
+				  'location' => 'path',
94
+				  'type' => 'string',
95
+				  'required' => true,
96
+				),
97
+				'entity' => array(
98
+				  'location' => 'path',
99
+				  'type' => 'string',
100
+				  'required' => true,
101
+				),
102
+			  ),
103
+			),'insert' => array(
104
+			  'path' => 'b/{bucket}/acl',
105
+			  'httpMethod' => 'POST',
106
+			  'parameters' => array(
107
+				'bucket' => array(
108
+				  'location' => 'path',
109
+				  'type' => 'string',
110
+				  'required' => true,
111
+				),
112
+			  ),
113
+			),'list' => array(
114
+			  'path' => 'b/{bucket}/acl',
115
+			  'httpMethod' => 'GET',
116
+			  'parameters' => array(
117
+				'bucket' => array(
118
+				  'location' => 'path',
119
+				  'type' => 'string',
120
+				  'required' => true,
121
+				),
122
+			  ),
123
+			),'patch' => array(
124
+			  'path' => 'b/{bucket}/acl/{entity}',
125
+			  'httpMethod' => 'PATCH',
126
+			  'parameters' => array(
127
+				'bucket' => array(
128
+				  'location' => 'path',
129
+				  'type' => 'string',
130
+				  'required' => true,
131
+				),
132
+				'entity' => array(
133
+				  'location' => 'path',
134
+				  'type' => 'string',
135
+				  'required' => true,
136
+				),
137
+			  ),
138
+			),'update' => array(
139
+			  'path' => 'b/{bucket}/acl/{entity}',
140
+			  'httpMethod' => 'PUT',
141
+			  'parameters' => array(
142
+				'bucket' => array(
143
+				  'location' => 'path',
144
+				  'type' => 'string',
145
+				  'required' => true,
146
+				),
147
+				'entity' => array(
148
+				  'location' => 'path',
149
+				  'type' => 'string',
150
+				  'required' => true,
151
+				),
152
+			  ),
153
+			),
154
+		  )
155
+		)
156
+	);
157
+	$this->buckets = new Google_Service_Storage_Buckets_Resource(
158
+		$this,
159
+		$this->serviceName,
160
+		'buckets',
161
+		array(
162
+		  'methods' => array(
163
+			'delete' => array(
164
+			  'path' => 'b/{bucket}',
165
+			  'httpMethod' => 'DELETE',
166
+			  'parameters' => array(
167
+				'bucket' => array(
168
+				  'location' => 'path',
169
+				  'type' => 'string',
170
+				  'required' => true,
171
+				),
172
+				'ifMetagenerationMatch' => array(
173
+				  'location' => 'query',
174
+				  'type' => 'string',
175
+				),
176
+				'ifMetagenerationNotMatch' => array(
177
+				  'location' => 'query',
178
+				  'type' => 'string',
179
+				),
180
+			  ),
181
+			),'get' => array(
182
+			  'path' => 'b/{bucket}',
183
+			  'httpMethod' => 'GET',
184
+			  'parameters' => array(
185
+				'bucket' => array(
186
+				  'location' => 'path',
187
+				  'type' => 'string',
188
+				  'required' => true,
189
+				),
190
+				'ifMetagenerationMatch' => array(
191
+				  'location' => 'query',
192
+				  'type' => 'string',
193
+				),
194
+				'ifMetagenerationNotMatch' => array(
195
+				  'location' => 'query',
196
+				  'type' => 'string',
197
+				),
198
+				'projection' => array(
199
+				  'location' => 'query',
200
+				  'type' => 'string',
201
+				),
202
+			  ),
203
+			),'insert' => array(
204
+			  'path' => 'b',
205
+			  'httpMethod' => 'POST',
206
+			  'parameters' => array(
207
+				'project' => array(
208
+				  'location' => 'query',
209
+				  'type' => 'string',
210
+				  'required' => true,
211
+				),
212
+				'predefinedAcl' => array(
213
+				  'location' => 'query',
214
+				  'type' => 'string',
215
+				),
216
+				'projection' => array(
217
+				  'location' => 'query',
218
+				  'type' => 'string',
219
+				),
220
+				'predefinedDefaultObjectAcl' => array(
221
+				  'location' => 'query',
222
+				  'type' => 'string',
223
+				),
224
+			  ),
225
+			),'list' => array(
226
+			  'path' => 'b',
227
+			  'httpMethod' => 'GET',
228
+			  'parameters' => array(
229
+				'project' => array(
230
+				  'location' => 'query',
231
+				  'type' => 'string',
232
+				  'required' => true,
233
+				),
234
+				'pageToken' => array(
235
+				  'location' => 'query',
236
+				  'type' => 'string',
237
+				),
238
+				'prefix' => array(
239
+				  'location' => 'query',
240
+				  'type' => 'string',
241
+				),
242
+				'projection' => array(
243
+				  'location' => 'query',
244
+				  'type' => 'string',
245
+				),
246
+				'maxResults' => array(
247
+				  'location' => 'query',
248
+				  'type' => 'integer',
249
+				),
250
+			  ),
251
+			),'patch' => array(
252
+			  'path' => 'b/{bucket}',
253
+			  'httpMethod' => 'PATCH',
254
+			  'parameters' => array(
255
+				'bucket' => array(
256
+				  'location' => 'path',
257
+				  'type' => 'string',
258
+				  'required' => true,
259
+				),
260
+				'projection' => array(
261
+				  'location' => 'query',
262
+				  'type' => 'string',
263
+				),
264
+				'ifMetagenerationMatch' => array(
265
+				  'location' => 'query',
266
+				  'type' => 'string',
267
+				),
268
+				'predefinedDefaultObjectAcl' => array(
269
+				  'location' => 'query',
270
+				  'type' => 'string',
271
+				),
272
+				'predefinedAcl' => array(
273
+				  'location' => 'query',
274
+				  'type' => 'string',
275
+				),
276
+				'ifMetagenerationNotMatch' => array(
277
+				  'location' => 'query',
278
+				  'type' => 'string',
279
+				),
280
+			  ),
281
+			),'update' => array(
282
+			  'path' => 'b/{bucket}',
283
+			  'httpMethod' => 'PUT',
284
+			  'parameters' => array(
285
+				'bucket' => array(
286
+				  'location' => 'path',
287
+				  'type' => 'string',
288
+				  'required' => true,
289
+				),
290
+				'projection' => array(
291
+				  'location' => 'query',
292
+				  'type' => 'string',
293
+				),
294
+				'ifMetagenerationMatch' => array(
295
+				  'location' => 'query',
296
+				  'type' => 'string',
297
+				),
298
+				'predefinedDefaultObjectAcl' => array(
299
+				  'location' => 'query',
300
+				  'type' => 'string',
301
+				),
302
+				'predefinedAcl' => array(
303
+				  'location' => 'query',
304
+				  'type' => 'string',
305
+				),
306
+				'ifMetagenerationNotMatch' => array(
307
+				  'location' => 'query',
308
+				  'type' => 'string',
309
+				),
310
+			  ),
311
+			),
312
+		  )
313
+		)
314
+	);
315
+	$this->channels = new Google_Service_Storage_Channels_Resource(
316
+		$this,
317
+		$this->serviceName,
318
+		'channels',
319
+		array(
320
+		  'methods' => array(
321
+			'stop' => array(
322
+			  'path' => 'channels/stop',
323
+			  'httpMethod' => 'POST',
324
+			  'parameters' => array(),
325
+			),
326
+		  )
327
+		)
328
+	);
329
+	$this->defaultObjectAccessControls = new Google_Service_Storage_DefaultObjectAccessControls_Resource(
330
+		$this,
331
+		$this->serviceName,
332
+		'defaultObjectAccessControls',
333
+		array(
334
+		  'methods' => array(
335
+			'delete' => array(
336
+			  'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
337
+			  'httpMethod' => 'DELETE',
338
+			  'parameters' => array(
339
+				'bucket' => array(
340
+				  'location' => 'path',
341
+				  'type' => 'string',
342
+				  'required' => true,
343
+				),
344
+				'entity' => array(
345
+				  'location' => 'path',
346
+				  'type' => 'string',
347
+				  'required' => true,
348
+				),
349
+			  ),
350
+			),'get' => array(
351
+			  'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
352
+			  'httpMethod' => 'GET',
353
+			  'parameters' => array(
354
+				'bucket' => array(
355
+				  'location' => 'path',
356
+				  'type' => 'string',
357
+				  'required' => true,
358
+				),
359
+				'entity' => array(
360
+				  'location' => 'path',
361
+				  'type' => 'string',
362
+				  'required' => true,
363
+				),
364
+			  ),
365
+			),'insert' => array(
366
+			  'path' => 'b/{bucket}/defaultObjectAcl',
367
+			  'httpMethod' => 'POST',
368
+			  'parameters' => array(
369
+				'bucket' => array(
370
+				  'location' => 'path',
371
+				  'type' => 'string',
372
+				  'required' => true,
373
+				),
374
+			  ),
375
+			),'list' => array(
376
+			  'path' => 'b/{bucket}/defaultObjectAcl',
377
+			  'httpMethod' => 'GET',
378
+			  'parameters' => array(
379
+				'bucket' => array(
380
+				  'location' => 'path',
381
+				  'type' => 'string',
382
+				  'required' => true,
383
+				),
384
+				'ifMetagenerationMatch' => array(
385
+				  'location' => 'query',
386
+				  'type' => 'string',
387
+				),
388
+				'ifMetagenerationNotMatch' => array(
389
+				  'location' => 'query',
390
+				  'type' => 'string',
391
+				),
392
+			  ),
393
+			),'patch' => array(
394
+			  'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
395
+			  'httpMethod' => 'PATCH',
396
+			  'parameters' => array(
397
+				'bucket' => array(
398
+				  'location' => 'path',
399
+				  'type' => 'string',
400
+				  'required' => true,
401
+				),
402
+				'entity' => array(
403
+				  'location' => 'path',
404
+				  'type' => 'string',
405
+				  'required' => true,
406
+				),
407
+			  ),
408
+			),'update' => array(
409
+			  'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
410
+			  'httpMethod' => 'PUT',
411
+			  'parameters' => array(
412
+				'bucket' => array(
413
+				  'location' => 'path',
414
+				  'type' => 'string',
415
+				  'required' => true,
416
+				),
417
+				'entity' => array(
418
+				  'location' => 'path',
419
+				  'type' => 'string',
420
+				  'required' => true,
421
+				),
422
+			  ),
423
+			),
424
+		  )
425
+		)
426
+	);
427
+	$this->objectAccessControls = new Google_Service_Storage_ObjectAccessControls_Resource(
428
+		$this,
429
+		$this->serviceName,
430
+		'objectAccessControls',
431
+		array(
432
+		  'methods' => array(
433
+			'delete' => array(
434
+			  'path' => 'b/{bucket}/o/{object}/acl/{entity}',
435
+			  'httpMethod' => 'DELETE',
436
+			  'parameters' => array(
437
+				'bucket' => array(
438
+				  'location' => 'path',
439
+				  'type' => 'string',
440
+				  'required' => true,
441
+				),
442
+				'object' => array(
443
+				  'location' => 'path',
444
+				  'type' => 'string',
445
+				  'required' => true,
446
+				),
447
+				'entity' => array(
448
+				  'location' => 'path',
449
+				  'type' => 'string',
450
+				  'required' => true,
451
+				),
452
+				'generation' => array(
453
+				  'location' => 'query',
454
+				  'type' => 'string',
455
+				),
456
+			  ),
457
+			),'get' => array(
458
+			  'path' => 'b/{bucket}/o/{object}/acl/{entity}',
459
+			  'httpMethod' => 'GET',
460
+			  'parameters' => array(
461
+				'bucket' => array(
462
+				  'location' => 'path',
463
+				  'type' => 'string',
464
+				  'required' => true,
465
+				),
466
+				'object' => array(
467
+				  'location' => 'path',
468
+				  'type' => 'string',
469
+				  'required' => true,
470
+				),
471
+				'entity' => array(
472
+				  'location' => 'path',
473
+				  'type' => 'string',
474
+				  'required' => true,
475
+				),
476
+				'generation' => array(
477
+				  'location' => 'query',
478
+				  'type' => 'string',
479
+				),
480
+			  ),
481
+			),'insert' => array(
482
+			  'path' => 'b/{bucket}/o/{object}/acl',
483
+			  'httpMethod' => 'POST',
484
+			  'parameters' => array(
485
+				'bucket' => array(
486
+				  'location' => 'path',
487
+				  'type' => 'string',
488
+				  'required' => true,
489
+				),
490
+				'object' => array(
491
+				  'location' => 'path',
492
+				  'type' => 'string',
493
+				  'required' => true,
494
+				),
495
+				'generation' => array(
496
+				  'location' => 'query',
497
+				  'type' => 'string',
498
+				),
499
+			  ),
500
+			),'list' => array(
501
+			  'path' => 'b/{bucket}/o/{object}/acl',
502
+			  'httpMethod' => 'GET',
503
+			  'parameters' => array(
504
+				'bucket' => array(
505
+				  'location' => 'path',
506
+				  'type' => 'string',
507
+				  'required' => true,
508
+				),
509
+				'object' => array(
510
+				  'location' => 'path',
511
+				  'type' => 'string',
512
+				  'required' => true,
513
+				),
514
+				'generation' => array(
515
+				  'location' => 'query',
516
+				  'type' => 'string',
517
+				),
518
+			  ),
519
+			),'patch' => array(
520
+			  'path' => 'b/{bucket}/o/{object}/acl/{entity}',
521
+			  'httpMethod' => 'PATCH',
522
+			  'parameters' => array(
523
+				'bucket' => array(
524
+				  'location' => 'path',
525
+				  'type' => 'string',
526
+				  'required' => true,
527
+				),
528
+				'object' => array(
529
+				  'location' => 'path',
530
+				  'type' => 'string',
531
+				  'required' => true,
532
+				),
533
+				'entity' => array(
534
+				  'location' => 'path',
535
+				  'type' => 'string',
536
+				  'required' => true,
537
+				),
538
+				'generation' => array(
539
+				  'location' => 'query',
540
+				  'type' => 'string',
541
+				),
542
+			  ),
543
+			),'update' => array(
544
+			  'path' => 'b/{bucket}/o/{object}/acl/{entity}',
545
+			  'httpMethod' => 'PUT',
546
+			  'parameters' => array(
547
+				'bucket' => array(
548
+				  'location' => 'path',
549
+				  'type' => 'string',
550
+				  'required' => true,
551
+				),
552
+				'object' => array(
553
+				  'location' => 'path',
554
+				  'type' => 'string',
555
+				  'required' => true,
556
+				),
557
+				'entity' => array(
558
+				  'location' => 'path',
559
+				  'type' => 'string',
560
+				  'required' => true,
561
+				),
562
+				'generation' => array(
563
+				  'location' => 'query',
564
+				  'type' => 'string',
565
+				),
566
+			  ),
567
+			),
568
+		  )
569
+		)
570
+	);
571
+	$this->objects = new Google_Service_Storage_Objects_Resource(
572
+		$this,
573
+		$this->serviceName,
574
+		'objects',
575
+		array(
576
+		  'methods' => array(
577
+			'compose' => array(
578
+			  'path' => 'b/{destinationBucket}/o/{destinationObject}/compose',
579
+			  'httpMethod' => 'POST',
580
+			  'parameters' => array(
581
+				'destinationBucket' => array(
582
+				  'location' => 'path',
583
+				  'type' => 'string',
584
+				  'required' => true,
585
+				),
586
+				'destinationObject' => array(
587
+				  'location' => 'path',
588
+				  'type' => 'string',
589
+				  'required' => true,
590
+				),
591
+				'ifGenerationMatch' => array(
592
+				  'location' => 'query',
593
+				  'type' => 'string',
594
+				),
595
+				'ifMetagenerationMatch' => array(
596
+				  'location' => 'query',
597
+				  'type' => 'string',
598
+				),
599
+				'destinationPredefinedAcl' => array(
600
+				  'location' => 'query',
601
+				  'type' => 'string',
602
+				),
603
+			  ),
604
+			),'copy' => array(
605
+			  'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}',
606
+			  'httpMethod' => 'POST',
607
+			  'parameters' => array(
608
+				'sourceBucket' => array(
609
+				  'location' => 'path',
610
+				  'type' => 'string',
611
+				  'required' => true,
612
+				),
613
+				'sourceObject' => array(
614
+				  'location' => 'path',
615
+				  'type' => 'string',
616
+				  'required' => true,
617
+				),
618
+				'destinationBucket' => array(
619
+				  'location' => 'path',
620
+				  'type' => 'string',
621
+				  'required' => true,
622
+				),
623
+				'destinationObject' => array(
624
+				  'location' => 'path',
625
+				  'type' => 'string',
626
+				  'required' => true,
627
+				),
628
+				'ifSourceGenerationNotMatch' => array(
629
+				  'location' => 'query',
630
+				  'type' => 'string',
631
+				),
632
+				'ifGenerationNotMatch' => array(
633
+				  'location' => 'query',
634
+				  'type' => 'string',
635
+				),
636
+				'ifSourceMetagenerationNotMatch' => array(
637
+				  'location' => 'query',
638
+				  'type' => 'string',
639
+				),
640
+				'ifMetagenerationMatch' => array(
641
+				  'location' => 'query',
642
+				  'type' => 'string',
643
+				),
644
+				'sourceGeneration' => array(
645
+				  'location' => 'query',
646
+				  'type' => 'string',
647
+				),
648
+				'destinationPredefinedAcl' => array(
649
+				  'location' => 'query',
650
+				  'type' => 'string',
651
+				),
652
+				'ifSourceGenerationMatch' => array(
653
+				  'location' => 'query',
654
+				  'type' => 'string',
655
+				),
656
+				'ifSourceMetagenerationMatch' => array(
657
+				  'location' => 'query',
658
+				  'type' => 'string',
659
+				),
660
+				'ifGenerationMatch' => array(
661
+				  'location' => 'query',
662
+				  'type' => 'string',
663
+				),
664
+				'ifMetagenerationNotMatch' => array(
665
+				  'location' => 'query',
666
+				  'type' => 'string',
667
+				),
668
+				'projection' => array(
669
+				  'location' => 'query',
670
+				  'type' => 'string',
671
+				),
672
+			  ),
673
+			),'delete' => array(
674
+			  'path' => 'b/{bucket}/o/{object}',
675
+			  'httpMethod' => 'DELETE',
676
+			  'parameters' => array(
677
+				'bucket' => array(
678
+				  'location' => 'path',
679
+				  'type' => 'string',
680
+				  'required' => true,
681
+				),
682
+				'object' => array(
683
+				  'location' => 'path',
684
+				  'type' => 'string',
685
+				  'required' => true,
686
+				),
687
+				'ifGenerationNotMatch' => array(
688
+				  'location' => 'query',
689
+				  'type' => 'string',
690
+				),
691
+				'generation' => array(
692
+				  'location' => 'query',
693
+				  'type' => 'string',
694
+				),
695
+				'ifMetagenerationMatch' => array(
696
+				  'location' => 'query',
697
+				  'type' => 'string',
698
+				),
699
+				'ifGenerationMatch' => array(
700
+				  'location' => 'query',
701
+				  'type' => 'string',
702
+				),
703
+				'ifMetagenerationNotMatch' => array(
704
+				  'location' => 'query',
705
+				  'type' => 'string',
706
+				),
707
+			  ),
708
+			),'get' => array(
709
+			  'path' => 'b/{bucket}/o/{object}',
710
+			  'httpMethod' => 'GET',
711
+			  'parameters' => array(
712
+				'bucket' => array(
713
+				  'location' => 'path',
714
+				  'type' => 'string',
715
+				  'required' => true,
716
+				),
717
+				'object' => array(
718
+				  'location' => 'path',
719
+				  'type' => 'string',
720
+				  'required' => true,
721
+				),
722
+				'ifGenerationNotMatch' => array(
723
+				  'location' => 'query',
724
+				  'type' => 'string',
725
+				),
726
+				'generation' => array(
727
+				  'location' => 'query',
728
+				  'type' => 'string',
729
+				),
730
+				'ifMetagenerationMatch' => array(
731
+				  'location' => 'query',
732
+				  'type' => 'string',
733
+				),
734
+				'ifGenerationMatch' => array(
735
+				  'location' => 'query',
736
+				  'type' => 'string',
737
+				),
738
+				'ifMetagenerationNotMatch' => array(
739
+				  'location' => 'query',
740
+				  'type' => 'string',
741
+				),
742
+				'projection' => array(
743
+				  'location' => 'query',
744
+				  'type' => 'string',
745
+				),
746
+			  ),
747
+			),'insert' => array(
748
+			  'path' => 'b/{bucket}/o',
749
+			  'httpMethod' => 'POST',
750
+			  'parameters' => array(
751
+				'bucket' => array(
752
+				  'location' => 'path',
753
+				  'type' => 'string',
754
+				  'required' => true,
755
+				),
756
+				'predefinedAcl' => array(
757
+				  'location' => 'query',
758
+				  'type' => 'string',
759
+				),
760
+				'projection' => array(
761
+				  'location' => 'query',
762
+				  'type' => 'string',
763
+				),
764
+				'ifGenerationNotMatch' => array(
765
+				  'location' => 'query',
766
+				  'type' => 'string',
767
+				),
768
+				'ifMetagenerationMatch' => array(
769
+				  'location' => 'query',
770
+				  'type' => 'string',
771
+				),
772
+				'contentEncoding' => array(
773
+				  'location' => 'query',
774
+				  'type' => 'string',
775
+				),
776
+				'ifGenerationMatch' => array(
777
+				  'location' => 'query',
778
+				  'type' => 'string',
779
+				),
780
+				'ifMetagenerationNotMatch' => array(
781
+				  'location' => 'query',
782
+				  'type' => 'string',
783
+				),
784
+				'name' => array(
785
+				  'location' => 'query',
786
+				  'type' => 'string',
787
+				),
788
+			  ),
789
+			),'list' => array(
790
+			  'path' => 'b/{bucket}/o',
791
+			  'httpMethod' => 'GET',
792
+			  'parameters' => array(
793
+				'bucket' => array(
794
+				  'location' => 'path',
795
+				  'type' => 'string',
796
+				  'required' => true,
797
+				),
798
+				'projection' => array(
799
+				  'location' => 'query',
800
+				  'type' => 'string',
801
+				),
802
+				'versions' => array(
803
+				  'location' => 'query',
804
+				  'type' => 'boolean',
805
+				),
806
+				'prefix' => array(
807
+				  'location' => 'query',
808
+				  'type' => 'string',
809
+				),
810
+				'maxResults' => array(
811
+				  'location' => 'query',
812
+				  'type' => 'integer',
813
+				),
814
+				'pageToken' => array(
815
+				  'location' => 'query',
816
+				  'type' => 'string',
817
+				),
818
+				'delimiter' => array(
819
+				  'location' => 'query',
820
+				  'type' => 'string',
821
+				),
822
+			  ),
823
+			),'patch' => array(
824
+			  'path' => 'b/{bucket}/o/{object}',
825
+			  'httpMethod' => 'PATCH',
826
+			  'parameters' => array(
827
+				'bucket' => array(
828
+				  'location' => 'path',
829
+				  'type' => 'string',
830
+				  'required' => true,
831
+				),
832
+				'object' => array(
833
+				  'location' => 'path',
834
+				  'type' => 'string',
835
+				  'required' => true,
836
+				),
837
+				'predefinedAcl' => array(
838
+				  'location' => 'query',
839
+				  'type' => 'string',
840
+				),
841
+				'ifGenerationNotMatch' => array(
842
+				  'location' => 'query',
843
+				  'type' => 'string',
844
+				),
845
+				'generation' => array(
846
+				  'location' => 'query',
847
+				  'type' => 'string',
848
+				),
849
+				'ifMetagenerationMatch' => array(
850
+				  'location' => 'query',
851
+				  'type' => 'string',
852
+				),
853
+				'ifGenerationMatch' => array(
854
+				  'location' => 'query',
855
+				  'type' => 'string',
856
+				),
857
+				'ifMetagenerationNotMatch' => array(
858
+				  'location' => 'query',
859
+				  'type' => 'string',
860
+				),
861
+				'projection' => array(
862
+				  'location' => 'query',
863
+				  'type' => 'string',
864
+				),
865
+			  ),
866
+			),'rewrite' => array(
867
+			  'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}',
868
+			  'httpMethod' => 'POST',
869
+			  'parameters' => array(
870
+				'sourceBucket' => array(
871
+				  'location' => 'path',
872
+				  'type' => 'string',
873
+				  'required' => true,
874
+				),
875
+				'sourceObject' => array(
876
+				  'location' => 'path',
877
+				  'type' => 'string',
878
+				  'required' => true,
879
+				),
880
+				'destinationBucket' => array(
881
+				  'location' => 'path',
882
+				  'type' => 'string',
883
+				  'required' => true,
884
+				),
885
+				'destinationObject' => array(
886
+				  'location' => 'path',
887
+				  'type' => 'string',
888
+				  'required' => true,
889
+				),
890
+				'ifSourceGenerationNotMatch' => array(
891
+				  'location' => 'query',
892
+				  'type' => 'string',
893
+				),
894
+				'ifGenerationNotMatch' => array(
895
+				  'location' => 'query',
896
+				  'type' => 'string',
897
+				),
898
+				'rewriteToken' => array(
899
+				  'location' => 'query',
900
+				  'type' => 'string',
901
+				),
902
+				'ifSourceMetagenerationNotMatch' => array(
903
+				  'location' => 'query',
904
+				  'type' => 'string',
905
+				),
906
+				'ifMetagenerationMatch' => array(
907
+				  'location' => 'query',
908
+				  'type' => 'string',
909
+				),
910
+				'sourceGeneration' => array(
911
+				  'location' => 'query',
912
+				  'type' => 'string',
913
+				),
914
+				'destinationPredefinedAcl' => array(
915
+				  'location' => 'query',
916
+				  'type' => 'string',
917
+				),
918
+				'ifSourceGenerationMatch' => array(
919
+				  'location' => 'query',
920
+				  'type' => 'string',
921
+				),
922
+				'maxBytesRewrittenPerCall' => array(
923
+				  'location' => 'query',
924
+				  'type' => 'string',
925
+				),
926
+				'ifSourceMetagenerationMatch' => array(
927
+				  'location' => 'query',
928
+				  'type' => 'string',
929
+				),
930
+				'ifGenerationMatch' => array(
931
+				  'location' => 'query',
932
+				  'type' => 'string',
933
+				),
934
+				'ifMetagenerationNotMatch' => array(
935
+				  'location' => 'query',
936
+				  'type' => 'string',
937
+				),
938
+				'projection' => array(
939
+				  'location' => 'query',
940
+				  'type' => 'string',
941
+				),
942
+			  ),
943
+			),'update' => array(
944
+			  'path' => 'b/{bucket}/o/{object}',
945
+			  'httpMethod' => 'PUT',
946
+			  'parameters' => array(
947
+				'bucket' => array(
948
+				  'location' => 'path',
949
+				  'type' => 'string',
950
+				  'required' => true,
951
+				),
952
+				'object' => array(
953
+				  'location' => 'path',
954
+				  'type' => 'string',
955
+				  'required' => true,
956
+				),
957
+				'predefinedAcl' => array(
958
+				  'location' => 'query',
959
+				  'type' => 'string',
960
+				),
961
+				'ifGenerationNotMatch' => array(
962
+				  'location' => 'query',
963
+				  'type' => 'string',
964
+				),
965
+				'generation' => array(
966
+				  'location' => 'query',
967
+				  'type' => 'string',
968
+				),
969
+				'ifMetagenerationMatch' => array(
970
+				  'location' => 'query',
971
+				  'type' => 'string',
972
+				),
973
+				'ifGenerationMatch' => array(
974
+				  'location' => 'query',
975
+				  'type' => 'string',
976
+				),
977
+				'ifMetagenerationNotMatch' => array(
978
+				  'location' => 'query',
979
+				  'type' => 'string',
980
+				),
981
+				'projection' => array(
982
+				  'location' => 'query',
983
+				  'type' => 'string',
984
+				),
985
+			  ),
986
+			),'watchAll' => array(
987
+			  'path' => 'b/{bucket}/o/watch',
988
+			  'httpMethod' => 'POST',
989
+			  'parameters' => array(
990
+				'bucket' => array(
991
+				  'location' => 'path',
992
+				  'type' => 'string',
993
+				  'required' => true,
994
+				),
995
+				'projection' => array(
996
+				  'location' => 'query',
997
+				  'type' => 'string',
998
+				),
999
+				'versions' => array(
1000
+				  'location' => 'query',
1001
+				  'type' => 'boolean',
1002
+				),
1003
+				'prefix' => array(
1004
+				  'location' => 'query',
1005
+				  'type' => 'string',
1006
+				),
1007
+				'maxResults' => array(
1008
+				  'location' => 'query',
1009
+				  'type' => 'integer',
1010
+				),
1011
+				'pageToken' => array(
1012
+				  'location' => 'query',
1013
+				  'type' => 'string',
1014
+				),
1015
+				'delimiter' => array(
1016
+				  'location' => 'query',
1017
+				  'type' => 'string',
1018
+				),
1019
+			  ),
1020
+			),
1021
+		  )
1022
+		)
1023
+	);
1024 1024
   }
1025 1025
 }
1026 1026
 
@@ -1048,9 +1048,9 @@  discard block
 block discarded – undo
1048 1048
    */
1049 1049
   public function delete($bucket, $entity, $optParams = array())
1050 1050
   {
1051
-    $params = array('bucket' => $bucket, 'entity' => $entity);
1052
-    $params = array_merge($params, $optParams);
1053
-    return $this->call('delete', array($params));
1051
+	$params = array('bucket' => $bucket, 'entity' => $entity);
1052
+	$params = array_merge($params, $optParams);
1053
+	return $this->call('delete', array($params));
1054 1054
   }
1055 1055
 
1056 1056
   /**
@@ -1066,9 +1066,9 @@  discard block
 block discarded – undo
1066 1066
    */
1067 1067
   public function get($bucket, $entity, $optParams = array())
1068 1068
   {
1069
-    $params = array('bucket' => $bucket, 'entity' => $entity);
1070
-    $params = array_merge($params, $optParams);
1071
-    return $this->call('get', array($params), "Google_Service_Storage_BucketAccessControl");
1069
+	$params = array('bucket' => $bucket, 'entity' => $entity);
1070
+	$params = array_merge($params, $optParams);
1071
+	return $this->call('get', array($params), "Google_Service_Storage_BucketAccessControl");
1072 1072
   }
1073 1073
 
1074 1074
   /**
@@ -1082,9 +1082,9 @@  discard block
 block discarded – undo
1082 1082
    */
1083 1083
   public function insert($bucket, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
1084 1084
   {
1085
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1086
-    $params = array_merge($params, $optParams);
1087
-    return $this->call('insert', array($params), "Google_Service_Storage_BucketAccessControl");
1085
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1086
+	$params = array_merge($params, $optParams);
1087
+	return $this->call('insert', array($params), "Google_Service_Storage_BucketAccessControl");
1088 1088
   }
1089 1089
 
1090 1090
   /**
@@ -1097,9 +1097,9 @@  discard block
 block discarded – undo
1097 1097
    */
1098 1098
   public function listBucketAccessControls($bucket, $optParams = array())
1099 1099
   {
1100
-    $params = array('bucket' => $bucket);
1101
-    $params = array_merge($params, $optParams);
1102
-    return $this->call('list', array($params), "Google_Service_Storage_BucketAccessControls");
1100
+	$params = array('bucket' => $bucket);
1101
+	$params = array_merge($params, $optParams);
1102
+	return $this->call('list', array($params), "Google_Service_Storage_BucketAccessControls");
1103 1103
   }
1104 1104
 
1105 1105
   /**
@@ -1116,9 +1116,9 @@  discard block
 block discarded – undo
1116 1116
    */
1117 1117
   public function patch($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
1118 1118
   {
1119
-    $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1120
-    $params = array_merge($params, $optParams);
1121
-    return $this->call('patch', array($params), "Google_Service_Storage_BucketAccessControl");
1119
+	$params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1120
+	$params = array_merge($params, $optParams);
1121
+	return $this->call('patch', array($params), "Google_Service_Storage_BucketAccessControl");
1122 1122
   }
1123 1123
 
1124 1124
   /**
@@ -1134,9 +1134,9 @@  discard block
 block discarded – undo
1134 1134
    */
1135 1135
   public function update($bucket, $entity, Google_Service_Storage_BucketAccessControl $postBody, $optParams = array())
1136 1136
   {
1137
-    $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1138
-    $params = array_merge($params, $optParams);
1139
-    return $this->call('update', array($params), "Google_Service_Storage_BucketAccessControl");
1137
+	$params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1138
+	$params = array_merge($params, $optParams);
1139
+	return $this->call('update', array($params), "Google_Service_Storage_BucketAccessControl");
1140 1140
   }
1141 1141
 }
1142 1142
 
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
    */
1165 1165
   public function delete($bucket, $optParams = array())
1166 1166
   {
1167
-    $params = array('bucket' => $bucket);
1168
-    $params = array_merge($params, $optParams);
1169
-    return $this->call('delete', array($params));
1167
+	$params = array('bucket' => $bucket);
1168
+	$params = array_merge($params, $optParams);
1169
+	return $this->call('delete', array($params));
1170 1170
   }
1171 1171
 
1172 1172
   /**
@@ -1186,9 +1186,9 @@  discard block
 block discarded – undo
1186 1186
    */
1187 1187
   public function get($bucket, $optParams = array())
1188 1188
   {
1189
-    $params = array('bucket' => $bucket);
1190
-    $params = array_merge($params, $optParams);
1191
-    return $this->call('get', array($params), "Google_Service_Storage_Bucket");
1189
+	$params = array('bucket' => $bucket);
1190
+	$params = array_merge($params, $optParams);
1191
+	return $this->call('get', array($params), "Google_Service_Storage_Bucket");
1192 1192
   }
1193 1193
 
1194 1194
   /**
@@ -1209,9 +1209,9 @@  discard block
 block discarded – undo
1209 1209
    */
1210 1210
   public function insert($project, Google_Service_Storage_Bucket $postBody, $optParams = array())
1211 1211
   {
1212
-    $params = array('project' => $project, 'postBody' => $postBody);
1213
-    $params = array_merge($params, $optParams);
1214
-    return $this->call('insert', array($params), "Google_Service_Storage_Bucket");
1212
+	$params = array('project' => $project, 'postBody' => $postBody);
1213
+	$params = array_merge($params, $optParams);
1214
+	return $this->call('insert', array($params), "Google_Service_Storage_Bucket");
1215 1215
   }
1216 1216
 
1217 1217
   /**
@@ -1230,9 +1230,9 @@  discard block
 block discarded – undo
1230 1230
    */
1231 1231
   public function listBuckets($project, $optParams = array())
1232 1232
   {
1233
-    $params = array('project' => $project);
1234
-    $params = array_merge($params, $optParams);
1235
-    return $this->call('list', array($params), "Google_Service_Storage_Buckets");
1233
+	$params = array('project' => $project);
1234
+	$params = array_merge($params, $optParams);
1235
+	return $this->call('list', array($params), "Google_Service_Storage_Buckets");
1236 1236
   }
1237 1237
 
1238 1238
   /**
@@ -1257,9 +1257,9 @@  discard block
 block discarded – undo
1257 1257
    */
1258 1258
   public function patch($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array())
1259 1259
   {
1260
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1261
-    $params = array_merge($params, $optParams);
1262
-    return $this->call('patch', array($params), "Google_Service_Storage_Bucket");
1260
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1261
+	$params = array_merge($params, $optParams);
1262
+	return $this->call('patch', array($params), "Google_Service_Storage_Bucket");
1263 1263
   }
1264 1264
 
1265 1265
   /**
@@ -1284,9 +1284,9 @@  discard block
 block discarded – undo
1284 1284
    */
1285 1285
   public function update($bucket, Google_Service_Storage_Bucket $postBody, $optParams = array())
1286 1286
   {
1287
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1288
-    $params = array_merge($params, $optParams);
1289
-    return $this->call('update', array($params), "Google_Service_Storage_Bucket");
1287
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1288
+	$params = array_merge($params, $optParams);
1289
+	return $this->call('update', array($params), "Google_Service_Storage_Bucket");
1290 1290
   }
1291 1291
 }
1292 1292
 
@@ -1309,9 +1309,9 @@  discard block
 block discarded – undo
1309 1309
    */
1310 1310
   public function stop(Google_Service_Storage_Channel $postBody, $optParams = array())
1311 1311
   {
1312
-    $params = array('postBody' => $postBody);
1313
-    $params = array_merge($params, $optParams);
1314
-    return $this->call('stop', array($params));
1312
+	$params = array('postBody' => $postBody);
1313
+	$params = array_merge($params, $optParams);
1314
+	return $this->call('stop', array($params));
1315 1315
   }
1316 1316
 }
1317 1317
 
@@ -1338,9 +1338,9 @@  discard block
 block discarded – undo
1338 1338
    */
1339 1339
   public function delete($bucket, $entity, $optParams = array())
1340 1340
   {
1341
-    $params = array('bucket' => $bucket, 'entity' => $entity);
1342
-    $params = array_merge($params, $optParams);
1343
-    return $this->call('delete', array($params));
1341
+	$params = array('bucket' => $bucket, 'entity' => $entity);
1342
+	$params = array_merge($params, $optParams);
1343
+	return $this->call('delete', array($params));
1344 1344
   }
1345 1345
 
1346 1346
   /**
@@ -1356,9 +1356,9 @@  discard block
 block discarded – undo
1356 1356
    */
1357 1357
   public function get($bucket, $entity, $optParams = array())
1358 1358
   {
1359
-    $params = array('bucket' => $bucket, 'entity' => $entity);
1360
-    $params = array_merge($params, $optParams);
1361
-    return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl");
1359
+	$params = array('bucket' => $bucket, 'entity' => $entity);
1360
+	$params = array_merge($params, $optParams);
1361
+	return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl");
1362 1362
   }
1363 1363
 
1364 1364
   /**
@@ -1372,9 +1372,9 @@  discard block
 block discarded – undo
1372 1372
    */
1373 1373
   public function insert($bucket, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1374 1374
   {
1375
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1376
-    $params = array_merge($params, $optParams);
1377
-    return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl");
1375
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1376
+	$params = array_merge($params, $optParams);
1377
+	return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl");
1378 1378
   }
1379 1379
 
1380 1380
   /**
@@ -1393,9 +1393,9 @@  discard block
 block discarded – undo
1393 1393
    */
1394 1394
   public function listDefaultObjectAccessControls($bucket, $optParams = array())
1395 1395
   {
1396
-    $params = array('bucket' => $bucket);
1397
-    $params = array_merge($params, $optParams);
1398
-    return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls");
1396
+	$params = array('bucket' => $bucket);
1397
+	$params = array_merge($params, $optParams);
1398
+	return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls");
1399 1399
   }
1400 1400
 
1401 1401
   /**
@@ -1412,9 +1412,9 @@  discard block
 block discarded – undo
1412 1412
    */
1413 1413
   public function patch($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1414 1414
   {
1415
-    $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1416
-    $params = array_merge($params, $optParams);
1417
-    return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl");
1415
+	$params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1416
+	$params = array_merge($params, $optParams);
1417
+	return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl");
1418 1418
   }
1419 1419
 
1420 1420
   /**
@@ -1431,9 +1431,9 @@  discard block
 block discarded – undo
1431 1431
    */
1432 1432
   public function update($bucket, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1433 1433
   {
1434
-    $params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1435
-    $params = array_merge($params, $optParams);
1436
-    return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl");
1434
+	$params = array('bucket' => $bucket, 'entity' => $entity, 'postBody' => $postBody);
1435
+	$params = array_merge($params, $optParams);
1436
+	return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl");
1437 1437
   }
1438 1438
 }
1439 1439
 
@@ -1464,9 +1464,9 @@  discard block
 block discarded – undo
1464 1464
    */
1465 1465
   public function delete($bucket, $object, $entity, $optParams = array())
1466 1466
   {
1467
-    $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
1468
-    $params = array_merge($params, $optParams);
1469
-    return $this->call('delete', array($params));
1467
+	$params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
1468
+	$params = array_merge($params, $optParams);
1469
+	return $this->call('delete', array($params));
1470 1470
   }
1471 1471
 
1472 1472
   /**
@@ -1486,9 +1486,9 @@  discard block
 block discarded – undo
1486 1486
    */
1487 1487
   public function get($bucket, $object, $entity, $optParams = array())
1488 1488
   {
1489
-    $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
1490
-    $params = array_merge($params, $optParams);
1491
-    return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl");
1489
+	$params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity);
1490
+	$params = array_merge($params, $optParams);
1491
+	return $this->call('get', array($params), "Google_Service_Storage_ObjectAccessControl");
1492 1492
   }
1493 1493
 
1494 1494
   /**
@@ -1506,9 +1506,9 @@  discard block
 block discarded – undo
1506 1506
    */
1507 1507
   public function insert($bucket, $object, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1508 1508
   {
1509
-    $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1510
-    $params = array_merge($params, $optParams);
1511
-    return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl");
1509
+	$params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1510
+	$params = array_merge($params, $optParams);
1511
+	return $this->call('insert', array($params), "Google_Service_Storage_ObjectAccessControl");
1512 1512
   }
1513 1513
 
1514 1514
   /**
@@ -1525,9 +1525,9 @@  discard block
 block discarded – undo
1525 1525
    */
1526 1526
   public function listObjectAccessControls($bucket, $object, $optParams = array())
1527 1527
   {
1528
-    $params = array('bucket' => $bucket, 'object' => $object);
1529
-    $params = array_merge($params, $optParams);
1530
-    return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls");
1528
+	$params = array('bucket' => $bucket, 'object' => $object);
1529
+	$params = array_merge($params, $optParams);
1530
+	return $this->call('list', array($params), "Google_Service_Storage_ObjectAccessControls");
1531 1531
   }
1532 1532
 
1533 1533
   /**
@@ -1548,9 +1548,9 @@  discard block
 block discarded – undo
1548 1548
    */
1549 1549
   public function patch($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1550 1550
   {
1551
-    $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
1552
-    $params = array_merge($params, $optParams);
1553
-    return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl");
1551
+	$params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
1552
+	$params = array_merge($params, $optParams);
1553
+	return $this->call('patch', array($params), "Google_Service_Storage_ObjectAccessControl");
1554 1554
   }
1555 1555
 
1556 1556
   /**
@@ -1570,9 +1570,9 @@  discard block
 block discarded – undo
1570 1570
    */
1571 1571
   public function update($bucket, $object, $entity, Google_Service_Storage_ObjectAccessControl $postBody, $optParams = array())
1572 1572
   {
1573
-    $params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
1574
-    $params = array_merge($params, $optParams);
1575
-    return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl");
1573
+	$params = array('bucket' => $bucket, 'object' => $object, 'entity' => $entity, 'postBody' => $postBody);
1574
+	$params = array_merge($params, $optParams);
1575
+	return $this->call('update', array($params), "Google_Service_Storage_ObjectAccessControl");
1576 1576
   }
1577 1577
 }
1578 1578
 
@@ -1607,9 +1607,9 @@  discard block
 block discarded – undo
1607 1607
    */
1608 1608
   public function compose($destinationBucket, $destinationObject, Google_Service_Storage_ComposeRequest $postBody, $optParams = array())
1609 1609
   {
1610
-    $params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1611
-    $params = array_merge($params, $optParams);
1612
-    return $this->call('compose', array($params), "Google_Service_Storage_StorageObject");
1610
+	$params = array('destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1611
+	$params = array_merge($params, $optParams);
1612
+	return $this->call('compose', array($params), "Google_Service_Storage_StorageObject");
1613 1613
   }
1614 1614
 
1615 1615
   /**
@@ -1659,9 +1659,9 @@  discard block
 block discarded – undo
1659 1659
    */
1660 1660
   public function copy($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array())
1661 1661
   {
1662
-    $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1663
-    $params = array_merge($params, $optParams);
1664
-    return $this->call('copy', array($params), "Google_Service_Storage_StorageObject");
1662
+	$params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1663
+	$params = array_merge($params, $optParams);
1664
+	return $this->call('copy', array($params), "Google_Service_Storage_StorageObject");
1665 1665
   }
1666 1666
 
1667 1667
   /**
@@ -1686,9 +1686,9 @@  discard block
 block discarded – undo
1686 1686
    */
1687 1687
   public function delete($bucket, $object, $optParams = array())
1688 1688
   {
1689
-    $params = array('bucket' => $bucket, 'object' => $object);
1690
-    $params = array_merge($params, $optParams);
1691
-    return $this->call('delete', array($params));
1689
+	$params = array('bucket' => $bucket, 'object' => $object);
1690
+	$params = array_merge($params, $optParams);
1691
+	return $this->call('delete', array($params));
1692 1692
   }
1693 1693
 
1694 1694
   /**
@@ -1713,9 +1713,9 @@  discard block
 block discarded – undo
1713 1713
    */
1714 1714
   public function get($bucket, $object, $optParams = array())
1715 1715
   {
1716
-    $params = array('bucket' => $bucket, 'object' => $object);
1717
-    $params = array_merge($params, $optParams);
1718
-    return $this->call('get', array($params), "Google_Service_Storage_StorageObject");
1716
+	$params = array('bucket' => $bucket, 'object' => $object);
1717
+	$params = array_merge($params, $optParams);
1718
+	return $this->call('get', array($params), "Google_Service_Storage_StorageObject");
1719 1719
   }
1720 1720
 
1721 1721
   /**
@@ -1751,9 +1751,9 @@  discard block
 block discarded – undo
1751 1751
    */
1752 1752
   public function insert($bucket, Google_Service_Storage_StorageObject $postBody, $optParams = array())
1753 1753
   {
1754
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1755
-    $params = array_merge($params, $optParams);
1756
-    return $this->call('insert', array($params), "Google_Service_Storage_StorageObject");
1754
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1755
+	$params = array_merge($params, $optParams);
1756
+	return $this->call('insert', array($params), "Google_Service_Storage_StorageObject");
1757 1757
   }
1758 1758
 
1759 1759
   /**
@@ -1781,9 +1781,9 @@  discard block
 block discarded – undo
1781 1781
    */
1782 1782
   public function listObjects($bucket, $optParams = array())
1783 1783
   {
1784
-    $params = array('bucket' => $bucket);
1785
-    $params = array_merge($params, $optParams);
1786
-    return $this->call('list', array($params), "Google_Service_Storage_Objects");
1784
+	$params = array('bucket' => $bucket);
1785
+	$params = array_merge($params, $optParams);
1786
+	return $this->call('list', array($params), "Google_Service_Storage_Objects");
1787 1787
   }
1788 1788
 
1789 1789
   /**
@@ -1812,9 +1812,9 @@  discard block
 block discarded – undo
1812 1812
    */
1813 1813
   public function patch($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array())
1814 1814
   {
1815
-    $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1816
-    $params = array_merge($params, $optParams);
1817
-    return $this->call('patch', array($params), "Google_Service_Storage_StorageObject");
1815
+	$params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1816
+	$params = array_merge($params, $optParams);
1817
+	return $this->call('patch', array($params), "Google_Service_Storage_StorageObject");
1818 1818
   }
1819 1819
 
1820 1820
   /**
@@ -1876,9 +1876,9 @@  discard block
 block discarded – undo
1876 1876
    */
1877 1877
   public function rewrite($sourceBucket, $sourceObject, $destinationBucket, $destinationObject, Google_Service_Storage_StorageObject $postBody, $optParams = array())
1878 1878
   {
1879
-    $params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1880
-    $params = array_merge($params, $optParams);
1881
-    return $this->call('rewrite', array($params), "Google_Service_Storage_RewriteResponse");
1879
+	$params = array('sourceBucket' => $sourceBucket, 'sourceObject' => $sourceObject, 'destinationBucket' => $destinationBucket, 'destinationObject' => $destinationObject, 'postBody' => $postBody);
1880
+	$params = array_merge($params, $optParams);
1881
+	return $this->call('rewrite', array($params), "Google_Service_Storage_RewriteResponse");
1882 1882
   }
1883 1883
 
1884 1884
   /**
@@ -1906,9 +1906,9 @@  discard block
 block discarded – undo
1906 1906
    */
1907 1907
   public function update($bucket, $object, Google_Service_Storage_StorageObject $postBody, $optParams = array())
1908 1908
   {
1909
-    $params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1910
-    $params = array_merge($params, $optParams);
1911
-    return $this->call('update', array($params), "Google_Service_Storage_StorageObject");
1909
+	$params = array('bucket' => $bucket, 'object' => $object, 'postBody' => $postBody);
1910
+	$params = array_merge($params, $optParams);
1911
+	return $this->call('update', array($params), "Google_Service_Storage_StorageObject");
1912 1912
   }
1913 1913
 
1914 1914
   /**
@@ -1937,9 +1937,9 @@  discard block
 block discarded – undo
1937 1937
    */
1938 1938
   public function watchAll($bucket, Google_Service_Storage_Channel $postBody, $optParams = array())
1939 1939
   {
1940
-    $params = array('bucket' => $bucket, 'postBody' => $postBody);
1941
-    $params = array_merge($params, $optParams);
1942
-    return $this->call('watchAll', array($params), "Google_Service_Storage_Channel");
1940
+	$params = array('bucket' => $bucket, 'postBody' => $postBody);
1941
+	$params = array_merge($params, $optParams);
1942
+	return $this->call('watchAll', array($params), "Google_Service_Storage_Channel");
1943 1943
   }
1944 1944
 }
1945 1945
 
@@ -1981,147 +1981,147 @@  discard block
 block discarded – undo
1981 1981
 
1982 1982
   public function setAcl($acl)
1983 1983
   {
1984
-    $this->acl = $acl;
1984
+	$this->acl = $acl;
1985 1985
   }
1986 1986
   public function getAcl()
1987 1987
   {
1988
-    return $this->acl;
1988
+	return $this->acl;
1989 1989
   }
1990 1990
   public function setCors($cors)
1991 1991
   {
1992
-    $this->cors = $cors;
1992
+	$this->cors = $cors;
1993 1993
   }
1994 1994
   public function getCors()
1995 1995
   {
1996
-    return $this->cors;
1996
+	return $this->cors;
1997 1997
   }
1998 1998
   public function setDefaultObjectAcl($defaultObjectAcl)
1999 1999
   {
2000
-    $this->defaultObjectAcl = $defaultObjectAcl;
2000
+	$this->defaultObjectAcl = $defaultObjectAcl;
2001 2001
   }
2002 2002
   public function getDefaultObjectAcl()
2003 2003
   {
2004
-    return $this->defaultObjectAcl;
2004
+	return $this->defaultObjectAcl;
2005 2005
   }
2006 2006
   public function setEtag($etag)
2007 2007
   {
2008
-    $this->etag = $etag;
2008
+	$this->etag = $etag;
2009 2009
   }
2010 2010
   public function getEtag()
2011 2011
   {
2012
-    return $this->etag;
2012
+	return $this->etag;
2013 2013
   }
2014 2014
   public function setId($id)
2015 2015
   {
2016
-    $this->id = $id;
2016
+	$this->id = $id;
2017 2017
   }
2018 2018
   public function getId()
2019 2019
   {
2020
-    return $this->id;
2020
+	return $this->id;
2021 2021
   }
2022 2022
   public function setKind($kind)
2023 2023
   {
2024
-    $this->kind = $kind;
2024
+	$this->kind = $kind;
2025 2025
   }
2026 2026
   public function getKind()
2027 2027
   {
2028
-    return $this->kind;
2028
+	return $this->kind;
2029 2029
   }
2030 2030
   public function setLifecycle(Google_Service_Storage_BucketLifecycle $lifecycle)
2031 2031
   {
2032
-    $this->lifecycle = $lifecycle;
2032
+	$this->lifecycle = $lifecycle;
2033 2033
   }
2034 2034
   public function getLifecycle()
2035 2035
   {
2036
-    return $this->lifecycle;
2036
+	return $this->lifecycle;
2037 2037
   }
2038 2038
   public function setLocation($location)
2039 2039
   {
2040
-    $this->location = $location;
2040
+	$this->location = $location;
2041 2041
   }
2042 2042
   public function getLocation()
2043 2043
   {
2044
-    return $this->location;
2044
+	return $this->location;
2045 2045
   }
2046 2046
   public function setLogging(Google_Service_Storage_BucketLogging $logging)
2047 2047
   {
2048
-    $this->logging = $logging;
2048
+	$this->logging = $logging;
2049 2049
   }
2050 2050
   public function getLogging()
2051 2051
   {
2052
-    return $this->logging;
2052
+	return $this->logging;
2053 2053
   }
2054 2054
   public function setMetageneration($metageneration)
2055 2055
   {
2056
-    $this->metageneration = $metageneration;
2056
+	$this->metageneration = $metageneration;
2057 2057
   }
2058 2058
   public function getMetageneration()
2059 2059
   {
2060
-    return $this->metageneration;
2060
+	return $this->metageneration;
2061 2061
   }
2062 2062
   public function setName($name)
2063 2063
   {
2064
-    $this->name = $name;
2064
+	$this->name = $name;
2065 2065
   }
2066 2066
   public function getName()
2067 2067
   {
2068
-    return $this->name;
2068
+	return $this->name;
2069 2069
   }
2070 2070
   public function setOwner(Google_Service_Storage_BucketOwner $owner)
2071 2071
   {
2072
-    $this->owner = $owner;
2072
+	$this->owner = $owner;
2073 2073
   }
2074 2074
   public function getOwner()
2075 2075
   {
2076
-    return $this->owner;
2076
+	return $this->owner;
2077 2077
   }
2078 2078
   public function setProjectNumber($projectNumber)
2079 2079
   {
2080
-    $this->projectNumber = $projectNumber;
2080
+	$this->projectNumber = $projectNumber;
2081 2081
   }
2082 2082
   public function getProjectNumber()
2083 2083
   {
2084
-    return $this->projectNumber;
2084
+	return $this->projectNumber;
2085 2085
   }
2086 2086
   public function setSelfLink($selfLink)
2087 2087
   {
2088
-    $this->selfLink = $selfLink;
2088
+	$this->selfLink = $selfLink;
2089 2089
   }
2090 2090
   public function getSelfLink()
2091 2091
   {
2092
-    return $this->selfLink;
2092
+	return $this->selfLink;
2093 2093
   }
2094 2094
   public function setStorageClass($storageClass)
2095 2095
   {
2096
-    $this->storageClass = $storageClass;
2096
+	$this->storageClass = $storageClass;
2097 2097
   }
2098 2098
   public function getStorageClass()
2099 2099
   {
2100
-    return $this->storageClass;
2100
+	return $this->storageClass;
2101 2101
   }
2102 2102
   public function setTimeCreated($timeCreated)
2103 2103
   {
2104
-    $this->timeCreated = $timeCreated;
2104
+	$this->timeCreated = $timeCreated;
2105 2105
   }
2106 2106
   public function getTimeCreated()
2107 2107
   {
2108
-    return $this->timeCreated;
2108
+	return $this->timeCreated;
2109 2109
   }
2110 2110
   public function setVersioning(Google_Service_Storage_BucketVersioning $versioning)
2111 2111
   {
2112
-    $this->versioning = $versioning;
2112
+	$this->versioning = $versioning;
2113 2113
   }
2114 2114
   public function getVersioning()
2115 2115
   {
2116
-    return $this->versioning;
2116
+	return $this->versioning;
2117 2117
   }
2118 2118
   public function setWebsite(Google_Service_Storage_BucketWebsite $website)
2119 2119
   {
2120
-    $this->website = $website;
2120
+	$this->website = $website;
2121 2121
   }
2122 2122
   public function getWebsite()
2123 2123
   {
2124
-    return $this->website;
2124
+	return $this->website;
2125 2125
   }
2126 2126
 }
2127 2127
 
@@ -2145,91 +2145,91 @@  discard block
 block discarded – undo
2145 2145
 
2146 2146
   public function setBucket($bucket)
2147 2147
   {
2148
-    $this->bucket = $bucket;
2148
+	$this->bucket = $bucket;
2149 2149
   }
2150 2150
   public function getBucket()
2151 2151
   {
2152
-    return $this->bucket;
2152
+	return $this->bucket;
2153 2153
   }
2154 2154
   public function setDomain($domain)
2155 2155
   {
2156
-    $this->domain = $domain;
2156
+	$this->domain = $domain;
2157 2157
   }
2158 2158
   public function getDomain()
2159 2159
   {
2160
-    return $this->domain;
2160
+	return $this->domain;
2161 2161
   }
2162 2162
   public function setEmail($email)
2163 2163
   {
2164
-    $this->email = $email;
2164
+	$this->email = $email;
2165 2165
   }
2166 2166
   public function getEmail()
2167 2167
   {
2168
-    return $this->email;
2168
+	return $this->email;
2169 2169
   }
2170 2170
   public function setEntity($entity)
2171 2171
   {
2172
-    $this->entity = $entity;
2172
+	$this->entity = $entity;
2173 2173
   }
2174 2174
   public function getEntity()
2175 2175
   {
2176
-    return $this->entity;
2176
+	return $this->entity;
2177 2177
   }
2178 2178
   public function setEntityId($entityId)
2179 2179
   {
2180
-    $this->entityId = $entityId;
2180
+	$this->entityId = $entityId;
2181 2181
   }
2182 2182
   public function getEntityId()
2183 2183
   {
2184
-    return $this->entityId;
2184
+	return $this->entityId;
2185 2185
   }
2186 2186
   public function setEtag($etag)
2187 2187
   {
2188
-    $this->etag = $etag;
2188
+	$this->etag = $etag;
2189 2189
   }
2190 2190
   public function getEtag()
2191 2191
   {
2192
-    return $this->etag;
2192
+	return $this->etag;
2193 2193
   }
2194 2194
   public function setId($id)
2195 2195
   {
2196
-    $this->id = $id;
2196
+	$this->id = $id;
2197 2197
   }
2198 2198
   public function getId()
2199 2199
   {
2200
-    return $this->id;
2200
+	return $this->id;
2201 2201
   }
2202 2202
   public function setKind($kind)
2203 2203
   {
2204
-    $this->kind = $kind;
2204
+	$this->kind = $kind;
2205 2205
   }
2206 2206
   public function getKind()
2207 2207
   {
2208
-    return $this->kind;
2208
+	return $this->kind;
2209 2209
   }
2210 2210
   public function setProjectTeam(Google_Service_Storage_BucketAccessControlProjectTeam $projectTeam)
2211 2211
   {
2212
-    $this->projectTeam = $projectTeam;
2212
+	$this->projectTeam = $projectTeam;
2213 2213
   }
2214 2214
   public function getProjectTeam()
2215 2215
   {
2216
-    return $this->projectTeam;
2216
+	return $this->projectTeam;
2217 2217
   }
2218 2218
   public function setRole($role)
2219 2219
   {
2220
-    $this->role = $role;
2220
+	$this->role = $role;
2221 2221
   }
2222 2222
   public function getRole()
2223 2223
   {
2224
-    return $this->role;
2224
+	return $this->role;
2225 2225
   }
2226 2226
   public function setSelfLink($selfLink)
2227 2227
   {
2228
-    $this->selfLink = $selfLink;
2228
+	$this->selfLink = $selfLink;
2229 2229
   }
2230 2230
   public function getSelfLink()
2231 2231
   {
2232
-    return $this->selfLink;
2232
+	return $this->selfLink;
2233 2233
   }
2234 2234
 }
2235 2235
 
@@ -2243,19 +2243,19 @@  discard block
 block discarded – undo
2243 2243
 
2244 2244
   public function setProjectNumber($projectNumber)
2245 2245
   {
2246
-    $this->projectNumber = $projectNumber;
2246
+	$this->projectNumber = $projectNumber;
2247 2247
   }
2248 2248
   public function getProjectNumber()
2249 2249
   {
2250
-    return $this->projectNumber;
2250
+	return $this->projectNumber;
2251 2251
   }
2252 2252
   public function setTeam($team)
2253 2253
   {
2254
-    $this->team = $team;
2254
+	$this->team = $team;
2255 2255
   }
2256 2256
   public function getTeam()
2257 2257
   {
2258
-    return $this->team;
2258
+	return $this->team;
2259 2259
   }
2260 2260
 }
2261 2261
 
@@ -2271,19 +2271,19 @@  discard block
 block discarded – undo
2271 2271
 
2272 2272
   public function setItems($items)
2273 2273
   {
2274
-    $this->items = $items;
2274
+	$this->items = $items;
2275 2275
   }
2276 2276
   public function getItems()
2277 2277
   {
2278
-    return $this->items;
2278
+	return $this->items;
2279 2279
   }
2280 2280
   public function setKind($kind)
2281 2281
   {
2282
-    $this->kind = $kind;
2282
+	$this->kind = $kind;
2283 2283
   }
2284 2284
   public function getKind()
2285 2285
   {
2286
-    return $this->kind;
2286
+	return $this->kind;
2287 2287
   }
2288 2288
 }
2289 2289
 
@@ -2300,35 +2300,35 @@  discard block
 block discarded – undo
2300 2300
 
2301 2301
   public function setMaxAgeSeconds($maxAgeSeconds)
2302 2302
   {
2303
-    $this->maxAgeSeconds = $maxAgeSeconds;
2303
+	$this->maxAgeSeconds = $maxAgeSeconds;
2304 2304
   }
2305 2305
   public function getMaxAgeSeconds()
2306 2306
   {
2307
-    return $this->maxAgeSeconds;
2307
+	return $this->maxAgeSeconds;
2308 2308
   }
2309 2309
   public function setMethod($method)
2310 2310
   {
2311
-    $this->method = $method;
2311
+	$this->method = $method;
2312 2312
   }
2313 2313
   public function getMethod()
2314 2314
   {
2315
-    return $this->method;
2315
+	return $this->method;
2316 2316
   }
2317 2317
   public function setOrigin($origin)
2318 2318
   {
2319
-    $this->origin = $origin;
2319
+	$this->origin = $origin;
2320 2320
   }
2321 2321
   public function getOrigin()
2322 2322
   {
2323
-    return $this->origin;
2323
+	return $this->origin;
2324 2324
   }
2325 2325
   public function setResponseHeader($responseHeader)
2326 2326
   {
2327
-    $this->responseHeader = $responseHeader;
2327
+	$this->responseHeader = $responseHeader;
2328 2328
   }
2329 2329
   public function getResponseHeader()
2330 2330
   {
2331
-    return $this->responseHeader;
2331
+	return $this->responseHeader;
2332 2332
   }
2333 2333
 }
2334 2334
 
@@ -2343,11 +2343,11 @@  discard block
 block discarded – undo
2343 2343
 
2344 2344
   public function setRule($rule)
2345 2345
   {
2346
-    $this->rule = $rule;
2346
+	$this->rule = $rule;
2347 2347
   }
2348 2348
   public function getRule()
2349 2349
   {
2350
-    return $this->rule;
2350
+	return $this->rule;
2351 2351
   }
2352 2352
 }
2353 2353
 
@@ -2363,19 +2363,19 @@  discard block
 block discarded – undo
2363 2363
 
2364 2364
   public function setAction(Google_Service_Storage_BucketLifecycleRuleAction $action)
2365 2365
   {
2366
-    $this->action = $action;
2366
+	$this->action = $action;
2367 2367
   }
2368 2368
   public function getAction()
2369 2369
   {
2370
-    return $this->action;
2370
+	return $this->action;
2371 2371
   }
2372 2372
   public function setCondition(Google_Service_Storage_BucketLifecycleRuleCondition $condition)
2373 2373
   {
2374
-    $this->condition = $condition;
2374
+	$this->condition = $condition;
2375 2375
   }
2376 2376
   public function getCondition()
2377 2377
   {
2378
-    return $this->condition;
2378
+	return $this->condition;
2379 2379
   }
2380 2380
 }
2381 2381
 
@@ -2388,11 +2388,11 @@  discard block
 block discarded – undo
2388 2388
 
2389 2389
   public function setType($type)
2390 2390
   {
2391
-    $this->type = $type;
2391
+	$this->type = $type;
2392 2392
   }
2393 2393
   public function getType()
2394 2394
   {
2395
-    return $this->type;
2395
+	return $this->type;
2396 2396
   }
2397 2397
 }
2398 2398
 
@@ -2408,35 +2408,35 @@  discard block
 block discarded – undo
2408 2408
 
2409 2409
   public function setAge($age)
2410 2410
   {
2411
-    $this->age = $age;
2411
+	$this->age = $age;
2412 2412
   }
2413 2413
   public function getAge()
2414 2414
   {
2415
-    return $this->age;
2415
+	return $this->age;
2416 2416
   }
2417 2417
   public function setCreatedBefore($createdBefore)
2418 2418
   {
2419
-    $this->createdBefore = $createdBefore;
2419
+	$this->createdBefore = $createdBefore;
2420 2420
   }
2421 2421
   public function getCreatedBefore()
2422 2422
   {
2423
-    return $this->createdBefore;
2423
+	return $this->createdBefore;
2424 2424
   }
2425 2425
   public function setIsLive($isLive)
2426 2426
   {
2427
-    $this->isLive = $isLive;
2427
+	$this->isLive = $isLive;
2428 2428
   }
2429 2429
   public function getIsLive()
2430 2430
   {
2431
-    return $this->isLive;
2431
+	return $this->isLive;
2432 2432
   }
2433 2433
   public function setNumNewerVersions($numNewerVersions)
2434 2434
   {
2435
-    $this->numNewerVersions = $numNewerVersions;
2435
+	$this->numNewerVersions = $numNewerVersions;
2436 2436
   }
2437 2437
   public function getNumNewerVersions()
2438 2438
   {
2439
-    return $this->numNewerVersions;
2439
+	return $this->numNewerVersions;
2440 2440
   }
2441 2441
 }
2442 2442
 
@@ -2450,19 +2450,19 @@  discard block
 block discarded – undo
2450 2450
 
2451 2451
   public function setLogBucket($logBucket)
2452 2452
   {
2453
-    $this->logBucket = $logBucket;
2453
+	$this->logBucket = $logBucket;
2454 2454
   }
2455 2455
   public function getLogBucket()
2456 2456
   {
2457
-    return $this->logBucket;
2457
+	return $this->logBucket;
2458 2458
   }
2459 2459
   public function setLogObjectPrefix($logObjectPrefix)
2460 2460
   {
2461
-    $this->logObjectPrefix = $logObjectPrefix;
2461
+	$this->logObjectPrefix = $logObjectPrefix;
2462 2462
   }
2463 2463
   public function getLogObjectPrefix()
2464 2464
   {
2465
-    return $this->logObjectPrefix;
2465
+	return $this->logObjectPrefix;
2466 2466
   }
2467 2467
 }
2468 2468
 
@@ -2476,19 +2476,19 @@  discard block
 block discarded – undo
2476 2476
 
2477 2477
   public function setEntity($entity)
2478 2478
   {
2479
-    $this->entity = $entity;
2479
+	$this->entity = $entity;
2480 2480
   }
2481 2481
   public function getEntity()
2482 2482
   {
2483
-    return $this->entity;
2483
+	return $this->entity;
2484 2484
   }
2485 2485
   public function setEntityId($entityId)
2486 2486
   {
2487
-    $this->entityId = $entityId;
2487
+	$this->entityId = $entityId;
2488 2488
   }
2489 2489
   public function getEntityId()
2490 2490
   {
2491
-    return $this->entityId;
2491
+	return $this->entityId;
2492 2492
   }
2493 2493
 }
2494 2494
 
@@ -2501,11 +2501,11 @@  discard block
 block discarded – undo
2501 2501
 
2502 2502
   public function setEnabled($enabled)
2503 2503
   {
2504
-    $this->enabled = $enabled;
2504
+	$this->enabled = $enabled;
2505 2505
   }
2506 2506
   public function getEnabled()
2507 2507
   {
2508
-    return $this->enabled;
2508
+	return $this->enabled;
2509 2509
   }
2510 2510
 }
2511 2511
 
@@ -2519,19 +2519,19 @@  discard block
 block discarded – undo
2519 2519
 
2520 2520
   public function setMainPageSuffix($mainPageSuffix)
2521 2521
   {
2522
-    $this->mainPageSuffix = $mainPageSuffix;
2522
+	$this->mainPageSuffix = $mainPageSuffix;
2523 2523
   }
2524 2524
   public function getMainPageSuffix()
2525 2525
   {
2526
-    return $this->mainPageSuffix;
2526
+	return $this->mainPageSuffix;
2527 2527
   }
2528 2528
   public function setNotFoundPage($notFoundPage)
2529 2529
   {
2530
-    $this->notFoundPage = $notFoundPage;
2530
+	$this->notFoundPage = $notFoundPage;
2531 2531
   }
2532 2532
   public function getNotFoundPage()
2533 2533
   {
2534
-    return $this->notFoundPage;
2534
+	return $this->notFoundPage;
2535 2535
   }
2536 2536
 }
2537 2537
 
@@ -2548,27 +2548,27 @@  discard block
 block discarded – undo
2548 2548
 
2549 2549
   public function setItems($items)
2550 2550
   {
2551
-    $this->items = $items;
2551
+	$this->items = $items;
2552 2552
   }
2553 2553
   public function getItems()
2554 2554
   {
2555
-    return $this->items;
2555
+	return $this->items;
2556 2556
   }
2557 2557
   public function setKind($kind)
2558 2558
   {
2559
-    $this->kind = $kind;
2559
+	$this->kind = $kind;
2560 2560
   }
2561 2561
   public function getKind()
2562 2562
   {
2563
-    return $this->kind;
2563
+	return $this->kind;
2564 2564
   }
2565 2565
   public function setNextPageToken($nextPageToken)
2566 2566
   {
2567
-    $this->nextPageToken = $nextPageToken;
2567
+	$this->nextPageToken = $nextPageToken;
2568 2568
   }
2569 2569
   public function getNextPageToken()
2570 2570
   {
2571
-    return $this->nextPageToken;
2571
+	return $this->nextPageToken;
2572 2572
   }
2573 2573
 }
2574 2574
 
@@ -2590,83 +2590,83 @@  discard block
 block discarded – undo
2590 2590
 
2591 2591
   public function setAddress($address)
2592 2592
   {
2593
-    $this->address = $address;
2593
+	$this->address = $address;
2594 2594
   }
2595 2595
   public function getAddress()
2596 2596
   {
2597
-    return $this->address;
2597
+	return $this->address;
2598 2598
   }
2599 2599
   public function setExpiration($expiration)
2600 2600
   {
2601
-    $this->expiration = $expiration;
2601
+	$this->expiration = $expiration;
2602 2602
   }
2603 2603
   public function getExpiration()
2604 2604
   {
2605
-    return $this->expiration;
2605
+	return $this->expiration;
2606 2606
   }
2607 2607
   public function setId($id)
2608 2608
   {
2609
-    $this->id = $id;
2609
+	$this->id = $id;
2610 2610
   }
2611 2611
   public function getId()
2612 2612
   {
2613
-    return $this->id;
2613
+	return $this->id;
2614 2614
   }
2615 2615
   public function setKind($kind)
2616 2616
   {
2617
-    $this->kind = $kind;
2617
+	$this->kind = $kind;
2618 2618
   }
2619 2619
   public function getKind()
2620 2620
   {
2621
-    return $this->kind;
2621
+	return $this->kind;
2622 2622
   }
2623 2623
   public function setParams($params)
2624 2624
   {
2625
-    $this->params = $params;
2625
+	$this->params = $params;
2626 2626
   }
2627 2627
   public function getParams()
2628 2628
   {
2629
-    return $this->params;
2629
+	return $this->params;
2630 2630
   }
2631 2631
   public function setPayload($payload)
2632 2632
   {
2633
-    $this->payload = $payload;
2633
+	$this->payload = $payload;
2634 2634
   }
2635 2635
   public function getPayload()
2636 2636
   {
2637
-    return $this->payload;
2637
+	return $this->payload;
2638 2638
   }
2639 2639
   public function setResourceId($resourceId)
2640 2640
   {
2641
-    $this->resourceId = $resourceId;
2641
+	$this->resourceId = $resourceId;
2642 2642
   }
2643 2643
   public function getResourceId()
2644 2644
   {
2645
-    return $this->resourceId;
2645
+	return $this->resourceId;
2646 2646
   }
2647 2647
   public function setResourceUri($resourceUri)
2648 2648
   {
2649
-    $this->resourceUri = $resourceUri;
2649
+	$this->resourceUri = $resourceUri;
2650 2650
   }
2651 2651
   public function getResourceUri()
2652 2652
   {
2653
-    return $this->resourceUri;
2653
+	return $this->resourceUri;
2654 2654
   }
2655 2655
   public function setToken($token)
2656 2656
   {
2657
-    $this->token = $token;
2657
+	$this->token = $token;
2658 2658
   }
2659 2659
   public function getToken()
2660 2660
   {
2661
-    return $this->token;
2661
+	return $this->token;
2662 2662
   }
2663 2663
   public function setType($type)
2664 2664
   {
2665
-    $this->type = $type;
2665
+	$this->type = $type;
2666 2666
   }
2667 2667
   public function getType()
2668 2668
   {
2669
-    return $this->type;
2669
+	return $this->type;
2670 2670
   }
2671 2671
 }
2672 2672
 
@@ -2688,27 +2688,27 @@  discard block
 block discarded – undo
2688 2688
 
2689 2689
   public function setDestination(Google_Service_Storage_StorageObject $destination)
2690 2690
   {
2691
-    $this->destination = $destination;
2691
+	$this->destination = $destination;
2692 2692
   }
2693 2693
   public function getDestination()
2694 2694
   {
2695
-    return $this->destination;
2695
+	return $this->destination;
2696 2696
   }
2697 2697
   public function setKind($kind)
2698 2698
   {
2699
-    $this->kind = $kind;
2699
+	$this->kind = $kind;
2700 2700
   }
2701 2701
   public function getKind()
2702 2702
   {
2703
-    return $this->kind;
2703
+	return $this->kind;
2704 2704
   }
2705 2705
   public function setSourceObjects($sourceObjects)
2706 2706
   {
2707
-    $this->sourceObjects = $sourceObjects;
2707
+	$this->sourceObjects = $sourceObjects;
2708 2708
   }
2709 2709
   public function getSourceObjects()
2710 2710
   {
2711
-    return $this->sourceObjects;
2711
+	return $this->sourceObjects;
2712 2712
   }
2713 2713
 }
2714 2714
 
@@ -2724,27 +2724,27 @@  discard block
 block discarded – undo
2724 2724
 
2725 2725
   public function setGeneration($generation)
2726 2726
   {
2727
-    $this->generation = $generation;
2727
+	$this->generation = $generation;
2728 2728
   }
2729 2729
   public function getGeneration()
2730 2730
   {
2731
-    return $this->generation;
2731
+	return $this->generation;
2732 2732
   }
2733 2733
   public function setName($name)
2734 2734
   {
2735
-    $this->name = $name;
2735
+	$this->name = $name;
2736 2736
   }
2737 2737
   public function getName()
2738 2738
   {
2739
-    return $this->name;
2739
+	return $this->name;
2740 2740
   }
2741 2741
   public function setObjectPreconditions(Google_Service_Storage_ComposeRequestSourceObjectsObjectPreconditions $objectPreconditions)
2742 2742
   {
2743
-    $this->objectPreconditions = $objectPreconditions;
2743
+	$this->objectPreconditions = $objectPreconditions;
2744 2744
   }
2745 2745
   public function getObjectPreconditions()
2746 2746
   {
2747
-    return $this->objectPreconditions;
2747
+	return $this->objectPreconditions;
2748 2748
   }
2749 2749
 }
2750 2750
 
@@ -2757,11 +2757,11 @@  discard block
 block discarded – undo
2757 2757
 
2758 2758
   public function setIfGenerationMatch($ifGenerationMatch)
2759 2759
   {
2760
-    $this->ifGenerationMatch = $ifGenerationMatch;
2760
+	$this->ifGenerationMatch = $ifGenerationMatch;
2761 2761
   }
2762 2762
   public function getIfGenerationMatch()
2763 2763
   {
2764
-    return $this->ifGenerationMatch;
2764
+	return $this->ifGenerationMatch;
2765 2765
   }
2766 2766
 }
2767 2767
 
@@ -2787,107 +2787,107 @@  discard block
 block discarded – undo
2787 2787
 
2788 2788
   public function setBucket($bucket)
2789 2789
   {
2790
-    $this->bucket = $bucket;
2790
+	$this->bucket = $bucket;
2791 2791
   }
2792 2792
   public function getBucket()
2793 2793
   {
2794
-    return $this->bucket;
2794
+	return $this->bucket;
2795 2795
   }
2796 2796
   public function setDomain($domain)
2797 2797
   {
2798
-    $this->domain = $domain;
2798
+	$this->domain = $domain;
2799 2799
   }
2800 2800
   public function getDomain()
2801 2801
   {
2802
-    return $this->domain;
2802
+	return $this->domain;
2803 2803
   }
2804 2804
   public function setEmail($email)
2805 2805
   {
2806
-    $this->email = $email;
2806
+	$this->email = $email;
2807 2807
   }
2808 2808
   public function getEmail()
2809 2809
   {
2810
-    return $this->email;
2810
+	return $this->email;
2811 2811
   }
2812 2812
   public function setEntity($entity)
2813 2813
   {
2814
-    $this->entity = $entity;
2814
+	$this->entity = $entity;
2815 2815
   }
2816 2816
   public function getEntity()
2817 2817
   {
2818
-    return $this->entity;
2818
+	return $this->entity;
2819 2819
   }
2820 2820
   public function setEntityId($entityId)
2821 2821
   {
2822
-    $this->entityId = $entityId;
2822
+	$this->entityId = $entityId;
2823 2823
   }
2824 2824
   public function getEntityId()
2825 2825
   {
2826
-    return $this->entityId;
2826
+	return $this->entityId;
2827 2827
   }
2828 2828
   public function setEtag($etag)
2829 2829
   {
2830
-    $this->etag = $etag;
2830
+	$this->etag = $etag;
2831 2831
   }
2832 2832
   public function getEtag()
2833 2833
   {
2834
-    return $this->etag;
2834
+	return $this->etag;
2835 2835
   }
2836 2836
   public function setGeneration($generation)
2837 2837
   {
2838
-    $this->generation = $generation;
2838
+	$this->generation = $generation;
2839 2839
   }
2840 2840
   public function getGeneration()
2841 2841
   {
2842
-    return $this->generation;
2842
+	return $this->generation;
2843 2843
   }
2844 2844
   public function setId($id)
2845 2845
   {
2846
-    $this->id = $id;
2846
+	$this->id = $id;
2847 2847
   }
2848 2848
   public function getId()
2849 2849
   {
2850
-    return $this->id;
2850
+	return $this->id;
2851 2851
   }
2852 2852
   public function setKind($kind)
2853 2853
   {
2854
-    $this->kind = $kind;
2854
+	$this->kind = $kind;
2855 2855
   }
2856 2856
   public function getKind()
2857 2857
   {
2858
-    return $this->kind;
2858
+	return $this->kind;
2859 2859
   }
2860 2860
   public function setObject($object)
2861 2861
   {
2862
-    $this->object = $object;
2862
+	$this->object = $object;
2863 2863
   }
2864 2864
   public function getObject()
2865 2865
   {
2866
-    return $this->object;
2866
+	return $this->object;
2867 2867
   }
2868 2868
   public function setProjectTeam(Google_Service_Storage_ObjectAccessControlProjectTeam $projectTeam)
2869 2869
   {
2870
-    $this->projectTeam = $projectTeam;
2870
+	$this->projectTeam = $projectTeam;
2871 2871
   }
2872 2872
   public function getProjectTeam()
2873 2873
   {
2874
-    return $this->projectTeam;
2874
+	return $this->projectTeam;
2875 2875
   }
2876 2876
   public function setRole($role)
2877 2877
   {
2878
-    $this->role = $role;
2878
+	$this->role = $role;
2879 2879
   }
2880 2880
   public function getRole()
2881 2881
   {
2882
-    return $this->role;
2882
+	return $this->role;
2883 2883
   }
2884 2884
   public function setSelfLink($selfLink)
2885 2885
   {
2886
-    $this->selfLink = $selfLink;
2886
+	$this->selfLink = $selfLink;
2887 2887
   }
2888 2888
   public function getSelfLink()
2889 2889
   {
2890
-    return $this->selfLink;
2890
+	return $this->selfLink;
2891 2891
   }
2892 2892
 }
2893 2893
 
@@ -2901,19 +2901,19 @@  discard block
 block discarded – undo
2901 2901
 
2902 2902
   public function setProjectNumber($projectNumber)
2903 2903
   {
2904
-    $this->projectNumber = $projectNumber;
2904
+	$this->projectNumber = $projectNumber;
2905 2905
   }
2906 2906
   public function getProjectNumber()
2907 2907
   {
2908
-    return $this->projectNumber;
2908
+	return $this->projectNumber;
2909 2909
   }
2910 2910
   public function setTeam($team)
2911 2911
   {
2912
-    $this->team = $team;
2912
+	$this->team = $team;
2913 2913
   }
2914 2914
   public function getTeam()
2915 2915
   {
2916
-    return $this->team;
2916
+	return $this->team;
2917 2917
   }
2918 2918
 }
2919 2919
 
@@ -2928,19 +2928,19 @@  discard block
 block discarded – undo
2928 2928
 
2929 2929
   public function setItems($items)
2930 2930
   {
2931
-    $this->items = $items;
2931
+	$this->items = $items;
2932 2932
   }
2933 2933
   public function getItems()
2934 2934
   {
2935
-    return $this->items;
2935
+	return $this->items;
2936 2936
   }
2937 2937
   public function setKind($kind)
2938 2938
   {
2939
-    $this->kind = $kind;
2939
+	$this->kind = $kind;
2940 2940
   }
2941 2941
   public function getKind()
2942 2942
   {
2943
-    return $this->kind;
2943
+	return $this->kind;
2944 2944
   }
2945 2945
 }
2946 2946
 
@@ -2958,35 +2958,35 @@  discard block
 block discarded – undo
2958 2958
 
2959 2959
   public function setItems($items)
2960 2960
   {
2961
-    $this->items = $items;
2961
+	$this->items = $items;
2962 2962
   }
2963 2963
   public function getItems()
2964 2964
   {
2965
-    return $this->items;
2965
+	return $this->items;
2966 2966
   }
2967 2967
   public function setKind($kind)
2968 2968
   {
2969
-    $this->kind = $kind;
2969
+	$this->kind = $kind;
2970 2970
   }
2971 2971
   public function getKind()
2972 2972
   {
2973
-    return $this->kind;
2973
+	return $this->kind;
2974 2974
   }
2975 2975
   public function setNextPageToken($nextPageToken)
2976 2976
   {
2977
-    $this->nextPageToken = $nextPageToken;
2977
+	$this->nextPageToken = $nextPageToken;
2978 2978
   }
2979 2979
   public function getNextPageToken()
2980 2980
   {
2981
-    return $this->nextPageToken;
2981
+	return $this->nextPageToken;
2982 2982
   }
2983 2983
   public function setPrefixes($prefixes)
2984 2984
   {
2985
-    $this->prefixes = $prefixes;
2985
+	$this->prefixes = $prefixes;
2986 2986
   }
2987 2987
   public function getPrefixes()
2988 2988
   {
2989
-    return $this->prefixes;
2989
+	return $this->prefixes;
2990 2990
   }
2991 2991
 }
2992 2992
 
@@ -3005,51 +3005,51 @@  discard block
 block discarded – undo
3005 3005
 
3006 3006
   public function setDone($done)
3007 3007
   {
3008
-    $this->done = $done;
3008
+	$this->done = $done;
3009 3009
   }
3010 3010
   public function getDone()
3011 3011
   {
3012
-    return $this->done;
3012
+	return $this->done;
3013 3013
   }
3014 3014
   public function setKind($kind)
3015 3015
   {
3016
-    $this->kind = $kind;
3016
+	$this->kind = $kind;
3017 3017
   }
3018 3018
   public function getKind()
3019 3019
   {
3020
-    return $this->kind;
3020
+	return $this->kind;
3021 3021
   }
3022 3022
   public function setObjectSize($objectSize)
3023 3023
   {
3024
-    $this->objectSize = $objectSize;
3024
+	$this->objectSize = $objectSize;
3025 3025
   }
3026 3026
   public function getObjectSize()
3027 3027
   {
3028
-    return $this->objectSize;
3028
+	return $this->objectSize;
3029 3029
   }
3030 3030
   public function setResource(Google_Service_Storage_StorageObject $resource)
3031 3031
   {
3032
-    $this->resource = $resource;
3032
+	$this->resource = $resource;
3033 3033
   }
3034 3034
   public function getResource()
3035 3035
   {
3036
-    return $this->resource;
3036
+	return $this->resource;
3037 3037
   }
3038 3038
   public function setRewriteToken($rewriteToken)
3039 3039
   {
3040
-    $this->rewriteToken = $rewriteToken;
3040
+	$this->rewriteToken = $rewriteToken;
3041 3041
   }
3042 3042
   public function getRewriteToken()
3043 3043
   {
3044
-    return $this->rewriteToken;
3044
+	return $this->rewriteToken;
3045 3045
   }
3046 3046
   public function setTotalBytesRewritten($totalBytesRewritten)
3047 3047
   {
3048
-    $this->totalBytesRewritten = $totalBytesRewritten;
3048
+	$this->totalBytesRewritten = $totalBytesRewritten;
3049 3049
   }
3050 3050
   public function getTotalBytesRewritten()
3051 3051
   {
3052
-    return $this->totalBytesRewritten;
3052
+	return $this->totalBytesRewritten;
3053 3053
   }
3054 3054
 }
3055 3055
 
@@ -3088,195 +3088,195 @@  discard block
 block discarded – undo
3088 3088
 
3089 3089
   public function setAcl($acl)
3090 3090
   {
3091
-    $this->acl = $acl;
3091
+	$this->acl = $acl;
3092 3092
   }
3093 3093
   public function getAcl()
3094 3094
   {
3095
-    return $this->acl;
3095
+	return $this->acl;
3096 3096
   }
3097 3097
   public function setBucket($bucket)
3098 3098
   {
3099
-    $this->bucket = $bucket;
3099
+	$this->bucket = $bucket;
3100 3100
   }
3101 3101
   public function getBucket()
3102 3102
   {
3103
-    return $this->bucket;
3103
+	return $this->bucket;
3104 3104
   }
3105 3105
   public function setCacheControl($cacheControl)
3106 3106
   {
3107
-    $this->cacheControl = $cacheControl;
3107
+	$this->cacheControl = $cacheControl;
3108 3108
   }
3109 3109
   public function getCacheControl()
3110 3110
   {
3111
-    return $this->cacheControl;
3111
+	return $this->cacheControl;
3112 3112
   }
3113 3113
   public function setComponentCount($componentCount)
3114 3114
   {
3115
-    $this->componentCount = $componentCount;
3115
+	$this->componentCount = $componentCount;
3116 3116
   }
3117 3117
   public function getComponentCount()
3118 3118
   {
3119
-    return $this->componentCount;
3119
+	return $this->componentCount;
3120 3120
   }
3121 3121
   public function setContentDisposition($contentDisposition)
3122 3122
   {
3123
-    $this->contentDisposition = $contentDisposition;
3123
+	$this->contentDisposition = $contentDisposition;
3124 3124
   }
3125 3125
   public function getContentDisposition()
3126 3126
   {
3127
-    return $this->contentDisposition;
3127
+	return $this->contentDisposition;
3128 3128
   }
3129 3129
   public function setContentEncoding($contentEncoding)
3130 3130
   {
3131
-    $this->contentEncoding = $contentEncoding;
3131
+	$this->contentEncoding = $contentEncoding;
3132 3132
   }
3133 3133
   public function getContentEncoding()
3134 3134
   {
3135
-    return $this->contentEncoding;
3135
+	return $this->contentEncoding;
3136 3136
   }
3137 3137
   public function setContentLanguage($contentLanguage)
3138 3138
   {
3139
-    $this->contentLanguage = $contentLanguage;
3139
+	$this->contentLanguage = $contentLanguage;
3140 3140
   }
3141 3141
   public function getContentLanguage()
3142 3142
   {
3143
-    return $this->contentLanguage;
3143
+	return $this->contentLanguage;
3144 3144
   }
3145 3145
   public function setContentType($contentType)
3146 3146
   {
3147
-    $this->contentType = $contentType;
3147
+	$this->contentType = $contentType;
3148 3148
   }
3149 3149
   public function getContentType()
3150 3150
   {
3151
-    return $this->contentType;
3151
+	return $this->contentType;
3152 3152
   }
3153 3153
   public function setCrc32c($crc32c)
3154 3154
   {
3155
-    $this->crc32c = $crc32c;
3155
+	$this->crc32c = $crc32c;
3156 3156
   }
3157 3157
   public function getCrc32c()
3158 3158
   {
3159
-    return $this->crc32c;
3159
+	return $this->crc32c;
3160 3160
   }
3161 3161
   public function setEtag($etag)
3162 3162
   {
3163
-    $this->etag = $etag;
3163
+	$this->etag = $etag;
3164 3164
   }
3165 3165
   public function getEtag()
3166 3166
   {
3167
-    return $this->etag;
3167
+	return $this->etag;
3168 3168
   }
3169 3169
   public function setGeneration($generation)
3170 3170
   {
3171
-    $this->generation = $generation;
3171
+	$this->generation = $generation;
3172 3172
   }
3173 3173
   public function getGeneration()
3174 3174
   {
3175
-    return $this->generation;
3175
+	return $this->generation;
3176 3176
   }
3177 3177
   public function setId($id)
3178 3178
   {
3179
-    $this->id = $id;
3179
+	$this->id = $id;
3180 3180
   }
3181 3181
   public function getId()
3182 3182
   {
3183
-    return $this->id;
3183
+	return $this->id;
3184 3184
   }
3185 3185
   public function setKind($kind)
3186 3186
   {
3187
-    $this->kind = $kind;
3187
+	$this->kind = $kind;
3188 3188
   }
3189 3189
   public function getKind()
3190 3190
   {
3191
-    return $this->kind;
3191
+	return $this->kind;
3192 3192
   }
3193 3193
   public function setMd5Hash($md5Hash)
3194 3194
   {
3195
-    $this->md5Hash = $md5Hash;
3195
+	$this->md5Hash = $md5Hash;
3196 3196
   }
3197 3197
   public function getMd5Hash()
3198 3198
   {
3199
-    return $this->md5Hash;
3199
+	return $this->md5Hash;
3200 3200
   }
3201 3201
   public function setMediaLink($mediaLink)
3202 3202
   {
3203
-    $this->mediaLink = $mediaLink;
3203
+	$this->mediaLink = $mediaLink;
3204 3204
   }
3205 3205
   public function getMediaLink()
3206 3206
   {
3207
-    return $this->mediaLink;
3207
+	return $this->mediaLink;
3208 3208
   }
3209 3209
   public function setMetadata($metadata)
3210 3210
   {
3211
-    $this->metadata = $metadata;
3211
+	$this->metadata = $metadata;
3212 3212
   }
3213 3213
   public function getMetadata()
3214 3214
   {
3215
-    return $this->metadata;
3215
+	return $this->metadata;
3216 3216
   }
3217 3217
   public function setMetageneration($metageneration)
3218 3218
   {
3219
-    $this->metageneration = $metageneration;
3219
+	$this->metageneration = $metageneration;
3220 3220
   }
3221 3221
   public function getMetageneration()
3222 3222
   {
3223
-    return $this->metageneration;
3223
+	return $this->metageneration;
3224 3224
   }
3225 3225
   public function setName($name)
3226 3226
   {
3227
-    $this->name = $name;
3227
+	$this->name = $name;
3228 3228
   }
3229 3229
   public function getName()
3230 3230
   {
3231
-    return $this->name;
3231
+	return $this->name;
3232 3232
   }
3233 3233
   public function setOwner(Google_Service_Storage_StorageObjectOwner $owner)
3234 3234
   {
3235
-    $this->owner = $owner;
3235
+	$this->owner = $owner;
3236 3236
   }
3237 3237
   public function getOwner()
3238 3238
   {
3239
-    return $this->owner;
3239
+	return $this->owner;
3240 3240
   }
3241 3241
   public function setSelfLink($selfLink)
3242 3242
   {
3243
-    $this->selfLink = $selfLink;
3243
+	$this->selfLink = $selfLink;
3244 3244
   }
3245 3245
   public function getSelfLink()
3246 3246
   {
3247
-    return $this->selfLink;
3247
+	return $this->selfLink;
3248 3248
   }
3249 3249
   public function setSize($size)
3250 3250
   {
3251
-    $this->size = $size;
3251
+	$this->size = $size;
3252 3252
   }
3253 3253
   public function getSize()
3254 3254
   {
3255
-    return $this->size;
3255
+	return $this->size;
3256 3256
   }
3257 3257
   public function setStorageClass($storageClass)
3258 3258
   {
3259
-    $this->storageClass = $storageClass;
3259
+	$this->storageClass = $storageClass;
3260 3260
   }
3261 3261
   public function getStorageClass()
3262 3262
   {
3263
-    return $this->storageClass;
3263
+	return $this->storageClass;
3264 3264
   }
3265 3265
   public function setTimeDeleted($timeDeleted)
3266 3266
   {
3267
-    $this->timeDeleted = $timeDeleted;
3267
+	$this->timeDeleted = $timeDeleted;
3268 3268
   }
3269 3269
   public function getTimeDeleted()
3270 3270
   {
3271
-    return $this->timeDeleted;
3271
+	return $this->timeDeleted;
3272 3272
   }
3273 3273
   public function setUpdated($updated)
3274 3274
   {
3275
-    $this->updated = $updated;
3275
+	$this->updated = $updated;
3276 3276
   }
3277 3277
   public function getUpdated()
3278 3278
   {
3279
-    return $this->updated;
3279
+	return $this->updated;
3280 3280
   }
3281 3281
 }
3282 3282
 
@@ -3294,18 +3294,18 @@  discard block
 block discarded – undo
3294 3294
 
3295 3295
   public function setEntity($entity)
3296 3296
   {
3297
-    $this->entity = $entity;
3297
+	$this->entity = $entity;
3298 3298
   }
3299 3299
   public function getEntity()
3300 3300
   {
3301
-    return $this->entity;
3301
+	return $this->entity;
3302 3302
   }
3303 3303
   public function setEntityId($entityId)
3304 3304
   {
3305
-    $this->entityId = $entityId;
3305
+	$this->entityId = $entityId;
3306 3306
   }
3307 3307
   public function getEntityId()
3308 3308
   {
3309
-    return $this->entityId;
3309
+	return $this->entityId;
3310 3310
   }
3311 3311
 }
Please login to merge, or discard this patch.
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
                   'required' => true,
86 86
                 ),
87 87
               ),
88
-            ),'get' => array(
88
+            ), 'get' => array(
89 89
               'path' => 'b/{bucket}/acl/{entity}',
90 90
               'httpMethod' => 'GET',
91 91
               'parameters' => array(
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
                   'required' => true,
101 101
                 ),
102 102
               ),
103
-            ),'insert' => array(
103
+            ), 'insert' => array(
104 104
               'path' => 'b/{bucket}/acl',
105 105
               'httpMethod' => 'POST',
106 106
               'parameters' => array(
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
                   'required' => true,
111 111
                 ),
112 112
               ),
113
-            ),'list' => array(
113
+            ), 'list' => array(
114 114
               'path' => 'b/{bucket}/acl',
115 115
               'httpMethod' => 'GET',
116 116
               'parameters' => array(
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
                   'required' => true,
121 121
                 ),
122 122
               ),
123
-            ),'patch' => array(
123
+            ), 'patch' => array(
124 124
               'path' => 'b/{bucket}/acl/{entity}',
125 125
               'httpMethod' => 'PATCH',
126 126
               'parameters' => array(
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
                   'required' => true,
136 136
                 ),
137 137
               ),
138
-            ),'update' => array(
138
+            ), 'update' => array(
139 139
               'path' => 'b/{bucket}/acl/{entity}',
140 140
               'httpMethod' => 'PUT',
141 141
               'parameters' => array(
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
                   'type' => 'string',
179 179
                 ),
180 180
               ),
181
-            ),'get' => array(
181
+            ), 'get' => array(
182 182
               'path' => 'b/{bucket}',
183 183
               'httpMethod' => 'GET',
184 184
               'parameters' => array(
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
                   'type' => 'string',
201 201
                 ),
202 202
               ),
203
-            ),'insert' => array(
203
+            ), 'insert' => array(
204 204
               'path' => 'b',
205 205
               'httpMethod' => 'POST',
206 206
               'parameters' => array(
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
                   'type' => 'string',
223 223
                 ),
224 224
               ),
225
-            ),'list' => array(
225
+            ), 'list' => array(
226 226
               'path' => 'b',
227 227
               'httpMethod' => 'GET',
228 228
               'parameters' => array(
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
                   'type' => 'integer',
249 249
                 ),
250 250
               ),
251
-            ),'patch' => array(
251
+            ), 'patch' => array(
252 252
               'path' => 'b/{bucket}',
253 253
               'httpMethod' => 'PATCH',
254 254
               'parameters' => array(
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
                   'type' => 'string',
279 279
                 ),
280 280
               ),
281
-            ),'update' => array(
281
+            ), 'update' => array(
282 282
               'path' => 'b/{bucket}',
283 283
               'httpMethod' => 'PUT',
284 284
               'parameters' => array(
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
                   'required' => true,
348 348
                 ),
349 349
               ),
350
-            ),'get' => array(
350
+            ), 'get' => array(
351 351
               'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
352 352
               'httpMethod' => 'GET',
353 353
               'parameters' => array(
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
                   'required' => true,
363 363
                 ),
364 364
               ),
365
-            ),'insert' => array(
365
+            ), 'insert' => array(
366 366
               'path' => 'b/{bucket}/defaultObjectAcl',
367 367
               'httpMethod' => 'POST',
368 368
               'parameters' => array(
@@ -372,7 +372,7 @@  discard block
 block discarded – undo
372 372
                   'required' => true,
373 373
                 ),
374 374
               ),
375
-            ),'list' => array(
375
+            ), 'list' => array(
376 376
               'path' => 'b/{bucket}/defaultObjectAcl',
377 377
               'httpMethod' => 'GET',
378 378
               'parameters' => array(
@@ -390,7 +390,7 @@  discard block
 block discarded – undo
390 390
                   'type' => 'string',
391 391
                 ),
392 392
               ),
393
-            ),'patch' => array(
393
+            ), 'patch' => array(
394 394
               'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
395 395
               'httpMethod' => 'PATCH',
396 396
               'parameters' => array(
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
                   'required' => true,
406 406
                 ),
407 407
               ),
408
-            ),'update' => array(
408
+            ), 'update' => array(
409 409
               'path' => 'b/{bucket}/defaultObjectAcl/{entity}',
410 410
               'httpMethod' => 'PUT',
411 411
               'parameters' => array(
@@ -454,7 +454,7 @@  discard block
 block discarded – undo
454 454
                   'type' => 'string',
455 455
                 ),
456 456
               ),
457
-            ),'get' => array(
457
+            ), 'get' => array(
458 458
               'path' => 'b/{bucket}/o/{object}/acl/{entity}',
459 459
               'httpMethod' => 'GET',
460 460
               'parameters' => array(
@@ -478,7 +478,7 @@  discard block
 block discarded – undo
478 478
                   'type' => 'string',
479 479
                 ),
480 480
               ),
481
-            ),'insert' => array(
481
+            ), 'insert' => array(
482 482
               'path' => 'b/{bucket}/o/{object}/acl',
483 483
               'httpMethod' => 'POST',
484 484
               'parameters' => array(
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
                   'type' => 'string',
498 498
                 ),
499 499
               ),
500
-            ),'list' => array(
500
+            ), 'list' => array(
501 501
               'path' => 'b/{bucket}/o/{object}/acl',
502 502
               'httpMethod' => 'GET',
503 503
               'parameters' => array(
@@ -516,7 +516,7 @@  discard block
 block discarded – undo
516 516
                   'type' => 'string',
517 517
                 ),
518 518
               ),
519
-            ),'patch' => array(
519
+            ), 'patch' => array(
520 520
               'path' => 'b/{bucket}/o/{object}/acl/{entity}',
521 521
               'httpMethod' => 'PATCH',
522 522
               'parameters' => array(
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
                   'type' => 'string',
541 541
                 ),
542 542
               ),
543
-            ),'update' => array(
543
+            ), 'update' => array(
544 544
               'path' => 'b/{bucket}/o/{object}/acl/{entity}',
545 545
               'httpMethod' => 'PUT',
546 546
               'parameters' => array(
@@ -601,7 +601,7 @@  discard block
 block discarded – undo
601 601
                   'type' => 'string',
602 602
                 ),
603 603
               ),
604
-            ),'copy' => array(
604
+            ), 'copy' => array(
605 605
               'path' => 'b/{sourceBucket}/o/{sourceObject}/copyTo/b/{destinationBucket}/o/{destinationObject}',
606 606
               'httpMethod' => 'POST',
607 607
               'parameters' => array(
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
                   'type' => 'string',
671 671
                 ),
672 672
               ),
673
-            ),'delete' => array(
673
+            ), 'delete' => array(
674 674
               'path' => 'b/{bucket}/o/{object}',
675 675
               'httpMethod' => 'DELETE',
676 676
               'parameters' => array(
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
                   'type' => 'string',
706 706
                 ),
707 707
               ),
708
-            ),'get' => array(
708
+            ), 'get' => array(
709 709
               'path' => 'b/{bucket}/o/{object}',
710 710
               'httpMethod' => 'GET',
711 711
               'parameters' => array(
@@ -744,7 +744,7 @@  discard block
 block discarded – undo
744 744
                   'type' => 'string',
745 745
                 ),
746 746
               ),
747
-            ),'insert' => array(
747
+            ), 'insert' => array(
748 748
               'path' => 'b/{bucket}/o',
749 749
               'httpMethod' => 'POST',
750 750
               'parameters' => array(
@@ -786,7 +786,7 @@  discard block
 block discarded – undo
786 786
                   'type' => 'string',
787 787
                 ),
788 788
               ),
789
-            ),'list' => array(
789
+            ), 'list' => array(
790 790
               'path' => 'b/{bucket}/o',
791 791
               'httpMethod' => 'GET',
792 792
               'parameters' => array(
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
                   'type' => 'string',
821 821
                 ),
822 822
               ),
823
-            ),'patch' => array(
823
+            ), 'patch' => array(
824 824
               'path' => 'b/{bucket}/o/{object}',
825 825
               'httpMethod' => 'PATCH',
826 826
               'parameters' => array(
@@ -863,7 +863,7 @@  discard block
 block discarded – undo
863 863
                   'type' => 'string',
864 864
                 ),
865 865
               ),
866
-            ),'rewrite' => array(
866
+            ), 'rewrite' => array(
867 867
               'path' => 'b/{sourceBucket}/o/{sourceObject}/rewriteTo/b/{destinationBucket}/o/{destinationObject}',
868 868
               'httpMethod' => 'POST',
869 869
               'parameters' => array(
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
                   'type' => 'string',
941 941
                 ),
942 942
               ),
943
-            ),'update' => array(
943
+            ), 'update' => array(
944 944
               'path' => 'b/{bucket}/o/{object}',
945 945
               'httpMethod' => 'PUT',
946 946
               'parameters' => array(
@@ -983,7 +983,7 @@  discard block
 block discarded – undo
983 983
                   'type' => 'string',
984 984
                 ),
985 985
               ),
986
-            ),'watchAll' => array(
986
+            ), 'watchAll' => array(
987 987
               'path' => 'b/{bucket}/o/watch',
988 988
               'httpMethod' => 'POST',
989 989
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/TagManager.php 3 patches
Doc Comments   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1006,7 +1006,7 @@  discard block
 block discarded – undo
1006 1006
    * Updates a GTM Account. (accounts.update)
1007 1007
    *
1008 1008
    * @param string $accountId The GTM Account ID.
1009
-   * @param Google_Account $postBody
1009
+   * @param Google_Service_TagManager_Account $postBody
1010 1010
    * @param array $optParams Optional parameters.
1011 1011
    *
1012 1012
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1036,7 +1036,7 @@  discard block
 block discarded – undo
1036 1036
    * Creates a Container. (containers.create)
1037 1037
    *
1038 1038
    * @param string $accountId The GTM Account ID.
1039
-   * @param Google_Container $postBody
1039
+   * @param Google_Service_TagManager_Container $postBody
1040 1040
    * @param array $optParams Optional parameters.
1041 1041
    * @return Google_Service_TagManager_Container
1042 1042
    */
@@ -1096,7 +1096,7 @@  discard block
 block discarded – undo
1096 1096
    *
1097 1097
    * @param string $accountId The GTM Account ID.
1098 1098
    * @param string $containerId The GTM Container ID.
1099
-   * @param Google_Container $postBody
1099
+   * @param Google_Service_TagManager_Container $postBody
1100 1100
    * @param array $optParams Optional parameters.
1101 1101
    *
1102 1102
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1127,7 +1127,7 @@  discard block
 block discarded – undo
1127 1127
    *
1128 1128
    * @param string $accountId The GTM Account ID.
1129 1129
    * @param string $containerId The GTM Container ID.
1130
-   * @param Google_Macro $postBody
1130
+   * @param Google_Service_TagManager_Macro $postBody
1131 1131
    * @param array $optParams Optional parameters.
1132 1132
    * @return Google_Service_TagManager_Macro
1133 1133
    */
@@ -1190,7 +1190,7 @@  discard block
 block discarded – undo
1190 1190
    * @param string $accountId The GTM Account ID.
1191 1191
    * @param string $containerId The GTM Container ID.
1192 1192
    * @param string $macroId The GTM Macro ID.
1193
-   * @param Google_Macro $postBody
1193
+   * @param Google_Service_TagManager_Macro $postBody
1194 1194
    * @param array $optParams Optional parameters.
1195 1195
    *
1196 1196
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1220,7 +1220,7 @@  discard block
 block discarded – undo
1220 1220
    *
1221 1221
    * @param string $accountId The GTM Account ID.
1222 1222
    * @param string $containerId The GTM Container ID.
1223
-   * @param Google_Rule $postBody
1223
+   * @param Google_Service_TagManager_Rule $postBody
1224 1224
    * @param array $optParams Optional parameters.
1225 1225
    * @return Google_Service_TagManager_Rule
1226 1226
    */
@@ -1283,7 +1283,7 @@  discard block
 block discarded – undo
1283 1283
    * @param string $accountId The GTM Account ID.
1284 1284
    * @param string $containerId The GTM Container ID.
1285 1285
    * @param string $ruleId The GTM Rule ID.
1286
-   * @param Google_Rule $postBody
1286
+   * @param Google_Service_TagManager_Rule $postBody
1287 1287
    * @param array $optParams Optional parameters.
1288 1288
    *
1289 1289
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1313,7 +1313,7 @@  discard block
 block discarded – undo
1313 1313
    *
1314 1314
    * @param string $accountId The GTM Account ID.
1315 1315
    * @param string $containerId The GTM Container ID.
1316
-   * @param Google_Tag $postBody
1316
+   * @param Google_Service_TagManager_Tag $postBody
1317 1317
    * @param array $optParams Optional parameters.
1318 1318
    * @return Google_Service_TagManager_Tag
1319 1319
    */
@@ -1376,7 +1376,7 @@  discard block
 block discarded – undo
1376 1376
    * @param string $accountId The GTM Account ID.
1377 1377
    * @param string $containerId The GTM Container ID.
1378 1378
    * @param string $tagId The GTM Tag ID.
1379
-   * @param Google_Tag $postBody
1379
+   * @param Google_Service_TagManager_Tag $postBody
1380 1380
    * @param array $optParams Optional parameters.
1381 1381
    *
1382 1382
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1406,7 +1406,7 @@  discard block
 block discarded – undo
1406 1406
    *
1407 1407
    * @param string $accountId The GTM Account ID.
1408 1408
    * @param string $containerId The GTM Container ID.
1409
-   * @param Google_Trigger $postBody
1409
+   * @param Google_Service_TagManager_Trigger $postBody
1410 1410
    * @param array $optParams Optional parameters.
1411 1411
    * @return Google_Service_TagManager_Trigger
1412 1412
    */
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
    * @param string $accountId The GTM Account ID.
1471 1471
    * @param string $containerId The GTM Container ID.
1472 1472
    * @param string $triggerId The GTM Trigger ID.
1473
-   * @param Google_Trigger $postBody
1473
+   * @param Google_Service_TagManager_Trigger $postBody
1474 1474
    * @param array $optParams Optional parameters.
1475 1475
    *
1476 1476
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1500,7 +1500,7 @@  discard block
 block discarded – undo
1500 1500
    *
1501 1501
    * @param string $accountId The GTM Account ID.
1502 1502
    * @param string $containerId The GTM Container ID.
1503
-   * @param Google_Variable $postBody
1503
+   * @param Google_Service_TagManager_Variable $postBody
1504 1504
    * @param array $optParams Optional parameters.
1505 1505
    * @return Google_Service_TagManager_Variable
1506 1506
    */
@@ -1564,7 +1564,7 @@  discard block
 block discarded – undo
1564 1564
    * @param string $accountId The GTM Account ID.
1565 1565
    * @param string $containerId The GTM Container ID.
1566 1566
    * @param string $variableId The GTM Variable ID.
1567
-   * @param Google_Variable $postBody
1567
+   * @param Google_Service_TagManager_Variable $postBody
1568 1568
    * @param array $optParams Optional parameters.
1569 1569
    *
1570 1570
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1594,7 +1594,7 @@  discard block
 block discarded – undo
1594 1594
    *
1595 1595
    * @param string $accountId The GTM Account ID.
1596 1596
    * @param string $containerId The GTM Container ID.
1597
-   * @param Google_CreateContainerVersionRequestVersionOptions $postBody
1597
+   * @param Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody
1598 1598
    * @param array $optParams Optional parameters.
1599 1599
    * @return Google_Service_TagManager_CreateContainerVersionResponse
1600 1600
    */
@@ -1715,7 +1715,7 @@  discard block
 block discarded – undo
1715 1715
    * @param string $accountId The GTM Account ID.
1716 1716
    * @param string $containerId The GTM Container ID.
1717 1717
    * @param string $containerVersionId The GTM Container Version ID.
1718
-   * @param Google_ContainerVersion $postBody
1718
+   * @param Google_Service_TagManager_ContainerVersion $postBody
1719 1719
    * @param array $optParams Optional parameters.
1720 1720
    *
1721 1721
    * @opt_param string fingerprint When provided, this fingerprint must match the
@@ -1744,7 +1744,7 @@  discard block
 block discarded – undo
1744 1744
    * Creates a user's Account & Container Permissions. (permissions.create)
1745 1745
    *
1746 1746
    * @param string $accountId The GTM Account ID.
1747
-   * @param Google_UserAccess $postBody
1747
+   * @param Google_Service_TagManager_UserAccess $postBody
1748 1748
    * @param array $optParams Optional parameters.
1749 1749
    * @return Google_Service_TagManager_UserAccess
1750 1750
    */
@@ -1807,7 +1807,7 @@  discard block
 block discarded – undo
1807 1807
    *
1808 1808
    * @param string $accountId The GTM Account ID.
1809 1809
    * @param string $permissionId The GTM User ID.
1810
-   * @param Google_UserAccess $postBody
1810
+   * @param Google_Service_TagManager_UserAccess $postBody
1811 1811
    * @param array $optParams Optional parameters.
1812 1812
    * @return Google_Service_TagManager_UserAccess
1813 1813
    */
Please login to merge, or discard this patch.
Indentation   +1305 added lines, -1305 removed lines patch added patch discarded remove patch
@@ -32,25 +32,25 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Delete your Google Tag Manager containers. */
34 34
   const TAGMANAGER_DELETE_CONTAINERS =
35
-      "https://www.googleapis.com/auth/tagmanager.delete.containers";
35
+	  "https://www.googleapis.com/auth/tagmanager.delete.containers";
36 36
   /** Manage your Google Tag Manager containers. */
37 37
   const TAGMANAGER_EDIT_CONTAINERS =
38
-      "https://www.googleapis.com/auth/tagmanager.edit.containers";
38
+	  "https://www.googleapis.com/auth/tagmanager.edit.containers";
39 39
   /** Manage your Google Tag Manager container versions. */
40 40
   const TAGMANAGER_EDIT_CONTAINERVERSIONS =
41
-      "https://www.googleapis.com/auth/tagmanager.edit.containerversions";
41
+	  "https://www.googleapis.com/auth/tagmanager.edit.containerversions";
42 42
   /** Manage your Google Tag Manager accounts. */
43 43
   const TAGMANAGER_MANAGE_ACCOUNTS =
44
-      "https://www.googleapis.com/auth/tagmanager.manage.accounts";
44
+	  "https://www.googleapis.com/auth/tagmanager.manage.accounts";
45 45
   /** Manage user permissions of your Google Tag Manager data. */
46 46
   const TAGMANAGER_MANAGE_USERS =
47
-      "https://www.googleapis.com/auth/tagmanager.manage.users";
47
+	  "https://www.googleapis.com/auth/tagmanager.manage.users";
48 48
   /** Publish your Google Tag Manager containers. */
49 49
   const TAGMANAGER_PUBLISH =
50
-      "https://www.googleapis.com/auth/tagmanager.publish";
50
+	  "https://www.googleapis.com/auth/tagmanager.publish";
51 51
   /** View your Google Tag Manager containers. */
52 52
   const TAGMANAGER_READONLY =
53
-      "https://www.googleapis.com/auth/tagmanager.readonly";
53
+	  "https://www.googleapis.com/auth/tagmanager.readonly";
54 54
 
55 55
   public $accounts;
56 56
   public $accounts_containers;
@@ -70,896 +70,896 @@  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 = 'tagmanager/v1/';
76
-    $this->version = 'v1';
77
-    $this->serviceName = 'tagmanager';
78
-
79
-    $this->accounts = new Google_Service_TagManager_Accounts_Resource(
80
-        $this,
81
-        $this->serviceName,
82
-        'accounts',
83
-        array(
84
-          'methods' => array(
85
-            'get' => array(
86
-              'path' => 'accounts/{accountId}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'accountId' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-              ),
95
-            ),'list' => array(
96
-              'path' => 'accounts',
97
-              'httpMethod' => 'GET',
98
-              'parameters' => array(),
99
-            ),'update' => array(
100
-              'path' => 'accounts/{accountId}',
101
-              'httpMethod' => 'PUT',
102
-              'parameters' => array(
103
-                'accountId' => array(
104
-                  'location' => 'path',
105
-                  'type' => 'string',
106
-                  'required' => true,
107
-                ),
108
-                'fingerprint' => array(
109
-                  'location' => 'query',
110
-                  'type' => 'string',
111
-                ),
112
-              ),
113
-            ),
114
-          )
115
-        )
116
-    );
117
-    $this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource(
118
-        $this,
119
-        $this->serviceName,
120
-        'containers',
121
-        array(
122
-          'methods' => array(
123
-            'create' => array(
124
-              'path' => 'accounts/{accountId}/containers',
125
-              'httpMethod' => 'POST',
126
-              'parameters' => array(
127
-                'accountId' => array(
128
-                  'location' => 'path',
129
-                  'type' => 'string',
130
-                  'required' => true,
131
-                ),
132
-              ),
133
-            ),'delete' => array(
134
-              'path' => 'accounts/{accountId}/containers/{containerId}',
135
-              'httpMethod' => 'DELETE',
136
-              'parameters' => array(
137
-                'accountId' => array(
138
-                  'location' => 'path',
139
-                  'type' => 'string',
140
-                  'required' => true,
141
-                ),
142
-                'containerId' => array(
143
-                  'location' => 'path',
144
-                  'type' => 'string',
145
-                  'required' => true,
146
-                ),
147
-              ),
148
-            ),'get' => array(
149
-              'path' => 'accounts/{accountId}/containers/{containerId}',
150
-              'httpMethod' => 'GET',
151
-              'parameters' => array(
152
-                'accountId' => array(
153
-                  'location' => 'path',
154
-                  'type' => 'string',
155
-                  'required' => true,
156
-                ),
157
-                'containerId' => array(
158
-                  'location' => 'path',
159
-                  'type' => 'string',
160
-                  'required' => true,
161
-                ),
162
-              ),
163
-            ),'list' => array(
164
-              'path' => 'accounts/{accountId}/containers',
165
-              'httpMethod' => 'GET',
166
-              'parameters' => array(
167
-                'accountId' => array(
168
-                  'location' => 'path',
169
-                  'type' => 'string',
170
-                  'required' => true,
171
-                ),
172
-              ),
173
-            ),'update' => array(
174
-              'path' => 'accounts/{accountId}/containers/{containerId}',
175
-              'httpMethod' => 'PUT',
176
-              'parameters' => array(
177
-                'accountId' => array(
178
-                  'location' => 'path',
179
-                  'type' => 'string',
180
-                  'required' => true,
181
-                ),
182
-                'containerId' => array(
183
-                  'location' => 'path',
184
-                  'type' => 'string',
185
-                  'required' => true,
186
-                ),
187
-                'fingerprint' => array(
188
-                  'location' => 'query',
189
-                  'type' => 'string',
190
-                ),
191
-              ),
192
-            ),
193
-          )
194
-        )
195
-    );
196
-    $this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource(
197
-        $this,
198
-        $this->serviceName,
199
-        'macros',
200
-        array(
201
-          'methods' => array(
202
-            'create' => array(
203
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros',
204
-              'httpMethod' => 'POST',
205
-              'parameters' => array(
206
-                'accountId' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-                'containerId' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-              ),
217
-            ),'delete' => array(
218
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219
-              'httpMethod' => 'DELETE',
220
-              'parameters' => array(
221
-                'accountId' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'containerId' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'macroId' => array(
232
-                  'location' => 'path',
233
-                  'type' => 'string',
234
-                  'required' => true,
235
-                ),
236
-              ),
237
-            ),'get' => array(
238
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239
-              'httpMethod' => 'GET',
240
-              'parameters' => array(
241
-                'accountId' => array(
242
-                  'location' => 'path',
243
-                  'type' => 'string',
244
-                  'required' => true,
245
-                ),
246
-                'containerId' => array(
247
-                  'location' => 'path',
248
-                  'type' => 'string',
249
-                  'required' => true,
250
-                ),
251
-                'macroId' => array(
252
-                  'location' => 'path',
253
-                  'type' => 'string',
254
-                  'required' => true,
255
-                ),
256
-              ),
257
-            ),'list' => array(
258
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259
-              'httpMethod' => 'GET',
260
-              'parameters' => array(
261
-                'accountId' => array(
262
-                  'location' => 'path',
263
-                  'type' => 'string',
264
-                  'required' => true,
265
-                ),
266
-                'containerId' => array(
267
-                  'location' => 'path',
268
-                  'type' => 'string',
269
-                  'required' => true,
270
-                ),
271
-              ),
272
-            ),'update' => array(
273
-              'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274
-              'httpMethod' => 'PUT',
275
-              'parameters' => array(
276
-                'accountId' => array(
277
-                  'location' => 'path',
278
-                  'type' => 'string',
279
-                  'required' => true,
280
-                ),
281
-                'containerId' => array(
282
-                  'location' => 'path',
283
-                  'type' => 'string',
284
-                  'required' => true,
285
-                ),
286
-                'macroId' => array(
287
-                  'location' => 'path',
288
-                  'type' => 'string',
289
-                  'required' => true,
290
-                ),
291
-                'fingerprint' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'string',
294
-                ),
295
-              ),
296
-            ),
297
-          )
298
-        )
299
-    );
300
-    $this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource(
301
-        $this,
302
-        $this->serviceName,
303
-        'rules',
304
-        array(
305
-          'methods' => array(
306
-            'create' => array(
307
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules',
308
-              'httpMethod' => 'POST',
309
-              'parameters' => array(
310
-                'accountId' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-                'containerId' => array(
316
-                  'location' => 'path',
317
-                  'type' => 'string',
318
-                  'required' => true,
319
-                ),
320
-              ),
321
-            ),'delete' => array(
322
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323
-              'httpMethod' => 'DELETE',
324
-              'parameters' => array(
325
-                'accountId' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-                'containerId' => array(
331
-                  'location' => 'path',
332
-                  'type' => 'string',
333
-                  'required' => true,
334
-                ),
335
-                'ruleId' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-              ),
341
-            ),'get' => array(
342
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343
-              'httpMethod' => 'GET',
344
-              'parameters' => array(
345
-                'accountId' => array(
346
-                  'location' => 'path',
347
-                  'type' => 'string',
348
-                  'required' => true,
349
-                ),
350
-                'containerId' => array(
351
-                  'location' => 'path',
352
-                  'type' => 'string',
353
-                  'required' => true,
354
-                ),
355
-                'ruleId' => array(
356
-                  'location' => 'path',
357
-                  'type' => 'string',
358
-                  'required' => true,
359
-                ),
360
-              ),
361
-            ),'list' => array(
362
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363
-              'httpMethod' => 'GET',
364
-              'parameters' => array(
365
-                'accountId' => array(
366
-                  'location' => 'path',
367
-                  'type' => 'string',
368
-                  'required' => true,
369
-                ),
370
-                'containerId' => array(
371
-                  'location' => 'path',
372
-                  'type' => 'string',
373
-                  'required' => true,
374
-                ),
375
-              ),
376
-            ),'update' => array(
377
-              'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378
-              'httpMethod' => 'PUT',
379
-              'parameters' => array(
380
-                'accountId' => array(
381
-                  'location' => 'path',
382
-                  'type' => 'string',
383
-                  'required' => true,
384
-                ),
385
-                'containerId' => array(
386
-                  'location' => 'path',
387
-                  'type' => 'string',
388
-                  'required' => true,
389
-                ),
390
-                'ruleId' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'fingerprint' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'string',
398
-                ),
399
-              ),
400
-            ),
401
-          )
402
-        )
403
-    );
404
-    $this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource(
405
-        $this,
406
-        $this->serviceName,
407
-        'tags',
408
-        array(
409
-          'methods' => array(
410
-            'create' => array(
411
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags',
412
-              'httpMethod' => 'POST',
413
-              'parameters' => array(
414
-                'accountId' => array(
415
-                  'location' => 'path',
416
-                  'type' => 'string',
417
-                  'required' => true,
418
-                ),
419
-                'containerId' => array(
420
-                  'location' => 'path',
421
-                  'type' => 'string',
422
-                  'required' => true,
423
-                ),
424
-              ),
425
-            ),'delete' => array(
426
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427
-              'httpMethod' => 'DELETE',
428
-              'parameters' => array(
429
-                'accountId' => array(
430
-                  'location' => 'path',
431
-                  'type' => 'string',
432
-                  'required' => true,
433
-                ),
434
-                'containerId' => array(
435
-                  'location' => 'path',
436
-                  'type' => 'string',
437
-                  'required' => true,
438
-                ),
439
-                'tagId' => array(
440
-                  'location' => 'path',
441
-                  'type' => 'string',
442
-                  'required' => true,
443
-                ),
444
-              ),
445
-            ),'get' => array(
446
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447
-              'httpMethod' => 'GET',
448
-              'parameters' => array(
449
-                'accountId' => array(
450
-                  'location' => 'path',
451
-                  'type' => 'string',
452
-                  'required' => true,
453
-                ),
454
-                'containerId' => array(
455
-                  'location' => 'path',
456
-                  'type' => 'string',
457
-                  'required' => true,
458
-                ),
459
-                'tagId' => array(
460
-                  'location' => 'path',
461
-                  'type' => 'string',
462
-                  'required' => true,
463
-                ),
464
-              ),
465
-            ),'list' => array(
466
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467
-              'httpMethod' => 'GET',
468
-              'parameters' => array(
469
-                'accountId' => array(
470
-                  'location' => 'path',
471
-                  'type' => 'string',
472
-                  'required' => true,
473
-                ),
474
-                'containerId' => array(
475
-                  'location' => 'path',
476
-                  'type' => 'string',
477
-                  'required' => true,
478
-                ),
479
-              ),
480
-            ),'update' => array(
481
-              'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482
-              'httpMethod' => 'PUT',
483
-              'parameters' => array(
484
-                'accountId' => array(
485
-                  'location' => 'path',
486
-                  'type' => 'string',
487
-                  'required' => true,
488
-                ),
489
-                'containerId' => array(
490
-                  'location' => 'path',
491
-                  'type' => 'string',
492
-                  'required' => true,
493
-                ),
494
-                'tagId' => array(
495
-                  'location' => 'path',
496
-                  'type' => 'string',
497
-                  'required' => true,
498
-                ),
499
-                'fingerprint' => array(
500
-                  'location' => 'query',
501
-                  'type' => 'string',
502
-                ),
503
-              ),
504
-            ),
505
-          )
506
-        )
507
-    );
508
-    $this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource(
509
-        $this,
510
-        $this->serviceName,
511
-        'triggers',
512
-        array(
513
-          'methods' => array(
514
-            'create' => array(
515
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
516
-              'httpMethod' => 'POST',
517
-              'parameters' => array(
518
-                'accountId' => array(
519
-                  'location' => 'path',
520
-                  'type' => 'string',
521
-                  'required' => true,
522
-                ),
523
-                'containerId' => array(
524
-                  'location' => 'path',
525
-                  'type' => 'string',
526
-                  'required' => true,
527
-                ),
528
-              ),
529
-            ),'delete' => array(
530
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531
-              'httpMethod' => 'DELETE',
532
-              'parameters' => array(
533
-                'accountId' => array(
534
-                  'location' => 'path',
535
-                  'type' => 'string',
536
-                  'required' => true,
537
-                ),
538
-                'containerId' => array(
539
-                  'location' => 'path',
540
-                  'type' => 'string',
541
-                  'required' => true,
542
-                ),
543
-                'triggerId' => array(
544
-                  'location' => 'path',
545
-                  'type' => 'string',
546
-                  'required' => true,
547
-                ),
548
-              ),
549
-            ),'get' => array(
550
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551
-              'httpMethod' => 'GET',
552
-              'parameters' => array(
553
-                'accountId' => array(
554
-                  'location' => 'path',
555
-                  'type' => 'string',
556
-                  'required' => true,
557
-                ),
558
-                'containerId' => array(
559
-                  'location' => 'path',
560
-                  'type' => 'string',
561
-                  'required' => true,
562
-                ),
563
-                'triggerId' => array(
564
-                  'location' => 'path',
565
-                  'type' => 'string',
566
-                  'required' => true,
567
-                ),
568
-              ),
569
-            ),'list' => array(
570
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571
-              'httpMethod' => 'GET',
572
-              'parameters' => array(
573
-                'accountId' => array(
574
-                  'location' => 'path',
575
-                  'type' => 'string',
576
-                  'required' => true,
577
-                ),
578
-                'containerId' => array(
579
-                  'location' => 'path',
580
-                  'type' => 'string',
581
-                  'required' => true,
582
-                ),
583
-              ),
584
-            ),'update' => array(
585
-              'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586
-              'httpMethod' => 'PUT',
587
-              'parameters' => array(
588
-                'accountId' => array(
589
-                  'location' => 'path',
590
-                  'type' => 'string',
591
-                  'required' => true,
592
-                ),
593
-                'containerId' => array(
594
-                  'location' => 'path',
595
-                  'type' => 'string',
596
-                  'required' => true,
597
-                ),
598
-                'triggerId' => array(
599
-                  'location' => 'path',
600
-                  'type' => 'string',
601
-                  'required' => true,
602
-                ),
603
-                'fingerprint' => array(
604
-                  'location' => 'query',
605
-                  'type' => 'string',
606
-                ),
607
-              ),
608
-            ),
609
-          )
610
-        )
611
-    );
612
-    $this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource(
613
-        $this,
614
-        $this->serviceName,
615
-        'variables',
616
-        array(
617
-          'methods' => array(
618
-            'create' => array(
619
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables',
620
-              'httpMethod' => 'POST',
621
-              'parameters' => array(
622
-                'accountId' => array(
623
-                  'location' => 'path',
624
-                  'type' => 'string',
625
-                  'required' => true,
626
-                ),
627
-                'containerId' => array(
628
-                  'location' => 'path',
629
-                  'type' => 'string',
630
-                  'required' => true,
631
-                ),
632
-              ),
633
-            ),'delete' => array(
634
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635
-              'httpMethod' => 'DELETE',
636
-              'parameters' => array(
637
-                'accountId' => array(
638
-                  'location' => 'path',
639
-                  'type' => 'string',
640
-                  'required' => true,
641
-                ),
642
-                'containerId' => array(
643
-                  'location' => 'path',
644
-                  'type' => 'string',
645
-                  'required' => true,
646
-                ),
647
-                'variableId' => array(
648
-                  'location' => 'path',
649
-                  'type' => 'string',
650
-                  'required' => true,
651
-                ),
652
-              ),
653
-            ),'get' => array(
654
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655
-              'httpMethod' => 'GET',
656
-              'parameters' => array(
657
-                'accountId' => array(
658
-                  'location' => 'path',
659
-                  'type' => 'string',
660
-                  'required' => true,
661
-                ),
662
-                'containerId' => array(
663
-                  'location' => 'path',
664
-                  'type' => 'string',
665
-                  'required' => true,
666
-                ),
667
-                'variableId' => array(
668
-                  'location' => 'path',
669
-                  'type' => 'string',
670
-                  'required' => true,
671
-                ),
672
-              ),
673
-            ),'list' => array(
674
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables',
675
-              'httpMethod' => 'GET',
676
-              'parameters' => array(
677
-                'accountId' => array(
678
-                  'location' => 'path',
679
-                  'type' => 'string',
680
-                  'required' => true,
681
-                ),
682
-                'containerId' => array(
683
-                  'location' => 'path',
684
-                  'type' => 'string',
685
-                  'required' => true,
686
-                ),
687
-              ),
688
-            ),'update' => array(
689
-              'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690
-              'httpMethod' => 'PUT',
691
-              'parameters' => array(
692
-                'accountId' => array(
693
-                  'location' => 'path',
694
-                  'type' => 'string',
695
-                  'required' => true,
696
-                ),
697
-                'containerId' => array(
698
-                  'location' => 'path',
699
-                  'type' => 'string',
700
-                  'required' => true,
701
-                ),
702
-                'variableId' => array(
703
-                  'location' => 'path',
704
-                  'type' => 'string',
705
-                  'required' => true,
706
-                ),
707
-                'fingerprint' => array(
708
-                  'location' => 'query',
709
-                  'type' => 'string',
710
-                ),
711
-              ),
712
-            ),
713
-          )
714
-        )
715
-    );
716
-    $this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource(
717
-        $this,
718
-        $this->serviceName,
719
-        'versions',
720
-        array(
721
-          'methods' => array(
722
-            'create' => array(
723
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions',
724
-              'httpMethod' => 'POST',
725
-              'parameters' => array(
726
-                'accountId' => array(
727
-                  'location' => 'path',
728
-                  'type' => 'string',
729
-                  'required' => true,
730
-                ),
731
-                'containerId' => array(
732
-                  'location' => 'path',
733
-                  'type' => 'string',
734
-                  'required' => true,
735
-                ),
736
-              ),
737
-            ),'delete' => array(
738
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739
-              'httpMethod' => 'DELETE',
740
-              'parameters' => array(
741
-                'accountId' => array(
742
-                  'location' => 'path',
743
-                  'type' => 'string',
744
-                  'required' => true,
745
-                ),
746
-                'containerId' => array(
747
-                  'location' => 'path',
748
-                  'type' => 'string',
749
-                  'required' => true,
750
-                ),
751
-                'containerVersionId' => array(
752
-                  'location' => 'path',
753
-                  'type' => 'string',
754
-                  'required' => true,
755
-                ),
756
-              ),
757
-            ),'get' => array(
758
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759
-              'httpMethod' => 'GET',
760
-              'parameters' => array(
761
-                'accountId' => array(
762
-                  'location' => 'path',
763
-                  'type' => 'string',
764
-                  'required' => true,
765
-                ),
766
-                'containerId' => array(
767
-                  'location' => 'path',
768
-                  'type' => 'string',
769
-                  'required' => true,
770
-                ),
771
-                'containerVersionId' => array(
772
-                  'location' => 'path',
773
-                  'type' => 'string',
774
-                  'required' => true,
775
-                ),
776
-              ),
777
-            ),'list' => array(
778
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779
-              'httpMethod' => 'GET',
780
-              'parameters' => array(
781
-                'accountId' => array(
782
-                  'location' => 'path',
783
-                  'type' => 'string',
784
-                  'required' => true,
785
-                ),
786
-                'containerId' => array(
787
-                  'location' => 'path',
788
-                  'type' => 'string',
789
-                  'required' => true,
790
-                ),
791
-                'headers' => array(
792
-                  'location' => 'query',
793
-                  'type' => 'boolean',
794
-                ),
795
-              ),
796
-            ),'publish' => array(
797
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798
-              'httpMethod' => 'POST',
799
-              'parameters' => array(
800
-                'accountId' => array(
801
-                  'location' => 'path',
802
-                  'type' => 'string',
803
-                  'required' => true,
804
-                ),
805
-                'containerId' => array(
806
-                  'location' => 'path',
807
-                  'type' => 'string',
808
-                  'required' => true,
809
-                ),
810
-                'containerVersionId' => array(
811
-                  'location' => 'path',
812
-                  'type' => 'string',
813
-                  'required' => true,
814
-                ),
815
-                'fingerprint' => array(
816
-                  'location' => 'query',
817
-                  'type' => 'string',
818
-                ),
819
-              ),
820
-            ),'restore' => array(
821
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822
-              'httpMethod' => 'POST',
823
-              'parameters' => array(
824
-                'accountId' => array(
825
-                  'location' => 'path',
826
-                  'type' => 'string',
827
-                  'required' => true,
828
-                ),
829
-                'containerId' => array(
830
-                  'location' => 'path',
831
-                  'type' => 'string',
832
-                  'required' => true,
833
-                ),
834
-                'containerVersionId' => array(
835
-                  'location' => 'path',
836
-                  'type' => 'string',
837
-                  'required' => true,
838
-                ),
839
-              ),
840
-            ),'undelete' => array(
841
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842
-              'httpMethod' => 'POST',
843
-              'parameters' => array(
844
-                'accountId' => array(
845
-                  'location' => 'path',
846
-                  'type' => 'string',
847
-                  'required' => true,
848
-                ),
849
-                'containerId' => array(
850
-                  'location' => 'path',
851
-                  'type' => 'string',
852
-                  'required' => true,
853
-                ),
854
-                'containerVersionId' => array(
855
-                  'location' => 'path',
856
-                  'type' => 'string',
857
-                  'required' => true,
858
-                ),
859
-              ),
860
-            ),'update' => array(
861
-              'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862
-              'httpMethod' => 'PUT',
863
-              'parameters' => array(
864
-                'accountId' => array(
865
-                  'location' => 'path',
866
-                  'type' => 'string',
867
-                  'required' => true,
868
-                ),
869
-                'containerId' => array(
870
-                  'location' => 'path',
871
-                  'type' => 'string',
872
-                  'required' => true,
873
-                ),
874
-                'containerVersionId' => array(
875
-                  'location' => 'path',
876
-                  'type' => 'string',
877
-                  'required' => true,
878
-                ),
879
-                'fingerprint' => array(
880
-                  'location' => 'query',
881
-                  'type' => 'string',
882
-                ),
883
-              ),
884
-            ),
885
-          )
886
-        )
887
-    );
888
-    $this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource(
889
-        $this,
890
-        $this->serviceName,
891
-        'permissions',
892
-        array(
893
-          'methods' => array(
894
-            'create' => array(
895
-              'path' => 'accounts/{accountId}/permissions',
896
-              'httpMethod' => 'POST',
897
-              'parameters' => array(
898
-                'accountId' => array(
899
-                  'location' => 'path',
900
-                  'type' => 'string',
901
-                  'required' => true,
902
-                ),
903
-              ),
904
-            ),'delete' => array(
905
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
906
-              'httpMethod' => 'DELETE',
907
-              'parameters' => array(
908
-                'accountId' => array(
909
-                  'location' => 'path',
910
-                  'type' => 'string',
911
-                  'required' => true,
912
-                ),
913
-                'permissionId' => array(
914
-                  'location' => 'path',
915
-                  'type' => 'string',
916
-                  'required' => true,
917
-                ),
918
-              ),
919
-            ),'get' => array(
920
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
921
-              'httpMethod' => 'GET',
922
-              'parameters' => array(
923
-                'accountId' => array(
924
-                  'location' => 'path',
925
-                  'type' => 'string',
926
-                  'required' => true,
927
-                ),
928
-                'permissionId' => array(
929
-                  'location' => 'path',
930
-                  'type' => 'string',
931
-                  'required' => true,
932
-                ),
933
-              ),
934
-            ),'list' => array(
935
-              'path' => 'accounts/{accountId}/permissions',
936
-              'httpMethod' => 'GET',
937
-              'parameters' => array(
938
-                'accountId' => array(
939
-                  'location' => 'path',
940
-                  'type' => 'string',
941
-                  'required' => true,
942
-                ),
943
-              ),
944
-            ),'update' => array(
945
-              'path' => 'accounts/{accountId}/permissions/{permissionId}',
946
-              'httpMethod' => 'PUT',
947
-              'parameters' => array(
948
-                'accountId' => array(
949
-                  'location' => 'path',
950
-                  'type' => 'string',
951
-                  'required' => true,
952
-                ),
953
-                'permissionId' => array(
954
-                  'location' => 'path',
955
-                  'type' => 'string',
956
-                  'required' => true,
957
-                ),
958
-              ),
959
-            ),
960
-          )
961
-        )
962
-    );
73
+	parent::__construct($client);
74
+	$this->rootUrl = 'https://www.googleapis.com/';
75
+	$this->servicePath = 'tagmanager/v1/';
76
+	$this->version = 'v1';
77
+	$this->serviceName = 'tagmanager';
78
+
79
+	$this->accounts = new Google_Service_TagManager_Accounts_Resource(
80
+		$this,
81
+		$this->serviceName,
82
+		'accounts',
83
+		array(
84
+		  'methods' => array(
85
+			'get' => array(
86
+			  'path' => 'accounts/{accountId}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'accountId' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+			  ),
95
+			),'list' => array(
96
+			  'path' => 'accounts',
97
+			  'httpMethod' => 'GET',
98
+			  'parameters' => array(),
99
+			),'update' => array(
100
+			  'path' => 'accounts/{accountId}',
101
+			  'httpMethod' => 'PUT',
102
+			  'parameters' => array(
103
+				'accountId' => array(
104
+				  'location' => 'path',
105
+				  'type' => 'string',
106
+				  'required' => true,
107
+				),
108
+				'fingerprint' => array(
109
+				  'location' => 'query',
110
+				  'type' => 'string',
111
+				),
112
+			  ),
113
+			),
114
+		  )
115
+		)
116
+	);
117
+	$this->accounts_containers = new Google_Service_TagManager_AccountsContainers_Resource(
118
+		$this,
119
+		$this->serviceName,
120
+		'containers',
121
+		array(
122
+		  'methods' => array(
123
+			'create' => array(
124
+			  'path' => 'accounts/{accountId}/containers',
125
+			  'httpMethod' => 'POST',
126
+			  'parameters' => array(
127
+				'accountId' => array(
128
+				  'location' => 'path',
129
+				  'type' => 'string',
130
+				  'required' => true,
131
+				),
132
+			  ),
133
+			),'delete' => array(
134
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
135
+			  'httpMethod' => 'DELETE',
136
+			  'parameters' => array(
137
+				'accountId' => array(
138
+				  'location' => 'path',
139
+				  'type' => 'string',
140
+				  'required' => true,
141
+				),
142
+				'containerId' => array(
143
+				  'location' => 'path',
144
+				  'type' => 'string',
145
+				  'required' => true,
146
+				),
147
+			  ),
148
+			),'get' => array(
149
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
150
+			  'httpMethod' => 'GET',
151
+			  'parameters' => array(
152
+				'accountId' => array(
153
+				  'location' => 'path',
154
+				  'type' => 'string',
155
+				  'required' => true,
156
+				),
157
+				'containerId' => array(
158
+				  'location' => 'path',
159
+				  'type' => 'string',
160
+				  'required' => true,
161
+				),
162
+			  ),
163
+			),'list' => array(
164
+			  'path' => 'accounts/{accountId}/containers',
165
+			  'httpMethod' => 'GET',
166
+			  'parameters' => array(
167
+				'accountId' => array(
168
+				  'location' => 'path',
169
+				  'type' => 'string',
170
+				  'required' => true,
171
+				),
172
+			  ),
173
+			),'update' => array(
174
+			  'path' => 'accounts/{accountId}/containers/{containerId}',
175
+			  'httpMethod' => 'PUT',
176
+			  'parameters' => array(
177
+				'accountId' => array(
178
+				  'location' => 'path',
179
+				  'type' => 'string',
180
+				  'required' => true,
181
+				),
182
+				'containerId' => array(
183
+				  'location' => 'path',
184
+				  'type' => 'string',
185
+				  'required' => true,
186
+				),
187
+				'fingerprint' => array(
188
+				  'location' => 'query',
189
+				  'type' => 'string',
190
+				),
191
+			  ),
192
+			),
193
+		  )
194
+		)
195
+	);
196
+	$this->accounts_containers_macros = new Google_Service_TagManager_AccountsContainersMacros_Resource(
197
+		$this,
198
+		$this->serviceName,
199
+		'macros',
200
+		array(
201
+		  'methods' => array(
202
+			'create' => array(
203
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros',
204
+			  'httpMethod' => 'POST',
205
+			  'parameters' => array(
206
+				'accountId' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+				'containerId' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+			  ),
217
+			),'delete' => array(
218
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219
+			  'httpMethod' => 'DELETE',
220
+			  'parameters' => array(
221
+				'accountId' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'containerId' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'macroId' => array(
232
+				  'location' => 'path',
233
+				  'type' => 'string',
234
+				  'required' => true,
235
+				),
236
+			  ),
237
+			),'get' => array(
238
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239
+			  'httpMethod' => 'GET',
240
+			  'parameters' => array(
241
+				'accountId' => array(
242
+				  'location' => 'path',
243
+				  'type' => 'string',
244
+				  'required' => true,
245
+				),
246
+				'containerId' => array(
247
+				  'location' => 'path',
248
+				  'type' => 'string',
249
+				  'required' => true,
250
+				),
251
+				'macroId' => array(
252
+				  'location' => 'path',
253
+				  'type' => 'string',
254
+				  'required' => true,
255
+				),
256
+			  ),
257
+			),'list' => array(
258
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259
+			  'httpMethod' => 'GET',
260
+			  'parameters' => array(
261
+				'accountId' => array(
262
+				  'location' => 'path',
263
+				  'type' => 'string',
264
+				  'required' => true,
265
+				),
266
+				'containerId' => array(
267
+				  'location' => 'path',
268
+				  'type' => 'string',
269
+				  'required' => true,
270
+				),
271
+			  ),
272
+			),'update' => array(
273
+			  'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274
+			  'httpMethod' => 'PUT',
275
+			  'parameters' => array(
276
+				'accountId' => array(
277
+				  'location' => 'path',
278
+				  'type' => 'string',
279
+				  'required' => true,
280
+				),
281
+				'containerId' => array(
282
+				  'location' => 'path',
283
+				  'type' => 'string',
284
+				  'required' => true,
285
+				),
286
+				'macroId' => array(
287
+				  'location' => 'path',
288
+				  'type' => 'string',
289
+				  'required' => true,
290
+				),
291
+				'fingerprint' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'string',
294
+				),
295
+			  ),
296
+			),
297
+		  )
298
+		)
299
+	);
300
+	$this->accounts_containers_rules = new Google_Service_TagManager_AccountsContainersRules_Resource(
301
+		$this,
302
+		$this->serviceName,
303
+		'rules',
304
+		array(
305
+		  'methods' => array(
306
+			'create' => array(
307
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules',
308
+			  'httpMethod' => 'POST',
309
+			  'parameters' => array(
310
+				'accountId' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+				'containerId' => array(
316
+				  'location' => 'path',
317
+				  'type' => 'string',
318
+				  'required' => true,
319
+				),
320
+			  ),
321
+			),'delete' => array(
322
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323
+			  'httpMethod' => 'DELETE',
324
+			  'parameters' => array(
325
+				'accountId' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+				'containerId' => array(
331
+				  'location' => 'path',
332
+				  'type' => 'string',
333
+				  'required' => true,
334
+				),
335
+				'ruleId' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+			  ),
341
+			),'get' => array(
342
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343
+			  'httpMethod' => 'GET',
344
+			  'parameters' => array(
345
+				'accountId' => array(
346
+				  'location' => 'path',
347
+				  'type' => 'string',
348
+				  'required' => true,
349
+				),
350
+				'containerId' => array(
351
+				  'location' => 'path',
352
+				  'type' => 'string',
353
+				  'required' => true,
354
+				),
355
+				'ruleId' => array(
356
+				  'location' => 'path',
357
+				  'type' => 'string',
358
+				  'required' => true,
359
+				),
360
+			  ),
361
+			),'list' => array(
362
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363
+			  'httpMethod' => 'GET',
364
+			  'parameters' => array(
365
+				'accountId' => array(
366
+				  'location' => 'path',
367
+				  'type' => 'string',
368
+				  'required' => true,
369
+				),
370
+				'containerId' => array(
371
+				  'location' => 'path',
372
+				  'type' => 'string',
373
+				  'required' => true,
374
+				),
375
+			  ),
376
+			),'update' => array(
377
+			  'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378
+			  'httpMethod' => 'PUT',
379
+			  'parameters' => array(
380
+				'accountId' => array(
381
+				  'location' => 'path',
382
+				  'type' => 'string',
383
+				  'required' => true,
384
+				),
385
+				'containerId' => array(
386
+				  'location' => 'path',
387
+				  'type' => 'string',
388
+				  'required' => true,
389
+				),
390
+				'ruleId' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'fingerprint' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'string',
398
+				),
399
+			  ),
400
+			),
401
+		  )
402
+		)
403
+	);
404
+	$this->accounts_containers_tags = new Google_Service_TagManager_AccountsContainersTags_Resource(
405
+		$this,
406
+		$this->serviceName,
407
+		'tags',
408
+		array(
409
+		  'methods' => array(
410
+			'create' => array(
411
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags',
412
+			  'httpMethod' => 'POST',
413
+			  'parameters' => array(
414
+				'accountId' => array(
415
+				  'location' => 'path',
416
+				  'type' => 'string',
417
+				  'required' => true,
418
+				),
419
+				'containerId' => array(
420
+				  'location' => 'path',
421
+				  'type' => 'string',
422
+				  'required' => true,
423
+				),
424
+			  ),
425
+			),'delete' => array(
426
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427
+			  'httpMethod' => 'DELETE',
428
+			  'parameters' => array(
429
+				'accountId' => array(
430
+				  'location' => 'path',
431
+				  'type' => 'string',
432
+				  'required' => true,
433
+				),
434
+				'containerId' => array(
435
+				  'location' => 'path',
436
+				  'type' => 'string',
437
+				  'required' => true,
438
+				),
439
+				'tagId' => array(
440
+				  'location' => 'path',
441
+				  'type' => 'string',
442
+				  'required' => true,
443
+				),
444
+			  ),
445
+			),'get' => array(
446
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447
+			  'httpMethod' => 'GET',
448
+			  'parameters' => array(
449
+				'accountId' => array(
450
+				  'location' => 'path',
451
+				  'type' => 'string',
452
+				  'required' => true,
453
+				),
454
+				'containerId' => array(
455
+				  'location' => 'path',
456
+				  'type' => 'string',
457
+				  'required' => true,
458
+				),
459
+				'tagId' => array(
460
+				  'location' => 'path',
461
+				  'type' => 'string',
462
+				  'required' => true,
463
+				),
464
+			  ),
465
+			),'list' => array(
466
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467
+			  'httpMethod' => 'GET',
468
+			  'parameters' => array(
469
+				'accountId' => array(
470
+				  'location' => 'path',
471
+				  'type' => 'string',
472
+				  'required' => true,
473
+				),
474
+				'containerId' => array(
475
+				  'location' => 'path',
476
+				  'type' => 'string',
477
+				  'required' => true,
478
+				),
479
+			  ),
480
+			),'update' => array(
481
+			  'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482
+			  'httpMethod' => 'PUT',
483
+			  'parameters' => array(
484
+				'accountId' => array(
485
+				  'location' => 'path',
486
+				  'type' => 'string',
487
+				  'required' => true,
488
+				),
489
+				'containerId' => array(
490
+				  'location' => 'path',
491
+				  'type' => 'string',
492
+				  'required' => true,
493
+				),
494
+				'tagId' => array(
495
+				  'location' => 'path',
496
+				  'type' => 'string',
497
+				  'required' => true,
498
+				),
499
+				'fingerprint' => array(
500
+				  'location' => 'query',
501
+				  'type' => 'string',
502
+				),
503
+			  ),
504
+			),
505
+		  )
506
+		)
507
+	);
508
+	$this->accounts_containers_triggers = new Google_Service_TagManager_AccountsContainersTriggers_Resource(
509
+		$this,
510
+		$this->serviceName,
511
+		'triggers',
512
+		array(
513
+		  'methods' => array(
514
+			'create' => array(
515
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
516
+			  'httpMethod' => 'POST',
517
+			  'parameters' => array(
518
+				'accountId' => array(
519
+				  'location' => 'path',
520
+				  'type' => 'string',
521
+				  'required' => true,
522
+				),
523
+				'containerId' => array(
524
+				  'location' => 'path',
525
+				  'type' => 'string',
526
+				  'required' => true,
527
+				),
528
+			  ),
529
+			),'delete' => array(
530
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531
+			  'httpMethod' => 'DELETE',
532
+			  'parameters' => array(
533
+				'accountId' => array(
534
+				  'location' => 'path',
535
+				  'type' => 'string',
536
+				  'required' => true,
537
+				),
538
+				'containerId' => array(
539
+				  'location' => 'path',
540
+				  'type' => 'string',
541
+				  'required' => true,
542
+				),
543
+				'triggerId' => array(
544
+				  'location' => 'path',
545
+				  'type' => 'string',
546
+				  'required' => true,
547
+				),
548
+			  ),
549
+			),'get' => array(
550
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551
+			  'httpMethod' => 'GET',
552
+			  'parameters' => array(
553
+				'accountId' => array(
554
+				  'location' => 'path',
555
+				  'type' => 'string',
556
+				  'required' => true,
557
+				),
558
+				'containerId' => array(
559
+				  'location' => 'path',
560
+				  'type' => 'string',
561
+				  'required' => true,
562
+				),
563
+				'triggerId' => array(
564
+				  'location' => 'path',
565
+				  'type' => 'string',
566
+				  'required' => true,
567
+				),
568
+			  ),
569
+			),'list' => array(
570
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571
+			  'httpMethod' => 'GET',
572
+			  'parameters' => array(
573
+				'accountId' => array(
574
+				  'location' => 'path',
575
+				  'type' => 'string',
576
+				  'required' => true,
577
+				),
578
+				'containerId' => array(
579
+				  'location' => 'path',
580
+				  'type' => 'string',
581
+				  'required' => true,
582
+				),
583
+			  ),
584
+			),'update' => array(
585
+			  'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586
+			  'httpMethod' => 'PUT',
587
+			  'parameters' => array(
588
+				'accountId' => array(
589
+				  'location' => 'path',
590
+				  'type' => 'string',
591
+				  'required' => true,
592
+				),
593
+				'containerId' => array(
594
+				  'location' => 'path',
595
+				  'type' => 'string',
596
+				  'required' => true,
597
+				),
598
+				'triggerId' => array(
599
+				  'location' => 'path',
600
+				  'type' => 'string',
601
+				  'required' => true,
602
+				),
603
+				'fingerprint' => array(
604
+				  'location' => 'query',
605
+				  'type' => 'string',
606
+				),
607
+			  ),
608
+			),
609
+		  )
610
+		)
611
+	);
612
+	$this->accounts_containers_variables = new Google_Service_TagManager_AccountsContainersVariables_Resource(
613
+		$this,
614
+		$this->serviceName,
615
+		'variables',
616
+		array(
617
+		  'methods' => array(
618
+			'create' => array(
619
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables',
620
+			  'httpMethod' => 'POST',
621
+			  'parameters' => array(
622
+				'accountId' => array(
623
+				  'location' => 'path',
624
+				  'type' => 'string',
625
+				  'required' => true,
626
+				),
627
+				'containerId' => array(
628
+				  'location' => 'path',
629
+				  'type' => 'string',
630
+				  'required' => true,
631
+				),
632
+			  ),
633
+			),'delete' => array(
634
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635
+			  'httpMethod' => 'DELETE',
636
+			  'parameters' => array(
637
+				'accountId' => array(
638
+				  'location' => 'path',
639
+				  'type' => 'string',
640
+				  'required' => true,
641
+				),
642
+				'containerId' => array(
643
+				  'location' => 'path',
644
+				  'type' => 'string',
645
+				  'required' => true,
646
+				),
647
+				'variableId' => array(
648
+				  'location' => 'path',
649
+				  'type' => 'string',
650
+				  'required' => true,
651
+				),
652
+			  ),
653
+			),'get' => array(
654
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655
+			  'httpMethod' => 'GET',
656
+			  'parameters' => array(
657
+				'accountId' => array(
658
+				  'location' => 'path',
659
+				  'type' => 'string',
660
+				  'required' => true,
661
+				),
662
+				'containerId' => array(
663
+				  'location' => 'path',
664
+				  'type' => 'string',
665
+				  'required' => true,
666
+				),
667
+				'variableId' => array(
668
+				  'location' => 'path',
669
+				  'type' => 'string',
670
+				  'required' => true,
671
+				),
672
+			  ),
673
+			),'list' => array(
674
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables',
675
+			  'httpMethod' => 'GET',
676
+			  'parameters' => array(
677
+				'accountId' => array(
678
+				  'location' => 'path',
679
+				  'type' => 'string',
680
+				  'required' => true,
681
+				),
682
+				'containerId' => array(
683
+				  'location' => 'path',
684
+				  'type' => 'string',
685
+				  'required' => true,
686
+				),
687
+			  ),
688
+			),'update' => array(
689
+			  'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690
+			  'httpMethod' => 'PUT',
691
+			  'parameters' => array(
692
+				'accountId' => array(
693
+				  'location' => 'path',
694
+				  'type' => 'string',
695
+				  'required' => true,
696
+				),
697
+				'containerId' => array(
698
+				  'location' => 'path',
699
+				  'type' => 'string',
700
+				  'required' => true,
701
+				),
702
+				'variableId' => array(
703
+				  'location' => 'path',
704
+				  'type' => 'string',
705
+				  'required' => true,
706
+				),
707
+				'fingerprint' => array(
708
+				  'location' => 'query',
709
+				  'type' => 'string',
710
+				),
711
+			  ),
712
+			),
713
+		  )
714
+		)
715
+	);
716
+	$this->accounts_containers_versions = new Google_Service_TagManager_AccountsContainersVersions_Resource(
717
+		$this,
718
+		$this->serviceName,
719
+		'versions',
720
+		array(
721
+		  'methods' => array(
722
+			'create' => array(
723
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions',
724
+			  'httpMethod' => 'POST',
725
+			  'parameters' => array(
726
+				'accountId' => array(
727
+				  'location' => 'path',
728
+				  'type' => 'string',
729
+				  'required' => true,
730
+				),
731
+				'containerId' => array(
732
+				  'location' => 'path',
733
+				  'type' => 'string',
734
+				  'required' => true,
735
+				),
736
+			  ),
737
+			),'delete' => array(
738
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739
+			  'httpMethod' => 'DELETE',
740
+			  'parameters' => array(
741
+				'accountId' => array(
742
+				  'location' => 'path',
743
+				  'type' => 'string',
744
+				  'required' => true,
745
+				),
746
+				'containerId' => array(
747
+				  'location' => 'path',
748
+				  'type' => 'string',
749
+				  'required' => true,
750
+				),
751
+				'containerVersionId' => array(
752
+				  'location' => 'path',
753
+				  'type' => 'string',
754
+				  'required' => true,
755
+				),
756
+			  ),
757
+			),'get' => array(
758
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759
+			  'httpMethod' => 'GET',
760
+			  'parameters' => array(
761
+				'accountId' => array(
762
+				  'location' => 'path',
763
+				  'type' => 'string',
764
+				  'required' => true,
765
+				),
766
+				'containerId' => array(
767
+				  'location' => 'path',
768
+				  'type' => 'string',
769
+				  'required' => true,
770
+				),
771
+				'containerVersionId' => array(
772
+				  'location' => 'path',
773
+				  'type' => 'string',
774
+				  'required' => true,
775
+				),
776
+			  ),
777
+			),'list' => array(
778
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779
+			  'httpMethod' => 'GET',
780
+			  'parameters' => array(
781
+				'accountId' => array(
782
+				  'location' => 'path',
783
+				  'type' => 'string',
784
+				  'required' => true,
785
+				),
786
+				'containerId' => array(
787
+				  'location' => 'path',
788
+				  'type' => 'string',
789
+				  'required' => true,
790
+				),
791
+				'headers' => array(
792
+				  'location' => 'query',
793
+				  'type' => 'boolean',
794
+				),
795
+			  ),
796
+			),'publish' => array(
797
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798
+			  'httpMethod' => 'POST',
799
+			  'parameters' => array(
800
+				'accountId' => array(
801
+				  'location' => 'path',
802
+				  'type' => 'string',
803
+				  'required' => true,
804
+				),
805
+				'containerId' => array(
806
+				  'location' => 'path',
807
+				  'type' => 'string',
808
+				  'required' => true,
809
+				),
810
+				'containerVersionId' => array(
811
+				  'location' => 'path',
812
+				  'type' => 'string',
813
+				  'required' => true,
814
+				),
815
+				'fingerprint' => array(
816
+				  'location' => 'query',
817
+				  'type' => 'string',
818
+				),
819
+			  ),
820
+			),'restore' => array(
821
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822
+			  'httpMethod' => 'POST',
823
+			  'parameters' => array(
824
+				'accountId' => array(
825
+				  'location' => 'path',
826
+				  'type' => 'string',
827
+				  'required' => true,
828
+				),
829
+				'containerId' => array(
830
+				  'location' => 'path',
831
+				  'type' => 'string',
832
+				  'required' => true,
833
+				),
834
+				'containerVersionId' => array(
835
+				  'location' => 'path',
836
+				  'type' => 'string',
837
+				  'required' => true,
838
+				),
839
+			  ),
840
+			),'undelete' => array(
841
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842
+			  'httpMethod' => 'POST',
843
+			  'parameters' => array(
844
+				'accountId' => array(
845
+				  'location' => 'path',
846
+				  'type' => 'string',
847
+				  'required' => true,
848
+				),
849
+				'containerId' => array(
850
+				  'location' => 'path',
851
+				  'type' => 'string',
852
+				  'required' => true,
853
+				),
854
+				'containerVersionId' => array(
855
+				  'location' => 'path',
856
+				  'type' => 'string',
857
+				  'required' => true,
858
+				),
859
+			  ),
860
+			),'update' => array(
861
+			  'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862
+			  'httpMethod' => 'PUT',
863
+			  'parameters' => array(
864
+				'accountId' => array(
865
+				  'location' => 'path',
866
+				  'type' => 'string',
867
+				  'required' => true,
868
+				),
869
+				'containerId' => array(
870
+				  'location' => 'path',
871
+				  'type' => 'string',
872
+				  'required' => true,
873
+				),
874
+				'containerVersionId' => array(
875
+				  'location' => 'path',
876
+				  'type' => 'string',
877
+				  'required' => true,
878
+				),
879
+				'fingerprint' => array(
880
+				  'location' => 'query',
881
+				  'type' => 'string',
882
+				),
883
+			  ),
884
+			),
885
+		  )
886
+		)
887
+	);
888
+	$this->accounts_permissions = new Google_Service_TagManager_AccountsPermissions_Resource(
889
+		$this,
890
+		$this->serviceName,
891
+		'permissions',
892
+		array(
893
+		  'methods' => array(
894
+			'create' => array(
895
+			  'path' => 'accounts/{accountId}/permissions',
896
+			  'httpMethod' => 'POST',
897
+			  'parameters' => array(
898
+				'accountId' => array(
899
+				  'location' => 'path',
900
+				  'type' => 'string',
901
+				  'required' => true,
902
+				),
903
+			  ),
904
+			),'delete' => array(
905
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
906
+			  'httpMethod' => 'DELETE',
907
+			  'parameters' => array(
908
+				'accountId' => array(
909
+				  'location' => 'path',
910
+				  'type' => 'string',
911
+				  'required' => true,
912
+				),
913
+				'permissionId' => array(
914
+				  'location' => 'path',
915
+				  'type' => 'string',
916
+				  'required' => true,
917
+				),
918
+			  ),
919
+			),'get' => array(
920
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
921
+			  'httpMethod' => 'GET',
922
+			  'parameters' => array(
923
+				'accountId' => array(
924
+				  'location' => 'path',
925
+				  'type' => 'string',
926
+				  'required' => true,
927
+				),
928
+				'permissionId' => array(
929
+				  'location' => 'path',
930
+				  'type' => 'string',
931
+				  'required' => true,
932
+				),
933
+			  ),
934
+			),'list' => array(
935
+			  'path' => 'accounts/{accountId}/permissions',
936
+			  'httpMethod' => 'GET',
937
+			  'parameters' => array(
938
+				'accountId' => array(
939
+				  'location' => 'path',
940
+				  'type' => 'string',
941
+				  'required' => true,
942
+				),
943
+			  ),
944
+			),'update' => array(
945
+			  'path' => 'accounts/{accountId}/permissions/{permissionId}',
946
+			  'httpMethod' => 'PUT',
947
+			  'parameters' => array(
948
+				'accountId' => array(
949
+				  'location' => 'path',
950
+				  'type' => 'string',
951
+				  'required' => true,
952
+				),
953
+				'permissionId' => array(
954
+				  'location' => 'path',
955
+				  'type' => 'string',
956
+				  'required' => true,
957
+				),
958
+			  ),
959
+			),
960
+		  )
961
+		)
962
+	);
963 963
   }
964 964
 }
965 965
 
@@ -984,9 +984,9 @@  discard block
 block discarded – undo
984 984
    */
985 985
   public function get($accountId, $optParams = array())
986 986
   {
987
-    $params = array('accountId' => $accountId);
988
-    $params = array_merge($params, $optParams);
989
-    return $this->call('get', array($params), "Google_Service_TagManager_Account");
987
+	$params = array('accountId' => $accountId);
988
+	$params = array_merge($params, $optParams);
989
+	return $this->call('get', array($params), "Google_Service_TagManager_Account");
990 990
   }
991 991
 
992 992
   /**
@@ -997,9 +997,9 @@  discard block
 block discarded – undo
997 997
    */
998 998
   public function listAccounts($optParams = array())
999 999
   {
1000
-    $params = array();
1001
-    $params = array_merge($params, $optParams);
1002
-    return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse");
1000
+	$params = array();
1001
+	$params = array_merge($params, $optParams);
1002
+	return $this->call('list', array($params), "Google_Service_TagManager_ListAccountsResponse");
1003 1003
   }
1004 1004
 
1005 1005
   /**
@@ -1015,9 +1015,9 @@  discard block
 block discarded – undo
1015 1015
    */
1016 1016
   public function update($accountId, Google_Service_TagManager_Account $postBody, $optParams = array())
1017 1017
   {
1018
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1019
-    $params = array_merge($params, $optParams);
1020
-    return $this->call('update', array($params), "Google_Service_TagManager_Account");
1018
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1019
+	$params = array_merge($params, $optParams);
1020
+	return $this->call('update', array($params), "Google_Service_TagManager_Account");
1021 1021
   }
1022 1022
 }
1023 1023
 
@@ -1042,9 +1042,9 @@  discard block
 block discarded – undo
1042 1042
    */
1043 1043
   public function create($accountId, Google_Service_TagManager_Container $postBody, $optParams = array())
1044 1044
   {
1045
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1046
-    $params = array_merge($params, $optParams);
1047
-    return $this->call('create', array($params), "Google_Service_TagManager_Container");
1045
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1046
+	$params = array_merge($params, $optParams);
1047
+	return $this->call('create', array($params), "Google_Service_TagManager_Container");
1048 1048
   }
1049 1049
 
1050 1050
   /**
@@ -1056,9 +1056,9 @@  discard block
 block discarded – undo
1056 1056
    */
1057 1057
   public function delete($accountId, $containerId, $optParams = array())
1058 1058
   {
1059
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1060
-    $params = array_merge($params, $optParams);
1061
-    return $this->call('delete', array($params));
1059
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1060
+	$params = array_merge($params, $optParams);
1061
+	return $this->call('delete', array($params));
1062 1062
   }
1063 1063
 
1064 1064
   /**
@@ -1071,9 +1071,9 @@  discard block
 block discarded – undo
1071 1071
    */
1072 1072
   public function get($accountId, $containerId, $optParams = array())
1073 1073
   {
1074
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1075
-    $params = array_merge($params, $optParams);
1076
-    return $this->call('get', array($params), "Google_Service_TagManager_Container");
1074
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1075
+	$params = array_merge($params, $optParams);
1076
+	return $this->call('get', array($params), "Google_Service_TagManager_Container");
1077 1077
   }
1078 1078
 
1079 1079
   /**
@@ -1086,9 +1086,9 @@  discard block
 block discarded – undo
1086 1086
    */
1087 1087
   public function listAccountsContainers($accountId, $optParams = array())
1088 1088
   {
1089
-    $params = array('accountId' => $accountId);
1090
-    $params = array_merge($params, $optParams);
1091
-    return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse");
1089
+	$params = array('accountId' => $accountId);
1090
+	$params = array_merge($params, $optParams);
1091
+	return $this->call('list', array($params), "Google_Service_TagManager_ListContainersResponse");
1092 1092
   }
1093 1093
 
1094 1094
   /**
@@ -1105,9 +1105,9 @@  discard block
 block discarded – undo
1105 1105
    */
1106 1106
   public function update($accountId, $containerId, Google_Service_TagManager_Container $postBody, $optParams = array())
1107 1107
   {
1108
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1109
-    $params = array_merge($params, $optParams);
1110
-    return $this->call('update', array($params), "Google_Service_TagManager_Container");
1108
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1109
+	$params = array_merge($params, $optParams);
1110
+	return $this->call('update', array($params), "Google_Service_TagManager_Container");
1111 1111
   }
1112 1112
 }
1113 1113
 
@@ -1133,9 +1133,9 @@  discard block
 block discarded – undo
1133 1133
    */
1134 1134
   public function create($accountId, $containerId, Google_Service_TagManager_Macro $postBody, $optParams = array())
1135 1135
   {
1136
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1137
-    $params = array_merge($params, $optParams);
1138
-    return $this->call('create', array($params), "Google_Service_TagManager_Macro");
1136
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1137
+	$params = array_merge($params, $optParams);
1138
+	return $this->call('create', array($params), "Google_Service_TagManager_Macro");
1139 1139
   }
1140 1140
 
1141 1141
   /**
@@ -1148,9 +1148,9 @@  discard block
 block discarded – undo
1148 1148
    */
1149 1149
   public function delete($accountId, $containerId, $macroId, $optParams = array())
1150 1150
   {
1151
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1152
-    $params = array_merge($params, $optParams);
1153
-    return $this->call('delete', array($params));
1151
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1152
+	$params = array_merge($params, $optParams);
1153
+	return $this->call('delete', array($params));
1154 1154
   }
1155 1155
 
1156 1156
   /**
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
    */
1165 1165
   public function get($accountId, $containerId, $macroId, $optParams = array())
1166 1166
   {
1167
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1168
-    $params = array_merge($params, $optParams);
1169
-    return $this->call('get', array($params), "Google_Service_TagManager_Macro");
1167
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId);
1168
+	$params = array_merge($params, $optParams);
1169
+	return $this->call('get', array($params), "Google_Service_TagManager_Macro");
1170 1170
   }
1171 1171
 
1172 1172
   /**
@@ -1179,9 +1179,9 @@  discard block
 block discarded – undo
1179 1179
    */
1180 1180
   public function listAccountsContainersMacros($accountId, $containerId, $optParams = array())
1181 1181
   {
1182
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1183
-    $params = array_merge($params, $optParams);
1184
-    return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse");
1182
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1183
+	$params = array_merge($params, $optParams);
1184
+	return $this->call('list', array($params), "Google_Service_TagManager_ListMacrosResponse");
1185 1185
   }
1186 1186
 
1187 1187
   /**
@@ -1199,9 +1199,9 @@  discard block
 block discarded – undo
1199 1199
    */
1200 1200
   public function update($accountId, $containerId, $macroId, Google_Service_TagManager_Macro $postBody, $optParams = array())
1201 1201
   {
1202
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody);
1203
-    $params = array_merge($params, $optParams);
1204
-    return $this->call('update', array($params), "Google_Service_TagManager_Macro");
1202
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'macroId' => $macroId, 'postBody' => $postBody);
1203
+	$params = array_merge($params, $optParams);
1204
+	return $this->call('update', array($params), "Google_Service_TagManager_Macro");
1205 1205
   }
1206 1206
 }
1207 1207
 /**
@@ -1226,9 +1226,9 @@  discard block
 block discarded – undo
1226 1226
    */
1227 1227
   public function create($accountId, $containerId, Google_Service_TagManager_Rule $postBody, $optParams = array())
1228 1228
   {
1229
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1230
-    $params = array_merge($params, $optParams);
1231
-    return $this->call('create', array($params), "Google_Service_TagManager_Rule");
1229
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1230
+	$params = array_merge($params, $optParams);
1231
+	return $this->call('create', array($params), "Google_Service_TagManager_Rule");
1232 1232
   }
1233 1233
 
1234 1234
   /**
@@ -1241,9 +1241,9 @@  discard block
 block discarded – undo
1241 1241
    */
1242 1242
   public function delete($accountId, $containerId, $ruleId, $optParams = array())
1243 1243
   {
1244
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1245
-    $params = array_merge($params, $optParams);
1246
-    return $this->call('delete', array($params));
1244
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1245
+	$params = array_merge($params, $optParams);
1246
+	return $this->call('delete', array($params));
1247 1247
   }
1248 1248
 
1249 1249
   /**
@@ -1257,9 +1257,9 @@  discard block
 block discarded – undo
1257 1257
    */
1258 1258
   public function get($accountId, $containerId, $ruleId, $optParams = array())
1259 1259
   {
1260
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1261
-    $params = array_merge($params, $optParams);
1262
-    return $this->call('get', array($params), "Google_Service_TagManager_Rule");
1260
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId);
1261
+	$params = array_merge($params, $optParams);
1262
+	return $this->call('get', array($params), "Google_Service_TagManager_Rule");
1263 1263
   }
1264 1264
 
1265 1265
   /**
@@ -1272,9 +1272,9 @@  discard block
 block discarded – undo
1272 1272
    */
1273 1273
   public function listAccountsContainersRules($accountId, $containerId, $optParams = array())
1274 1274
   {
1275
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1276
-    $params = array_merge($params, $optParams);
1277
-    return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse");
1275
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1276
+	$params = array_merge($params, $optParams);
1277
+	return $this->call('list', array($params), "Google_Service_TagManager_ListRulesResponse");
1278 1278
   }
1279 1279
 
1280 1280
   /**
@@ -1292,9 +1292,9 @@  discard block
 block discarded – undo
1292 1292
    */
1293 1293
   public function update($accountId, $containerId, $ruleId, Google_Service_TagManager_Rule $postBody, $optParams = array())
1294 1294
   {
1295
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody);
1296
-    $params = array_merge($params, $optParams);
1297
-    return $this->call('update', array($params), "Google_Service_TagManager_Rule");
1295
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'ruleId' => $ruleId, 'postBody' => $postBody);
1296
+	$params = array_merge($params, $optParams);
1297
+	return $this->call('update', array($params), "Google_Service_TagManager_Rule");
1298 1298
   }
1299 1299
 }
1300 1300
 /**
@@ -1319,9 +1319,9 @@  discard block
 block discarded – undo
1319 1319
    */
1320 1320
   public function create($accountId, $containerId, Google_Service_TagManager_Tag $postBody, $optParams = array())
1321 1321
   {
1322
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1323
-    $params = array_merge($params, $optParams);
1324
-    return $this->call('create', array($params), "Google_Service_TagManager_Tag");
1322
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1323
+	$params = array_merge($params, $optParams);
1324
+	return $this->call('create', array($params), "Google_Service_TagManager_Tag");
1325 1325
   }
1326 1326
 
1327 1327
   /**
@@ -1334,9 +1334,9 @@  discard block
 block discarded – undo
1334 1334
    */
1335 1335
   public function delete($accountId, $containerId, $tagId, $optParams = array())
1336 1336
   {
1337
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1338
-    $params = array_merge($params, $optParams);
1339
-    return $this->call('delete', array($params));
1337
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1338
+	$params = array_merge($params, $optParams);
1339
+	return $this->call('delete', array($params));
1340 1340
   }
1341 1341
 
1342 1342
   /**
@@ -1350,9 +1350,9 @@  discard block
 block discarded – undo
1350 1350
    */
1351 1351
   public function get($accountId, $containerId, $tagId, $optParams = array())
1352 1352
   {
1353
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1354
-    $params = array_merge($params, $optParams);
1355
-    return $this->call('get', array($params), "Google_Service_TagManager_Tag");
1353
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId);
1354
+	$params = array_merge($params, $optParams);
1355
+	return $this->call('get', array($params), "Google_Service_TagManager_Tag");
1356 1356
   }
1357 1357
 
1358 1358
   /**
@@ -1365,9 +1365,9 @@  discard block
 block discarded – undo
1365 1365
    */
1366 1366
   public function listAccountsContainersTags($accountId, $containerId, $optParams = array())
1367 1367
   {
1368
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1369
-    $params = array_merge($params, $optParams);
1370
-    return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse");
1368
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1369
+	$params = array_merge($params, $optParams);
1370
+	return $this->call('list', array($params), "Google_Service_TagManager_ListTagsResponse");
1371 1371
   }
1372 1372
 
1373 1373
   /**
@@ -1385,9 +1385,9 @@  discard block
 block discarded – undo
1385 1385
    */
1386 1386
   public function update($accountId, $containerId, $tagId, Google_Service_TagManager_Tag $postBody, $optParams = array())
1387 1387
   {
1388
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody);
1389
-    $params = array_merge($params, $optParams);
1390
-    return $this->call('update', array($params), "Google_Service_TagManager_Tag");
1388
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'tagId' => $tagId, 'postBody' => $postBody);
1389
+	$params = array_merge($params, $optParams);
1390
+	return $this->call('update', array($params), "Google_Service_TagManager_Tag");
1391 1391
   }
1392 1392
 }
1393 1393
 /**
@@ -1412,9 +1412,9 @@  discard block
 block discarded – undo
1412 1412
    */
1413 1413
   public function create($accountId, $containerId, Google_Service_TagManager_Trigger $postBody, $optParams = array())
1414 1414
   {
1415
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1416
-    $params = array_merge($params, $optParams);
1417
-    return $this->call('create', array($params), "Google_Service_TagManager_Trigger");
1415
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1416
+	$params = array_merge($params, $optParams);
1417
+	return $this->call('create', array($params), "Google_Service_TagManager_Trigger");
1418 1418
   }
1419 1419
 
1420 1420
   /**
@@ -1427,9 +1427,9 @@  discard block
 block discarded – undo
1427 1427
    */
1428 1428
   public function delete($accountId, $containerId, $triggerId, $optParams = array())
1429 1429
   {
1430
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1431
-    $params = array_merge($params, $optParams);
1432
-    return $this->call('delete', array($params));
1430
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1431
+	$params = array_merge($params, $optParams);
1432
+	return $this->call('delete', array($params));
1433 1433
   }
1434 1434
 
1435 1435
   /**
@@ -1443,9 +1443,9 @@  discard block
 block discarded – undo
1443 1443
    */
1444 1444
   public function get($accountId, $containerId, $triggerId, $optParams = array())
1445 1445
   {
1446
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1447
-    $params = array_merge($params, $optParams);
1448
-    return $this->call('get', array($params), "Google_Service_TagManager_Trigger");
1446
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId);
1447
+	$params = array_merge($params, $optParams);
1448
+	return $this->call('get', array($params), "Google_Service_TagManager_Trigger");
1449 1449
   }
1450 1450
 
1451 1451
   /**
@@ -1459,9 +1459,9 @@  discard block
 block discarded – undo
1459 1459
    */
1460 1460
   public function listAccountsContainersTriggers($accountId, $containerId, $optParams = array())
1461 1461
   {
1462
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1463
-    $params = array_merge($params, $optParams);
1464
-    return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse");
1462
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1463
+	$params = array_merge($params, $optParams);
1464
+	return $this->call('list', array($params), "Google_Service_TagManager_ListTriggersResponse");
1465 1465
   }
1466 1466
 
1467 1467
   /**
@@ -1479,9 +1479,9 @@  discard block
 block discarded – undo
1479 1479
    */
1480 1480
   public function update($accountId, $containerId, $triggerId, Google_Service_TagManager_Trigger $postBody, $optParams = array())
1481 1481
   {
1482
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody);
1483
-    $params = array_merge($params, $optParams);
1484
-    return $this->call('update', array($params), "Google_Service_TagManager_Trigger");
1482
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'triggerId' => $triggerId, 'postBody' => $postBody);
1483
+	$params = array_merge($params, $optParams);
1484
+	return $this->call('update', array($params), "Google_Service_TagManager_Trigger");
1485 1485
   }
1486 1486
 }
1487 1487
 /**
@@ -1506,9 +1506,9 @@  discard block
 block discarded – undo
1506 1506
    */
1507 1507
   public function create($accountId, $containerId, Google_Service_TagManager_Variable $postBody, $optParams = array())
1508 1508
   {
1509
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1510
-    $params = array_merge($params, $optParams);
1511
-    return $this->call('create', array($params), "Google_Service_TagManager_Variable");
1509
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1510
+	$params = array_merge($params, $optParams);
1511
+	return $this->call('create', array($params), "Google_Service_TagManager_Variable");
1512 1512
   }
1513 1513
 
1514 1514
   /**
@@ -1521,9 +1521,9 @@  discard block
 block discarded – undo
1521 1521
    */
1522 1522
   public function delete($accountId, $containerId, $variableId, $optParams = array())
1523 1523
   {
1524
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1525
-    $params = array_merge($params, $optParams);
1526
-    return $this->call('delete', array($params));
1524
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1525
+	$params = array_merge($params, $optParams);
1526
+	return $this->call('delete', array($params));
1527 1527
   }
1528 1528
 
1529 1529
   /**
@@ -1537,9 +1537,9 @@  discard block
 block discarded – undo
1537 1537
    */
1538 1538
   public function get($accountId, $containerId, $variableId, $optParams = array())
1539 1539
   {
1540
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1541
-    $params = array_merge($params, $optParams);
1542
-    return $this->call('get', array($params), "Google_Service_TagManager_Variable");
1540
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId);
1541
+	$params = array_merge($params, $optParams);
1542
+	return $this->call('get', array($params), "Google_Service_TagManager_Variable");
1543 1543
   }
1544 1544
 
1545 1545
   /**
@@ -1553,9 +1553,9 @@  discard block
 block discarded – undo
1553 1553
    */
1554 1554
   public function listAccountsContainersVariables($accountId, $containerId, $optParams = array())
1555 1555
   {
1556
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1557
-    $params = array_merge($params, $optParams);
1558
-    return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse");
1556
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1557
+	$params = array_merge($params, $optParams);
1558
+	return $this->call('list', array($params), "Google_Service_TagManager_ListVariablesResponse");
1559 1559
   }
1560 1560
 
1561 1561
   /**
@@ -1573,9 +1573,9 @@  discard block
 block discarded – undo
1573 1573
    */
1574 1574
   public function update($accountId, $containerId, $variableId, Google_Service_TagManager_Variable $postBody, $optParams = array())
1575 1575
   {
1576
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody);
1577
-    $params = array_merge($params, $optParams);
1578
-    return $this->call('update', array($params), "Google_Service_TagManager_Variable");
1576
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'variableId' => $variableId, 'postBody' => $postBody);
1577
+	$params = array_merge($params, $optParams);
1578
+	return $this->call('update', array($params), "Google_Service_TagManager_Variable");
1579 1579
   }
1580 1580
 }
1581 1581
 /**
@@ -1600,9 +1600,9 @@  discard block
 block discarded – undo
1600 1600
    */
1601 1601
   public function create($accountId, $containerId, Google_Service_TagManager_CreateContainerVersionRequestVersionOptions $postBody, $optParams = array())
1602 1602
   {
1603
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1604
-    $params = array_merge($params, $optParams);
1605
-    return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse");
1603
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'postBody' => $postBody);
1604
+	$params = array_merge($params, $optParams);
1605
+	return $this->call('create', array($params), "Google_Service_TagManager_CreateContainerVersionResponse");
1606 1606
   }
1607 1607
 
1608 1608
   /**
@@ -1615,9 +1615,9 @@  discard block
 block discarded – undo
1615 1615
    */
1616 1616
   public function delete($accountId, $containerId, $containerVersionId, $optParams = array())
1617 1617
   {
1618
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1619
-    $params = array_merge($params, $optParams);
1620
-    return $this->call('delete', array($params));
1618
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1619
+	$params = array_merge($params, $optParams);
1620
+	return $this->call('delete', array($params));
1621 1621
   }
1622 1622
 
1623 1623
   /**
@@ -1632,9 +1632,9 @@  discard block
 block discarded – undo
1632 1632
    */
1633 1633
   public function get($accountId, $containerId, $containerVersionId, $optParams = array())
1634 1634
   {
1635
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1636
-    $params = array_merge($params, $optParams);
1637
-    return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion");
1635
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1636
+	$params = array_merge($params, $optParams);
1637
+	return $this->call('get', array($params), "Google_Service_TagManager_ContainerVersion");
1638 1638
   }
1639 1639
 
1640 1640
   /**
@@ -1650,9 +1650,9 @@  discard block
 block discarded – undo
1650 1650
    */
1651 1651
   public function listAccountsContainersVersions($accountId, $containerId, $optParams = array())
1652 1652
   {
1653
-    $params = array('accountId' => $accountId, 'containerId' => $containerId);
1654
-    $params = array_merge($params, $optParams);
1655
-    return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse");
1653
+	$params = array('accountId' => $accountId, 'containerId' => $containerId);
1654
+	$params = array_merge($params, $optParams);
1655
+	return $this->call('list', array($params), "Google_Service_TagManager_ListContainerVersionsResponse");
1656 1656
   }
1657 1657
 
1658 1658
   /**
@@ -1669,9 +1669,9 @@  discard block
 block discarded – undo
1669 1669
    */
1670 1670
   public function publish($accountId, $containerId, $containerVersionId, $optParams = array())
1671 1671
   {
1672
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1673
-    $params = array_merge($params, $optParams);
1674
-    return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse");
1672
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1673
+	$params = array_merge($params, $optParams);
1674
+	return $this->call('publish', array($params), "Google_Service_TagManager_PublishContainerVersionResponse");
1675 1675
   }
1676 1676
 
1677 1677
   /**
@@ -1688,9 +1688,9 @@  discard block
 block discarded – undo
1688 1688
    */
1689 1689
   public function restore($accountId, $containerId, $containerVersionId, $optParams = array())
1690 1690
   {
1691
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1692
-    $params = array_merge($params, $optParams);
1693
-    return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion");
1691
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1692
+	$params = array_merge($params, $optParams);
1693
+	return $this->call('restore', array($params), "Google_Service_TagManager_ContainerVersion");
1694 1694
   }
1695 1695
 
1696 1696
   /**
@@ -1704,9 +1704,9 @@  discard block
 block discarded – undo
1704 1704
    */
1705 1705
   public function undelete($accountId, $containerId, $containerVersionId, $optParams = array())
1706 1706
   {
1707
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1708
-    $params = array_merge($params, $optParams);
1709
-    return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion");
1707
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId);
1708
+	$params = array_merge($params, $optParams);
1709
+	return $this->call('undelete', array($params), "Google_Service_TagManager_ContainerVersion");
1710 1710
   }
1711 1711
 
1712 1712
   /**
@@ -1724,9 +1724,9 @@  discard block
 block discarded – undo
1724 1724
    */
1725 1725
   public function update($accountId, $containerId, $containerVersionId, Google_Service_TagManager_ContainerVersion $postBody, $optParams = array())
1726 1726
   {
1727
-    $params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody);
1728
-    $params = array_merge($params, $optParams);
1729
-    return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion");
1727
+	$params = array('accountId' => $accountId, 'containerId' => $containerId, 'containerVersionId' => $containerVersionId, 'postBody' => $postBody);
1728
+	$params = array_merge($params, $optParams);
1729
+	return $this->call('update', array($params), "Google_Service_TagManager_ContainerVersion");
1730 1730
   }
1731 1731
 }
1732 1732
 /**
@@ -1750,9 +1750,9 @@  discard block
 block discarded – undo
1750 1750
    */
1751 1751
   public function create($accountId, Google_Service_TagManager_UserAccess $postBody, $optParams = array())
1752 1752
   {
1753
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
1754
-    $params = array_merge($params, $optParams);
1755
-    return $this->call('create', array($params), "Google_Service_TagManager_UserAccess");
1753
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
1754
+	$params = array_merge($params, $optParams);
1755
+	return $this->call('create', array($params), "Google_Service_TagManager_UserAccess");
1756 1756
   }
1757 1757
 
1758 1758
   /**
@@ -1765,9 +1765,9 @@  discard block
 block discarded – undo
1765 1765
    */
1766 1766
   public function delete($accountId, $permissionId, $optParams = array())
1767 1767
   {
1768
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1769
-    $params = array_merge($params, $optParams);
1770
-    return $this->call('delete', array($params));
1768
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1769
+	$params = array_merge($params, $optParams);
1770
+	return $this->call('delete', array($params));
1771 1771
   }
1772 1772
 
1773 1773
   /**
@@ -1780,9 +1780,9 @@  discard block
 block discarded – undo
1780 1780
    */
1781 1781
   public function get($accountId, $permissionId, $optParams = array())
1782 1782
   {
1783
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1784
-    $params = array_merge($params, $optParams);
1785
-    return $this->call('get', array($params), "Google_Service_TagManager_UserAccess");
1783
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId);
1784
+	$params = array_merge($params, $optParams);
1785
+	return $this->call('get', array($params), "Google_Service_TagManager_UserAccess");
1786 1786
   }
1787 1787
 
1788 1788
   /**
@@ -1797,9 +1797,9 @@  discard block
 block discarded – undo
1797 1797
    */
1798 1798
   public function listAccountsPermissions($accountId, $optParams = array())
1799 1799
   {
1800
-    $params = array('accountId' => $accountId);
1801
-    $params = array_merge($params, $optParams);
1802
-    return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse");
1800
+	$params = array('accountId' => $accountId);
1801
+	$params = array_merge($params, $optParams);
1802
+	return $this->call('list', array($params), "Google_Service_TagManager_ListAccountUsersResponse");
1803 1803
   }
1804 1804
 
1805 1805
   /**
@@ -1813,9 +1813,9 @@  discard block
 block discarded – undo
1813 1813
    */
1814 1814
   public function update($accountId, $permissionId, Google_Service_TagManager_UserAccess $postBody, $optParams = array())
1815 1815
   {
1816
-    $params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody);
1817
-    $params = array_merge($params, $optParams);
1818
-    return $this->call('update', array($params), "Google_Service_TagManager_UserAccess");
1816
+	$params = array('accountId' => $accountId, 'permissionId' => $permissionId, 'postBody' => $postBody);
1817
+	$params = array_merge($params, $optParams);
1818
+	return $this->call('update', array($params), "Google_Service_TagManager_UserAccess");
1819 1819
   }
1820 1820
 }
1821 1821
 
@@ -1834,35 +1834,35 @@  discard block
 block discarded – undo
1834 1834
 
1835 1835
   public function setAccountId($accountId)
1836 1836
   {
1837
-    $this->accountId = $accountId;
1837
+	$this->accountId = $accountId;
1838 1838
   }
1839 1839
   public function getAccountId()
1840 1840
   {
1841
-    return $this->accountId;
1841
+	return $this->accountId;
1842 1842
   }
1843 1843
   public function setFingerprint($fingerprint)
1844 1844
   {
1845
-    $this->fingerprint = $fingerprint;
1845
+	$this->fingerprint = $fingerprint;
1846 1846
   }
1847 1847
   public function getFingerprint()
1848 1848
   {
1849
-    return $this->fingerprint;
1849
+	return $this->fingerprint;
1850 1850
   }
1851 1851
   public function setName($name)
1852 1852
   {
1853
-    $this->name = $name;
1853
+	$this->name = $name;
1854 1854
   }
1855 1855
   public function getName()
1856 1856
   {
1857
-    return $this->name;
1857
+	return $this->name;
1858 1858
   }
1859 1859
   public function setShareData($shareData)
1860 1860
   {
1861
-    $this->shareData = $shareData;
1861
+	$this->shareData = $shareData;
1862 1862
   }
1863 1863
   public function getShareData()
1864 1864
   {
1865
-    return $this->shareData;
1865
+	return $this->shareData;
1866 1866
   }
1867 1867
 }
1868 1868
 
@@ -1876,11 +1876,11 @@  discard block
 block discarded – undo
1876 1876
 
1877 1877
   public function setPermission($permission)
1878 1878
   {
1879
-    $this->permission = $permission;
1879
+	$this->permission = $permission;
1880 1880
   }
1881 1881
   public function getPermission()
1882 1882
   {
1883
-    return $this->permission;
1883
+	return $this->permission;
1884 1884
   }
1885 1885
 }
1886 1886
 
@@ -1896,19 +1896,19 @@  discard block
 block discarded – undo
1896 1896
 
1897 1897
   public function setParameter($parameter)
1898 1898
   {
1899
-    $this->parameter = $parameter;
1899
+	$this->parameter = $parameter;
1900 1900
   }
1901 1901
   public function getParameter()
1902 1902
   {
1903
-    return $this->parameter;
1903
+	return $this->parameter;
1904 1904
   }
1905 1905
   public function setType($type)
1906 1906
   {
1907
-    $this->type = $type;
1907
+	$this->type = $type;
1908 1908
   }
1909 1909
   public function getType()
1910 1910
   {
1911
-    return $this->type;
1911
+	return $this->type;
1912 1912
   }
1913 1913
 }
1914 1914
 
@@ -1932,91 +1932,91 @@  discard block
 block discarded – undo
1932 1932
 
1933 1933
   public function setAccountId($accountId)
1934 1934
   {
1935
-    $this->accountId = $accountId;
1935
+	$this->accountId = $accountId;
1936 1936
   }
1937 1937
   public function getAccountId()
1938 1938
   {
1939
-    return $this->accountId;
1939
+	return $this->accountId;
1940 1940
   }
1941 1941
   public function setContainerId($containerId)
1942 1942
   {
1943
-    $this->containerId = $containerId;
1943
+	$this->containerId = $containerId;
1944 1944
   }
1945 1945
   public function getContainerId()
1946 1946
   {
1947
-    return $this->containerId;
1947
+	return $this->containerId;
1948 1948
   }
1949 1949
   public function setDomainName($domainName)
1950 1950
   {
1951
-    $this->domainName = $domainName;
1951
+	$this->domainName = $domainName;
1952 1952
   }
1953 1953
   public function getDomainName()
1954 1954
   {
1955
-    return $this->domainName;
1955
+	return $this->domainName;
1956 1956
   }
1957 1957
   public function setEnabledBuiltInVariable($enabledBuiltInVariable)
1958 1958
   {
1959
-    $this->enabledBuiltInVariable = $enabledBuiltInVariable;
1959
+	$this->enabledBuiltInVariable = $enabledBuiltInVariable;
1960 1960
   }
1961 1961
   public function getEnabledBuiltInVariable()
1962 1962
   {
1963
-    return $this->enabledBuiltInVariable;
1963
+	return $this->enabledBuiltInVariable;
1964 1964
   }
1965 1965
   public function setFingerprint($fingerprint)
1966 1966
   {
1967
-    $this->fingerprint = $fingerprint;
1967
+	$this->fingerprint = $fingerprint;
1968 1968
   }
1969 1969
   public function getFingerprint()
1970 1970
   {
1971
-    return $this->fingerprint;
1971
+	return $this->fingerprint;
1972 1972
   }
1973 1973
   public function setName($name)
1974 1974
   {
1975
-    $this->name = $name;
1975
+	$this->name = $name;
1976 1976
   }
1977 1977
   public function getName()
1978 1978
   {
1979
-    return $this->name;
1979
+	return $this->name;
1980 1980
   }
1981 1981
   public function setNotes($notes)
1982 1982
   {
1983
-    $this->notes = $notes;
1983
+	$this->notes = $notes;
1984 1984
   }
1985 1985
   public function getNotes()
1986 1986
   {
1987
-    return $this->notes;
1987
+	return $this->notes;
1988 1988
   }
1989 1989
   public function setPublicId($publicId)
1990 1990
   {
1991
-    $this->publicId = $publicId;
1991
+	$this->publicId = $publicId;
1992 1992
   }
1993 1993
   public function getPublicId()
1994 1994
   {
1995
-    return $this->publicId;
1995
+	return $this->publicId;
1996 1996
   }
1997 1997
   public function setTimeZoneCountryId($timeZoneCountryId)
1998 1998
   {
1999
-    $this->timeZoneCountryId = $timeZoneCountryId;
1999
+	$this->timeZoneCountryId = $timeZoneCountryId;
2000 2000
   }
2001 2001
   public function getTimeZoneCountryId()
2002 2002
   {
2003
-    return $this->timeZoneCountryId;
2003
+	return $this->timeZoneCountryId;
2004 2004
   }
2005 2005
   public function setTimeZoneId($timeZoneId)
2006 2006
   {
2007
-    $this->timeZoneId = $timeZoneId;
2007
+	$this->timeZoneId = $timeZoneId;
2008 2008
   }
2009 2009
   public function getTimeZoneId()
2010 2010
   {
2011
-    return $this->timeZoneId;
2011
+	return $this->timeZoneId;
2012 2012
   }
2013 2013
   public function setUsageContext($usageContext)
2014 2014
   {
2015
-    $this->usageContext = $usageContext;
2015
+	$this->usageContext = $usageContext;
2016 2016
   }
2017 2017
   public function getUsageContext()
2018 2018
   {
2019
-    return $this->usageContext;
2019
+	return $this->usageContext;
2020 2020
   }
2021 2021
 }
2022 2022
 
@@ -2031,19 +2031,19 @@  discard block
 block discarded – undo
2031 2031
 
2032 2032
   public function setContainerId($containerId)
2033 2033
   {
2034
-    $this->containerId = $containerId;
2034
+	$this->containerId = $containerId;
2035 2035
   }
2036 2036
   public function getContainerId()
2037 2037
   {
2038
-    return $this->containerId;
2038
+	return $this->containerId;
2039 2039
   }
2040 2040
   public function setPermission($permission)
2041 2041
   {
2042
-    $this->permission = $permission;
2042
+	$this->permission = $permission;
2043 2043
   }
2044 2044
   public function getPermission()
2045 2045
   {
2046
-    return $this->permission;
2046
+	return $this->permission;
2047 2047
   }
2048 2048
 }
2049 2049
 
@@ -2075,107 +2075,107 @@  discard block
 block discarded – undo
2075 2075
 
2076 2076
   public function setAccountId($accountId)
2077 2077
   {
2078
-    $this->accountId = $accountId;
2078
+	$this->accountId = $accountId;
2079 2079
   }
2080 2080
   public function getAccountId()
2081 2081
   {
2082
-    return $this->accountId;
2082
+	return $this->accountId;
2083 2083
   }
2084 2084
   public function setContainer(Google_Service_TagManager_Container $container)
2085 2085
   {
2086
-    $this->container = $container;
2086
+	$this->container = $container;
2087 2087
   }
2088 2088
   public function getContainer()
2089 2089
   {
2090
-    return $this->container;
2090
+	return $this->container;
2091 2091
   }
2092 2092
   public function setContainerId($containerId)
2093 2093
   {
2094
-    $this->containerId = $containerId;
2094
+	$this->containerId = $containerId;
2095 2095
   }
2096 2096
   public function getContainerId()
2097 2097
   {
2098
-    return $this->containerId;
2098
+	return $this->containerId;
2099 2099
   }
2100 2100
   public function setContainerVersionId($containerVersionId)
2101 2101
   {
2102
-    $this->containerVersionId = $containerVersionId;
2102
+	$this->containerVersionId = $containerVersionId;
2103 2103
   }
2104 2104
   public function getContainerVersionId()
2105 2105
   {
2106
-    return $this->containerVersionId;
2106
+	return $this->containerVersionId;
2107 2107
   }
2108 2108
   public function setDeleted($deleted)
2109 2109
   {
2110
-    $this->deleted = $deleted;
2110
+	$this->deleted = $deleted;
2111 2111
   }
2112 2112
   public function getDeleted()
2113 2113
   {
2114
-    return $this->deleted;
2114
+	return $this->deleted;
2115 2115
   }
2116 2116
   public function setFingerprint($fingerprint)
2117 2117
   {
2118
-    $this->fingerprint = $fingerprint;
2118
+	$this->fingerprint = $fingerprint;
2119 2119
   }
2120 2120
   public function getFingerprint()
2121 2121
   {
2122
-    return $this->fingerprint;
2122
+	return $this->fingerprint;
2123 2123
   }
2124 2124
   public function setMacro($macro)
2125 2125
   {
2126
-    $this->macro = $macro;
2126
+	$this->macro = $macro;
2127 2127
   }
2128 2128
   public function getMacro()
2129 2129
   {
2130
-    return $this->macro;
2130
+	return $this->macro;
2131 2131
   }
2132 2132
   public function setName($name)
2133 2133
   {
2134
-    $this->name = $name;
2134
+	$this->name = $name;
2135 2135
   }
2136 2136
   public function getName()
2137 2137
   {
2138
-    return $this->name;
2138
+	return $this->name;
2139 2139
   }
2140 2140
   public function setNotes($notes)
2141 2141
   {
2142
-    $this->notes = $notes;
2142
+	$this->notes = $notes;
2143 2143
   }
2144 2144
   public function getNotes()
2145 2145
   {
2146
-    return $this->notes;
2146
+	return $this->notes;
2147 2147
   }
2148 2148
   public function setRule($rule)
2149 2149
   {
2150
-    $this->rule = $rule;
2150
+	$this->rule = $rule;
2151 2151
   }
2152 2152
   public function getRule()
2153 2153
   {
2154
-    return $this->rule;
2154
+	return $this->rule;
2155 2155
   }
2156 2156
   public function setTag($tag)
2157 2157
   {
2158
-    $this->tag = $tag;
2158
+	$this->tag = $tag;
2159 2159
   }
2160 2160
   public function getTag()
2161 2161
   {
2162
-    return $this->tag;
2162
+	return $this->tag;
2163 2163
   }
2164 2164
   public function setTrigger($trigger)
2165 2165
   {
2166
-    $this->trigger = $trigger;
2166
+	$this->trigger = $trigger;
2167 2167
   }
2168 2168
   public function getTrigger()
2169 2169
   {
2170
-    return $this->trigger;
2170
+	return $this->trigger;
2171 2171
   }
2172 2172
   public function setVariable($variable)
2173 2173
   {
2174
-    $this->variable = $variable;
2174
+	$this->variable = $variable;
2175 2175
   }
2176 2176
   public function getVariable()
2177 2177
   {
2178
-    return $this->variable;
2178
+	return $this->variable;
2179 2179
   }
2180 2180
 }
2181 2181
 
@@ -2197,83 +2197,83 @@  discard block
 block discarded – undo
2197 2197
 
2198 2198
   public function setAccountId($accountId)
2199 2199
   {
2200
-    $this->accountId = $accountId;
2200
+	$this->accountId = $accountId;
2201 2201
   }
2202 2202
   public function getAccountId()
2203 2203
   {
2204
-    return $this->accountId;
2204
+	return $this->accountId;
2205 2205
   }
2206 2206
   public function setContainerId($containerId)
2207 2207
   {
2208
-    $this->containerId = $containerId;
2208
+	$this->containerId = $containerId;
2209 2209
   }
2210 2210
   public function getContainerId()
2211 2211
   {
2212
-    return $this->containerId;
2212
+	return $this->containerId;
2213 2213
   }
2214 2214
   public function setContainerVersionId($containerVersionId)
2215 2215
   {
2216
-    $this->containerVersionId = $containerVersionId;
2216
+	$this->containerVersionId = $containerVersionId;
2217 2217
   }
2218 2218
   public function getContainerVersionId()
2219 2219
   {
2220
-    return $this->containerVersionId;
2220
+	return $this->containerVersionId;
2221 2221
   }
2222 2222
   public function setDeleted($deleted)
2223 2223
   {
2224
-    $this->deleted = $deleted;
2224
+	$this->deleted = $deleted;
2225 2225
   }
2226 2226
   public function getDeleted()
2227 2227
   {
2228
-    return $this->deleted;
2228
+	return $this->deleted;
2229 2229
   }
2230 2230
   public function setName($name)
2231 2231
   {
2232
-    $this->name = $name;
2232
+	$this->name = $name;
2233 2233
   }
2234 2234
   public function getName()
2235 2235
   {
2236
-    return $this->name;
2236
+	return $this->name;
2237 2237
   }
2238 2238
   public function setNumMacros($numMacros)
2239 2239
   {
2240
-    $this->numMacros = $numMacros;
2240
+	$this->numMacros = $numMacros;
2241 2241
   }
2242 2242
   public function getNumMacros()
2243 2243
   {
2244
-    return $this->numMacros;
2244
+	return $this->numMacros;
2245 2245
   }
2246 2246
   public function setNumRules($numRules)
2247 2247
   {
2248
-    $this->numRules = $numRules;
2248
+	$this->numRules = $numRules;
2249 2249
   }
2250 2250
   public function getNumRules()
2251 2251
   {
2252
-    return $this->numRules;
2252
+	return $this->numRules;
2253 2253
   }
2254 2254
   public function setNumTags($numTags)
2255 2255
   {
2256
-    $this->numTags = $numTags;
2256
+	$this->numTags = $numTags;
2257 2257
   }
2258 2258
   public function getNumTags()
2259 2259
   {
2260
-    return $this->numTags;
2260
+	return $this->numTags;
2261 2261
   }
2262 2262
   public function setNumTriggers($numTriggers)
2263 2263
   {
2264
-    $this->numTriggers = $numTriggers;
2264
+	$this->numTriggers = $numTriggers;
2265 2265
   }
2266 2266
   public function getNumTriggers()
2267 2267
   {
2268
-    return $this->numTriggers;
2268
+	return $this->numTriggers;
2269 2269
   }
2270 2270
   public function setNumVariables($numVariables)
2271 2271
   {
2272
-    $this->numVariables = $numVariables;
2272
+	$this->numVariables = $numVariables;
2273 2273
   }
2274 2274
   public function getNumVariables()
2275 2275
   {
2276
-    return $this->numVariables;
2276
+	return $this->numVariables;
2277 2277
   }
2278 2278
 }
2279 2279
 
@@ -2288,27 +2288,27 @@  discard block
 block discarded – undo
2288 2288
 
2289 2289
   public function setName($name)
2290 2290
   {
2291
-    $this->name = $name;
2291
+	$this->name = $name;
2292 2292
   }
2293 2293
   public function getName()
2294 2294
   {
2295
-    return $this->name;
2295
+	return $this->name;
2296 2296
   }
2297 2297
   public function setNotes($notes)
2298 2298
   {
2299
-    $this->notes = $notes;
2299
+	$this->notes = $notes;
2300 2300
   }
2301 2301
   public function getNotes()
2302 2302
   {
2303
-    return $this->notes;
2303
+	return $this->notes;
2304 2304
   }
2305 2305
   public function setQuickPreview($quickPreview)
2306 2306
   {
2307
-    $this->quickPreview = $quickPreview;
2307
+	$this->quickPreview = $quickPreview;
2308 2308
   }
2309 2309
   public function getQuickPreview()
2310 2310
   {
2311
-    return $this->quickPreview;
2311
+	return $this->quickPreview;
2312 2312
   }
2313 2313
 }
2314 2314
 
@@ -2323,19 +2323,19 @@  discard block
 block discarded – undo
2323 2323
 
2324 2324
   public function setCompilerError($compilerError)
2325 2325
   {
2326
-    $this->compilerError = $compilerError;
2326
+	$this->compilerError = $compilerError;
2327 2327
   }
2328 2328
   public function getCompilerError()
2329 2329
   {
2330
-    return $this->compilerError;
2330
+	return $this->compilerError;
2331 2331
   }
2332 2332
   public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion)
2333 2333
   {
2334
-    $this->containerVersion = $containerVersion;
2334
+	$this->containerVersion = $containerVersion;
2335 2335
   }
2336 2336
   public function getContainerVersion()
2337 2337
   {
2338
-    return $this->containerVersion;
2338
+	return $this->containerVersion;
2339 2339
   }
2340 2340
 }
2341 2341
 
@@ -2350,11 +2350,11 @@  discard block
 block discarded – undo
2350 2350
 
2351 2351
   public function setUserAccess($userAccess)
2352 2352
   {
2353
-    $this->userAccess = $userAccess;
2353
+	$this->userAccess = $userAccess;
2354 2354
   }
2355 2355
   public function getUserAccess()
2356 2356
   {
2357
-    return $this->userAccess;
2357
+	return $this->userAccess;
2358 2358
   }
2359 2359
 }
2360 2360
 
@@ -2369,11 +2369,11 @@  discard block
 block discarded – undo
2369 2369
 
2370 2370
   public function setAccounts($accounts)
2371 2371
   {
2372
-    $this->accounts = $accounts;
2372
+	$this->accounts = $accounts;
2373 2373
   }
2374 2374
   public function getAccounts()
2375 2375
   {
2376
-    return $this->accounts;
2376
+	return $this->accounts;
2377 2377
   }
2378 2378
 }
2379 2379
 
@@ -2390,19 +2390,19 @@  discard block
 block discarded – undo
2390 2390
 
2391 2391
   public function setContainerVersion($containerVersion)
2392 2392
   {
2393
-    $this->containerVersion = $containerVersion;
2393
+	$this->containerVersion = $containerVersion;
2394 2394
   }
2395 2395
   public function getContainerVersion()
2396 2396
   {
2397
-    return $this->containerVersion;
2397
+	return $this->containerVersion;
2398 2398
   }
2399 2399
   public function setContainerVersionHeader($containerVersionHeader)
2400 2400
   {
2401
-    $this->containerVersionHeader = $containerVersionHeader;
2401
+	$this->containerVersionHeader = $containerVersionHeader;
2402 2402
   }
2403 2403
   public function getContainerVersionHeader()
2404 2404
   {
2405
-    return $this->containerVersionHeader;
2405
+	return $this->containerVersionHeader;
2406 2406
   }
2407 2407
 }
2408 2408
 
@@ -2417,11 +2417,11 @@  discard block
 block discarded – undo
2417 2417
 
2418 2418
   public function setContainers($containers)
2419 2419
   {
2420
-    $this->containers = $containers;
2420
+	$this->containers = $containers;
2421 2421
   }
2422 2422
   public function getContainers()
2423 2423
   {
2424
-    return $this->containers;
2424
+	return $this->containers;
2425 2425
   }
2426 2426
 }
2427 2427
 
@@ -2436,11 +2436,11 @@  discard block
 block discarded – undo
2436 2436
 
2437 2437
   public function setMacros($macros)
2438 2438
   {
2439
-    $this->macros = $macros;
2439
+	$this->macros = $macros;
2440 2440
   }
2441 2441
   public function getMacros()
2442 2442
   {
2443
-    return $this->macros;
2443
+	return $this->macros;
2444 2444
   }
2445 2445
 }
2446 2446
 
@@ -2455,11 +2455,11 @@  discard block
 block discarded – undo
2455 2455
 
2456 2456
   public function setRules($rules)
2457 2457
   {
2458
-    $this->rules = $rules;
2458
+	$this->rules = $rules;
2459 2459
   }
2460 2460
   public function getRules()
2461 2461
   {
2462
-    return $this->rules;
2462
+	return $this->rules;
2463 2463
   }
2464 2464
 }
2465 2465
 
@@ -2474,11 +2474,11 @@  discard block
 block discarded – undo
2474 2474
 
2475 2475
   public function setTags($tags)
2476 2476
   {
2477
-    $this->tags = $tags;
2477
+	$this->tags = $tags;
2478 2478
   }
2479 2479
   public function getTags()
2480 2480
   {
2481
-    return $this->tags;
2481
+	return $this->tags;
2482 2482
   }
2483 2483
 }
2484 2484
 
@@ -2493,11 +2493,11 @@  discard block
 block discarded – undo
2493 2493
 
2494 2494
   public function setTriggers($triggers)
2495 2495
   {
2496
-    $this->triggers = $triggers;
2496
+	$this->triggers = $triggers;
2497 2497
   }
2498 2498
   public function getTriggers()
2499 2499
   {
2500
-    return $this->triggers;
2500
+	return $this->triggers;
2501 2501
   }
2502 2502
 }
2503 2503
 
@@ -2512,11 +2512,11 @@  discard block
 block discarded – undo
2512 2512
 
2513 2513
   public function setVariables($variables)
2514 2514
   {
2515
-    $this->variables = $variables;
2515
+	$this->variables = $variables;
2516 2516
   }
2517 2517
   public function getVariables()
2518 2518
   {
2519
-    return $this->variables;
2519
+	return $this->variables;
2520 2520
   }
2521 2521
 }
2522 2522
 
@@ -2542,99 +2542,99 @@  discard block
 block discarded – undo
2542 2542
 
2543 2543
   public function setAccountId($accountId)
2544 2544
   {
2545
-    $this->accountId = $accountId;
2545
+	$this->accountId = $accountId;
2546 2546
   }
2547 2547
   public function getAccountId()
2548 2548
   {
2549
-    return $this->accountId;
2549
+	return $this->accountId;
2550 2550
   }
2551 2551
   public function setContainerId($containerId)
2552 2552
   {
2553
-    $this->containerId = $containerId;
2553
+	$this->containerId = $containerId;
2554 2554
   }
2555 2555
   public function getContainerId()
2556 2556
   {
2557
-    return $this->containerId;
2557
+	return $this->containerId;
2558 2558
   }
2559 2559
   public function setDisablingRuleId($disablingRuleId)
2560 2560
   {
2561
-    $this->disablingRuleId = $disablingRuleId;
2561
+	$this->disablingRuleId = $disablingRuleId;
2562 2562
   }
2563 2563
   public function getDisablingRuleId()
2564 2564
   {
2565
-    return $this->disablingRuleId;
2565
+	return $this->disablingRuleId;
2566 2566
   }
2567 2567
   public function setEnablingRuleId($enablingRuleId)
2568 2568
   {
2569
-    $this->enablingRuleId = $enablingRuleId;
2569
+	$this->enablingRuleId = $enablingRuleId;
2570 2570
   }
2571 2571
   public function getEnablingRuleId()
2572 2572
   {
2573
-    return $this->enablingRuleId;
2573
+	return $this->enablingRuleId;
2574 2574
   }
2575 2575
   public function setFingerprint($fingerprint)
2576 2576
   {
2577
-    $this->fingerprint = $fingerprint;
2577
+	$this->fingerprint = $fingerprint;
2578 2578
   }
2579 2579
   public function getFingerprint()
2580 2580
   {
2581
-    return $this->fingerprint;
2581
+	return $this->fingerprint;
2582 2582
   }
2583 2583
   public function setMacroId($macroId)
2584 2584
   {
2585
-    $this->macroId = $macroId;
2585
+	$this->macroId = $macroId;
2586 2586
   }
2587 2587
   public function getMacroId()
2588 2588
   {
2589
-    return $this->macroId;
2589
+	return $this->macroId;
2590 2590
   }
2591 2591
   public function setName($name)
2592 2592
   {
2593
-    $this->name = $name;
2593
+	$this->name = $name;
2594 2594
   }
2595 2595
   public function getName()
2596 2596
   {
2597
-    return $this->name;
2597
+	return $this->name;
2598 2598
   }
2599 2599
   public function setNotes($notes)
2600 2600
   {
2601
-    $this->notes = $notes;
2601
+	$this->notes = $notes;
2602 2602
   }
2603 2603
   public function getNotes()
2604 2604
   {
2605
-    return $this->notes;
2605
+	return $this->notes;
2606 2606
   }
2607 2607
   public function setParameter($parameter)
2608 2608
   {
2609
-    $this->parameter = $parameter;
2609
+	$this->parameter = $parameter;
2610 2610
   }
2611 2611
   public function getParameter()
2612 2612
   {
2613
-    return $this->parameter;
2613
+	return $this->parameter;
2614 2614
   }
2615 2615
   public function setScheduleEndMs($scheduleEndMs)
2616 2616
   {
2617
-    $this->scheduleEndMs = $scheduleEndMs;
2617
+	$this->scheduleEndMs = $scheduleEndMs;
2618 2618
   }
2619 2619
   public function getScheduleEndMs()
2620 2620
   {
2621
-    return $this->scheduleEndMs;
2621
+	return $this->scheduleEndMs;
2622 2622
   }
2623 2623
   public function setScheduleStartMs($scheduleStartMs)
2624 2624
   {
2625
-    $this->scheduleStartMs = $scheduleStartMs;
2625
+	$this->scheduleStartMs = $scheduleStartMs;
2626 2626
   }
2627 2627
   public function getScheduleStartMs()
2628 2628
   {
2629
-    return $this->scheduleStartMs;
2629
+	return $this->scheduleStartMs;
2630 2630
   }
2631 2631
   public function setType($type)
2632 2632
   {
2633
-    $this->type = $type;
2633
+	$this->type = $type;
2634 2634
   }
2635 2635
   public function getType()
2636 2636
   {
2637
-    return $this->type;
2637
+	return $this->type;
2638 2638
   }
2639 2639
 }
2640 2640
 
@@ -2654,43 +2654,43 @@  discard block
 block discarded – undo
2654 2654
 
2655 2655
   public function setKey($key)
2656 2656
   {
2657
-    $this->key = $key;
2657
+	$this->key = $key;
2658 2658
   }
2659 2659
   public function getKey()
2660 2660
   {
2661
-    return $this->key;
2661
+	return $this->key;
2662 2662
   }
2663 2663
   public function setList($list)
2664 2664
   {
2665
-    $this->list = $list;
2665
+	$this->list = $list;
2666 2666
   }
2667 2667
   public function getList()
2668 2668
   {
2669
-    return $this->list;
2669
+	return $this->list;
2670 2670
   }
2671 2671
   public function setMap($map)
2672 2672
   {
2673
-    $this->map = $map;
2673
+	$this->map = $map;
2674 2674
   }
2675 2675
   public function getMap()
2676 2676
   {
2677
-    return $this->map;
2677
+	return $this->map;
2678 2678
   }
2679 2679
   public function setType($type)
2680 2680
   {
2681
-    $this->type = $type;
2681
+	$this->type = $type;
2682 2682
   }
2683 2683
   public function getType()
2684 2684
   {
2685
-    return $this->type;
2685
+	return $this->type;
2686 2686
   }
2687 2687
   public function setValue($value)
2688 2688
   {
2689
-    $this->value = $value;
2689
+	$this->value = $value;
2690 2690
   }
2691 2691
   public function getValue()
2692 2692
   {
2693
-    return $this->value;
2693
+	return $this->value;
2694 2694
   }
2695 2695
 }
2696 2696
 
@@ -2705,19 +2705,19 @@  discard block
 block discarded – undo
2705 2705
 
2706 2706
   public function setCompilerError($compilerError)
2707 2707
   {
2708
-    $this->compilerError = $compilerError;
2708
+	$this->compilerError = $compilerError;
2709 2709
   }
2710 2710
   public function getCompilerError()
2711 2711
   {
2712
-    return $this->compilerError;
2712
+	return $this->compilerError;
2713 2713
   }
2714 2714
   public function setContainerVersion(Google_Service_TagManager_ContainerVersion $containerVersion)
2715 2715
   {
2716
-    $this->containerVersion = $containerVersion;
2716
+	$this->containerVersion = $containerVersion;
2717 2717
   }
2718 2718
   public function getContainerVersion()
2719 2719
   {
2720
-    return $this->containerVersion;
2720
+	return $this->containerVersion;
2721 2721
   }
2722 2722
 }
2723 2723
 
@@ -2738,59 +2738,59 @@  discard block
 block discarded – undo
2738 2738
 
2739 2739
   public function setAccountId($accountId)
2740 2740
   {
2741
-    $this->accountId = $accountId;
2741
+	$this->accountId = $accountId;
2742 2742
   }
2743 2743
   public function getAccountId()
2744 2744
   {
2745
-    return $this->accountId;
2745
+	return $this->accountId;
2746 2746
   }
2747 2747
   public function setCondition($condition)
2748 2748
   {
2749
-    $this->condition = $condition;
2749
+	$this->condition = $condition;
2750 2750
   }
2751 2751
   public function getCondition()
2752 2752
   {
2753
-    return $this->condition;
2753
+	return $this->condition;
2754 2754
   }
2755 2755
   public function setContainerId($containerId)
2756 2756
   {
2757
-    $this->containerId = $containerId;
2757
+	$this->containerId = $containerId;
2758 2758
   }
2759 2759
   public function getContainerId()
2760 2760
   {
2761
-    return $this->containerId;
2761
+	return $this->containerId;
2762 2762
   }
2763 2763
   public function setFingerprint($fingerprint)
2764 2764
   {
2765
-    $this->fingerprint = $fingerprint;
2765
+	$this->fingerprint = $fingerprint;
2766 2766
   }
2767 2767
   public function getFingerprint()
2768 2768
   {
2769
-    return $this->fingerprint;
2769
+	return $this->fingerprint;
2770 2770
   }
2771 2771
   public function setName($name)
2772 2772
   {
2773
-    $this->name = $name;
2773
+	$this->name = $name;
2774 2774
   }
2775 2775
   public function getName()
2776 2776
   {
2777
-    return $this->name;
2777
+	return $this->name;
2778 2778
   }
2779 2779
   public function setNotes($notes)
2780 2780
   {
2781
-    $this->notes = $notes;
2781
+	$this->notes = $notes;
2782 2782
   }
2783 2783
   public function getNotes()
2784 2784
   {
2785
-    return $this->notes;
2785
+	return $this->notes;
2786 2786
   }
2787 2787
   public function setRuleId($ruleId)
2788 2788
   {
2789
-    $this->ruleId = $ruleId;
2789
+	$this->ruleId = $ruleId;
2790 2790
   }
2791 2791
   public function getRuleId()
2792 2792
   {
2793
-    return $this->ruleId;
2793
+	return $this->ruleId;
2794 2794
   }
2795 2795
 }
2796 2796
 
@@ -2821,131 +2821,131 @@  discard block
 block discarded – undo
2821 2821
 
2822 2822
   public function setAccountId($accountId)
2823 2823
   {
2824
-    $this->accountId = $accountId;
2824
+	$this->accountId = $accountId;
2825 2825
   }
2826 2826
   public function getAccountId()
2827 2827
   {
2828
-    return $this->accountId;
2828
+	return $this->accountId;
2829 2829
   }
2830 2830
   public function setBlockingRuleId($blockingRuleId)
2831 2831
   {
2832
-    $this->blockingRuleId = $blockingRuleId;
2832
+	$this->blockingRuleId = $blockingRuleId;
2833 2833
   }
2834 2834
   public function getBlockingRuleId()
2835 2835
   {
2836
-    return $this->blockingRuleId;
2836
+	return $this->blockingRuleId;
2837 2837
   }
2838 2838
   public function setBlockingTriggerId($blockingTriggerId)
2839 2839
   {
2840
-    $this->blockingTriggerId = $blockingTriggerId;
2840
+	$this->blockingTriggerId = $blockingTriggerId;
2841 2841
   }
2842 2842
   public function getBlockingTriggerId()
2843 2843
   {
2844
-    return $this->blockingTriggerId;
2844
+	return $this->blockingTriggerId;
2845 2845
   }
2846 2846
   public function setContainerId($containerId)
2847 2847
   {
2848
-    $this->containerId = $containerId;
2848
+	$this->containerId = $containerId;
2849 2849
   }
2850 2850
   public function getContainerId()
2851 2851
   {
2852
-    return $this->containerId;
2852
+	return $this->containerId;
2853 2853
   }
2854 2854
   public function setFingerprint($fingerprint)
2855 2855
   {
2856
-    $this->fingerprint = $fingerprint;
2856
+	$this->fingerprint = $fingerprint;
2857 2857
   }
2858 2858
   public function getFingerprint()
2859 2859
   {
2860
-    return $this->fingerprint;
2860
+	return $this->fingerprint;
2861 2861
   }
2862 2862
   public function setFiringRuleId($firingRuleId)
2863 2863
   {
2864
-    $this->firingRuleId = $firingRuleId;
2864
+	$this->firingRuleId = $firingRuleId;
2865 2865
   }
2866 2866
   public function getFiringRuleId()
2867 2867
   {
2868
-    return $this->firingRuleId;
2868
+	return $this->firingRuleId;
2869 2869
   }
2870 2870
   public function setFiringTriggerId($firingTriggerId)
2871 2871
   {
2872
-    $this->firingTriggerId = $firingTriggerId;
2872
+	$this->firingTriggerId = $firingTriggerId;
2873 2873
   }
2874 2874
   public function getFiringTriggerId()
2875 2875
   {
2876
-    return $this->firingTriggerId;
2876
+	return $this->firingTriggerId;
2877 2877
   }
2878 2878
   public function setLiveOnly($liveOnly)
2879 2879
   {
2880
-    $this->liveOnly = $liveOnly;
2880
+	$this->liveOnly = $liveOnly;
2881 2881
   }
2882 2882
   public function getLiveOnly()
2883 2883
   {
2884
-    return $this->liveOnly;
2884
+	return $this->liveOnly;
2885 2885
   }
2886 2886
   public function setName($name)
2887 2887
   {
2888
-    $this->name = $name;
2888
+	$this->name = $name;
2889 2889
   }
2890 2890
   public function getName()
2891 2891
   {
2892
-    return $this->name;
2892
+	return $this->name;
2893 2893
   }
2894 2894
   public function setNotes($notes)
2895 2895
   {
2896
-    $this->notes = $notes;
2896
+	$this->notes = $notes;
2897 2897
   }
2898 2898
   public function getNotes()
2899 2899
   {
2900
-    return $this->notes;
2900
+	return $this->notes;
2901 2901
   }
2902 2902
   public function setParameter($parameter)
2903 2903
   {
2904
-    $this->parameter = $parameter;
2904
+	$this->parameter = $parameter;
2905 2905
   }
2906 2906
   public function getParameter()
2907 2907
   {
2908
-    return $this->parameter;
2908
+	return $this->parameter;
2909 2909
   }
2910 2910
   public function setPriority(Google_Service_TagManager_Parameter $priority)
2911 2911
   {
2912
-    $this->priority = $priority;
2912
+	$this->priority = $priority;
2913 2913
   }
2914 2914
   public function getPriority()
2915 2915
   {
2916
-    return $this->priority;
2916
+	return $this->priority;
2917 2917
   }
2918 2918
   public function setScheduleEndMs($scheduleEndMs)
2919 2919
   {
2920
-    $this->scheduleEndMs = $scheduleEndMs;
2920
+	$this->scheduleEndMs = $scheduleEndMs;
2921 2921
   }
2922 2922
   public function getScheduleEndMs()
2923 2923
   {
2924
-    return $this->scheduleEndMs;
2924
+	return $this->scheduleEndMs;
2925 2925
   }
2926 2926
   public function setScheduleStartMs($scheduleStartMs)
2927 2927
   {
2928
-    $this->scheduleStartMs = $scheduleStartMs;
2928
+	$this->scheduleStartMs = $scheduleStartMs;
2929 2929
   }
2930 2930
   public function getScheduleStartMs()
2931 2931
   {
2932
-    return $this->scheduleStartMs;
2932
+	return $this->scheduleStartMs;
2933 2933
   }
2934 2934
   public function setTagId($tagId)
2935 2935
   {
2936
-    $this->tagId = $tagId;
2936
+	$this->tagId = $tagId;
2937 2937
   }
2938 2938
   public function getTagId()
2939 2939
   {
2940
-    return $this->tagId;
2940
+	return $this->tagId;
2941 2941
   }
2942 2942
   public function setType($type)
2943 2943
   {
2944
-    $this->type = $type;
2944
+	$this->type = $type;
2945 2945
   }
2946 2946
   public function getType()
2947 2947
   {
2948
-    return $this->type;
2948
+	return $this->type;
2949 2949
   }
2950 2950
 }
2951 2951
 
@@ -2988,147 +2988,147 @@  discard block
 block discarded – undo
2988 2988
 
2989 2989
   public function setAccountId($accountId)
2990 2990
   {
2991
-    $this->accountId = $accountId;
2991
+	$this->accountId = $accountId;
2992 2992
   }
2993 2993
   public function getAccountId()
2994 2994
   {
2995
-    return $this->accountId;
2995
+	return $this->accountId;
2996 2996
   }
2997 2997
   public function setAutoEventFilter($autoEventFilter)
2998 2998
   {
2999
-    $this->autoEventFilter = $autoEventFilter;
2999
+	$this->autoEventFilter = $autoEventFilter;
3000 3000
   }
3001 3001
   public function getAutoEventFilter()
3002 3002
   {
3003
-    return $this->autoEventFilter;
3003
+	return $this->autoEventFilter;
3004 3004
   }
3005 3005
   public function setCheckValidation(Google_Service_TagManager_Parameter $checkValidation)
3006 3006
   {
3007
-    $this->checkValidation = $checkValidation;
3007
+	$this->checkValidation = $checkValidation;
3008 3008
   }
3009 3009
   public function getCheckValidation()
3010 3010
   {
3011
-    return $this->checkValidation;
3011
+	return $this->checkValidation;
3012 3012
   }
3013 3013
   public function setContainerId($containerId)
3014 3014
   {
3015
-    $this->containerId = $containerId;
3015
+	$this->containerId = $containerId;
3016 3016
   }
3017 3017
   public function getContainerId()
3018 3018
   {
3019
-    return $this->containerId;
3019
+	return $this->containerId;
3020 3020
   }
3021 3021
   public function setCustomEventFilter($customEventFilter)
3022 3022
   {
3023
-    $this->customEventFilter = $customEventFilter;
3023
+	$this->customEventFilter = $customEventFilter;
3024 3024
   }
3025 3025
   public function getCustomEventFilter()
3026 3026
   {
3027
-    return $this->customEventFilter;
3027
+	return $this->customEventFilter;
3028 3028
   }
3029 3029
   public function setEnableAllVideos(Google_Service_TagManager_Parameter $enableAllVideos)
3030 3030
   {
3031
-    $this->enableAllVideos = $enableAllVideos;
3031
+	$this->enableAllVideos = $enableAllVideos;
3032 3032
   }
3033 3033
   public function getEnableAllVideos()
3034 3034
   {
3035
-    return $this->enableAllVideos;
3035
+	return $this->enableAllVideos;
3036 3036
   }
3037 3037
   public function setEventName(Google_Service_TagManager_Parameter $eventName)
3038 3038
   {
3039
-    $this->eventName = $eventName;
3039
+	$this->eventName = $eventName;
3040 3040
   }
3041 3041
   public function getEventName()
3042 3042
   {
3043
-    return $this->eventName;
3043
+	return $this->eventName;
3044 3044
   }
3045 3045
   public function setFilter($filter)
3046 3046
   {
3047
-    $this->filter = $filter;
3047
+	$this->filter = $filter;
3048 3048
   }
3049 3049
   public function getFilter()
3050 3050
   {
3051
-    return $this->filter;
3051
+	return $this->filter;
3052 3052
   }
3053 3053
   public function setFingerprint($fingerprint)
3054 3054
   {
3055
-    $this->fingerprint = $fingerprint;
3055
+	$this->fingerprint = $fingerprint;
3056 3056
   }
3057 3057
   public function getFingerprint()
3058 3058
   {
3059
-    return $this->fingerprint;
3059
+	return $this->fingerprint;
3060 3060
   }
3061 3061
   public function setInterval(Google_Service_TagManager_Parameter $interval)
3062 3062
   {
3063
-    $this->interval = $interval;
3063
+	$this->interval = $interval;
3064 3064
   }
3065 3065
   public function getInterval()
3066 3066
   {
3067
-    return $this->interval;
3067
+	return $this->interval;
3068 3068
   }
3069 3069
   public function setLimit(Google_Service_TagManager_Parameter $limit)
3070 3070
   {
3071
-    $this->limit = $limit;
3071
+	$this->limit = $limit;
3072 3072
   }
3073 3073
   public function getLimit()
3074 3074
   {
3075
-    return $this->limit;
3075
+	return $this->limit;
3076 3076
   }
3077 3077
   public function setName($name)
3078 3078
   {
3079
-    $this->name = $name;
3079
+	$this->name = $name;
3080 3080
   }
3081 3081
   public function getName()
3082 3082
   {
3083
-    return $this->name;
3083
+	return $this->name;
3084 3084
   }
3085 3085
   public function setTriggerId($triggerId)
3086 3086
   {
3087
-    $this->triggerId = $triggerId;
3087
+	$this->triggerId = $triggerId;
3088 3088
   }
3089 3089
   public function getTriggerId()
3090 3090
   {
3091
-    return $this->triggerId;
3091
+	return $this->triggerId;
3092 3092
   }
3093 3093
   public function setType($type)
3094 3094
   {
3095
-    $this->type = $type;
3095
+	$this->type = $type;
3096 3096
   }
3097 3097
   public function getType()
3098 3098
   {
3099
-    return $this->type;
3099
+	return $this->type;
3100 3100
   }
3101 3101
   public function setUniqueTriggerId(Google_Service_TagManager_Parameter $uniqueTriggerId)
3102 3102
   {
3103
-    $this->uniqueTriggerId = $uniqueTriggerId;
3103
+	$this->uniqueTriggerId = $uniqueTriggerId;
3104 3104
   }
3105 3105
   public function getUniqueTriggerId()
3106 3106
   {
3107
-    return $this->uniqueTriggerId;
3107
+	return $this->uniqueTriggerId;
3108 3108
   }
3109 3109
   public function setVideoPercentageList(Google_Service_TagManager_Parameter $videoPercentageList)
3110 3110
   {
3111
-    $this->videoPercentageList = $videoPercentageList;
3111
+	$this->videoPercentageList = $videoPercentageList;
3112 3112
   }
3113 3113
   public function getVideoPercentageList()
3114 3114
   {
3115
-    return $this->videoPercentageList;
3115
+	return $this->videoPercentageList;
3116 3116
   }
3117 3117
   public function setWaitForTags(Google_Service_TagManager_Parameter $waitForTags)
3118 3118
   {
3119
-    $this->waitForTags = $waitForTags;
3119
+	$this->waitForTags = $waitForTags;
3120 3120
   }
3121 3121
   public function getWaitForTags()
3122 3122
   {
3123
-    return $this->waitForTags;
3123
+	return $this->waitForTags;
3124 3124
   }
3125 3125
   public function setWaitForTagsTimeout(Google_Service_TagManager_Parameter $waitForTagsTimeout)
3126 3126
   {
3127
-    $this->waitForTagsTimeout = $waitForTagsTimeout;
3127
+	$this->waitForTagsTimeout = $waitForTagsTimeout;
3128 3128
   }
3129 3129
   public function getWaitForTagsTimeout()
3130 3130
   {
3131
-    return $this->waitForTagsTimeout;
3131
+	return $this->waitForTagsTimeout;
3132 3132
   }
3133 3133
 }
3134 3134
 
@@ -3148,43 +3148,43 @@  discard block
 block discarded – undo
3148 3148
 
3149 3149
   public function setAccountAccess(Google_Service_TagManager_AccountAccess $accountAccess)
3150 3150
   {
3151
-    $this->accountAccess = $accountAccess;
3151
+	$this->accountAccess = $accountAccess;
3152 3152
   }
3153 3153
   public function getAccountAccess()
3154 3154
   {
3155
-    return $this->accountAccess;
3155
+	return $this->accountAccess;
3156 3156
   }
3157 3157
   public function setAccountId($accountId)
3158 3158
   {
3159
-    $this->accountId = $accountId;
3159
+	$this->accountId = $accountId;
3160 3160
   }
3161 3161
   public function getAccountId()
3162 3162
   {
3163
-    return $this->accountId;
3163
+	return $this->accountId;
3164 3164
   }
3165 3165
   public function setContainerAccess($containerAccess)
3166 3166
   {
3167
-    $this->containerAccess = $containerAccess;
3167
+	$this->containerAccess = $containerAccess;
3168 3168
   }
3169 3169
   public function getContainerAccess()
3170 3170
   {
3171
-    return $this->containerAccess;
3171
+	return $this->containerAccess;
3172 3172
   }
3173 3173
   public function setEmailAddress($emailAddress)
3174 3174
   {
3175
-    $this->emailAddress = $emailAddress;
3175
+	$this->emailAddress = $emailAddress;
3176 3176
   }
3177 3177
   public function getEmailAddress()
3178 3178
   {
3179
-    return $this->emailAddress;
3179
+	return $this->emailAddress;
3180 3180
   }
3181 3181
   public function setPermissionId($permissionId)
3182 3182
   {
3183
-    $this->permissionId = $permissionId;
3183
+	$this->permissionId = $permissionId;
3184 3184
   }
3185 3185
   public function getPermissionId()
3186 3186
   {
3187
-    return $this->permissionId;
3187
+	return $this->permissionId;
3188 3188
   }
3189 3189
 }
3190 3190
 
@@ -3210,98 +3210,98 @@  discard block
 block discarded – undo
3210 3210
 
3211 3211
   public function setAccountId($accountId)
3212 3212
   {
3213
-    $this->accountId = $accountId;
3213
+	$this->accountId = $accountId;
3214 3214
   }
3215 3215
   public function getAccountId()
3216 3216
   {
3217
-    return $this->accountId;
3217
+	return $this->accountId;
3218 3218
   }
3219 3219
   public function setContainerId($containerId)
3220 3220
   {
3221
-    $this->containerId = $containerId;
3221
+	$this->containerId = $containerId;
3222 3222
   }
3223 3223
   public function getContainerId()
3224 3224
   {
3225
-    return $this->containerId;
3225
+	return $this->containerId;
3226 3226
   }
3227 3227
   public function setDisablingTriggerId($disablingTriggerId)
3228 3228
   {
3229
-    $this->disablingTriggerId = $disablingTriggerId;
3229
+	$this->disablingTriggerId = $disablingTriggerId;
3230 3230
   }
3231 3231
   public function getDisablingTriggerId()
3232 3232
   {
3233
-    return $this->disablingTriggerId;
3233
+	return $this->disablingTriggerId;
3234 3234
   }
3235 3235
   public function setEnablingTriggerId($enablingTriggerId)
3236 3236
   {
3237
-    $this->enablingTriggerId = $enablingTriggerId;
3237
+	$this->enablingTriggerId = $enablingTriggerId;
3238 3238
   }
3239 3239
   public function getEnablingTriggerId()
3240 3240
   {
3241
-    return $this->enablingTriggerId;
3241
+	return $this->enablingTriggerId;
3242 3242
   }
3243 3243
   public function setFingerprint($fingerprint)
3244 3244
   {
3245
-    $this->fingerprint = $fingerprint;
3245
+	$this->fingerprint = $fingerprint;
3246 3246
   }
3247 3247
   public function getFingerprint()
3248 3248
   {
3249
-    return $this->fingerprint;
3249
+	return $this->fingerprint;
3250 3250
   }
3251 3251
   public function setName($name)
3252 3252
   {
3253
-    $this->name = $name;
3253
+	$this->name = $name;
3254 3254
   }
3255 3255
   public function getName()
3256 3256
   {
3257
-    return $this->name;
3257
+	return $this->name;
3258 3258
   }
3259 3259
   public function setNotes($notes)
3260 3260
   {
3261
-    $this->notes = $notes;
3261
+	$this->notes = $notes;
3262 3262
   }
3263 3263
   public function getNotes()
3264 3264
   {
3265
-    return $this->notes;
3265
+	return $this->notes;
3266 3266
   }
3267 3267
   public function setParameter($parameter)
3268 3268
   {
3269
-    $this->parameter = $parameter;
3269
+	$this->parameter = $parameter;
3270 3270
   }
3271 3271
   public function getParameter()
3272 3272
   {
3273
-    return $this->parameter;
3273
+	return $this->parameter;
3274 3274
   }
3275 3275
   public function setScheduleEndMs($scheduleEndMs)
3276 3276
   {
3277
-    $this->scheduleEndMs = $scheduleEndMs;
3277
+	$this->scheduleEndMs = $scheduleEndMs;
3278 3278
   }
3279 3279
   public function getScheduleEndMs()
3280 3280
   {
3281
-    return $this->scheduleEndMs;
3281
+	return $this->scheduleEndMs;
3282 3282
   }
3283 3283
   public function setScheduleStartMs($scheduleStartMs)
3284 3284
   {
3285
-    $this->scheduleStartMs = $scheduleStartMs;
3285
+	$this->scheduleStartMs = $scheduleStartMs;
3286 3286
   }
3287 3287
   public function getScheduleStartMs()
3288 3288
   {
3289
-    return $this->scheduleStartMs;
3289
+	return $this->scheduleStartMs;
3290 3290
   }
3291 3291
   public function setType($type)
3292 3292
   {
3293
-    $this->type = $type;
3293
+	$this->type = $type;
3294 3294
   }
3295 3295
   public function getType()
3296 3296
   {
3297
-    return $this->type;
3297
+	return $this->type;
3298 3298
   }
3299 3299
   public function setVariableId($variableId)
3300 3300
   {
3301
-    $this->variableId = $variableId;
3301
+	$this->variableId = $variableId;
3302 3302
   }
3303 3303
   public function getVariableId()
3304 3304
   {
3305
-    return $this->variableId;
3305
+	return $this->variableId;
3306 3306
   }
3307 3307
 }
Please login to merge, or discard this patch.
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -92,11 +92,11 @@  discard block
 block discarded – undo
92 92
                   'required' => true,
93 93
                 ),
94 94
               ),
95
-            ),'list' => array(
95
+            ), 'list' => array(
96 96
               'path' => 'accounts',
97 97
               'httpMethod' => 'GET',
98 98
               'parameters' => array(),
99
-            ),'update' => array(
99
+            ), 'update' => array(
100 100
               'path' => 'accounts/{accountId}',
101 101
               'httpMethod' => 'PUT',
102 102
               'parameters' => array(
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
                   'required' => true,
131 131
                 ),
132 132
               ),
133
-            ),'delete' => array(
133
+            ), 'delete' => array(
134 134
               'path' => 'accounts/{accountId}/containers/{containerId}',
135 135
               'httpMethod' => 'DELETE',
136 136
               'parameters' => array(
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
                   'required' => true,
146 146
                 ),
147 147
               ),
148
-            ),'get' => array(
148
+            ), 'get' => array(
149 149
               'path' => 'accounts/{accountId}/containers/{containerId}',
150 150
               'httpMethod' => 'GET',
151 151
               'parameters' => array(
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
                   'required' => true,
161 161
                 ),
162 162
               ),
163
-            ),'list' => array(
163
+            ), 'list' => array(
164 164
               'path' => 'accounts/{accountId}/containers',
165 165
               'httpMethod' => 'GET',
166 166
               'parameters' => array(
@@ -170,7 +170,7 @@  discard block
 block discarded – undo
170 170
                   'required' => true,
171 171
                 ),
172 172
               ),
173
-            ),'update' => array(
173
+            ), 'update' => array(
174 174
               'path' => 'accounts/{accountId}/containers/{containerId}',
175 175
               'httpMethod' => 'PUT',
176 176
               'parameters' => array(
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                   'required' => true,
215 215
                 ),
216 216
               ),
217
-            ),'delete' => array(
217
+            ), 'delete' => array(
218 218
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
219 219
               'httpMethod' => 'DELETE',
220 220
               'parameters' => array(
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                   'required' => true,
235 235
                 ),
236 236
               ),
237
-            ),'get' => array(
237
+            ), 'get' => array(
238 238
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
239 239
               'httpMethod' => 'GET',
240 240
               'parameters' => array(
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
                   'required' => true,
255 255
                 ),
256 256
               ),
257
-            ),'list' => array(
257
+            ), 'list' => array(
258 258
               'path' => 'accounts/{accountId}/containers/{containerId}/macros',
259 259
               'httpMethod' => 'GET',
260 260
               'parameters' => array(
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                   'required' => true,
270 270
                 ),
271 271
               ),
272
-            ),'update' => array(
272
+            ), 'update' => array(
273 273
               'path' => 'accounts/{accountId}/containers/{containerId}/macros/{macroId}',
274 274
               'httpMethod' => 'PUT',
275 275
               'parameters' => array(
@@ -318,7 +318,7 @@  discard block
 block discarded – undo
318 318
                   'required' => true,
319 319
                 ),
320 320
               ),
321
-            ),'delete' => array(
321
+            ), 'delete' => array(
322 322
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
323 323
               'httpMethod' => 'DELETE',
324 324
               'parameters' => array(
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
                   'required' => true,
339 339
                 ),
340 340
               ),
341
-            ),'get' => array(
341
+            ), 'get' => array(
342 342
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
343 343
               'httpMethod' => 'GET',
344 344
               'parameters' => array(
@@ -358,7 +358,7 @@  discard block
 block discarded – undo
358 358
                   'required' => true,
359 359
                 ),
360 360
               ),
361
-            ),'list' => array(
361
+            ), 'list' => array(
362 362
               'path' => 'accounts/{accountId}/containers/{containerId}/rules',
363 363
               'httpMethod' => 'GET',
364 364
               'parameters' => array(
@@ -373,7 +373,7 @@  discard block
 block discarded – undo
373 373
                   'required' => true,
374 374
                 ),
375 375
               ),
376
-            ),'update' => array(
376
+            ), 'update' => array(
377 377
               'path' => 'accounts/{accountId}/containers/{containerId}/rules/{ruleId}',
378 378
               'httpMethod' => 'PUT',
379 379
               'parameters' => array(
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
                   'required' => true,
423 423
                 ),
424 424
               ),
425
-            ),'delete' => array(
425
+            ), 'delete' => array(
426 426
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
427 427
               'httpMethod' => 'DELETE',
428 428
               'parameters' => array(
@@ -442,7 +442,7 @@  discard block
 block discarded – undo
442 442
                   'required' => true,
443 443
                 ),
444 444
               ),
445
-            ),'get' => array(
445
+            ), 'get' => array(
446 446
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
447 447
               'httpMethod' => 'GET',
448 448
               'parameters' => array(
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
                   'required' => true,
463 463
                 ),
464 464
               ),
465
-            ),'list' => array(
465
+            ), 'list' => array(
466 466
               'path' => 'accounts/{accountId}/containers/{containerId}/tags',
467 467
               'httpMethod' => 'GET',
468 468
               'parameters' => array(
@@ -477,7 +477,7 @@  discard block
 block discarded – undo
477 477
                   'required' => true,
478 478
                 ),
479 479
               ),
480
-            ),'update' => array(
480
+            ), 'update' => array(
481 481
               'path' => 'accounts/{accountId}/containers/{containerId}/tags/{tagId}',
482 482
               'httpMethod' => 'PUT',
483 483
               'parameters' => array(
@@ -526,7 +526,7 @@  discard block
 block discarded – undo
526 526
                   'required' => true,
527 527
                 ),
528 528
               ),
529
-            ),'delete' => array(
529
+            ), 'delete' => array(
530 530
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
531 531
               'httpMethod' => 'DELETE',
532 532
               'parameters' => array(
@@ -546,7 +546,7 @@  discard block
 block discarded – undo
546 546
                   'required' => true,
547 547
                 ),
548 548
               ),
549
-            ),'get' => array(
549
+            ), 'get' => array(
550 550
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
551 551
               'httpMethod' => 'GET',
552 552
               'parameters' => array(
@@ -566,7 +566,7 @@  discard block
 block discarded – undo
566 566
                   'required' => true,
567 567
                 ),
568 568
               ),
569
-            ),'list' => array(
569
+            ), 'list' => array(
570 570
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers',
571 571
               'httpMethod' => 'GET',
572 572
               'parameters' => array(
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
                   'required' => true,
582 582
                 ),
583 583
               ),
584
-            ),'update' => array(
584
+            ), 'update' => array(
585 585
               'path' => 'accounts/{accountId}/containers/{containerId}/triggers/{triggerId}',
586 586
               'httpMethod' => 'PUT',
587 587
               'parameters' => array(
@@ -630,7 +630,7 @@  discard block
 block discarded – undo
630 630
                   'required' => true,
631 631
                 ),
632 632
               ),
633
-            ),'delete' => array(
633
+            ), 'delete' => array(
634 634
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
635 635
               'httpMethod' => 'DELETE',
636 636
               'parameters' => array(
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
                   'required' => true,
651 651
                 ),
652 652
               ),
653
-            ),'get' => array(
653
+            ), 'get' => array(
654 654
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
655 655
               'httpMethod' => 'GET',
656 656
               'parameters' => array(
@@ -670,7 +670,7 @@  discard block
 block discarded – undo
670 670
                   'required' => true,
671 671
                 ),
672 672
               ),
673
-            ),'list' => array(
673
+            ), 'list' => array(
674 674
               'path' => 'accounts/{accountId}/containers/{containerId}/variables',
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
-            ),'update' => array(
688
+            ), 'update' => array(
689 689
               'path' => 'accounts/{accountId}/containers/{containerId}/variables/{variableId}',
690 690
               'httpMethod' => 'PUT',
691 691
               'parameters' => array(
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
                   'required' => true,
735 735
                 ),
736 736
               ),
737
-            ),'delete' => array(
737
+            ), 'delete' => array(
738 738
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
739 739
               'httpMethod' => 'DELETE',
740 740
               'parameters' => array(
@@ -754,7 +754,7 @@  discard block
 block discarded – undo
754 754
                   'required' => true,
755 755
                 ),
756 756
               ),
757
-            ),'get' => array(
757
+            ), 'get' => array(
758 758
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
759 759
               'httpMethod' => 'GET',
760 760
               'parameters' => array(
@@ -774,7 +774,7 @@  discard block
 block discarded – undo
774 774
                   'required' => true,
775 775
                 ),
776 776
               ),
777
-            ),'list' => array(
777
+            ), 'list' => array(
778 778
               'path' => 'accounts/{accountId}/containers/{containerId}/versions',
779 779
               'httpMethod' => 'GET',
780 780
               'parameters' => array(
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
                   'type' => 'boolean',
794 794
                 ),
795 795
               ),
796
-            ),'publish' => array(
796
+            ), 'publish' => array(
797 797
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/publish',
798 798
               'httpMethod' => 'POST',
799 799
               'parameters' => array(
@@ -817,7 +817,7 @@  discard block
 block discarded – undo
817 817
                   'type' => 'string',
818 818
                 ),
819 819
               ),
820
-            ),'restore' => array(
820
+            ), 'restore' => array(
821 821
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/restore',
822 822
               'httpMethod' => 'POST',
823 823
               'parameters' => array(
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
                   'required' => true,
838 838
                 ),
839 839
               ),
840
-            ),'undelete' => array(
840
+            ), 'undelete' => array(
841 841
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}/undelete',
842 842
               'httpMethod' => 'POST',
843 843
               'parameters' => array(
@@ -857,7 +857,7 @@  discard block
 block discarded – undo
857 857
                   'required' => true,
858 858
                 ),
859 859
               ),
860
-            ),'update' => array(
860
+            ), 'update' => array(
861 861
               'path' => 'accounts/{accountId}/containers/{containerId}/versions/{containerVersionId}',
862 862
               'httpMethod' => 'PUT',
863 863
               'parameters' => array(
@@ -901,7 +901,7 @@  discard block
 block discarded – undo
901 901
                   'required' => true,
902 902
                 ),
903 903
               ),
904
-            ),'delete' => array(
904
+            ), 'delete' => array(
905 905
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
906 906
               'httpMethod' => 'DELETE',
907 907
               'parameters' => array(
@@ -916,7 +916,7 @@  discard block
 block discarded – undo
916 916
                   'required' => true,
917 917
                 ),
918 918
               ),
919
-            ),'get' => array(
919
+            ), 'get' => array(
920 920
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
921 921
               'httpMethod' => 'GET',
922 922
               'parameters' => array(
@@ -931,7 +931,7 @@  discard block
 block discarded – undo
931 931
                   'required' => true,
932 932
                 ),
933 933
               ),
934
-            ),'list' => array(
934
+            ), 'list' => array(
935 935
               'path' => 'accounts/{accountId}/permissions',
936 936
               'httpMethod' => 'GET',
937 937
               'parameters' => array(
@@ -941,7 +941,7 @@  discard block
 block discarded – undo
941 941
                   'required' => true,
942 942
                 ),
943 943
               ),
944
-            ),'update' => array(
944
+            ), 'update' => array(
945 945
               'path' => 'accounts/{accountId}/permissions/{permissionId}',
946 946
               'httpMethod' => 'PUT',
947 947
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Taskqueue.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
    *
327 327
    * @param string $project The project under which the queue lies
328 328
    * @param string $taskqueue The taskqueue to insert the task into
329
-   * @param Google_Task $postBody
329
+   * @param Google_Service_Taskqueue_Task $postBody
330 330
    * @param array $optParams Optional parameters.
331 331
    * @return Google_Service_Taskqueue_Task
332 332
    */
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
    * @param string $taskqueue
385 385
    * @param string $task
386 386
    * @param int $newLeaseSeconds The new lease in seconds.
387
-   * @param Google_Task $postBody
387
+   * @param Google_Service_Taskqueue_Task $postBody
388 388
    * @param array $optParams Optional parameters.
389 389
    * @return Google_Service_Taskqueue_Task
390 390
    */
@@ -402,7 +402,7 @@  discard block
 block discarded – undo
402 402
    * @param string $taskqueue
403 403
    * @param string $task
404 404
    * @param int $newLeaseSeconds The new lease in seconds.
405
-   * @param Google_Task $postBody
405
+   * @param Google_Service_Taskqueue_Task $postBody
406 406
    * @param array $optParams Optional parameters.
407 407
    * @return Google_Service_Taskqueue_Task
408 408
    */
Please login to merge, or discard this patch.
Indentation   +273 added lines, -273 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage your Tasks and Taskqueues. */
34 34
   const TASKQUEUE =
35
-      "https://www.googleapis.com/auth/taskqueue";
35
+	  "https://www.googleapis.com/auth/taskqueue";
36 36
   /** Consume Tasks from your Taskqueues. */
37 37
   const TASKQUEUE_CONSUMER =
38
-      "https://www.googleapis.com/auth/taskqueue.consumer";
38
+	  "https://www.googleapis.com/auth/taskqueue.consumer";
39 39
 
40 40
   public $taskqueues;
41 41
   public $tasks;
@@ -48,204 +48,204 @@  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 = 'taskqueue/v1beta2/projects/';
54
-    $this->version = 'v1beta2';
55
-    $this->serviceName = 'taskqueue';
56
-
57
-    $this->taskqueues = new Google_Service_Taskqueue_Taskqueues_Resource(
58
-        $this,
59
-        $this->serviceName,
60
-        'taskqueues',
61
-        array(
62
-          'methods' => array(
63
-            'get' => array(
64
-              'path' => '{project}/taskqueues/{taskqueue}',
65
-              'httpMethod' => 'GET',
66
-              'parameters' => array(
67
-                'project' => array(
68
-                  'location' => 'path',
69
-                  'type' => 'string',
70
-                  'required' => true,
71
-                ),
72
-                'taskqueue' => array(
73
-                  'location' => 'path',
74
-                  'type' => 'string',
75
-                  'required' => true,
76
-                ),
77
-                'getStats' => array(
78
-                  'location' => 'query',
79
-                  'type' => 'boolean',
80
-                ),
81
-              ),
82
-            ),
83
-          )
84
-        )
85
-    );
86
-    $this->tasks = new Google_Service_Taskqueue_Tasks_Resource(
87
-        $this,
88
-        $this->serviceName,
89
-        'tasks',
90
-        array(
91
-          'methods' => array(
92
-            'delete' => array(
93
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
94
-              'httpMethod' => 'DELETE',
95
-              'parameters' => array(
96
-                'project' => array(
97
-                  'location' => 'path',
98
-                  'type' => 'string',
99
-                  'required' => true,
100
-                ),
101
-                'taskqueue' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-                'task' => array(
107
-                  'location' => 'path',
108
-                  'type' => 'string',
109
-                  'required' => true,
110
-                ),
111
-              ),
112
-            ),'get' => array(
113
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114
-              'httpMethod' => 'GET',
115
-              'parameters' => array(
116
-                'project' => array(
117
-                  'location' => 'path',
118
-                  'type' => 'string',
119
-                  'required' => true,
120
-                ),
121
-                'taskqueue' => array(
122
-                  'location' => 'path',
123
-                  'type' => 'string',
124
-                  'required' => true,
125
-                ),
126
-                'task' => array(
127
-                  'location' => 'path',
128
-                  'type' => 'string',
129
-                  'required' => true,
130
-                ),
131
-              ),
132
-            ),'insert' => array(
133
-              'path' => '{project}/taskqueues/{taskqueue}/tasks',
134
-              'httpMethod' => 'POST',
135
-              'parameters' => array(
136
-                'project' => array(
137
-                  'location' => 'path',
138
-                  'type' => 'string',
139
-                  'required' => true,
140
-                ),
141
-                'taskqueue' => array(
142
-                  'location' => 'path',
143
-                  'type' => 'string',
144
-                  'required' => true,
145
-                ),
146
-              ),
147
-            ),'lease' => array(
148
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149
-              'httpMethod' => 'POST',
150
-              'parameters' => array(
151
-                'project' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'taskqueue' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-                'numTasks' => array(
162
-                  'location' => 'query',
163
-                  'type' => 'integer',
164
-                  'required' => true,
165
-                ),
166
-                'leaseSecs' => array(
167
-                  'location' => 'query',
168
-                  'type' => 'integer',
169
-                  'required' => true,
170
-                ),
171
-                'groupByTag' => array(
172
-                  'location' => 'query',
173
-                  'type' => 'boolean',
174
-                ),
175
-                'tag' => array(
176
-                  'location' => 'query',
177
-                  'type' => 'string',
178
-                ),
179
-              ),
180
-            ),'list' => array(
181
-              'path' => '{project}/taskqueues/{taskqueue}/tasks',
182
-              'httpMethod' => 'GET',
183
-              'parameters' => array(
184
-                'project' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-                'taskqueue' => array(
190
-                  'location' => 'path',
191
-                  'type' => 'string',
192
-                  'required' => true,
193
-                ),
194
-              ),
195
-            ),'patch' => array(
196
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197
-              'httpMethod' => 'PATCH',
198
-              'parameters' => array(
199
-                'project' => array(
200
-                  'location' => 'path',
201
-                  'type' => 'string',
202
-                  'required' => true,
203
-                ),
204
-                'taskqueue' => array(
205
-                  'location' => 'path',
206
-                  'type' => 'string',
207
-                  'required' => true,
208
-                ),
209
-                'task' => array(
210
-                  'location' => 'path',
211
-                  'type' => 'string',
212
-                  'required' => true,
213
-                ),
214
-                'newLeaseSeconds' => array(
215
-                  'location' => 'query',
216
-                  'type' => 'integer',
217
-                  'required' => true,
218
-                ),
219
-              ),
220
-            ),'update' => array(
221
-              'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222
-              'httpMethod' => 'POST',
223
-              'parameters' => array(
224
-                'project' => array(
225
-                  'location' => 'path',
226
-                  'type' => 'string',
227
-                  'required' => true,
228
-                ),
229
-                'taskqueue' => array(
230
-                  'location' => 'path',
231
-                  'type' => 'string',
232
-                  'required' => true,
233
-                ),
234
-                'task' => array(
235
-                  'location' => 'path',
236
-                  'type' => 'string',
237
-                  'required' => true,
238
-                ),
239
-                'newLeaseSeconds' => array(
240
-                  'location' => 'query',
241
-                  'type' => 'integer',
242
-                  'required' => true,
243
-                ),
244
-              ),
245
-            ),
246
-          )
247
-        )
248
-    );
51
+	parent::__construct($client);
52
+	$this->rootUrl = 'https://www.googleapis.com/';
53
+	$this->servicePath = 'taskqueue/v1beta2/projects/';
54
+	$this->version = 'v1beta2';
55
+	$this->serviceName = 'taskqueue';
56
+
57
+	$this->taskqueues = new Google_Service_Taskqueue_Taskqueues_Resource(
58
+		$this,
59
+		$this->serviceName,
60
+		'taskqueues',
61
+		array(
62
+		  'methods' => array(
63
+			'get' => array(
64
+			  'path' => '{project}/taskqueues/{taskqueue}',
65
+			  'httpMethod' => 'GET',
66
+			  'parameters' => array(
67
+				'project' => array(
68
+				  'location' => 'path',
69
+				  'type' => 'string',
70
+				  'required' => true,
71
+				),
72
+				'taskqueue' => array(
73
+				  'location' => 'path',
74
+				  'type' => 'string',
75
+				  'required' => true,
76
+				),
77
+				'getStats' => array(
78
+				  'location' => 'query',
79
+				  'type' => 'boolean',
80
+				),
81
+			  ),
82
+			),
83
+		  )
84
+		)
85
+	);
86
+	$this->tasks = new Google_Service_Taskqueue_Tasks_Resource(
87
+		$this,
88
+		$this->serviceName,
89
+		'tasks',
90
+		array(
91
+		  'methods' => array(
92
+			'delete' => array(
93
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
94
+			  'httpMethod' => 'DELETE',
95
+			  'parameters' => array(
96
+				'project' => array(
97
+				  'location' => 'path',
98
+				  'type' => 'string',
99
+				  'required' => true,
100
+				),
101
+				'taskqueue' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+				'task' => array(
107
+				  'location' => 'path',
108
+				  'type' => 'string',
109
+				  'required' => true,
110
+				),
111
+			  ),
112
+			),'get' => array(
113
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114
+			  'httpMethod' => 'GET',
115
+			  'parameters' => array(
116
+				'project' => array(
117
+				  'location' => 'path',
118
+				  'type' => 'string',
119
+				  'required' => true,
120
+				),
121
+				'taskqueue' => array(
122
+				  'location' => 'path',
123
+				  'type' => 'string',
124
+				  'required' => true,
125
+				),
126
+				'task' => array(
127
+				  'location' => 'path',
128
+				  'type' => 'string',
129
+				  'required' => true,
130
+				),
131
+			  ),
132
+			),'insert' => array(
133
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks',
134
+			  'httpMethod' => 'POST',
135
+			  'parameters' => array(
136
+				'project' => array(
137
+				  'location' => 'path',
138
+				  'type' => 'string',
139
+				  'required' => true,
140
+				),
141
+				'taskqueue' => array(
142
+				  'location' => 'path',
143
+				  'type' => 'string',
144
+				  'required' => true,
145
+				),
146
+			  ),
147
+			),'lease' => array(
148
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149
+			  'httpMethod' => 'POST',
150
+			  'parameters' => array(
151
+				'project' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'taskqueue' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+				'numTasks' => array(
162
+				  'location' => 'query',
163
+				  'type' => 'integer',
164
+				  'required' => true,
165
+				),
166
+				'leaseSecs' => array(
167
+				  'location' => 'query',
168
+				  'type' => 'integer',
169
+				  'required' => true,
170
+				),
171
+				'groupByTag' => array(
172
+				  'location' => 'query',
173
+				  'type' => 'boolean',
174
+				),
175
+				'tag' => array(
176
+				  'location' => 'query',
177
+				  'type' => 'string',
178
+				),
179
+			  ),
180
+			),'list' => array(
181
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks',
182
+			  'httpMethod' => 'GET',
183
+			  'parameters' => array(
184
+				'project' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+				'taskqueue' => array(
190
+				  'location' => 'path',
191
+				  'type' => 'string',
192
+				  'required' => true,
193
+				),
194
+			  ),
195
+			),'patch' => array(
196
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197
+			  'httpMethod' => 'PATCH',
198
+			  'parameters' => array(
199
+				'project' => array(
200
+				  'location' => 'path',
201
+				  'type' => 'string',
202
+				  'required' => true,
203
+				),
204
+				'taskqueue' => array(
205
+				  'location' => 'path',
206
+				  'type' => 'string',
207
+				  'required' => true,
208
+				),
209
+				'task' => array(
210
+				  'location' => 'path',
211
+				  'type' => 'string',
212
+				  'required' => true,
213
+				),
214
+				'newLeaseSeconds' => array(
215
+				  'location' => 'query',
216
+				  'type' => 'integer',
217
+				  'required' => true,
218
+				),
219
+			  ),
220
+			),'update' => array(
221
+			  'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222
+			  'httpMethod' => 'POST',
223
+			  'parameters' => array(
224
+				'project' => array(
225
+				  'location' => 'path',
226
+				  'type' => 'string',
227
+				  'required' => true,
228
+				),
229
+				'taskqueue' => array(
230
+				  'location' => 'path',
231
+				  'type' => 'string',
232
+				  'required' => true,
233
+				),
234
+				'task' => array(
235
+				  'location' => 'path',
236
+				  'type' => 'string',
237
+				  'required' => true,
238
+				),
239
+				'newLeaseSeconds' => array(
240
+				  'location' => 'query',
241
+				  'type' => 'integer',
242
+				  'required' => true,
243
+				),
244
+			  ),
245
+			),
246
+		  )
247
+		)
248
+	);
249 249
   }
250 250
 }
251 251
 
@@ -273,9 +273,9 @@  discard block
 block discarded – undo
273 273
    */
274 274
   public function get($project, $taskqueue, $optParams = array())
275 275
   {
276
-    $params = array('project' => $project, 'taskqueue' => $taskqueue);
277
-    $params = array_merge($params, $optParams);
278
-    return $this->call('get', array($params), "Google_Service_Taskqueue_TaskQueue");
276
+	$params = array('project' => $project, 'taskqueue' => $taskqueue);
277
+	$params = array_merge($params, $optParams);
278
+	return $this->call('get', array($params), "Google_Service_Taskqueue_TaskQueue");
279 279
   }
280 280
 }
281 281
 
@@ -300,9 +300,9 @@  discard block
 block discarded – undo
300 300
    */
301 301
   public function delete($project, $taskqueue, $task, $optParams = array())
302 302
   {
303
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
304
-    $params = array_merge($params, $optParams);
305
-    return $this->call('delete', array($params));
303
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
304
+	$params = array_merge($params, $optParams);
305
+	return $this->call('delete', array($params));
306 306
   }
307 307
 
308 308
   /**
@@ -316,9 +316,9 @@  discard block
 block discarded – undo
316 316
    */
317 317
   public function get($project, $taskqueue, $task, $optParams = array())
318 318
   {
319
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
320
-    $params = array_merge($params, $optParams);
321
-    return $this->call('get', array($params), "Google_Service_Taskqueue_Task");
319
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task);
320
+	$params = array_merge($params, $optParams);
321
+	return $this->call('get', array($params), "Google_Service_Taskqueue_Task");
322 322
   }
323 323
 
324 324
   /**
@@ -332,9 +332,9 @@  discard block
 block discarded – undo
332 332
    */
333 333
   public function insert($project, $taskqueue, Google_Service_Taskqueue_Task $postBody, $optParams = array())
334 334
   {
335
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody);
336
-    $params = array_merge($params, $optParams);
337
-    return $this->call('insert', array($params), "Google_Service_Taskqueue_Task");
335
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'postBody' => $postBody);
336
+	$params = array_merge($params, $optParams);
337
+	return $this->call('insert', array($params), "Google_Service_Taskqueue_Task");
338 338
   }
339 339
 
340 340
   /**
@@ -356,9 +356,9 @@  discard block
 block discarded – undo
356 356
    */
357 357
   public function lease($project, $taskqueue, $numTasks, $leaseSecs, $optParams = array())
358 358
   {
359
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs);
360
-    $params = array_merge($params, $optParams);
361
-    return $this->call('lease', array($params), "Google_Service_Taskqueue_Tasks");
359
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'numTasks' => $numTasks, 'leaseSecs' => $leaseSecs);
360
+	$params = array_merge($params, $optParams);
361
+	return $this->call('lease', array($params), "Google_Service_Taskqueue_Tasks");
362 362
   }
363 363
 
364 364
   /**
@@ -371,9 +371,9 @@  discard block
 block discarded – undo
371 371
    */
372 372
   public function listTasks($project, $taskqueue, $optParams = array())
373 373
   {
374
-    $params = array('project' => $project, 'taskqueue' => $taskqueue);
375
-    $params = array_merge($params, $optParams);
376
-    return $this->call('list', array($params), "Google_Service_Taskqueue_Tasks2");
374
+	$params = array('project' => $project, 'taskqueue' => $taskqueue);
375
+	$params = array_merge($params, $optParams);
376
+	return $this->call('list', array($params), "Google_Service_Taskqueue_Tasks2");
377 377
   }
378 378
 
379 379
   /**
@@ -390,9 +390,9 @@  discard block
 block discarded – undo
390 390
    */
391 391
   public function patch($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array())
392 392
   {
393
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
394
-    $params = array_merge($params, $optParams);
395
-    return $this->call('patch', array($params), "Google_Service_Taskqueue_Task");
393
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
394
+	$params = array_merge($params, $optParams);
395
+	return $this->call('patch', array($params), "Google_Service_Taskqueue_Task");
396 396
   }
397 397
 
398 398
   /**
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
    */
409 409
   public function update($project, $taskqueue, $task, $newLeaseSeconds, Google_Service_Taskqueue_Task $postBody, $optParams = array())
410 410
   {
411
-    $params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
412
-    $params = array_merge($params, $optParams);
413
-    return $this->call('update', array($params), "Google_Service_Taskqueue_Task");
411
+	$params = array('project' => $project, 'taskqueue' => $taskqueue, 'task' => $task, 'newLeaseSeconds' => $newLeaseSeconds, 'postBody' => $postBody);
412
+	$params = array_merge($params, $optParams);
413
+	return $this->call('update', array($params), "Google_Service_Taskqueue_Task");
414 414
   }
415 415
 }
416 416
 
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
 class Google_Service_Taskqueue_Task extends Google_Model
421 421
 {
422 422
   protected $internal_gapi_mappings = array(
423
-        "retryCount" => "retry_count",
423
+		"retryCount" => "retry_count",
424 424
   );
425 425
   public $enqueueTimestamp;
426 426
   public $id;
@@ -434,67 +434,67 @@  discard block
 block discarded – undo
434 434
 
435 435
   public function setEnqueueTimestamp($enqueueTimestamp)
436 436
   {
437
-    $this->enqueueTimestamp = $enqueueTimestamp;
437
+	$this->enqueueTimestamp = $enqueueTimestamp;
438 438
   }
439 439
   public function getEnqueueTimestamp()
440 440
   {
441
-    return $this->enqueueTimestamp;
441
+	return $this->enqueueTimestamp;
442 442
   }
443 443
   public function setId($id)
444 444
   {
445
-    $this->id = $id;
445
+	$this->id = $id;
446 446
   }
447 447
   public function getId()
448 448
   {
449
-    return $this->id;
449
+	return $this->id;
450 450
   }
451 451
   public function setKind($kind)
452 452
   {
453
-    $this->kind = $kind;
453
+	$this->kind = $kind;
454 454
   }
455 455
   public function getKind()
456 456
   {
457
-    return $this->kind;
457
+	return $this->kind;
458 458
   }
459 459
   public function setLeaseTimestamp($leaseTimestamp)
460 460
   {
461
-    $this->leaseTimestamp = $leaseTimestamp;
461
+	$this->leaseTimestamp = $leaseTimestamp;
462 462
   }
463 463
   public function getLeaseTimestamp()
464 464
   {
465
-    return $this->leaseTimestamp;
465
+	return $this->leaseTimestamp;
466 466
   }
467 467
   public function setPayloadBase64($payloadBase64)
468 468
   {
469
-    $this->payloadBase64 = $payloadBase64;
469
+	$this->payloadBase64 = $payloadBase64;
470 470
   }
471 471
   public function getPayloadBase64()
472 472
   {
473
-    return $this->payloadBase64;
473
+	return $this->payloadBase64;
474 474
   }
475 475
   public function setQueueName($queueName)
476 476
   {
477
-    $this->queueName = $queueName;
477
+	$this->queueName = $queueName;
478 478
   }
479 479
   public function getQueueName()
480 480
   {
481
-    return $this->queueName;
481
+	return $this->queueName;
482 482
   }
483 483
   public function setRetryCount($retryCount)
484 484
   {
485
-    $this->retryCount = $retryCount;
485
+	$this->retryCount = $retryCount;
486 486
   }
487 487
   public function getRetryCount()
488 488
   {
489
-    return $this->retryCount;
489
+	return $this->retryCount;
490 490
   }
491 491
   public function setTag($tag)
492 492
   {
493
-    $this->tag = $tag;
493
+	$this->tag = $tag;
494 494
   }
495 495
   public function getTag()
496 496
   {
497
-    return $this->tag;
497
+	return $this->tag;
498 498
   }
499 499
 }
500 500
 
@@ -513,43 +513,43 @@  discard block
 block discarded – undo
513 513
 
514 514
   public function setAcl(Google_Service_Taskqueue_TaskQueueAcl $acl)
515 515
   {
516
-    $this->acl = $acl;
516
+	$this->acl = $acl;
517 517
   }
518 518
   public function getAcl()
519 519
   {
520
-    return $this->acl;
520
+	return $this->acl;
521 521
   }
522 522
   public function setId($id)
523 523
   {
524
-    $this->id = $id;
524
+	$this->id = $id;
525 525
   }
526 526
   public function getId()
527 527
   {
528
-    return $this->id;
528
+	return $this->id;
529 529
   }
530 530
   public function setKind($kind)
531 531
   {
532
-    $this->kind = $kind;
532
+	$this->kind = $kind;
533 533
   }
534 534
   public function getKind()
535 535
   {
536
-    return $this->kind;
536
+	return $this->kind;
537 537
   }
538 538
   public function setMaxLeases($maxLeases)
539 539
   {
540
-    $this->maxLeases = $maxLeases;
540
+	$this->maxLeases = $maxLeases;
541 541
   }
542 542
   public function getMaxLeases()
543 543
   {
544
-    return $this->maxLeases;
544
+	return $this->maxLeases;
545 545
   }
546 546
   public function setStats(Google_Service_Taskqueue_TaskQueueStats $stats)
547 547
   {
548
-    $this->stats = $stats;
548
+	$this->stats = $stats;
549 549
   }
550 550
   public function getStats()
551 551
   {
552
-    return $this->stats;
552
+	return $this->stats;
553 553
   }
554 554
 }
555 555
 
@@ -565,27 +565,27 @@  discard block
 block discarded – undo
565 565
 
566 566
   public function setAdminEmails($adminEmails)
567 567
   {
568
-    $this->adminEmails = $adminEmails;
568
+	$this->adminEmails = $adminEmails;
569 569
   }
570 570
   public function getAdminEmails()
571 571
   {
572
-    return $this->adminEmails;
572
+	return $this->adminEmails;
573 573
   }
574 574
   public function setConsumerEmails($consumerEmails)
575 575
   {
576
-    $this->consumerEmails = $consumerEmails;
576
+	$this->consumerEmails = $consumerEmails;
577 577
   }
578 578
   public function getConsumerEmails()
579 579
   {
580
-    return $this->consumerEmails;
580
+	return $this->consumerEmails;
581 581
   }
582 582
   public function setProducerEmails($producerEmails)
583 583
   {
584
-    $this->producerEmails = $producerEmails;
584
+	$this->producerEmails = $producerEmails;
585 585
   }
586 586
   public function getProducerEmails()
587 587
   {
588
-    return $this->producerEmails;
588
+	return $this->producerEmails;
589 589
   }
590 590
 }
591 591
 
@@ -601,35 +601,35 @@  discard block
 block discarded – undo
601 601
 
602 602
   public function setLeasedLastHour($leasedLastHour)
603 603
   {
604
-    $this->leasedLastHour = $leasedLastHour;
604
+	$this->leasedLastHour = $leasedLastHour;
605 605
   }
606 606
   public function getLeasedLastHour()
607 607
   {
608
-    return $this->leasedLastHour;
608
+	return $this->leasedLastHour;
609 609
   }
610 610
   public function setLeasedLastMinute($leasedLastMinute)
611 611
   {
612
-    $this->leasedLastMinute = $leasedLastMinute;
612
+	$this->leasedLastMinute = $leasedLastMinute;
613 613
   }
614 614
   public function getLeasedLastMinute()
615 615
   {
616
-    return $this->leasedLastMinute;
616
+	return $this->leasedLastMinute;
617 617
   }
618 618
   public function setOldestTask($oldestTask)
619 619
   {
620
-    $this->oldestTask = $oldestTask;
620
+	$this->oldestTask = $oldestTask;
621 621
   }
622 622
   public function getOldestTask()
623 623
   {
624
-    return $this->oldestTask;
624
+	return $this->oldestTask;
625 625
   }
626 626
   public function setTotalTasks($totalTasks)
627 627
   {
628
-    $this->totalTasks = $totalTasks;
628
+	$this->totalTasks = $totalTasks;
629 629
   }
630 630
   public function getTotalTasks()
631 631
   {
632
-    return $this->totalTasks;
632
+	return $this->totalTasks;
633 633
   }
634 634
 }
635 635
 
@@ -645,19 +645,19 @@  discard block
 block discarded – undo
645 645
 
646 646
   public function setItems($items)
647 647
   {
648
-    $this->items = $items;
648
+	$this->items = $items;
649 649
   }
650 650
   public function getItems()
651 651
   {
652
-    return $this->items;
652
+	return $this->items;
653 653
   }
654 654
   public function setKind($kind)
655 655
   {
656
-    $this->kind = $kind;
656
+	$this->kind = $kind;
657 657
   }
658 658
   public function getKind()
659 659
   {
660
-    return $this->kind;
660
+	return $this->kind;
661 661
   }
662 662
 }
663 663
 
@@ -673,18 +673,18 @@  discard block
 block discarded – undo
673 673
 
674 674
   public function setItems($items)
675 675
   {
676
-    $this->items = $items;
676
+	$this->items = $items;
677 677
   }
678 678
   public function getItems()
679 679
   {
680
-    return $this->items;
680
+	return $this->items;
681 681
   }
682 682
   public function setKind($kind)
683 683
   {
684
-    $this->kind = $kind;
684
+	$this->kind = $kind;
685 685
   }
686 686
   public function getKind()
687 687
   {
688
-    return $this->kind;
688
+	return $this->kind;
689 689
   }
690 690
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
                   'required' => true,
110 110
                 ),
111 111
               ),
112
-            ),'get' => array(
112
+            ), 'get' => array(
113 113
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
114 114
               'httpMethod' => 'GET',
115 115
               'parameters' => array(
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
                   'required' => true,
130 130
                 ),
131 131
               ),
132
-            ),'insert' => array(
132
+            ), 'insert' => array(
133 133
               'path' => '{project}/taskqueues/{taskqueue}/tasks',
134 134
               'httpMethod' => 'POST',
135 135
               'parameters' => array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                   'required' => true,
145 145
                 ),
146 146
               ),
147
-            ),'lease' => array(
147
+            ), 'lease' => array(
148 148
               'path' => '{project}/taskqueues/{taskqueue}/tasks/lease',
149 149
               'httpMethod' => 'POST',
150 150
               'parameters' => array(
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                   'type' => 'string',
178 178
                 ),
179 179
               ),
180
-            ),'list' => array(
180
+            ), 'list' => array(
181 181
               'path' => '{project}/taskqueues/{taskqueue}/tasks',
182 182
               'httpMethod' => 'GET',
183 183
               'parameters' => array(
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
                   'required' => true,
193 193
                 ),
194 194
               ),
195
-            ),'patch' => array(
195
+            ), 'patch' => array(
196 196
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
197 197
               'httpMethod' => 'PATCH',
198 198
               'parameters' => array(
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                   'required' => true,
218 218
                 ),
219 219
               ),
220
-            ),'update' => array(
220
+            ), 'update' => array(
221 221
               'path' => '{project}/taskqueues/{taskqueue}/tasks/{task}',
222 222
               'httpMethod' => 'POST',
223 223
               'parameters' => array(
Please login to merge, or discard this patch.