Test Failed
Push — master ( 3c40c1...6c0c46 )
by Stiofan
17:37
created
geodirectory-admin/google-api-php-client/src/Google/Service/Admin.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@
 block discarded – undo
89 89
    * Insert Mail into Google's Gmail backends (mail.insert)
90 90
    *
91 91
    * @param string $userKey The email or immutable id of the user
92
-   * @param Google_MailItem $postBody
92
+   * @param Google_Service_Admin_MailItem $postBody
93 93
    * @param array $optParams Optional parameters.
94 94
    */
95 95
   public function insert($userKey, Google_Service_Admin_MailItem $postBody, $optParams = array())
Please login to merge, or discard this patch.
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage email messages of users on your domain. */
34 34
   const EMAIL_MIGRATION =
35
-      "https://www.googleapis.com/auth/email.migration";
35
+	  "https://www.googleapis.com/auth/email.migration";
36 36
 
37 37
   public $mail;
38 38
   
@@ -44,32 +44,32 @@  discard block
 block discarded – undo
44 44
    */
45 45
   public function __construct(Google_Client $client)
46 46
   {
47
-    parent::__construct($client);
48
-    $this->rootUrl = 'https://www.googleapis.com/';
49
-    $this->servicePath = 'email/v2/users/';
50
-    $this->version = 'email_migration_v2';
51
-    $this->serviceName = 'admin';
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'email/v2/users/';
50
+	$this->version = 'email_migration_v2';
51
+	$this->serviceName = 'admin';
52 52
 
53
-    $this->mail = new Google_Service_Admin_Mail_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'mail',
57
-        array(
58
-          'methods' => array(
59
-            'insert' => array(
60
-              'path' => '{userKey}/mail',
61
-              'httpMethod' => 'POST',
62
-              'parameters' => array(
63
-                'userKey' => array(
64
-                  'location' => 'path',
65
-                  'type' => 'string',
66
-                  'required' => true,
67
-                ),
68
-              ),
69
-            ),
70
-          )
71
-        )
72
-    );
53
+	$this->mail = new Google_Service_Admin_Mail_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'mail',
57
+		array(
58
+		  'methods' => array(
59
+			'insert' => array(
60
+			  'path' => '{userKey}/mail',
61
+			  'httpMethod' => 'POST',
62
+			  'parameters' => array(
63
+				'userKey' => array(
64
+				  'location' => 'path',
65
+				  'type' => 'string',
66
+				  'required' => true,
67
+				),
68
+			  ),
69
+			),
70
+		  )
71
+		)
72
+	);
73 73
   }
74 74
 }
75 75
 
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
    */
95 95
   public function insert($userKey, Google_Service_Admin_MailItem $postBody, $optParams = array())
96 96
   {
97
-    $params = array('userKey' => $userKey, 'postBody' => $postBody);
98
-    $params = array_merge($params, $optParams);
99
-    return $this->call('insert', array($params));
97
+	$params = array('userKey' => $userKey, 'postBody' => $postBody);
98
+	$params = array_merge($params, $optParams);
99
+	return $this->call('insert', array($params));
100 100
   }
101 101
 }
102 102
 
@@ -121,74 +121,74 @@  discard block
 block discarded – undo
121 121
 
122 122
   public function setIsDeleted($isDeleted)
123 123
   {
124
-    $this->isDeleted = $isDeleted;
124
+	$this->isDeleted = $isDeleted;
125 125
   }
126 126
   public function getIsDeleted()
127 127
   {
128
-    return $this->isDeleted;
128
+	return $this->isDeleted;
129 129
   }
130 130
   public function setIsDraft($isDraft)
131 131
   {
132
-    $this->isDraft = $isDraft;
132
+	$this->isDraft = $isDraft;
133 133
   }
134 134
   public function getIsDraft()
135 135
   {
136
-    return $this->isDraft;
136
+	return $this->isDraft;
137 137
   }
138 138
   public function setIsInbox($isInbox)
139 139
   {
140
-    $this->isInbox = $isInbox;
140
+	$this->isInbox = $isInbox;
141 141
   }
142 142
   public function getIsInbox()
143 143
   {
144
-    return $this->isInbox;
144
+	return $this->isInbox;
145 145
   }
146 146
   public function setIsSent($isSent)
147 147
   {
148
-    $this->isSent = $isSent;
148
+	$this->isSent = $isSent;
149 149
   }
150 150
   public function getIsSent()
151 151
   {
152
-    return $this->isSent;
152
+	return $this->isSent;
153 153
   }
154 154
   public function setIsStarred($isStarred)
155 155
   {
156
-    $this->isStarred = $isStarred;
156
+	$this->isStarred = $isStarred;
157 157
   }
158 158
   public function getIsStarred()
159 159
   {
160
-    return $this->isStarred;
160
+	return $this->isStarred;
161 161
   }
162 162
   public function setIsTrash($isTrash)
163 163
   {
164
-    $this->isTrash = $isTrash;
164
+	$this->isTrash = $isTrash;
165 165
   }
166 166
   public function getIsTrash()
167 167
   {
168
-    return $this->isTrash;
168
+	return $this->isTrash;
169 169
   }
170 170
   public function setIsUnread($isUnread)
171 171
   {
172
-    $this->isUnread = $isUnread;
172
+	$this->isUnread = $isUnread;
173 173
   }
174 174
   public function getIsUnread()
175 175
   {
176
-    return $this->isUnread;
176
+	return $this->isUnread;
177 177
   }
178 178
   public function setKind($kind)
179 179
   {
180
-    $this->kind = $kind;
180
+	$this->kind = $kind;
181 181
   }
182 182
   public function getKind()
183 183
   {
184
-    return $this->kind;
184
+	return $this->kind;
185 185
   }
186 186
   public function setLabels($labels)
187 187
   {
188
-    $this->labels = $labels;
188
+	$this->labels = $labels;
189 189
   }
190 190
   public function getLabels()
191 191
   {
192
-    return $this->labels;
192
+	return $this->labels;
193 193
   }
194 194
 }
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/AdSenseHost.php 3 patches
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -790,7 +790,7 @@  discard block
 block discarded – undo
790 790
    *
791 791
    * @param string $accountId Account which will contain the ad unit.
792 792
    * @param string $adClientId Ad client into which to insert the ad unit.
793
-   * @param Google_AdUnit $postBody
793
+   * @param Google_Service_AdSenseHost_AdUnit $postBody
794 794
    * @param array $optParams Optional parameters.
795 795
    * @return Google_Service_AdSenseHost_AdUnit
796 796
    */
@@ -832,7 +832,7 @@  discard block
 block discarded – undo
832 832
    * @param string $accountId Account which contains the ad client.
833 833
    * @param string $adClientId Ad client which contains the ad unit.
834 834
    * @param string $adUnitId Ad unit to get.
835
-   * @param Google_AdUnit $postBody
835
+   * @param Google_Service_AdSenseHost_AdUnit $postBody
836 836
    * @param array $optParams Optional parameters.
837 837
    * @return Google_Service_AdSenseHost_AdUnit
838 838
    */
@@ -849,7 +849,7 @@  discard block
 block discarded – undo
849 849
    *
850 850
    * @param string $accountId Account which contains the ad client.
851 851
    * @param string $adClientId Ad client which contains the ad unit.
852
-   * @param Google_AdUnit $postBody
852
+   * @param Google_Service_AdSenseHost_AdUnit $postBody
853 853
    * @param array $optParams Optional parameters.
854 854
    * @return Google_Service_AdSenseHost_AdUnit
855 855
    */
@@ -1044,7 +1044,7 @@  discard block
 block discarded – undo
1044 1044
    *
1045 1045
    * @param string $adClientId Ad client to which the new custom channel will be
1046 1046
    * added.
1047
-   * @param Google_CustomChannel $postBody
1047
+   * @param Google_Service_AdSenseHost_CustomChannel $postBody
1048 1048
    * @param array $optParams Optional parameters.
1049 1049
    * @return Google_Service_AdSenseHost_CustomChannel
1050 1050
    */
@@ -1083,7 +1083,7 @@  discard block
 block discarded – undo
1083 1083
    * @param string $adClientId Ad client in which the custom channel will be
1084 1084
    * updated.
1085 1085
    * @param string $customChannelId Custom channel to get.
1086
-   * @param Google_CustomChannel $postBody
1086
+   * @param Google_Service_AdSenseHost_CustomChannel $postBody
1087 1087
    * @param array $optParams Optional parameters.
1088 1088
    * @return Google_Service_AdSenseHost_CustomChannel
1089 1089
    */
@@ -1099,7 +1099,7 @@  discard block
 block discarded – undo
1099 1099
    *
1100 1100
    * @param string $adClientId Ad client in which the custom channel will be
1101 1101
    * updated.
1102
-   * @param Google_CustomChannel $postBody
1102
+   * @param Google_Service_AdSenseHost_CustomChannel $postBody
1103 1103
    * @param array $optParams Optional parameters.
1104 1104
    * @return Google_Service_AdSenseHost_CustomChannel
1105 1105
    */
@@ -1185,7 +1185,7 @@  discard block
 block discarded – undo
1185 1185
    *
1186 1186
    * @param string $adClientId Ad client to which the new URL channel will be
1187 1187
    * added.
1188
-   * @param Google_UrlChannel $postBody
1188
+   * @param Google_Service_AdSenseHost_UrlChannel $postBody
1189 1189
    * @param array $optParams Optional parameters.
1190 1190
    * @return Google_Service_AdSenseHost_UrlChannel
1191 1191
    */
Please login to merge, or discard this patch.
Indentation   +823 added lines, -823 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your AdSense host data and associated accounts. */
35 35
   const ADSENSEHOST =
36
-      "https://www.googleapis.com/auth/adsensehost";
36
+	  "https://www.googleapis.com/auth/adsensehost";
37 37
 
38 38
   public $accounts;
39 39
   public $accounts_adclients;
@@ -53,580 +53,580 @@  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 = 'adsensehost/v4.1/';
59
-    $this->version = 'v4.1';
60
-    $this->serviceName = 'adsensehost';
61
-
62
-    $this->accounts = new Google_Service_AdSenseHost_Accounts_Resource(
63
-        $this,
64
-        $this->serviceName,
65
-        'accounts',
66
-        array(
67
-          'methods' => array(
68
-            'get' => array(
69
-              'path' => 'accounts/{accountId}',
70
-              'httpMethod' => 'GET',
71
-              'parameters' => array(
72
-                'accountId' => array(
73
-                  'location' => 'path',
74
-                  'type' => 'string',
75
-                  'required' => true,
76
-                ),
77
-              ),
78
-            ),'list' => array(
79
-              'path' => 'accounts',
80
-              'httpMethod' => 'GET',
81
-              'parameters' => array(
82
-                'filterAdClientId' => array(
83
-                  'location' => 'query',
84
-                  'type' => 'string',
85
-                  'repeated' => true,
86
-                  'required' => true,
87
-                ),
88
-              ),
89
-            ),
90
-          )
91
-        )
92
-    );
93
-    $this->accounts_adclients = new Google_Service_AdSenseHost_AccountsAdclients_Resource(
94
-        $this,
95
-        $this->serviceName,
96
-        'adclients',
97
-        array(
98
-          'methods' => array(
99
-            'get' => array(
100
-              'path' => 'accounts/{accountId}/adclients/{adClientId}',
101
-              'httpMethod' => 'GET',
102
-              'parameters' => array(
103
-                'accountId' => array(
104
-                  'location' => 'path',
105
-                  'type' => 'string',
106
-                  'required' => true,
107
-                ),
108
-                'adClientId' => array(
109
-                  'location' => 'path',
110
-                  'type' => 'string',
111
-                  'required' => true,
112
-                ),
113
-              ),
114
-            ),'list' => array(
115
-              'path' => 'accounts/{accountId}/adclients',
116
-              'httpMethod' => 'GET',
117
-              'parameters' => array(
118
-                'accountId' => array(
119
-                  'location' => 'path',
120
-                  'type' => 'string',
121
-                  'required' => true,
122
-                ),
123
-                'pageToken' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                ),
127
-                'maxResults' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'integer',
130
-                ),
131
-              ),
132
-            ),
133
-          )
134
-        )
135
-    );
136
-    $this->accounts_adunits = new Google_Service_AdSenseHost_AccountsAdunits_Resource(
137
-        $this,
138
-        $this->serviceName,
139
-        'adunits',
140
-        array(
141
-          'methods' => array(
142
-            'delete' => array(
143
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
144
-              'httpMethod' => 'DELETE',
145
-              'parameters' => array(
146
-                'accountId' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'adClientId' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'adUnitId' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-              ),
162
-            ),'get' => array(
163
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
164
-              'httpMethod' => 'GET',
165
-              'parameters' => array(
166
-                'accountId' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'adClientId' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-                'adUnitId' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-              ),
182
-            ),'getAdCode' => array(
183
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
184
-              'httpMethod' => 'GET',
185
-              'parameters' => array(
186
-                'accountId' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-                'adClientId' => array(
192
-                  'location' => 'path',
193
-                  'type' => 'string',
194
-                  'required' => true,
195
-                ),
196
-                'adUnitId' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-                'hostCustomChannelId' => array(
202
-                  'location' => 'query',
203
-                  'type' => 'string',
204
-                  'repeated' => true,
205
-                ),
206
-              ),
207
-            ),'insert' => array(
208
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
209
-              'httpMethod' => 'POST',
210
-              'parameters' => array(
211
-                'accountId' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-                'adClientId' => array(
217
-                  'location' => 'path',
218
-                  'type' => 'string',
219
-                  'required' => true,
220
-                ),
221
-              ),
222
-            ),'list' => array(
223
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
224
-              'httpMethod' => 'GET',
225
-              'parameters' => array(
226
-                'accountId' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'adClientId' => array(
232
-                  'location' => 'path',
233
-                  'type' => 'string',
234
-                  'required' => true,
235
-                ),
236
-                'includeInactive' => array(
237
-                  'location' => 'query',
238
-                  'type' => 'boolean',
239
-                ),
240
-                'pageToken' => array(
241
-                  'location' => 'query',
242
-                  'type' => 'string',
243
-                ),
244
-                'maxResults' => array(
245
-                  'location' => 'query',
246
-                  'type' => 'integer',
247
-                ),
248
-              ),
249
-            ),'patch' => array(
250
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
251
-              'httpMethod' => 'PATCH',
252
-              'parameters' => array(
253
-                'accountId' => array(
254
-                  'location' => 'path',
255
-                  'type' => 'string',
256
-                  'required' => true,
257
-                ),
258
-                'adClientId' => array(
259
-                  'location' => 'path',
260
-                  'type' => 'string',
261
-                  'required' => true,
262
-                ),
263
-                'adUnitId' => array(
264
-                  'location' => 'query',
265
-                  'type' => 'string',
266
-                  'required' => true,
267
-                ),
268
-              ),
269
-            ),'update' => array(
270
-              'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
271
-              'httpMethod' => 'PUT',
272
-              'parameters' => array(
273
-                'accountId' => array(
274
-                  'location' => 'path',
275
-                  'type' => 'string',
276
-                  'required' => true,
277
-                ),
278
-                'adClientId' => array(
279
-                  'location' => 'path',
280
-                  'type' => 'string',
281
-                  'required' => true,
282
-                ),
283
-              ),
284
-            ),
285
-          )
286
-        )
287
-    );
288
-    $this->accounts_reports = new Google_Service_AdSenseHost_AccountsReports_Resource(
289
-        $this,
290
-        $this->serviceName,
291
-        'reports',
292
-        array(
293
-          'methods' => array(
294
-            'generate' => array(
295
-              'path' => 'accounts/{accountId}/reports',
296
-              'httpMethod' => 'GET',
297
-              'parameters' => array(
298
-                'accountId' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-                'startDate' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'string',
306
-                  'required' => true,
307
-                ),
308
-                'endDate' => array(
309
-                  'location' => 'query',
310
-                  'type' => 'string',
311
-                  'required' => true,
312
-                ),
313
-                'sort' => array(
314
-                  'location' => 'query',
315
-                  'type' => 'string',
316
-                  'repeated' => true,
317
-                ),
318
-                'locale' => array(
319
-                  'location' => 'query',
320
-                  'type' => 'string',
321
-                ),
322
-                'metric' => array(
323
-                  'location' => 'query',
324
-                  'type' => 'string',
325
-                  'repeated' => true,
326
-                ),
327
-                'maxResults' => array(
328
-                  'location' => 'query',
329
-                  'type' => 'integer',
330
-                ),
331
-                'filter' => array(
332
-                  'location' => 'query',
333
-                  'type' => 'string',
334
-                  'repeated' => true,
335
-                ),
336
-                'startIndex' => array(
337
-                  'location' => 'query',
338
-                  'type' => 'integer',
339
-                ),
340
-                'dimension' => array(
341
-                  'location' => 'query',
342
-                  'type' => 'string',
343
-                  'repeated' => true,
344
-                ),
345
-              ),
346
-            ),
347
-          )
348
-        )
349
-    );
350
-    $this->adclients = new Google_Service_AdSenseHost_Adclients_Resource(
351
-        $this,
352
-        $this->serviceName,
353
-        'adclients',
354
-        array(
355
-          'methods' => array(
356
-            'get' => array(
357
-              'path' => 'adclients/{adClientId}',
358
-              'httpMethod' => 'GET',
359
-              'parameters' => array(
360
-                'adClientId' => array(
361
-                  'location' => 'path',
362
-                  'type' => 'string',
363
-                  'required' => true,
364
-                ),
365
-              ),
366
-            ),'list' => array(
367
-              'path' => 'adclients',
368
-              'httpMethod' => 'GET',
369
-              'parameters' => array(
370
-                'pageToken' => array(
371
-                  'location' => 'query',
372
-                  'type' => 'string',
373
-                ),
374
-                'maxResults' => array(
375
-                  'location' => 'query',
376
-                  'type' => 'integer',
377
-                ),
378
-              ),
379
-            ),
380
-          )
381
-        )
382
-    );
383
-    $this->associationsessions = new Google_Service_AdSenseHost_Associationsessions_Resource(
384
-        $this,
385
-        $this->serviceName,
386
-        'associationsessions',
387
-        array(
388
-          'methods' => array(
389
-            'start' => array(
390
-              'path' => 'associationsessions/start',
391
-              'httpMethod' => 'GET',
392
-              'parameters' => array(
393
-                'productCode' => array(
394
-                  'location' => 'query',
395
-                  'type' => 'string',
396
-                  'repeated' => true,
397
-                  'required' => true,
398
-                ),
399
-                'websiteUrl' => array(
400
-                  'location' => 'query',
401
-                  'type' => 'string',
402
-                  'required' => true,
403
-                ),
404
-                'websiteLocale' => array(
405
-                  'location' => 'query',
406
-                  'type' => 'string',
407
-                ),
408
-                'userLocale' => array(
409
-                  'location' => 'query',
410
-                  'type' => 'string',
411
-                ),
412
-              ),
413
-            ),'verify' => array(
414
-              'path' => 'associationsessions/verify',
415
-              'httpMethod' => 'GET',
416
-              'parameters' => array(
417
-                'token' => array(
418
-                  'location' => 'query',
419
-                  'type' => 'string',
420
-                  'required' => true,
421
-                ),
422
-              ),
423
-            ),
424
-          )
425
-        )
426
-    );
427
-    $this->customchannels = new Google_Service_AdSenseHost_Customchannels_Resource(
428
-        $this,
429
-        $this->serviceName,
430
-        'customchannels',
431
-        array(
432
-          'methods' => array(
433
-            'delete' => array(
434
-              'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
435
-              'httpMethod' => 'DELETE',
436
-              'parameters' => array(
437
-                'adClientId' => array(
438
-                  'location' => 'path',
439
-                  'type' => 'string',
440
-                  'required' => true,
441
-                ),
442
-                'customChannelId' => array(
443
-                  'location' => 'path',
444
-                  'type' => 'string',
445
-                  'required' => true,
446
-                ),
447
-              ),
448
-            ),'get' => array(
449
-              'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
450
-              'httpMethod' => 'GET',
451
-              'parameters' => array(
452
-                'adClientId' => array(
453
-                  'location' => 'path',
454
-                  'type' => 'string',
455
-                  'required' => true,
456
-                ),
457
-                'customChannelId' => array(
458
-                  'location' => 'path',
459
-                  'type' => 'string',
460
-                  'required' => true,
461
-                ),
462
-              ),
463
-            ),'insert' => array(
464
-              'path' => 'adclients/{adClientId}/customchannels',
465
-              'httpMethod' => 'POST',
466
-              'parameters' => array(
467
-                'adClientId' => array(
468
-                  'location' => 'path',
469
-                  'type' => 'string',
470
-                  'required' => true,
471
-                ),
472
-              ),
473
-            ),'list' => array(
474
-              'path' => 'adclients/{adClientId}/customchannels',
475
-              'httpMethod' => 'GET',
476
-              'parameters' => array(
477
-                'adClientId' => array(
478
-                  'location' => 'path',
479
-                  'type' => 'string',
480
-                  'required' => true,
481
-                ),
482
-                'pageToken' => array(
483
-                  'location' => 'query',
484
-                  'type' => 'string',
485
-                ),
486
-                'maxResults' => array(
487
-                  'location' => 'query',
488
-                  'type' => 'integer',
489
-                ),
490
-              ),
491
-            ),'patch' => array(
492
-              'path' => 'adclients/{adClientId}/customchannels',
493
-              'httpMethod' => 'PATCH',
494
-              'parameters' => array(
495
-                'adClientId' => array(
496
-                  'location' => 'path',
497
-                  'type' => 'string',
498
-                  'required' => true,
499
-                ),
500
-                'customChannelId' => array(
501
-                  'location' => 'query',
502
-                  'type' => 'string',
503
-                  'required' => true,
504
-                ),
505
-              ),
506
-            ),'update' => array(
507
-              'path' => 'adclients/{adClientId}/customchannels',
508
-              'httpMethod' => 'PUT',
509
-              'parameters' => array(
510
-                'adClientId' => array(
511
-                  'location' => 'path',
512
-                  'type' => 'string',
513
-                  'required' => true,
514
-                ),
515
-              ),
516
-            ),
517
-          )
518
-        )
519
-    );
520
-    $this->reports = new Google_Service_AdSenseHost_Reports_Resource(
521
-        $this,
522
-        $this->serviceName,
523
-        'reports',
524
-        array(
525
-          'methods' => array(
526
-            'generate' => array(
527
-              'path' => 'reports',
528
-              'httpMethod' => 'GET',
529
-              'parameters' => array(
530
-                'startDate' => array(
531
-                  'location' => 'query',
532
-                  'type' => 'string',
533
-                  'required' => true,
534
-                ),
535
-                'endDate' => array(
536
-                  'location' => 'query',
537
-                  'type' => 'string',
538
-                  'required' => true,
539
-                ),
540
-                'sort' => array(
541
-                  'location' => 'query',
542
-                  'type' => 'string',
543
-                  'repeated' => true,
544
-                ),
545
-                'locale' => array(
546
-                  'location' => 'query',
547
-                  'type' => 'string',
548
-                ),
549
-                'metric' => array(
550
-                  'location' => 'query',
551
-                  'type' => 'string',
552
-                  'repeated' => true,
553
-                ),
554
-                'maxResults' => array(
555
-                  'location' => 'query',
556
-                  'type' => 'integer',
557
-                ),
558
-                'filter' => array(
559
-                  'location' => 'query',
560
-                  'type' => 'string',
561
-                  'repeated' => true,
562
-                ),
563
-                'startIndex' => array(
564
-                  'location' => 'query',
565
-                  'type' => 'integer',
566
-                ),
567
-                'dimension' => array(
568
-                  'location' => 'query',
569
-                  'type' => 'string',
570
-                  'repeated' => true,
571
-                ),
572
-              ),
573
-            ),
574
-          )
575
-        )
576
-    );
577
-    $this->urlchannels = new Google_Service_AdSenseHost_Urlchannels_Resource(
578
-        $this,
579
-        $this->serviceName,
580
-        'urlchannels',
581
-        array(
582
-          'methods' => array(
583
-            'delete' => array(
584
-              'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}',
585
-              'httpMethod' => 'DELETE',
586
-              'parameters' => array(
587
-                'adClientId' => array(
588
-                  'location' => 'path',
589
-                  'type' => 'string',
590
-                  'required' => true,
591
-                ),
592
-                'urlChannelId' => array(
593
-                  'location' => 'path',
594
-                  'type' => 'string',
595
-                  'required' => true,
596
-                ),
597
-              ),
598
-            ),'insert' => array(
599
-              'path' => 'adclients/{adClientId}/urlchannels',
600
-              'httpMethod' => 'POST',
601
-              'parameters' => array(
602
-                'adClientId' => array(
603
-                  'location' => 'path',
604
-                  'type' => 'string',
605
-                  'required' => true,
606
-                ),
607
-              ),
608
-            ),'list' => array(
609
-              'path' => 'adclients/{adClientId}/urlchannels',
610
-              'httpMethod' => 'GET',
611
-              'parameters' => array(
612
-                'adClientId' => array(
613
-                  'location' => 'path',
614
-                  'type' => 'string',
615
-                  'required' => true,
616
-                ),
617
-                'pageToken' => array(
618
-                  'location' => 'query',
619
-                  'type' => 'string',
620
-                ),
621
-                'maxResults' => array(
622
-                  'location' => 'query',
623
-                  'type' => 'integer',
624
-                ),
625
-              ),
626
-            ),
627
-          )
628
-        )
629
-    );
56
+	parent::__construct($client);
57
+	$this->rootUrl = 'https://www.googleapis.com/';
58
+	$this->servicePath = 'adsensehost/v4.1/';
59
+	$this->version = 'v4.1';
60
+	$this->serviceName = 'adsensehost';
61
+
62
+	$this->accounts = new Google_Service_AdSenseHost_Accounts_Resource(
63
+		$this,
64
+		$this->serviceName,
65
+		'accounts',
66
+		array(
67
+		  'methods' => array(
68
+			'get' => array(
69
+			  'path' => 'accounts/{accountId}',
70
+			  'httpMethod' => 'GET',
71
+			  'parameters' => array(
72
+				'accountId' => array(
73
+				  'location' => 'path',
74
+				  'type' => 'string',
75
+				  'required' => true,
76
+				),
77
+			  ),
78
+			),'list' => array(
79
+			  'path' => 'accounts',
80
+			  'httpMethod' => 'GET',
81
+			  'parameters' => array(
82
+				'filterAdClientId' => array(
83
+				  'location' => 'query',
84
+				  'type' => 'string',
85
+				  'repeated' => true,
86
+				  'required' => true,
87
+				),
88
+			  ),
89
+			),
90
+		  )
91
+		)
92
+	);
93
+	$this->accounts_adclients = new Google_Service_AdSenseHost_AccountsAdclients_Resource(
94
+		$this,
95
+		$this->serviceName,
96
+		'adclients',
97
+		array(
98
+		  'methods' => array(
99
+			'get' => array(
100
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}',
101
+			  'httpMethod' => 'GET',
102
+			  'parameters' => array(
103
+				'accountId' => array(
104
+				  'location' => 'path',
105
+				  'type' => 'string',
106
+				  'required' => true,
107
+				),
108
+				'adClientId' => array(
109
+				  'location' => 'path',
110
+				  'type' => 'string',
111
+				  'required' => true,
112
+				),
113
+			  ),
114
+			),'list' => array(
115
+			  'path' => 'accounts/{accountId}/adclients',
116
+			  'httpMethod' => 'GET',
117
+			  'parameters' => array(
118
+				'accountId' => array(
119
+				  'location' => 'path',
120
+				  'type' => 'string',
121
+				  'required' => true,
122
+				),
123
+				'pageToken' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				),
127
+				'maxResults' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'integer',
130
+				),
131
+			  ),
132
+			),
133
+		  )
134
+		)
135
+	);
136
+	$this->accounts_adunits = new Google_Service_AdSenseHost_AccountsAdunits_Resource(
137
+		$this,
138
+		$this->serviceName,
139
+		'adunits',
140
+		array(
141
+		  'methods' => array(
142
+			'delete' => array(
143
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
144
+			  'httpMethod' => 'DELETE',
145
+			  'parameters' => array(
146
+				'accountId' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'adClientId' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'adUnitId' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+			  ),
162
+			),'get' => array(
163
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
164
+			  'httpMethod' => 'GET',
165
+			  'parameters' => array(
166
+				'accountId' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'adClientId' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+				'adUnitId' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+			  ),
182
+			),'getAdCode' => array(
183
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
184
+			  'httpMethod' => 'GET',
185
+			  'parameters' => array(
186
+				'accountId' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+				'adClientId' => array(
192
+				  'location' => 'path',
193
+				  'type' => 'string',
194
+				  'required' => true,
195
+				),
196
+				'adUnitId' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+				'hostCustomChannelId' => array(
202
+				  'location' => 'query',
203
+				  'type' => 'string',
204
+				  'repeated' => true,
205
+				),
206
+			  ),
207
+			),'insert' => array(
208
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
209
+			  'httpMethod' => 'POST',
210
+			  'parameters' => array(
211
+				'accountId' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+				'adClientId' => array(
217
+				  'location' => 'path',
218
+				  'type' => 'string',
219
+				  'required' => true,
220
+				),
221
+			  ),
222
+			),'list' => array(
223
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
224
+			  'httpMethod' => 'GET',
225
+			  'parameters' => array(
226
+				'accountId' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'adClientId' => array(
232
+				  'location' => 'path',
233
+				  'type' => 'string',
234
+				  'required' => true,
235
+				),
236
+				'includeInactive' => array(
237
+				  'location' => 'query',
238
+				  'type' => 'boolean',
239
+				),
240
+				'pageToken' => array(
241
+				  'location' => 'query',
242
+				  'type' => 'string',
243
+				),
244
+				'maxResults' => array(
245
+				  'location' => 'query',
246
+				  'type' => 'integer',
247
+				),
248
+			  ),
249
+			),'patch' => array(
250
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
251
+			  'httpMethod' => 'PATCH',
252
+			  'parameters' => array(
253
+				'accountId' => array(
254
+				  'location' => 'path',
255
+				  'type' => 'string',
256
+				  'required' => true,
257
+				),
258
+				'adClientId' => array(
259
+				  'location' => 'path',
260
+				  'type' => 'string',
261
+				  'required' => true,
262
+				),
263
+				'adUnitId' => array(
264
+				  'location' => 'query',
265
+				  'type' => 'string',
266
+				  'required' => true,
267
+				),
268
+			  ),
269
+			),'update' => array(
270
+			  'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
271
+			  'httpMethod' => 'PUT',
272
+			  'parameters' => array(
273
+				'accountId' => array(
274
+				  'location' => 'path',
275
+				  'type' => 'string',
276
+				  'required' => true,
277
+				),
278
+				'adClientId' => array(
279
+				  'location' => 'path',
280
+				  'type' => 'string',
281
+				  'required' => true,
282
+				),
283
+			  ),
284
+			),
285
+		  )
286
+		)
287
+	);
288
+	$this->accounts_reports = new Google_Service_AdSenseHost_AccountsReports_Resource(
289
+		$this,
290
+		$this->serviceName,
291
+		'reports',
292
+		array(
293
+		  'methods' => array(
294
+			'generate' => array(
295
+			  'path' => 'accounts/{accountId}/reports',
296
+			  'httpMethod' => 'GET',
297
+			  'parameters' => array(
298
+				'accountId' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+				'startDate' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'string',
306
+				  'required' => true,
307
+				),
308
+				'endDate' => array(
309
+				  'location' => 'query',
310
+				  'type' => 'string',
311
+				  'required' => true,
312
+				),
313
+				'sort' => array(
314
+				  'location' => 'query',
315
+				  'type' => 'string',
316
+				  'repeated' => true,
317
+				),
318
+				'locale' => array(
319
+				  'location' => 'query',
320
+				  'type' => 'string',
321
+				),
322
+				'metric' => array(
323
+				  'location' => 'query',
324
+				  'type' => 'string',
325
+				  'repeated' => true,
326
+				),
327
+				'maxResults' => array(
328
+				  'location' => 'query',
329
+				  'type' => 'integer',
330
+				),
331
+				'filter' => array(
332
+				  'location' => 'query',
333
+				  'type' => 'string',
334
+				  'repeated' => true,
335
+				),
336
+				'startIndex' => array(
337
+				  'location' => 'query',
338
+				  'type' => 'integer',
339
+				),
340
+				'dimension' => array(
341
+				  'location' => 'query',
342
+				  'type' => 'string',
343
+				  'repeated' => true,
344
+				),
345
+			  ),
346
+			),
347
+		  )
348
+		)
349
+	);
350
+	$this->adclients = new Google_Service_AdSenseHost_Adclients_Resource(
351
+		$this,
352
+		$this->serviceName,
353
+		'adclients',
354
+		array(
355
+		  'methods' => array(
356
+			'get' => array(
357
+			  'path' => 'adclients/{adClientId}',
358
+			  'httpMethod' => 'GET',
359
+			  'parameters' => array(
360
+				'adClientId' => array(
361
+				  'location' => 'path',
362
+				  'type' => 'string',
363
+				  'required' => true,
364
+				),
365
+			  ),
366
+			),'list' => array(
367
+			  'path' => 'adclients',
368
+			  'httpMethod' => 'GET',
369
+			  'parameters' => array(
370
+				'pageToken' => array(
371
+				  'location' => 'query',
372
+				  'type' => 'string',
373
+				),
374
+				'maxResults' => array(
375
+				  'location' => 'query',
376
+				  'type' => 'integer',
377
+				),
378
+			  ),
379
+			),
380
+		  )
381
+		)
382
+	);
383
+	$this->associationsessions = new Google_Service_AdSenseHost_Associationsessions_Resource(
384
+		$this,
385
+		$this->serviceName,
386
+		'associationsessions',
387
+		array(
388
+		  'methods' => array(
389
+			'start' => array(
390
+			  'path' => 'associationsessions/start',
391
+			  'httpMethod' => 'GET',
392
+			  'parameters' => array(
393
+				'productCode' => array(
394
+				  'location' => 'query',
395
+				  'type' => 'string',
396
+				  'repeated' => true,
397
+				  'required' => true,
398
+				),
399
+				'websiteUrl' => array(
400
+				  'location' => 'query',
401
+				  'type' => 'string',
402
+				  'required' => true,
403
+				),
404
+				'websiteLocale' => array(
405
+				  'location' => 'query',
406
+				  'type' => 'string',
407
+				),
408
+				'userLocale' => array(
409
+				  'location' => 'query',
410
+				  'type' => 'string',
411
+				),
412
+			  ),
413
+			),'verify' => array(
414
+			  'path' => 'associationsessions/verify',
415
+			  'httpMethod' => 'GET',
416
+			  'parameters' => array(
417
+				'token' => array(
418
+				  'location' => 'query',
419
+				  'type' => 'string',
420
+				  'required' => true,
421
+				),
422
+			  ),
423
+			),
424
+		  )
425
+		)
426
+	);
427
+	$this->customchannels = new Google_Service_AdSenseHost_Customchannels_Resource(
428
+		$this,
429
+		$this->serviceName,
430
+		'customchannels',
431
+		array(
432
+		  'methods' => array(
433
+			'delete' => array(
434
+			  'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
435
+			  'httpMethod' => 'DELETE',
436
+			  'parameters' => array(
437
+				'adClientId' => array(
438
+				  'location' => 'path',
439
+				  'type' => 'string',
440
+				  'required' => true,
441
+				),
442
+				'customChannelId' => array(
443
+				  'location' => 'path',
444
+				  'type' => 'string',
445
+				  'required' => true,
446
+				),
447
+			  ),
448
+			),'get' => array(
449
+			  'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
450
+			  'httpMethod' => 'GET',
451
+			  'parameters' => array(
452
+				'adClientId' => array(
453
+				  'location' => 'path',
454
+				  'type' => 'string',
455
+				  'required' => true,
456
+				),
457
+				'customChannelId' => array(
458
+				  'location' => 'path',
459
+				  'type' => 'string',
460
+				  'required' => true,
461
+				),
462
+			  ),
463
+			),'insert' => array(
464
+			  'path' => 'adclients/{adClientId}/customchannels',
465
+			  'httpMethod' => 'POST',
466
+			  'parameters' => array(
467
+				'adClientId' => array(
468
+				  'location' => 'path',
469
+				  'type' => 'string',
470
+				  'required' => true,
471
+				),
472
+			  ),
473
+			),'list' => array(
474
+			  'path' => 'adclients/{adClientId}/customchannels',
475
+			  'httpMethod' => 'GET',
476
+			  'parameters' => array(
477
+				'adClientId' => array(
478
+				  'location' => 'path',
479
+				  'type' => 'string',
480
+				  'required' => true,
481
+				),
482
+				'pageToken' => array(
483
+				  'location' => 'query',
484
+				  'type' => 'string',
485
+				),
486
+				'maxResults' => array(
487
+				  'location' => 'query',
488
+				  'type' => 'integer',
489
+				),
490
+			  ),
491
+			),'patch' => array(
492
+			  'path' => 'adclients/{adClientId}/customchannels',
493
+			  'httpMethod' => 'PATCH',
494
+			  'parameters' => array(
495
+				'adClientId' => array(
496
+				  'location' => 'path',
497
+				  'type' => 'string',
498
+				  'required' => true,
499
+				),
500
+				'customChannelId' => array(
501
+				  'location' => 'query',
502
+				  'type' => 'string',
503
+				  'required' => true,
504
+				),
505
+			  ),
506
+			),'update' => array(
507
+			  'path' => 'adclients/{adClientId}/customchannels',
508
+			  'httpMethod' => 'PUT',
509
+			  'parameters' => array(
510
+				'adClientId' => array(
511
+				  'location' => 'path',
512
+				  'type' => 'string',
513
+				  'required' => true,
514
+				),
515
+			  ),
516
+			),
517
+		  )
518
+		)
519
+	);
520
+	$this->reports = new Google_Service_AdSenseHost_Reports_Resource(
521
+		$this,
522
+		$this->serviceName,
523
+		'reports',
524
+		array(
525
+		  'methods' => array(
526
+			'generate' => array(
527
+			  'path' => 'reports',
528
+			  'httpMethod' => 'GET',
529
+			  'parameters' => array(
530
+				'startDate' => array(
531
+				  'location' => 'query',
532
+				  'type' => 'string',
533
+				  'required' => true,
534
+				),
535
+				'endDate' => array(
536
+				  'location' => 'query',
537
+				  'type' => 'string',
538
+				  'required' => true,
539
+				),
540
+				'sort' => array(
541
+				  'location' => 'query',
542
+				  'type' => 'string',
543
+				  'repeated' => true,
544
+				),
545
+				'locale' => array(
546
+				  'location' => 'query',
547
+				  'type' => 'string',
548
+				),
549
+				'metric' => array(
550
+				  'location' => 'query',
551
+				  'type' => 'string',
552
+				  'repeated' => true,
553
+				),
554
+				'maxResults' => array(
555
+				  'location' => 'query',
556
+				  'type' => 'integer',
557
+				),
558
+				'filter' => array(
559
+				  'location' => 'query',
560
+				  'type' => 'string',
561
+				  'repeated' => true,
562
+				),
563
+				'startIndex' => array(
564
+				  'location' => 'query',
565
+				  'type' => 'integer',
566
+				),
567
+				'dimension' => array(
568
+				  'location' => 'query',
569
+				  'type' => 'string',
570
+				  'repeated' => true,
571
+				),
572
+			  ),
573
+			),
574
+		  )
575
+		)
576
+	);
577
+	$this->urlchannels = new Google_Service_AdSenseHost_Urlchannels_Resource(
578
+		$this,
579
+		$this->serviceName,
580
+		'urlchannels',
581
+		array(
582
+		  'methods' => array(
583
+			'delete' => array(
584
+			  'path' => 'adclients/{adClientId}/urlchannels/{urlChannelId}',
585
+			  'httpMethod' => 'DELETE',
586
+			  'parameters' => array(
587
+				'adClientId' => array(
588
+				  'location' => 'path',
589
+				  'type' => 'string',
590
+				  'required' => true,
591
+				),
592
+				'urlChannelId' => array(
593
+				  'location' => 'path',
594
+				  'type' => 'string',
595
+				  'required' => true,
596
+				),
597
+			  ),
598
+			),'insert' => array(
599
+			  'path' => 'adclients/{adClientId}/urlchannels',
600
+			  'httpMethod' => 'POST',
601
+			  'parameters' => array(
602
+				'adClientId' => array(
603
+				  'location' => 'path',
604
+				  'type' => 'string',
605
+				  'required' => true,
606
+				),
607
+			  ),
608
+			),'list' => array(
609
+			  'path' => 'adclients/{adClientId}/urlchannels',
610
+			  'httpMethod' => 'GET',
611
+			  'parameters' => array(
612
+				'adClientId' => array(
613
+				  'location' => 'path',
614
+				  'type' => 'string',
615
+				  'required' => true,
616
+				),
617
+				'pageToken' => array(
618
+				  'location' => 'query',
619
+				  'type' => 'string',
620
+				),
621
+				'maxResults' => array(
622
+				  'location' => 'query',
623
+				  'type' => 'integer',
624
+				),
625
+			  ),
626
+			),
627
+		  )
628
+		)
629
+	);
630 630
   }
631 631
 }
632 632
 
@@ -651,9 +651,9 @@  discard block
 block discarded – undo
651 651
    */
652 652
   public function get($accountId, $optParams = array())
653 653
   {
654
-    $params = array('accountId' => $accountId);
655
-    $params = array_merge($params, $optParams);
656
-    return $this->call('get', array($params), "Google_Service_AdSenseHost_Account");
654
+	$params = array('accountId' => $accountId);
655
+	$params = array_merge($params, $optParams);
656
+	return $this->call('get', array($params), "Google_Service_AdSenseHost_Account");
657 657
   }
658 658
 
659 659
   /**
@@ -666,9 +666,9 @@  discard block
 block discarded – undo
666 666
    */
667 667
   public function listAccounts($filterAdClientId, $optParams = array())
668 668
   {
669
-    $params = array('filterAdClientId' => $filterAdClientId);
670
-    $params = array_merge($params, $optParams);
671
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_Accounts");
669
+	$params = array('filterAdClientId' => $filterAdClientId);
670
+	$params = array_merge($params, $optParams);
671
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_Accounts");
672 672
   }
673 673
 }
674 674
 
@@ -694,9 +694,9 @@  discard block
 block discarded – undo
694 694
    */
695 695
   public function get($accountId, $adClientId, $optParams = array())
696 696
   {
697
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
698
-    $params = array_merge($params, $optParams);
699
-    return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient");
697
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId);
698
+	$params = array_merge($params, $optParams);
699
+	return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient");
700 700
   }
701 701
 
702 702
   /**
@@ -715,9 +715,9 @@  discard block
 block discarded – undo
715 715
    */
716 716
   public function listAccountsAdclients($accountId, $optParams = array())
717 717
   {
718
-    $params = array('accountId' => $accountId);
719
-    $params = array_merge($params, $optParams);
720
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients");
718
+	$params = array('accountId' => $accountId);
719
+	$params = array_merge($params, $optParams);
720
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients");
721 721
   }
722 722
 }
723 723
 /**
@@ -743,9 +743,9 @@  discard block
 block discarded – undo
743 743
    */
744 744
   public function delete($accountId, $adClientId, $adUnitId, $optParams = array())
745 745
   {
746
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
747
-    $params = array_merge($params, $optParams);
748
-    return $this->call('delete', array($params), "Google_Service_AdSenseHost_AdUnit");
746
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
747
+	$params = array_merge($params, $optParams);
748
+	return $this->call('delete', array($params), "Google_Service_AdSenseHost_AdUnit");
749 749
   }
750 750
 
751 751
   /**
@@ -759,9 +759,9 @@  discard block
 block discarded – undo
759 759
    */
760 760
   public function get($accountId, $adClientId, $adUnitId, $optParams = array())
761 761
   {
762
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
763
-    $params = array_merge($params, $optParams);
764
-    return $this->call('get', array($params), "Google_Service_AdSenseHost_AdUnit");
762
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
763
+	$params = array_merge($params, $optParams);
764
+	return $this->call('get', array($params), "Google_Service_AdSenseHost_AdUnit");
765 765
   }
766 766
 
767 767
   /**
@@ -779,9 +779,9 @@  discard block
 block discarded – undo
779 779
    */
780 780
   public function getAdCode($accountId, $adClientId, $adUnitId, $optParams = array())
781 781
   {
782
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
783
-    $params = array_merge($params, $optParams);
784
-    return $this->call('getAdCode', array($params), "Google_Service_AdSenseHost_AdCode");
782
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId);
783
+	$params = array_merge($params, $optParams);
784
+	return $this->call('getAdCode', array($params), "Google_Service_AdSenseHost_AdCode");
785 785
   }
786 786
 
787 787
   /**
@@ -796,9 +796,9 @@  discard block
 block discarded – undo
796 796
    */
797 797
   public function insert($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
798 798
   {
799
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
800
-    $params = array_merge($params, $optParams);
801
-    return $this->call('insert', array($params), "Google_Service_AdSenseHost_AdUnit");
799
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
800
+	$params = array_merge($params, $optParams);
801
+	return $this->call('insert', array($params), "Google_Service_AdSenseHost_AdUnit");
802 802
   }
803 803
 
804 804
   /**
@@ -820,9 +820,9 @@  discard block
 block discarded – undo
820 820
    */
821 821
   public function listAccountsAdunits($accountId, $adClientId, $optParams = array())
822 822
   {
823
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId);
824
-    $params = array_merge($params, $optParams);
825
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_AdUnits");
823
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId);
824
+	$params = array_merge($params, $optParams);
825
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_AdUnits");
826 826
   }
827 827
 
828 828
   /**
@@ -838,9 +838,9 @@  discard block
 block discarded – undo
838 838
    */
839 839
   public function patch($accountId, $adClientId, $adUnitId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
840 840
   {
841
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody);
842
-    $params = array_merge($params, $optParams);
843
-    return $this->call('patch', array($params), "Google_Service_AdSenseHost_AdUnit");
841
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'adUnitId' => $adUnitId, 'postBody' => $postBody);
842
+	$params = array_merge($params, $optParams);
843
+	return $this->call('patch', array($params), "Google_Service_AdSenseHost_AdUnit");
844 844
   }
845 845
 
846 846
   /**
@@ -855,9 +855,9 @@  discard block
 block discarded – undo
855 855
    */
856 856
   public function update($accountId, $adClientId, Google_Service_AdSenseHost_AdUnit $postBody, $optParams = array())
857 857
   {
858
-    $params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
859
-    $params = array_merge($params, $optParams);
860
-    return $this->call('update', array($params), "Google_Service_AdSenseHost_AdUnit");
858
+	$params = array('accountId' => $accountId, 'adClientId' => $adClientId, 'postBody' => $postBody);
859
+	$params = array_merge($params, $optParams);
860
+	return $this->call('update', array($params), "Google_Service_AdSenseHost_AdUnit");
861 861
   }
862 862
 }
863 863
 /**
@@ -898,9 +898,9 @@  discard block
 block discarded – undo
898 898
    */
899 899
   public function generate($accountId, $startDate, $endDate, $optParams = array())
900 900
   {
901
-    $params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
902
-    $params = array_merge($params, $optParams);
903
-    return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report");
901
+	$params = array('accountId' => $accountId, 'startDate' => $startDate, 'endDate' => $endDate);
902
+	$params = array_merge($params, $optParams);
903
+	return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report");
904 904
   }
905 905
 }
906 906
 
@@ -925,9 +925,9 @@  discard block
 block discarded – undo
925 925
    */
926 926
   public function get($adClientId, $optParams = array())
927 927
   {
928
-    $params = array('adClientId' => $adClientId);
929
-    $params = array_merge($params, $optParams);
930
-    return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient");
928
+	$params = array('adClientId' => $adClientId);
929
+	$params = array_merge($params, $optParams);
930
+	return $this->call('get', array($params), "Google_Service_AdSenseHost_AdClient");
931 931
   }
932 932
 
933 933
   /**
@@ -944,9 +944,9 @@  discard block
 block discarded – undo
944 944
    */
945 945
   public function listAdclients($optParams = array())
946 946
   {
947
-    $params = array();
948
-    $params = array_merge($params, $optParams);
949
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients");
947
+	$params = array();
948
+	$params = array_merge($params, $optParams);
949
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_AdClients");
950 950
   }
951 951
 }
952 952
 
@@ -975,9 +975,9 @@  discard block
 block discarded – undo
975 975
    */
976 976
   public function start($productCode, $websiteUrl, $optParams = array())
977 977
   {
978
-    $params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl);
979
-    $params = array_merge($params, $optParams);
980
-    return $this->call('start', array($params), "Google_Service_AdSenseHost_AssociationSession");
978
+	$params = array('productCode' => $productCode, 'websiteUrl' => $websiteUrl);
979
+	$params = array_merge($params, $optParams);
980
+	return $this->call('start', array($params), "Google_Service_AdSenseHost_AssociationSession");
981 981
   }
982 982
 
983 983
   /**
@@ -990,9 +990,9 @@  discard block
 block discarded – undo
990 990
    */
991 991
   public function verify($token, $optParams = array())
992 992
   {
993
-    $params = array('token' => $token);
994
-    $params = array_merge($params, $optParams);
995
-    return $this->call('verify', array($params), "Google_Service_AdSenseHost_AssociationSession");
993
+	$params = array('token' => $token);
994
+	$params = array_merge($params, $optParams);
995
+	return $this->call('verify', array($params), "Google_Service_AdSenseHost_AssociationSession");
996 996
   }
997 997
 }
998 998
 
@@ -1018,9 +1018,9 @@  discard block
 block discarded – undo
1018 1018
    */
1019 1019
   public function delete($adClientId, $customChannelId, $optParams = array())
1020 1020
   {
1021
-    $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1022
-    $params = array_merge($params, $optParams);
1023
-    return $this->call('delete', array($params), "Google_Service_AdSenseHost_CustomChannel");
1021
+	$params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1022
+	$params = array_merge($params, $optParams);
1023
+	return $this->call('delete', array($params), "Google_Service_AdSenseHost_CustomChannel");
1024 1024
   }
1025 1025
 
1026 1026
   /**
@@ -1034,9 +1034,9 @@  discard block
 block discarded – undo
1034 1034
    */
1035 1035
   public function get($adClientId, $customChannelId, $optParams = array())
1036 1036
   {
1037
-    $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1038
-    $params = array_merge($params, $optParams);
1039
-    return $this->call('get', array($params), "Google_Service_AdSenseHost_CustomChannel");
1037
+	$params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId);
1038
+	$params = array_merge($params, $optParams);
1039
+	return $this->call('get', array($params), "Google_Service_AdSenseHost_CustomChannel");
1040 1040
   }
1041 1041
 
1042 1042
   /**
@@ -1050,9 +1050,9 @@  discard block
 block discarded – undo
1050 1050
    */
1051 1051
   public function insert($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
1052 1052
   {
1053
-    $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1054
-    $params = array_merge($params, $optParams);
1055
-    return $this->call('insert', array($params), "Google_Service_AdSenseHost_CustomChannel");
1053
+	$params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1054
+	$params = array_merge($params, $optParams);
1055
+	return $this->call('insert', array($params), "Google_Service_AdSenseHost_CustomChannel");
1056 1056
   }
1057 1057
 
1058 1058
   /**
@@ -1071,9 +1071,9 @@  discard block
 block discarded – undo
1071 1071
    */
1072 1072
   public function listCustomchannels($adClientId, $optParams = array())
1073 1073
   {
1074
-    $params = array('adClientId' => $adClientId);
1075
-    $params = array_merge($params, $optParams);
1076
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_CustomChannels");
1074
+	$params = array('adClientId' => $adClientId);
1075
+	$params = array_merge($params, $optParams);
1076
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_CustomChannels");
1077 1077
   }
1078 1078
 
1079 1079
   /**
@@ -1089,9 +1089,9 @@  discard block
 block discarded – undo
1089 1089
    */
1090 1090
   public function patch($adClientId, $customChannelId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
1091 1091
   {
1092
-    $params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody);
1093
-    $params = array_merge($params, $optParams);
1094
-    return $this->call('patch', array($params), "Google_Service_AdSenseHost_CustomChannel");
1092
+	$params = array('adClientId' => $adClientId, 'customChannelId' => $customChannelId, 'postBody' => $postBody);
1093
+	$params = array_merge($params, $optParams);
1094
+	return $this->call('patch', array($params), "Google_Service_AdSenseHost_CustomChannel");
1095 1095
   }
1096 1096
 
1097 1097
   /**
@@ -1105,9 +1105,9 @@  discard block
 block discarded – undo
1105 1105
    */
1106 1106
   public function update($adClientId, Google_Service_AdSenseHost_CustomChannel $postBody, $optParams = array())
1107 1107
   {
1108
-    $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1109
-    $params = array_merge($params, $optParams);
1110
-    return $this->call('update', array($params), "Google_Service_AdSenseHost_CustomChannel");
1108
+	$params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1109
+	$params = array_merge($params, $optParams);
1110
+	return $this->call('update', array($params), "Google_Service_AdSenseHost_CustomChannel");
1111 1111
   }
1112 1112
 }
1113 1113
 
@@ -1148,9 +1148,9 @@  discard block
 block discarded – undo
1148 1148
    */
1149 1149
   public function generate($startDate, $endDate, $optParams = array())
1150 1150
   {
1151
-    $params = array('startDate' => $startDate, 'endDate' => $endDate);
1152
-    $params = array_merge($params, $optParams);
1153
-    return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report");
1151
+	$params = array('startDate' => $startDate, 'endDate' => $endDate);
1152
+	$params = array_merge($params, $optParams);
1153
+	return $this->call('generate', array($params), "Google_Service_AdSenseHost_Report");
1154 1154
   }
1155 1155
 }
1156 1156
 
@@ -1175,9 +1175,9 @@  discard block
 block discarded – undo
1175 1175
    */
1176 1176
   public function delete($adClientId, $urlChannelId, $optParams = array())
1177 1177
   {
1178
-    $params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId);
1179
-    $params = array_merge($params, $optParams);
1180
-    return $this->call('delete', array($params), "Google_Service_AdSenseHost_UrlChannel");
1178
+	$params = array('adClientId' => $adClientId, 'urlChannelId' => $urlChannelId);
1179
+	$params = array_merge($params, $optParams);
1180
+	return $this->call('delete', array($params), "Google_Service_AdSenseHost_UrlChannel");
1181 1181
   }
1182 1182
 
1183 1183
   /**
@@ -1191,9 +1191,9 @@  discard block
 block discarded – undo
1191 1191
    */
1192 1192
   public function insert($adClientId, Google_Service_AdSenseHost_UrlChannel $postBody, $optParams = array())
1193 1193
   {
1194
-    $params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1195
-    $params = array_merge($params, $optParams);
1196
-    return $this->call('insert', array($params), "Google_Service_AdSenseHost_UrlChannel");
1194
+	$params = array('adClientId' => $adClientId, 'postBody' => $postBody);
1195
+	$params = array_merge($params, $optParams);
1196
+	return $this->call('insert', array($params), "Google_Service_AdSenseHost_UrlChannel");
1197 1197
   }
1198 1198
 
1199 1199
   /**
@@ -1212,9 +1212,9 @@  discard block
 block discarded – undo
1212 1212
    */
1213 1213
   public function listUrlchannels($adClientId, $optParams = array())
1214 1214
   {
1215
-    $params = array('adClientId' => $adClientId);
1216
-    $params = array_merge($params, $optParams);
1217
-    return $this->call('list', array($params), "Google_Service_AdSenseHost_UrlChannels");
1215
+	$params = array('adClientId' => $adClientId);
1216
+	$params = array_merge($params, $optParams);
1217
+	return $this->call('list', array($params), "Google_Service_AdSenseHost_UrlChannels");
1218 1218
   }
1219 1219
 }
1220 1220
 
@@ -1233,35 +1233,35 @@  discard block
 block discarded – undo
1233 1233
 
1234 1234
   public function setId($id)
1235 1235
   {
1236
-    $this->id = $id;
1236
+	$this->id = $id;
1237 1237
   }
1238 1238
   public function getId()
1239 1239
   {
1240
-    return $this->id;
1240
+	return $this->id;
1241 1241
   }
1242 1242
   public function setKind($kind)
1243 1243
   {
1244
-    $this->kind = $kind;
1244
+	$this->kind = $kind;
1245 1245
   }
1246 1246
   public function getKind()
1247 1247
   {
1248
-    return $this->kind;
1248
+	return $this->kind;
1249 1249
   }
1250 1250
   public function setName($name)
1251 1251
   {
1252
-    $this->name = $name;
1252
+	$this->name = $name;
1253 1253
   }
1254 1254
   public function getName()
1255 1255
   {
1256
-    return $this->name;
1256
+	return $this->name;
1257 1257
   }
1258 1258
   public function setStatus($status)
1259 1259
   {
1260
-    $this->status = $status;
1260
+	$this->status = $status;
1261 1261
   }
1262 1262
   public function getStatus()
1263 1263
   {
1264
-    return $this->status;
1264
+	return $this->status;
1265 1265
   }
1266 1266
 }
1267 1267
 
@@ -1278,27 +1278,27 @@  discard block
 block discarded – undo
1278 1278
 
1279 1279
   public function setEtag($etag)
1280 1280
   {
1281
-    $this->etag = $etag;
1281
+	$this->etag = $etag;
1282 1282
   }
1283 1283
   public function getEtag()
1284 1284
   {
1285
-    return $this->etag;
1285
+	return $this->etag;
1286 1286
   }
1287 1287
   public function setItems($items)
1288 1288
   {
1289
-    $this->items = $items;
1289
+	$this->items = $items;
1290 1290
   }
1291 1291
   public function getItems()
1292 1292
   {
1293
-    return $this->items;
1293
+	return $this->items;
1294 1294
   }
1295 1295
   public function setKind($kind)
1296 1296
   {
1297
-    $this->kind = $kind;
1297
+	$this->kind = $kind;
1298 1298
   }
1299 1299
   public function getKind()
1300 1300
   {
1301
-    return $this->kind;
1301
+	return $this->kind;
1302 1302
   }
1303 1303
 }
1304 1304
 
@@ -1315,43 +1315,43 @@  discard block
 block discarded – undo
1315 1315
 
1316 1316
   public function setArcOptIn($arcOptIn)
1317 1317
   {
1318
-    $this->arcOptIn = $arcOptIn;
1318
+	$this->arcOptIn = $arcOptIn;
1319 1319
   }
1320 1320
   public function getArcOptIn()
1321 1321
   {
1322
-    return $this->arcOptIn;
1322
+	return $this->arcOptIn;
1323 1323
   }
1324 1324
   public function setId($id)
1325 1325
   {
1326
-    $this->id = $id;
1326
+	$this->id = $id;
1327 1327
   }
1328 1328
   public function getId()
1329 1329
   {
1330
-    return $this->id;
1330
+	return $this->id;
1331 1331
   }
1332 1332
   public function setKind($kind)
1333 1333
   {
1334
-    $this->kind = $kind;
1334
+	$this->kind = $kind;
1335 1335
   }
1336 1336
   public function getKind()
1337 1337
   {
1338
-    return $this->kind;
1338
+	return $this->kind;
1339 1339
   }
1340 1340
   public function setProductCode($productCode)
1341 1341
   {
1342
-    $this->productCode = $productCode;
1342
+	$this->productCode = $productCode;
1343 1343
   }
1344 1344
   public function getProductCode()
1345 1345
   {
1346
-    return $this->productCode;
1346
+	return $this->productCode;
1347 1347
   }
1348 1348
   public function setSupportsReporting($supportsReporting)
1349 1349
   {
1350
-    $this->supportsReporting = $supportsReporting;
1350
+	$this->supportsReporting = $supportsReporting;
1351 1351
   }
1352 1352
   public function getSupportsReporting()
1353 1353
   {
1354
-    return $this->supportsReporting;
1354
+	return $this->supportsReporting;
1355 1355
   }
1356 1356
 }
1357 1357
 
@@ -1369,35 +1369,35 @@  discard block
 block discarded – undo
1369 1369
 
1370 1370
   public function setEtag($etag)
1371 1371
   {
1372
-    $this->etag = $etag;
1372
+	$this->etag = $etag;
1373 1373
   }
1374 1374
   public function getEtag()
1375 1375
   {
1376
-    return $this->etag;
1376
+	return $this->etag;
1377 1377
   }
1378 1378
   public function setItems($items)
1379 1379
   {
1380
-    $this->items = $items;
1380
+	$this->items = $items;
1381 1381
   }
1382 1382
   public function getItems()
1383 1383
   {
1384
-    return $this->items;
1384
+	return $this->items;
1385 1385
   }
1386 1386
   public function setKind($kind)
1387 1387
   {
1388
-    $this->kind = $kind;
1388
+	$this->kind = $kind;
1389 1389
   }
1390 1390
   public function getKind()
1391 1391
   {
1392
-    return $this->kind;
1392
+	return $this->kind;
1393 1393
   }
1394 1394
   public function setNextPageToken($nextPageToken)
1395 1395
   {
1396
-    $this->nextPageToken = $nextPageToken;
1396
+	$this->nextPageToken = $nextPageToken;
1397 1397
   }
1398 1398
   public function getNextPageToken()
1399 1399
   {
1400
-    return $this->nextPageToken;
1400
+	return $this->nextPageToken;
1401 1401
   }
1402 1402
 }
1403 1403
 
@@ -1411,19 +1411,19 @@  discard block
 block discarded – undo
1411 1411
 
1412 1412
   public function setAdCode($adCode)
1413 1413
   {
1414
-    $this->adCode = $adCode;
1414
+	$this->adCode = $adCode;
1415 1415
   }
1416 1416
   public function getAdCode()
1417 1417
   {
1418
-    return $this->adCode;
1418
+	return $this->adCode;
1419 1419
   }
1420 1420
   public function setKind($kind)
1421 1421
   {
1422
-    $this->kind = $kind;
1422
+	$this->kind = $kind;
1423 1423
   }
1424 1424
   public function getKind()
1425 1425
   {
1426
-    return $this->kind;
1426
+	return $this->kind;
1427 1427
   }
1428 1428
 }
1429 1429
 
@@ -1441,35 +1441,35 @@  discard block
 block discarded – undo
1441 1441
 
1442 1442
   public function setColors(Google_Service_AdSenseHost_AdStyleColors $colors)
1443 1443
   {
1444
-    $this->colors = $colors;
1444
+	$this->colors = $colors;
1445 1445
   }
1446 1446
   public function getColors()
1447 1447
   {
1448
-    return $this->colors;
1448
+	return $this->colors;
1449 1449
   }
1450 1450
   public function setCorners($corners)
1451 1451
   {
1452
-    $this->corners = $corners;
1452
+	$this->corners = $corners;
1453 1453
   }
1454 1454
   public function getCorners()
1455 1455
   {
1456
-    return $this->corners;
1456
+	return $this->corners;
1457 1457
   }
1458 1458
   public function setFont(Google_Service_AdSenseHost_AdStyleFont $font)
1459 1459
   {
1460
-    $this->font = $font;
1460
+	$this->font = $font;
1461 1461
   }
1462 1462
   public function getFont()
1463 1463
   {
1464
-    return $this->font;
1464
+	return $this->font;
1465 1465
   }
1466 1466
   public function setKind($kind)
1467 1467
   {
1468
-    $this->kind = $kind;
1468
+	$this->kind = $kind;
1469 1469
   }
1470 1470
   public function getKind()
1471 1471
   {
1472
-    return $this->kind;
1472
+	return $this->kind;
1473 1473
   }
1474 1474
 }
1475 1475
 
@@ -1486,43 +1486,43 @@  discard block
 block discarded – undo
1486 1486
 
1487 1487
   public function setBackground($background)
1488 1488
   {
1489
-    $this->background = $background;
1489
+	$this->background = $background;
1490 1490
   }
1491 1491
   public function getBackground()
1492 1492
   {
1493
-    return $this->background;
1493
+	return $this->background;
1494 1494
   }
1495 1495
   public function setBorder($border)
1496 1496
   {
1497
-    $this->border = $border;
1497
+	$this->border = $border;
1498 1498
   }
1499 1499
   public function getBorder()
1500 1500
   {
1501
-    return $this->border;
1501
+	return $this->border;
1502 1502
   }
1503 1503
   public function setText($text)
1504 1504
   {
1505
-    $this->text = $text;
1505
+	$this->text = $text;
1506 1506
   }
1507 1507
   public function getText()
1508 1508
   {
1509
-    return $this->text;
1509
+	return $this->text;
1510 1510
   }
1511 1511
   public function setTitle($title)
1512 1512
   {
1513
-    $this->title = $title;
1513
+	$this->title = $title;
1514 1514
   }
1515 1515
   public function getTitle()
1516 1516
   {
1517
-    return $this->title;
1517
+	return $this->title;
1518 1518
   }
1519 1519
   public function setUrl($url)
1520 1520
   {
1521
-    $this->url = $url;
1521
+	$this->url = $url;
1522 1522
   }
1523 1523
   public function getUrl()
1524 1524
   {
1525
-    return $this->url;
1525
+	return $this->url;
1526 1526
   }
1527 1527
 }
1528 1528
 
@@ -1536,19 +1536,19 @@  discard block
 block discarded – undo
1536 1536
 
1537 1537
   public function setFamily($family)
1538 1538
   {
1539
-    $this->family = $family;
1539
+	$this->family = $family;
1540 1540
   }
1541 1541
   public function getFamily()
1542 1542
   {
1543
-    return $this->family;
1543
+	return $this->family;
1544 1544
   }
1545 1545
   public function setSize($size)
1546 1546
   {
1547
-    $this->size = $size;
1547
+	$this->size = $size;
1548 1548
   }
1549 1549
   public function getSize()
1550 1550
   {
1551
-    return $this->size;
1551
+	return $this->size;
1552 1552
   }
1553 1553
 }
1554 1554
 
@@ -1571,67 +1571,67 @@  discard block
 block discarded – undo
1571 1571
 
1572 1572
   public function setCode($code)
1573 1573
   {
1574
-    $this->code = $code;
1574
+	$this->code = $code;
1575 1575
   }
1576 1576
   public function getCode()
1577 1577
   {
1578
-    return $this->code;
1578
+	return $this->code;
1579 1579
   }
1580 1580
   public function setContentAdsSettings(Google_Service_AdSenseHost_AdUnitContentAdsSettings $contentAdsSettings)
1581 1581
   {
1582
-    $this->contentAdsSettings = $contentAdsSettings;
1582
+	$this->contentAdsSettings = $contentAdsSettings;
1583 1583
   }
1584 1584
   public function getContentAdsSettings()
1585 1585
   {
1586
-    return $this->contentAdsSettings;
1586
+	return $this->contentAdsSettings;
1587 1587
   }
1588 1588
   public function setCustomStyle(Google_Service_AdSenseHost_AdStyle $customStyle)
1589 1589
   {
1590
-    $this->customStyle = $customStyle;
1590
+	$this->customStyle = $customStyle;
1591 1591
   }
1592 1592
   public function getCustomStyle()
1593 1593
   {
1594
-    return $this->customStyle;
1594
+	return $this->customStyle;
1595 1595
   }
1596 1596
   public function setId($id)
1597 1597
   {
1598
-    $this->id = $id;
1598
+	$this->id = $id;
1599 1599
   }
1600 1600
   public function getId()
1601 1601
   {
1602
-    return $this->id;
1602
+	return $this->id;
1603 1603
   }
1604 1604
   public function setKind($kind)
1605 1605
   {
1606
-    $this->kind = $kind;
1606
+	$this->kind = $kind;
1607 1607
   }
1608 1608
   public function getKind()
1609 1609
   {
1610
-    return $this->kind;
1610
+	return $this->kind;
1611 1611
   }
1612 1612
   public function setMobileContentAdsSettings(Google_Service_AdSenseHost_AdUnitMobileContentAdsSettings $mobileContentAdsSettings)
1613 1613
   {
1614
-    $this->mobileContentAdsSettings = $mobileContentAdsSettings;
1614
+	$this->mobileContentAdsSettings = $mobileContentAdsSettings;
1615 1615
   }
1616 1616
   public function getMobileContentAdsSettings()
1617 1617
   {
1618
-    return $this->mobileContentAdsSettings;
1618
+	return $this->mobileContentAdsSettings;
1619 1619
   }
1620 1620
   public function setName($name)
1621 1621
   {
1622
-    $this->name = $name;
1622
+	$this->name = $name;
1623 1623
   }
1624 1624
   public function getName()
1625 1625
   {
1626
-    return $this->name;
1626
+	return $this->name;
1627 1627
   }
1628 1628
   public function setStatus($status)
1629 1629
   {
1630
-    $this->status = $status;
1630
+	$this->status = $status;
1631 1631
   }
1632 1632
   public function getStatus()
1633 1633
   {
1634
-    return $this->status;
1634
+	return $this->status;
1635 1635
   }
1636 1636
 }
1637 1637
 
@@ -1647,27 +1647,27 @@  discard block
 block discarded – undo
1647 1647
 
1648 1648
   public function setBackupOption(Google_Service_AdSenseHost_AdUnitContentAdsSettingsBackupOption $backupOption)
1649 1649
   {
1650
-    $this->backupOption = $backupOption;
1650
+	$this->backupOption = $backupOption;
1651 1651
   }
1652 1652
   public function getBackupOption()
1653 1653
   {
1654
-    return $this->backupOption;
1654
+	return $this->backupOption;
1655 1655
   }
1656 1656
   public function setSize($size)
1657 1657
   {
1658
-    $this->size = $size;
1658
+	$this->size = $size;
1659 1659
   }
1660 1660
   public function getSize()
1661 1661
   {
1662
-    return $this->size;
1662
+	return $this->size;
1663 1663
   }
1664 1664
   public function setType($type)
1665 1665
   {
1666
-    $this->type = $type;
1666
+	$this->type = $type;
1667 1667
   }
1668 1668
   public function getType()
1669 1669
   {
1670
-    return $this->type;
1670
+	return $this->type;
1671 1671
   }
1672 1672
 }
1673 1673
 
@@ -1682,27 +1682,27 @@  discard block
 block discarded – undo
1682 1682
 
1683 1683
   public function setColor($color)
1684 1684
   {
1685
-    $this->color = $color;
1685
+	$this->color = $color;
1686 1686
   }
1687 1687
   public function getColor()
1688 1688
   {
1689
-    return $this->color;
1689
+	return $this->color;
1690 1690
   }
1691 1691
   public function setType($type)
1692 1692
   {
1693
-    $this->type = $type;
1693
+	$this->type = $type;
1694 1694
   }
1695 1695
   public function getType()
1696 1696
   {
1697
-    return $this->type;
1697
+	return $this->type;
1698 1698
   }
1699 1699
   public function setUrl($url)
1700 1700
   {
1701
-    $this->url = $url;
1701
+	$this->url = $url;
1702 1702
   }
1703 1703
   public function getUrl()
1704 1704
   {
1705
-    return $this->url;
1705
+	return $this->url;
1706 1706
   }
1707 1707
 }
1708 1708
 
@@ -1718,35 +1718,35 @@  discard block
 block discarded – undo
1718 1718
 
1719 1719
   public function setMarkupLanguage($markupLanguage)
1720 1720
   {
1721
-    $this->markupLanguage = $markupLanguage;
1721
+	$this->markupLanguage = $markupLanguage;
1722 1722
   }
1723 1723
   public function getMarkupLanguage()
1724 1724
   {
1725
-    return $this->markupLanguage;
1725
+	return $this->markupLanguage;
1726 1726
   }
1727 1727
   public function setScriptingLanguage($scriptingLanguage)
1728 1728
   {
1729
-    $this->scriptingLanguage = $scriptingLanguage;
1729
+	$this->scriptingLanguage = $scriptingLanguage;
1730 1730
   }
1731 1731
   public function getScriptingLanguage()
1732 1732
   {
1733
-    return $this->scriptingLanguage;
1733
+	return $this->scriptingLanguage;
1734 1734
   }
1735 1735
   public function setSize($size)
1736 1736
   {
1737
-    $this->size = $size;
1737
+	$this->size = $size;
1738 1738
   }
1739 1739
   public function getSize()
1740 1740
   {
1741
-    return $this->size;
1741
+	return $this->size;
1742 1742
   }
1743 1743
   public function setType($type)
1744 1744
   {
1745
-    $this->type = $type;
1745
+	$this->type = $type;
1746 1746
   }
1747 1747
   public function getType()
1748 1748
   {
1749
-    return $this->type;
1749
+	return $this->type;
1750 1750
   }
1751 1751
 }
1752 1752
 
@@ -1764,35 +1764,35 @@  discard block
 block discarded – undo
1764 1764
 
1765 1765
   public function setEtag($etag)
1766 1766
   {
1767
-    $this->etag = $etag;
1767
+	$this->etag = $etag;
1768 1768
   }
1769 1769
   public function getEtag()
1770 1770
   {
1771
-    return $this->etag;
1771
+	return $this->etag;
1772 1772
   }
1773 1773
   public function setItems($items)
1774 1774
   {
1775
-    $this->items = $items;
1775
+	$this->items = $items;
1776 1776
   }
1777 1777
   public function getItems()
1778 1778
   {
1779
-    return $this->items;
1779
+	return $this->items;
1780 1780
   }
1781 1781
   public function setKind($kind)
1782 1782
   {
1783
-    $this->kind = $kind;
1783
+	$this->kind = $kind;
1784 1784
   }
1785 1785
   public function getKind()
1786 1786
   {
1787
-    return $this->kind;
1787
+	return $this->kind;
1788 1788
   }
1789 1789
   public function setNextPageToken($nextPageToken)
1790 1790
   {
1791
-    $this->nextPageToken = $nextPageToken;
1791
+	$this->nextPageToken = $nextPageToken;
1792 1792
   }
1793 1793
   public function getNextPageToken()
1794 1794
   {
1795
-    return $this->nextPageToken;
1795
+	return $this->nextPageToken;
1796 1796
   }
1797 1797
 }
1798 1798
 
@@ -1814,75 +1814,75 @@  discard block
 block discarded – undo
1814 1814
 
1815 1815
   public function setAccountId($accountId)
1816 1816
   {
1817
-    $this->accountId = $accountId;
1817
+	$this->accountId = $accountId;
1818 1818
   }
1819 1819
   public function getAccountId()
1820 1820
   {
1821
-    return $this->accountId;
1821
+	return $this->accountId;
1822 1822
   }
1823 1823
   public function setId($id)
1824 1824
   {
1825
-    $this->id = $id;
1825
+	$this->id = $id;
1826 1826
   }
1827 1827
   public function getId()
1828 1828
   {
1829
-    return $this->id;
1829
+	return $this->id;
1830 1830
   }
1831 1831
   public function setKind($kind)
1832 1832
   {
1833
-    $this->kind = $kind;
1833
+	$this->kind = $kind;
1834 1834
   }
1835 1835
   public function getKind()
1836 1836
   {
1837
-    return $this->kind;
1837
+	return $this->kind;
1838 1838
   }
1839 1839
   public function setProductCodes($productCodes)
1840 1840
   {
1841
-    $this->productCodes = $productCodes;
1841
+	$this->productCodes = $productCodes;
1842 1842
   }
1843 1843
   public function getProductCodes()
1844 1844
   {
1845
-    return $this->productCodes;
1845
+	return $this->productCodes;
1846 1846
   }
1847 1847
   public function setRedirectUrl($redirectUrl)
1848 1848
   {
1849
-    $this->redirectUrl = $redirectUrl;
1849
+	$this->redirectUrl = $redirectUrl;
1850 1850
   }
1851 1851
   public function getRedirectUrl()
1852 1852
   {
1853
-    return $this->redirectUrl;
1853
+	return $this->redirectUrl;
1854 1854
   }
1855 1855
   public function setStatus($status)
1856 1856
   {
1857
-    $this->status = $status;
1857
+	$this->status = $status;
1858 1858
   }
1859 1859
   public function getStatus()
1860 1860
   {
1861
-    return $this->status;
1861
+	return $this->status;
1862 1862
   }
1863 1863
   public function setUserLocale($userLocale)
1864 1864
   {
1865
-    $this->userLocale = $userLocale;
1865
+	$this->userLocale = $userLocale;
1866 1866
   }
1867 1867
   public function getUserLocale()
1868 1868
   {
1869
-    return $this->userLocale;
1869
+	return $this->userLocale;
1870 1870
   }
1871 1871
   public function setWebsiteLocale($websiteLocale)
1872 1872
   {
1873
-    $this->websiteLocale = $websiteLocale;
1873
+	$this->websiteLocale = $websiteLocale;
1874 1874
   }
1875 1875
   public function getWebsiteLocale()
1876 1876
   {
1877
-    return $this->websiteLocale;
1877
+	return $this->websiteLocale;
1878 1878
   }
1879 1879
   public function setWebsiteUrl($websiteUrl)
1880 1880
   {
1881
-    $this->websiteUrl = $websiteUrl;
1881
+	$this->websiteUrl = $websiteUrl;
1882 1882
   }
1883 1883
   public function getWebsiteUrl()
1884 1884
   {
1885
-    return $this->websiteUrl;
1885
+	return $this->websiteUrl;
1886 1886
   }
1887 1887
 }
1888 1888
 
@@ -1898,35 +1898,35 @@  discard block
 block discarded – undo
1898 1898
 
1899 1899
   public function setCode($code)
1900 1900
   {
1901
-    $this->code = $code;
1901
+	$this->code = $code;
1902 1902
   }
1903 1903
   public function getCode()
1904 1904
   {
1905
-    return $this->code;
1905
+	return $this->code;
1906 1906
   }
1907 1907
   public function setId($id)
1908 1908
   {
1909
-    $this->id = $id;
1909
+	$this->id = $id;
1910 1910
   }
1911 1911
   public function getId()
1912 1912
   {
1913
-    return $this->id;
1913
+	return $this->id;
1914 1914
   }
1915 1915
   public function setKind($kind)
1916 1916
   {
1917
-    $this->kind = $kind;
1917
+	$this->kind = $kind;
1918 1918
   }
1919 1919
   public function getKind()
1920 1920
   {
1921
-    return $this->kind;
1921
+	return $this->kind;
1922 1922
   }
1923 1923
   public function setName($name)
1924 1924
   {
1925
-    $this->name = $name;
1925
+	$this->name = $name;
1926 1926
   }
1927 1927
   public function getName()
1928 1928
   {
1929
-    return $this->name;
1929
+	return $this->name;
1930 1930
   }
1931 1931
 }
1932 1932
 
@@ -1944,35 +1944,35 @@  discard block
 block discarded – undo
1944 1944
 
1945 1945
   public function setEtag($etag)
1946 1946
   {
1947
-    $this->etag = $etag;
1947
+	$this->etag = $etag;
1948 1948
   }
1949 1949
   public function getEtag()
1950 1950
   {
1951
-    return $this->etag;
1951
+	return $this->etag;
1952 1952
   }
1953 1953
   public function setItems($items)
1954 1954
   {
1955
-    $this->items = $items;
1955
+	$this->items = $items;
1956 1956
   }
1957 1957
   public function getItems()
1958 1958
   {
1959
-    return $this->items;
1959
+	return $this->items;
1960 1960
   }
1961 1961
   public function setKind($kind)
1962 1962
   {
1963
-    $this->kind = $kind;
1963
+	$this->kind = $kind;
1964 1964
   }
1965 1965
   public function getKind()
1966 1966
   {
1967
-    return $this->kind;
1967
+	return $this->kind;
1968 1968
   }
1969 1969
   public function setNextPageToken($nextPageToken)
1970 1970
   {
1971
-    $this->nextPageToken = $nextPageToken;
1971
+	$this->nextPageToken = $nextPageToken;
1972 1972
   }
1973 1973
   public function getNextPageToken()
1974 1974
   {
1975
-    return $this->nextPageToken;
1975
+	return $this->nextPageToken;
1976 1976
   }
1977 1977
 }
1978 1978
 
@@ -1993,59 +1993,59 @@  discard block
 block discarded – undo
1993 1993
 
1994 1994
   public function setAverages($averages)
1995 1995
   {
1996
-    $this->averages = $averages;
1996
+	$this->averages = $averages;
1997 1997
   }
1998 1998
   public function getAverages()
1999 1999
   {
2000
-    return $this->averages;
2000
+	return $this->averages;
2001 2001
   }
2002 2002
   public function setHeaders($headers)
2003 2003
   {
2004
-    $this->headers = $headers;
2004
+	$this->headers = $headers;
2005 2005
   }
2006 2006
   public function getHeaders()
2007 2007
   {
2008
-    return $this->headers;
2008
+	return $this->headers;
2009 2009
   }
2010 2010
   public function setKind($kind)
2011 2011
   {
2012
-    $this->kind = $kind;
2012
+	$this->kind = $kind;
2013 2013
   }
2014 2014
   public function getKind()
2015 2015
   {
2016
-    return $this->kind;
2016
+	return $this->kind;
2017 2017
   }
2018 2018
   public function setRows($rows)
2019 2019
   {
2020
-    $this->rows = $rows;
2020
+	$this->rows = $rows;
2021 2021
   }
2022 2022
   public function getRows()
2023 2023
   {
2024
-    return $this->rows;
2024
+	return $this->rows;
2025 2025
   }
2026 2026
   public function setTotalMatchedRows($totalMatchedRows)
2027 2027
   {
2028
-    $this->totalMatchedRows = $totalMatchedRows;
2028
+	$this->totalMatchedRows = $totalMatchedRows;
2029 2029
   }
2030 2030
   public function getTotalMatchedRows()
2031 2031
   {
2032
-    return $this->totalMatchedRows;
2032
+	return $this->totalMatchedRows;
2033 2033
   }
2034 2034
   public function setTotals($totals)
2035 2035
   {
2036
-    $this->totals = $totals;
2036
+	$this->totals = $totals;
2037 2037
   }
2038 2038
   public function getTotals()
2039 2039
   {
2040
-    return $this->totals;
2040
+	return $this->totals;
2041 2041
   }
2042 2042
   public function setWarnings($warnings)
2043 2043
   {
2044
-    $this->warnings = $warnings;
2044
+	$this->warnings = $warnings;
2045 2045
   }
2046 2046
   public function getWarnings()
2047 2047
   {
2048
-    return $this->warnings;
2048
+	return $this->warnings;
2049 2049
   }
2050 2050
 }
2051 2051
 
@@ -2060,27 +2060,27 @@  discard block
 block discarded – undo
2060 2060
 
2061 2061
   public function setCurrency($currency)
2062 2062
   {
2063
-    $this->currency = $currency;
2063
+	$this->currency = $currency;
2064 2064
   }
2065 2065
   public function getCurrency()
2066 2066
   {
2067
-    return $this->currency;
2067
+	return $this->currency;
2068 2068
   }
2069 2069
   public function setName($name)
2070 2070
   {
2071
-    $this->name = $name;
2071
+	$this->name = $name;
2072 2072
   }
2073 2073
   public function getName()
2074 2074
   {
2075
-    return $this->name;
2075
+	return $this->name;
2076 2076
   }
2077 2077
   public function setType($type)
2078 2078
   {
2079
-    $this->type = $type;
2079
+	$this->type = $type;
2080 2080
   }
2081 2081
   public function getType()
2082 2082
   {
2083
-    return $this->type;
2083
+	return $this->type;
2084 2084
   }
2085 2085
 }
2086 2086
 
@@ -2095,27 +2095,27 @@  discard block
 block discarded – undo
2095 2095
 
2096 2096
   public function setId($id)
2097 2097
   {
2098
-    $this->id = $id;
2098
+	$this->id = $id;
2099 2099
   }
2100 2100
   public function getId()
2101 2101
   {
2102
-    return $this->id;
2102
+	return $this->id;
2103 2103
   }
2104 2104
   public function setKind($kind)
2105 2105
   {
2106
-    $this->kind = $kind;
2106
+	$this->kind = $kind;
2107 2107
   }
2108 2108
   public function getKind()
2109 2109
   {
2110
-    return $this->kind;
2110
+	return $this->kind;
2111 2111
   }
2112 2112
   public function setUrlPattern($urlPattern)
2113 2113
   {
2114
-    $this->urlPattern = $urlPattern;
2114
+	$this->urlPattern = $urlPattern;
2115 2115
   }
2116 2116
   public function getUrlPattern()
2117 2117
   {
2118
-    return $this->urlPattern;
2118
+	return $this->urlPattern;
2119 2119
   }
2120 2120
 }
2121 2121
 
@@ -2133,34 +2133,34 @@  discard block
 block discarded – undo
2133 2133
 
2134 2134
   public function setEtag($etag)
2135 2135
   {
2136
-    $this->etag = $etag;
2136
+	$this->etag = $etag;
2137 2137
   }
2138 2138
   public function getEtag()
2139 2139
   {
2140
-    return $this->etag;
2140
+	return $this->etag;
2141 2141
   }
2142 2142
   public function setItems($items)
2143 2143
   {
2144
-    $this->items = $items;
2144
+	$this->items = $items;
2145 2145
   }
2146 2146
   public function getItems()
2147 2147
   {
2148
-    return $this->items;
2148
+	return $this->items;
2149 2149
   }
2150 2150
   public function setKind($kind)
2151 2151
   {
2152
-    $this->kind = $kind;
2152
+	$this->kind = $kind;
2153 2153
   }
2154 2154
   public function getKind()
2155 2155
   {
2156
-    return $this->kind;
2156
+	return $this->kind;
2157 2157
   }
2158 2158
   public function setNextPageToken($nextPageToken)
2159 2159
   {
2160
-    $this->nextPageToken = $nextPageToken;
2160
+	$this->nextPageToken = $nextPageToken;
2161 2161
   }
2162 2162
   public function getNextPageToken()
2163 2163
   {
2164
-    return $this->nextPageToken;
2164
+	return $this->nextPageToken;
2165 2165
   }
2166 2166
 }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
                   'required' => true,
76 76
                 ),
77 77
               ),
78
-            ),'list' => array(
78
+            ), 'list' => array(
79 79
               'path' => 'accounts',
80 80
               'httpMethod' => 'GET',
81 81
               'parameters' => array(
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                   'required' => true,
112 112
                 ),
113 113
               ),
114
-            ),'list' => array(
114
+            ), 'list' => array(
115 115
               'path' => 'accounts/{accountId}/adclients',
116 116
               'httpMethod' => 'GET',
117 117
               'parameters' => array(
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                   'required' => true,
160 160
                 ),
161 161
               ),
162
-            ),'get' => array(
162
+            ), 'get' => array(
163 163
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}',
164 164
               'httpMethod' => 'GET',
165 165
               'parameters' => array(
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
                   'required' => true,
180 180
                 ),
181 181
               ),
182
-            ),'getAdCode' => array(
182
+            ), 'getAdCode' => array(
183 183
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits/{adUnitId}/adcode',
184 184
               'httpMethod' => 'GET',
185 185
               'parameters' => array(
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
                   'repeated' => true,
205 205
                 ),
206 206
               ),
207
-            ),'insert' => array(
207
+            ), 'insert' => array(
208 208
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
209 209
               'httpMethod' => 'POST',
210 210
               'parameters' => array(
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
                   'required' => true,
220 220
                 ),
221 221
               ),
222
-            ),'list' => array(
222
+            ), 'list' => array(
223 223
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
224 224
               'httpMethod' => 'GET',
225 225
               'parameters' => array(
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
                   'type' => 'integer',
247 247
                 ),
248 248
               ),
249
-            ),'patch' => array(
249
+            ), 'patch' => array(
250 250
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
251 251
               'httpMethod' => 'PATCH',
252 252
               'parameters' => array(
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
                   'required' => true,
267 267
                 ),
268 268
               ),
269
-            ),'update' => array(
269
+            ), 'update' => array(
270 270
               'path' => 'accounts/{accountId}/adclients/{adClientId}/adunits',
271 271
               'httpMethod' => 'PUT',
272 272
               'parameters' => array(
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
                   'required' => true,
364 364
                 ),
365 365
               ),
366
-            ),'list' => array(
366
+            ), 'list' => array(
367 367
               'path' => 'adclients',
368 368
               'httpMethod' => 'GET',
369 369
               'parameters' => array(
@@ -410,7 +410,7 @@  discard block
 block discarded – undo
410 410
                   'type' => 'string',
411 411
                 ),
412 412
               ),
413
-            ),'verify' => array(
413
+            ), 'verify' => array(
414 414
               'path' => 'associationsessions/verify',
415 415
               'httpMethod' => 'GET',
416 416
               'parameters' => array(
@@ -445,7 +445,7 @@  discard block
 block discarded – undo
445 445
                   'required' => true,
446 446
                 ),
447 447
               ),
448
-            ),'get' => array(
448
+            ), 'get' => array(
449 449
               'path' => 'adclients/{adClientId}/customchannels/{customChannelId}',
450 450
               'httpMethod' => 'GET',
451 451
               'parameters' => array(
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
                   'required' => true,
461 461
                 ),
462 462
               ),
463
-            ),'insert' => array(
463
+            ), 'insert' => array(
464 464
               'path' => 'adclients/{adClientId}/customchannels',
465 465
               'httpMethod' => 'POST',
466 466
               'parameters' => array(
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                   'required' => true,
471 471
                 ),
472 472
               ),
473
-            ),'list' => array(
473
+            ), 'list' => array(
474 474
               'path' => 'adclients/{adClientId}/customchannels',
475 475
               'httpMethod' => 'GET',
476 476
               'parameters' => array(
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
                   'type' => 'integer',
489 489
                 ),
490 490
               ),
491
-            ),'patch' => array(
491
+            ), 'patch' => array(
492 492
               'path' => 'adclients/{adClientId}/customchannels',
493 493
               'httpMethod' => 'PATCH',
494 494
               'parameters' => array(
@@ -503,7 +503,7 @@  discard block
 block discarded – undo
503 503
                   'required' => true,
504 504
                 ),
505 505
               ),
506
-            ),'update' => array(
506
+            ), 'update' => array(
507 507
               'path' => 'adclients/{adClientId}/customchannels',
508 508
               'httpMethod' => 'PUT',
509 509
               'parameters' => array(
@@ -595,7 +595,7 @@  discard block
 block discarded – undo
595 595
                   'required' => true,
596 596
                 ),
597 597
               ),
598
-            ),'insert' => array(
598
+            ), 'insert' => array(
599 599
               'path' => 'adclients/{adClientId}/urlchannels',
600 600
               'httpMethod' => 'POST',
601 601
               'parameters' => array(
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
                   'required' => true,
606 606
                 ),
607 607
               ),
608
-            ),'list' => array(
608
+            ), 'list' => array(
609 609
               'path' => 'adclients/{adClientId}/urlchannels',
610 610
               'httpMethod' => 'GET',
611 611
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Analytics.php 3 patches
Doc Comments   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -2180,7 +2180,7 @@  discard block
 block discarded – undo
2180 2180
    * Adds a new user to the given account. (accountUserLinks.insert)
2181 2181
    *
2182 2182
    * @param string $accountId Account ID to create the user link for.
2183
-   * @param Google_EntityUserLink $postBody
2183
+   * @param Google_Service_Analytics_EntityUserLink $postBody
2184 2184
    * @param array $optParams Optional parameters.
2185 2185
    * @return Google_Service_Analytics_EntityUserLink
2186 2186
    */
@@ -2218,7 +2218,7 @@  discard block
 block discarded – undo
2218 2218
    *
2219 2219
    * @param string $accountId Account ID to update the account-user link for.
2220 2220
    * @param string $linkId Link ID to update the account-user link for.
2221
-   * @param Google_EntityUserLink $postBody
2221
+   * @param Google_Service_Analytics_EntityUserLink $postBody
2222 2222
    * @param array $optParams Optional parameters.
2223 2223
    * @return Google_Service_Analytics_EntityUserLink
2224 2224
    */
@@ -2328,7 +2328,7 @@  discard block
 block discarded – undo
2328 2328
    * @param string $accountId Account ID for the custom dimension to create.
2329 2329
    * @param string $webPropertyId Web property ID for the custom dimension to
2330 2330
    * create.
2331
-   * @param Google_CustomDimension $postBody
2331
+   * @param Google_Service_Analytics_CustomDimension $postBody
2332 2332
    * @param array $optParams Optional parameters.
2333 2333
    * @return Google_Service_Analytics_CustomDimension
2334 2334
    */
@@ -2370,7 +2370,7 @@  discard block
 block discarded – undo
2370 2370
    * update.
2371 2371
    * @param string $customDimensionId Custom dimension ID for the custom dimension
2372 2372
    * to update.
2373
-   * @param Google_CustomDimension $postBody
2373
+   * @param Google_Service_Analytics_CustomDimension $postBody
2374 2374
    * @param array $optParams Optional parameters.
2375 2375
    *
2376 2376
    * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
@@ -2393,7 +2393,7 @@  discard block
 block discarded – undo
2393 2393
    * update.
2394 2394
    * @param string $customDimensionId Custom dimension ID for the custom dimension
2395 2395
    * to update.
2396
-   * @param Google_CustomDimension $postBody
2396
+   * @param Google_Service_Analytics_CustomDimension $postBody
2397 2397
    * @param array $optParams Optional parameters.
2398 2398
    *
2399 2399
    * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
@@ -2442,7 +2442,7 @@  discard block
 block discarded – undo
2442 2442
    * @param string $accountId Account ID for the custom metric to create.
2443 2443
    * @param string $webPropertyId Web property ID for the custom dimension to
2444 2444
    * create.
2445
-   * @param Google_CustomMetric $postBody
2445
+   * @param Google_Service_Analytics_CustomMetric $postBody
2446 2446
    * @param array $optParams Optional parameters.
2447 2447
    * @return Google_Service_Analytics_CustomMetric
2448 2448
    */
@@ -2483,7 +2483,7 @@  discard block
 block discarded – undo
2483 2483
    * @param string $webPropertyId Web property ID for the custom metric to update.
2484 2484
    * @param string $customMetricId Custom metric ID for the custom metric to
2485 2485
    * update.
2486
-   * @param Google_CustomMetric $postBody
2486
+   * @param Google_Service_Analytics_CustomMetric $postBody
2487 2487
    * @param array $optParams Optional parameters.
2488 2488
    *
2489 2489
    * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
@@ -2505,7 +2505,7 @@  discard block
 block discarded – undo
2505 2505
    * @param string $webPropertyId Web property ID for the custom metric to update.
2506 2506
    * @param string $customMetricId Custom metric ID for the custom metric to
2507 2507
    * update.
2508
-   * @param Google_CustomMetric $postBody
2508
+   * @param Google_Service_Analytics_CustomMetric $postBody
2509 2509
    * @param array $optParams Optional parameters.
2510 2510
    *
2511 2511
    * @opt_param bool ignoreCustomDataSourceLinks Force the update and ignore any
@@ -2570,7 +2570,7 @@  discard block
 block discarded – undo
2570 2570
    * @param string $accountId Account ID to create the experiment for.
2571 2571
    * @param string $webPropertyId Web property ID to create the experiment for.
2572 2572
    * @param string $profileId View (Profile) ID to create the experiment for.
2573
-   * @param Google_Experiment $postBody
2573
+   * @param Google_Service_Analytics_Experiment $postBody
2574 2574
    * @param array $optParams Optional parameters.
2575 2575
    * @return Google_Service_Analytics_Experiment
2576 2576
    */
@@ -2612,7 +2612,7 @@  discard block
 block discarded – undo
2612 2612
    * @param string $webPropertyId Web property ID of the experiment to update.
2613 2613
    * @param string $profileId View (Profile) ID of the experiment to update.
2614 2614
    * @param string $experimentId Experiment ID of the experiment to update.
2615
-   * @param Google_Experiment $postBody
2615
+   * @param Google_Service_Analytics_Experiment $postBody
2616 2616
    * @param array $optParams Optional parameters.
2617 2617
    * @return Google_Service_Analytics_Experiment
2618 2618
    */
@@ -2630,7 +2630,7 @@  discard block
 block discarded – undo
2630 2630
    * @param string $webPropertyId Web property ID of the experiment to update.
2631 2631
    * @param string $profileId View (Profile) ID of the experiment to update.
2632 2632
    * @param string $experimentId Experiment ID of the experiment to update.
2633
-   * @param Google_Experiment $postBody
2633
+   * @param Google_Service_Analytics_Experiment $postBody
2634 2634
    * @param array $optParams Optional parameters.
2635 2635
    * @return Google_Service_Analytics_Experiment
2636 2636
    */
@@ -2686,7 +2686,7 @@  discard block
 block discarded – undo
2686 2686
    * Create a new filter. (filters.insert)
2687 2687
    *
2688 2688
    * @param string $accountId Account ID to create filter for.
2689
-   * @param Google_Filter $postBody
2689
+   * @param Google_Service_Analytics_Filter $postBody
2690 2690
    * @param array $optParams Optional parameters.
2691 2691
    * @return Google_Service_Analytics_Filter
2692 2692
    */
@@ -2722,7 +2722,7 @@  discard block
 block discarded – undo
2722 2722
    *
2723 2723
    * @param string $accountId Account ID to which the filter belongs.
2724 2724
    * @param string $filterId ID of the filter to be updated.
2725
-   * @param Google_Filter $postBody
2725
+   * @param Google_Service_Analytics_Filter $postBody
2726 2726
    * @param array $optParams Optional parameters.
2727 2727
    * @return Google_Service_Analytics_Filter
2728 2728
    */
@@ -2738,7 +2738,7 @@  discard block
 block discarded – undo
2738 2738
    *
2739 2739
    * @param string $accountId Account ID to which the filter belongs.
2740 2740
    * @param string $filterId ID of the filter to be updated.
2741
-   * @param Google_Filter $postBody
2741
+   * @param Google_Service_Analytics_Filter $postBody
2742 2742
    * @param array $optParams Optional parameters.
2743 2743
    * @return Google_Service_Analytics_Filter
2744 2744
    */
@@ -2783,7 +2783,7 @@  discard block
 block discarded – undo
2783 2783
    * @param string $accountId Account ID to create the goal for.
2784 2784
    * @param string $webPropertyId Web property ID to create the goal for.
2785 2785
    * @param string $profileId View (Profile) ID to create the goal for.
2786
-   * @param Google_Goal $postBody
2786
+   * @param Google_Service_Analytics_Goal $postBody
2787 2787
    * @param array $optParams Optional parameters.
2788 2788
    * @return Google_Service_Analytics_Goal
2789 2789
    */
@@ -2829,7 +2829,7 @@  discard block
 block discarded – undo
2829 2829
    * @param string $webPropertyId Web property ID to update the goal.
2830 2830
    * @param string $profileId View (Profile) ID to update the goal.
2831 2831
    * @param string $goalId Index of the goal to be updated.
2832
-   * @param Google_Goal $postBody
2832
+   * @param Google_Service_Analytics_Goal $postBody
2833 2833
    * @param array $optParams Optional parameters.
2834 2834
    * @return Google_Service_Analytics_Goal
2835 2835
    */
@@ -2847,7 +2847,7 @@  discard block
 block discarded – undo
2847 2847
    * @param string $webPropertyId Web property ID to update the goal.
2848 2848
    * @param string $profileId View (Profile) ID to update the goal.
2849 2849
    * @param string $goalId Index of the goal to be updated.
2850
-   * @param Google_Goal $postBody
2850
+   * @param Google_Service_Analytics_Goal $postBody
2851 2851
    * @param array $optParams Optional parameters.
2852 2852
    * @return Google_Service_Analytics_Goal
2853 2853
    */
@@ -2911,7 +2911,7 @@  discard block
 block discarded – undo
2911 2911
    * @param string $webPropertyId Web property Id to create profile filter link
2912 2912
    * for.
2913 2913
    * @param string $profileId Profile ID to create filter link for.
2914
-   * @param Google_ProfileFilterLink $postBody
2914
+   * @param Google_Service_Analytics_ProfileFilterLink $postBody
2915 2915
    * @param array $optParams Optional parameters.
2916 2916
    * @return Google_Service_Analytics_ProfileFilterLink
2917 2917
    */
@@ -2957,7 +2957,7 @@  discard block
 block discarded – undo
2957 2957
    * belongs
2958 2958
    * @param string $profileId Profile ID to which filter link belongs
2959 2959
    * @param string $linkId ID of the profile filter link to be updated.
2960
-   * @param Google_ProfileFilterLink $postBody
2960
+   * @param Google_Service_Analytics_ProfileFilterLink $postBody
2961 2961
    * @param array $optParams Optional parameters.
2962 2962
    * @return Google_Service_Analytics_ProfileFilterLink
2963 2963
    */
@@ -2976,7 +2976,7 @@  discard block
 block discarded – undo
2976 2976
    * belongs
2977 2977
    * @param string $profileId Profile ID to which filter link belongs
2978 2978
    * @param string $linkId ID of the profile filter link to be updated.
2979
-   * @param Google_ProfileFilterLink $postBody
2979
+   * @param Google_Service_Analytics_ProfileFilterLink $postBody
2980 2980
    * @param array $optParams Optional parameters.
2981 2981
    * @return Google_Service_Analytics_ProfileFilterLink
2982 2982
    */
@@ -3020,7 +3020,7 @@  discard block
 block discarded – undo
3020 3020
    * @param string $accountId Account ID to create the user link for.
3021 3021
    * @param string $webPropertyId Web Property ID to create the user link for.
3022 3022
    * @param string $profileId View (Profile) ID to create the user link for.
3023
-   * @param Google_EntityUserLink $postBody
3023
+   * @param Google_Service_Analytics_EntityUserLink $postBody
3024 3024
    * @param array $optParams Optional parameters.
3025 3025
    * @return Google_Service_Analytics_EntityUserLink
3026 3026
    */
@@ -3067,7 +3067,7 @@  discard block
 block discarded – undo
3067 3067
    * @param string $webPropertyId Web Property ID to update the user link for.
3068 3068
    * @param string $profileId View (Profile ID) to update the user link for.
3069 3069
    * @param string $linkId Link ID to update the user link for.
3070
-   * @param Google_EntityUserLink $postBody
3070
+   * @param Google_Service_Analytics_EntityUserLink $postBody
3071 3071
    * @param array $optParams Optional parameters.
3072 3072
    * @return Google_Service_Analytics_EntityUserLink
3073 3073
    */
@@ -3127,7 +3127,7 @@  discard block
 block discarded – undo
3127 3127
    * @param string $accountId Account ID to create the view (profile) for.
3128 3128
    * @param string $webPropertyId Web property ID to create the view (profile)
3129 3129
    * for.
3130
-   * @param Google_Profile $postBody
3130
+   * @param Google_Service_Analytics_Profile $postBody
3131 3131
    * @param array $optParams Optional parameters.
3132 3132
    * @return Google_Service_Analytics_Profile
3133 3133
    */
@@ -3171,7 +3171,7 @@  discard block
 block discarded – undo
3171 3171
    * @param string $webPropertyId Web property ID to which the view (profile)
3172 3172
    * belongs
3173 3173
    * @param string $profileId ID of the view (profile) to be updated.
3174
-   * @param Google_Profile $postBody
3174
+   * @param Google_Service_Analytics_Profile $postBody
3175 3175
    * @param array $optParams Optional parameters.
3176 3176
    * @return Google_Service_Analytics_Profile
3177 3177
    */
@@ -3189,7 +3189,7 @@  discard block
 block discarded – undo
3189 3189
    * @param string $webPropertyId Web property ID to which the view (profile)
3190 3190
    * belongs
3191 3191
    * @param string $profileId ID of the view (profile) to be updated.
3192
-   * @param Google_Profile $postBody
3192
+   * @param Google_Service_Analytics_Profile $postBody
3193 3193
    * @param array $optParams Optional parameters.
3194 3194
    * @return Google_Service_Analytics_Profile
3195 3195
    */
@@ -3268,7 +3268,7 @@  discard block
 block discarded – undo
3268 3268
    * for.
3269 3269
    * @param string $profileId View (Profile) ID to create the unsampled report
3270 3270
    * for.
3271
-   * @param Google_UnsampledReport $postBody
3271
+   * @param Google_Service_Analytics_UnsampledReport $postBody
3272 3272
    * @param array $optParams Optional parameters.
3273 3273
    * @return Google_Service_Analytics_UnsampledReport
3274 3274
    */
@@ -3323,7 +3323,7 @@  discard block
 block discarded – undo
3323 3323
    * @param string $webPropertyId Web property Id for the uploads to be deleted.
3324 3324
    * @param string $customDataSourceId Custom data source Id for the uploads to be
3325 3325
    * deleted.
3326
-   * @param Google_AnalyticsDataimportDeleteUploadDataRequest $postBody
3326
+   * @param Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody
3327 3327
    * @param array $optParams Optional parameters.
3328 3328
    */
3329 3329
   public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array())
@@ -3444,7 +3444,7 @@  discard block
 block discarded – undo
3444 3444
    * @param string $accountId ID of the Google Analytics account to create the
3445 3445
    * link for.
3446 3446
    * @param string $webPropertyId Web property ID to create the link for.
3447
-   * @param Google_EntityAdWordsLink $postBody
3447
+   * @param Google_Service_Analytics_EntityAdWordsLink $postBody
3448 3448
    * @param array $optParams Optional parameters.
3449 3449
    * @return Google_Service_Analytics_EntityAdWordsLink
3450 3450
    */
@@ -3488,7 +3488,7 @@  discard block
 block discarded – undo
3488 3488
    * @param string $webPropertyId Web property ID to retrieve the AdWords link
3489 3489
    * for.
3490 3490
    * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
3491
-   * @param Google_EntityAdWordsLink $postBody
3491
+   * @param Google_Service_Analytics_EntityAdWordsLink $postBody
3492 3492
    * @param array $optParams Optional parameters.
3493 3493
    * @return Google_Service_Analytics_EntityAdWordsLink
3494 3494
    */
@@ -3508,7 +3508,7 @@  discard block
 block discarded – undo
3508 3508
    * @param string $webPropertyId Web property ID to retrieve the AdWords link
3509 3509
    * for.
3510 3510
    * @param string $webPropertyAdWordsLinkId Web property-AdWords link ID.
3511
-   * @param Google_EntityAdWordsLink $postBody
3511
+   * @param Google_Service_Analytics_EntityAdWordsLink $postBody
3512 3512
    * @param array $optParams Optional parameters.
3513 3513
    * @return Google_Service_Analytics_EntityAdWordsLink
3514 3514
    */
@@ -3551,7 +3551,7 @@  discard block
 block discarded – undo
3551 3551
    * least one profile. (webproperties.insert)
3552 3552
    *
3553 3553
    * @param string $accountId Account ID to create the web property for.
3554
-   * @param Google_Webproperty $postBody
3554
+   * @param Google_Service_Analytics_Webproperty $postBody
3555 3555
    * @param array $optParams Optional parameters.
3556 3556
    * @return Google_Service_Analytics_Webproperty
3557 3557
    */
@@ -3590,7 +3590,7 @@  discard block
 block discarded – undo
3590 3590
    *
3591 3591
    * @param string $accountId Account ID to which the web property belongs
3592 3592
    * @param string $webPropertyId Web property ID
3593
-   * @param Google_Webproperty $postBody
3593
+   * @param Google_Service_Analytics_Webproperty $postBody
3594 3594
    * @param array $optParams Optional parameters.
3595 3595
    * @return Google_Service_Analytics_Webproperty
3596 3596
    */
@@ -3606,7 +3606,7 @@  discard block
 block discarded – undo
3606 3606
    *
3607 3607
    * @param string $accountId Account ID to which the web property belongs
3608 3608
    * @param string $webPropertyId Web property ID
3609
-   * @param Google_Webproperty $postBody
3609
+   * @param Google_Service_Analytics_Webproperty $postBody
3610 3610
    * @param array $optParams Optional parameters.
3611 3611
    * @return Google_Service_Analytics_Webproperty
3612 3612
    */
@@ -3648,7 +3648,7 @@  discard block
 block discarded – undo
3648 3648
    *
3649 3649
    * @param string $accountId Account ID to create the user link for.
3650 3650
    * @param string $webPropertyId Web Property ID to create the user link for.
3651
-   * @param Google_EntityUserLink $postBody
3651
+   * @param Google_Service_Analytics_EntityUserLink $postBody
3652 3652
    * @param array $optParams Optional parameters.
3653 3653
    * @return Google_Service_Analytics_EntityUserLink
3654 3654
    */
@@ -3691,7 +3691,7 @@  discard block
 block discarded – undo
3691 3691
    * @param string $webPropertyId Web property ID to update the account-user link
3692 3692
    * for.
3693 3693
    * @param string $linkId Link ID to update the account-user link for.
3694
-   * @param Google_EntityUserLink $postBody
3694
+   * @param Google_Service_Analytics_EntityUserLink $postBody
3695 3695
    * @param array $optParams Optional parameters.
3696 3696
    * @return Google_Service_Analytics_EntityUserLink
3697 3697
    */
@@ -3756,7 +3756,7 @@  discard block
 block discarded – undo
3756 3756
   /**
3757 3757
    * Creates an account ticket. (provisioning.createAccountTicket)
3758 3758
    *
3759
-   * @param Google_AccountTicket $postBody
3759
+   * @param Google_Service_Analytics_AccountTicket $postBody
3760 3760
    * @param array $optParams Optional parameters.
3761 3761
    * @return Google_Service_Analytics_AccountTicket
3762 3762
    */
Please login to merge, or discard this patch.
Indentation   +3292 added lines, -3292 removed lines patch added patch discarded remove patch
@@ -32,22 +32,22 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your Google Analytics data. */
34 34
   const ANALYTICS =
35
-      "https://www.googleapis.com/auth/analytics";
35
+	  "https://www.googleapis.com/auth/analytics";
36 36
   /** Edit Google Analytics management entities. */
37 37
   const ANALYTICS_EDIT =
38
-      "https://www.googleapis.com/auth/analytics.edit";
38
+	  "https://www.googleapis.com/auth/analytics.edit";
39 39
   /** Manage Google Analytics Account users by email address. */
40 40
   const ANALYTICS_MANAGE_USERS =
41
-      "https://www.googleapis.com/auth/analytics.manage.users";
41
+	  "https://www.googleapis.com/auth/analytics.manage.users";
42 42
   /** View Google Analytics user permissions. */
43 43
   const ANALYTICS_MANAGE_USERS_READONLY =
44
-      "https://www.googleapis.com/auth/analytics.manage.users.readonly";
44
+	  "https://www.googleapis.com/auth/analytics.manage.users.readonly";
45 45
   /** Create a new Google Analytics account along with its default property and view. */
46 46
   const ANALYTICS_PROVISION =
47
-      "https://www.googleapis.com/auth/analytics.provision";
47
+	  "https://www.googleapis.com/auth/analytics.provision";
48 48
   /** View your Google Analytics data. */
49 49
   const ANALYTICS_READONLY =
50
-      "https://www.googleapis.com/auth/analytics.readonly";
50
+	  "https://www.googleapis.com/auth/analytics.readonly";
51 51
 
52 52
   public $data_ga;
53 53
   public $data_mcf;
@@ -81,1883 +81,1883 @@  discard block
 block discarded – undo
81 81
    */
82 82
   public function __construct(Google_Client $client)
83 83
   {
84
-    parent::__construct($client);
85
-    $this->rootUrl = 'https://www.googleapis.com/';
86
-    $this->servicePath = 'analytics/v3/';
87
-    $this->version = 'v3';
88
-    $this->serviceName = 'analytics';
89
-
90
-    $this->data_ga = new Google_Service_Analytics_DataGa_Resource(
91
-        $this,
92
-        $this->serviceName,
93
-        'ga',
94
-        array(
95
-          'methods' => array(
96
-            'get' => array(
97
-              'path' => 'data/ga',
98
-              'httpMethod' => 'GET',
99
-              'parameters' => array(
100
-                'ids' => array(
101
-                  'location' => 'query',
102
-                  'type' => 'string',
103
-                  'required' => true,
104
-                ),
105
-                'start-date' => array(
106
-                  'location' => 'query',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'end-date' => array(
111
-                  'location' => 'query',
112
-                  'type' => 'string',
113
-                  'required' => true,
114
-                ),
115
-                'metrics' => array(
116
-                  'location' => 'query',
117
-                  'type' => 'string',
118
-                  'required' => true,
119
-                ),
120
-                'max-results' => array(
121
-                  'location' => 'query',
122
-                  'type' => 'integer',
123
-                ),
124
-                'sort' => array(
125
-                  'location' => 'query',
126
-                  'type' => 'string',
127
-                ),
128
-                'dimensions' => array(
129
-                  'location' => 'query',
130
-                  'type' => 'string',
131
-                ),
132
-                'start-index' => array(
133
-                  'location' => 'query',
134
-                  'type' => 'integer',
135
-                ),
136
-                'segment' => array(
137
-                  'location' => 'query',
138
-                  'type' => 'string',
139
-                ),
140
-                'samplingLevel' => array(
141
-                  'location' => 'query',
142
-                  'type' => 'string',
143
-                ),
144
-                'filters' => array(
145
-                  'location' => 'query',
146
-                  'type' => 'string',
147
-                ),
148
-                'output' => array(
149
-                  'location' => 'query',
150
-                  'type' => 'string',
151
-                ),
152
-              ),
153
-            ),
154
-          )
155
-        )
156
-    );
157
-    $this->data_mcf = new Google_Service_Analytics_DataMcf_Resource(
158
-        $this,
159
-        $this->serviceName,
160
-        'mcf',
161
-        array(
162
-          'methods' => array(
163
-            'get' => array(
164
-              'path' => 'data/mcf',
165
-              'httpMethod' => 'GET',
166
-              'parameters' => array(
167
-                'ids' => array(
168
-                  'location' => 'query',
169
-                  'type' => 'string',
170
-                  'required' => true,
171
-                ),
172
-                'start-date' => array(
173
-                  'location' => 'query',
174
-                  'type' => 'string',
175
-                  'required' => true,
176
-                ),
177
-                'end-date' => array(
178
-                  'location' => 'query',
179
-                  'type' => 'string',
180
-                  'required' => true,
181
-                ),
182
-                'metrics' => array(
183
-                  'location' => 'query',
184
-                  'type' => 'string',
185
-                  'required' => true,
186
-                ),
187
-                'max-results' => array(
188
-                  'location' => 'query',
189
-                  'type' => 'integer',
190
-                ),
191
-                'sort' => array(
192
-                  'location' => 'query',
193
-                  'type' => 'string',
194
-                ),
195
-                'dimensions' => array(
196
-                  'location' => 'query',
197
-                  'type' => 'string',
198
-                ),
199
-                'start-index' => array(
200
-                  'location' => 'query',
201
-                  'type' => 'integer',
202
-                ),
203
-                'samplingLevel' => array(
204
-                  'location' => 'query',
205
-                  'type' => 'string',
206
-                ),
207
-                'filters' => array(
208
-                  'location' => 'query',
209
-                  'type' => 'string',
210
-                ),
211
-              ),
212
-            ),
213
-          )
214
-        )
215
-    );
216
-    $this->data_realtime = new Google_Service_Analytics_DataRealtime_Resource(
217
-        $this,
218
-        $this->serviceName,
219
-        'realtime',
220
-        array(
221
-          'methods' => array(
222
-            'get' => array(
223
-              'path' => 'data/realtime',
224
-              'httpMethod' => 'GET',
225
-              'parameters' => array(
226
-                'ids' => array(
227
-                  'location' => 'query',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'metrics' => array(
232
-                  'location' => 'query',
233
-                  'type' => 'string',
234
-                  'required' => true,
235
-                ),
236
-                'max-results' => array(
237
-                  'location' => 'query',
238
-                  'type' => 'integer',
239
-                ),
240
-                'sort' => array(
241
-                  'location' => 'query',
242
-                  'type' => 'string',
243
-                ),
244
-                'dimensions' => array(
245
-                  'location' => 'query',
246
-                  'type' => 'string',
247
-                ),
248
-                'filters' => array(
249
-                  'location' => 'query',
250
-                  'type' => 'string',
251
-                ),
252
-              ),
253
-            ),
254
-          )
255
-        )
256
-    );
257
-    $this->management_accountSummaries = new Google_Service_Analytics_ManagementAccountSummaries_Resource(
258
-        $this,
259
-        $this->serviceName,
260
-        'accountSummaries',
261
-        array(
262
-          'methods' => array(
263
-            'list' => array(
264
-              'path' => 'management/accountSummaries',
265
-              'httpMethod' => 'GET',
266
-              'parameters' => array(
267
-                'max-results' => array(
268
-                  'location' => 'query',
269
-                  'type' => 'integer',
270
-                ),
271
-                'start-index' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'integer',
274
-                ),
275
-              ),
276
-            ),
277
-          )
278
-        )
279
-    );
280
-    $this->management_accountUserLinks = new Google_Service_Analytics_ManagementAccountUserLinks_Resource(
281
-        $this,
282
-        $this->serviceName,
283
-        'accountUserLinks',
284
-        array(
285
-          'methods' => array(
286
-            'delete' => array(
287
-              'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
288
-              'httpMethod' => 'DELETE',
289
-              'parameters' => array(
290
-                'accountId' => array(
291
-                  'location' => 'path',
292
-                  'type' => 'string',
293
-                  'required' => true,
294
-                ),
295
-                'linkId' => array(
296
-                  'location' => 'path',
297
-                  'type' => 'string',
298
-                  'required' => true,
299
-                ),
300
-              ),
301
-            ),'insert' => array(
302
-              'path' => 'management/accounts/{accountId}/entityUserLinks',
303
-              'httpMethod' => 'POST',
304
-              'parameters' => array(
305
-                'accountId' => array(
306
-                  'location' => 'path',
307
-                  'type' => 'string',
308
-                  'required' => true,
309
-                ),
310
-              ),
311
-            ),'list' => array(
312
-              'path' => 'management/accounts/{accountId}/entityUserLinks',
313
-              'httpMethod' => 'GET',
314
-              'parameters' => array(
315
-                'accountId' => array(
316
-                  'location' => 'path',
317
-                  'type' => 'string',
318
-                  'required' => true,
319
-                ),
320
-                'max-results' => array(
321
-                  'location' => 'query',
322
-                  'type' => 'integer',
323
-                ),
324
-                'start-index' => array(
325
-                  'location' => 'query',
326
-                  'type' => 'integer',
327
-                ),
328
-              ),
329
-            ),'update' => array(
330
-              'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
331
-              'httpMethod' => 'PUT',
332
-              'parameters' => array(
333
-                'accountId' => array(
334
-                  'location' => 'path',
335
-                  'type' => 'string',
336
-                  'required' => true,
337
-                ),
338
-                'linkId' => array(
339
-                  'location' => 'path',
340
-                  'type' => 'string',
341
-                  'required' => true,
342
-                ),
343
-              ),
344
-            ),
345
-          )
346
-        )
347
-    );
348
-    $this->management_accounts = new Google_Service_Analytics_ManagementAccounts_Resource(
349
-        $this,
350
-        $this->serviceName,
351
-        'accounts',
352
-        array(
353
-          'methods' => array(
354
-            'list' => array(
355
-              'path' => 'management/accounts',
356
-              'httpMethod' => 'GET',
357
-              'parameters' => array(
358
-                'max-results' => array(
359
-                  'location' => 'query',
360
-                  'type' => 'integer',
361
-                ),
362
-                'start-index' => array(
363
-                  'location' => 'query',
364
-                  'type' => 'integer',
365
-                ),
366
-              ),
367
-            ),
368
-          )
369
-        )
370
-    );
371
-    $this->management_customDataSources = new Google_Service_Analytics_ManagementCustomDataSources_Resource(
372
-        $this,
373
-        $this->serviceName,
374
-        'customDataSources',
375
-        array(
376
-          'methods' => array(
377
-            'list' => array(
378
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources',
379
-              'httpMethod' => 'GET',
380
-              'parameters' => array(
381
-                'accountId' => array(
382
-                  'location' => 'path',
383
-                  'type' => 'string',
384
-                  'required' => true,
385
-                ),
386
-                'webPropertyId' => array(
387
-                  'location' => 'path',
388
-                  'type' => 'string',
389
-                  'required' => true,
390
-                ),
391
-                'max-results' => array(
392
-                  'location' => 'query',
393
-                  'type' => 'integer',
394
-                ),
395
-                'start-index' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'integer',
398
-                ),
399
-              ),
400
-            ),
401
-          )
402
-        )
403
-    );
404
-    $this->management_customDimensions = new Google_Service_Analytics_ManagementCustomDimensions_Resource(
405
-        $this,
406
-        $this->serviceName,
407
-        'customDimensions',
408
-        array(
409
-          'methods' => array(
410
-            'get' => array(
411
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
412
-              'httpMethod' => 'GET',
413
-              'parameters' => array(
414
-                'accountId' => array(
415
-                  'location' => 'path',
416
-                  'type' => 'string',
417
-                  'required' => true,
418
-                ),
419
-                'webPropertyId' => array(
420
-                  'location' => 'path',
421
-                  'type' => 'string',
422
-                  'required' => true,
423
-                ),
424
-                'customDimensionId' => array(
425
-                  'location' => 'path',
426
-                  'type' => 'string',
427
-                  'required' => true,
428
-                ),
429
-              ),
430
-            ),'insert' => array(
431
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
432
-              'httpMethod' => 'POST',
433
-              'parameters' => array(
434
-                'accountId' => array(
435
-                  'location' => 'path',
436
-                  'type' => 'string',
437
-                  'required' => true,
438
-                ),
439
-                'webPropertyId' => array(
440
-                  'location' => 'path',
441
-                  'type' => 'string',
442
-                  'required' => true,
443
-                ),
444
-              ),
445
-            ),'list' => array(
446
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
447
-              'httpMethod' => 'GET',
448
-              'parameters' => array(
449
-                'accountId' => array(
450
-                  'location' => 'path',
451
-                  'type' => 'string',
452
-                  'required' => true,
453
-                ),
454
-                'webPropertyId' => array(
455
-                  'location' => 'path',
456
-                  'type' => 'string',
457
-                  'required' => true,
458
-                ),
459
-                'max-results' => array(
460
-                  'location' => 'query',
461
-                  'type' => 'integer',
462
-                ),
463
-                'start-index' => array(
464
-                  'location' => 'query',
465
-                  'type' => 'integer',
466
-                ),
467
-              ),
468
-            ),'patch' => array(
469
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
470
-              'httpMethod' => 'PATCH',
471
-              'parameters' => array(
472
-                'accountId' => array(
473
-                  'location' => 'path',
474
-                  'type' => 'string',
475
-                  'required' => true,
476
-                ),
477
-                'webPropertyId' => array(
478
-                  'location' => 'path',
479
-                  'type' => 'string',
480
-                  'required' => true,
481
-                ),
482
-                'customDimensionId' => array(
483
-                  'location' => 'path',
484
-                  'type' => 'string',
485
-                  'required' => true,
486
-                ),
487
-                'ignoreCustomDataSourceLinks' => array(
488
-                  'location' => 'query',
489
-                  'type' => 'boolean',
490
-                ),
491
-              ),
492
-            ),'update' => array(
493
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
494
-              'httpMethod' => 'PUT',
495
-              'parameters' => array(
496
-                'accountId' => array(
497
-                  'location' => 'path',
498
-                  'type' => 'string',
499
-                  'required' => true,
500
-                ),
501
-                'webPropertyId' => array(
502
-                  'location' => 'path',
503
-                  'type' => 'string',
504
-                  'required' => true,
505
-                ),
506
-                'customDimensionId' => array(
507
-                  'location' => 'path',
508
-                  'type' => 'string',
509
-                  'required' => true,
510
-                ),
511
-                'ignoreCustomDataSourceLinks' => array(
512
-                  'location' => 'query',
513
-                  'type' => 'boolean',
514
-                ),
515
-              ),
516
-            ),
517
-          )
518
-        )
519
-    );
520
-    $this->management_customMetrics = new Google_Service_Analytics_ManagementCustomMetrics_Resource(
521
-        $this,
522
-        $this->serviceName,
523
-        'customMetrics',
524
-        array(
525
-          'methods' => array(
526
-            'get' => array(
527
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
528
-              'httpMethod' => 'GET',
529
-              'parameters' => array(
530
-                'accountId' => array(
531
-                  'location' => 'path',
532
-                  'type' => 'string',
533
-                  'required' => true,
534
-                ),
535
-                'webPropertyId' => array(
536
-                  'location' => 'path',
537
-                  'type' => 'string',
538
-                  'required' => true,
539
-                ),
540
-                'customMetricId' => array(
541
-                  'location' => 'path',
542
-                  'type' => 'string',
543
-                  'required' => true,
544
-                ),
545
-              ),
546
-            ),'insert' => array(
547
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
548
-              'httpMethod' => 'POST',
549
-              'parameters' => array(
550
-                'accountId' => array(
551
-                  'location' => 'path',
552
-                  'type' => 'string',
553
-                  'required' => true,
554
-                ),
555
-                'webPropertyId' => array(
556
-                  'location' => 'path',
557
-                  'type' => 'string',
558
-                  'required' => true,
559
-                ),
560
-              ),
561
-            ),'list' => array(
562
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
563
-              'httpMethod' => 'GET',
564
-              'parameters' => array(
565
-                'accountId' => array(
566
-                  'location' => 'path',
567
-                  'type' => 'string',
568
-                  'required' => true,
569
-                ),
570
-                'webPropertyId' => array(
571
-                  'location' => 'path',
572
-                  'type' => 'string',
573
-                  'required' => true,
574
-                ),
575
-                'max-results' => array(
576
-                  'location' => 'query',
577
-                  'type' => 'integer',
578
-                ),
579
-                'start-index' => array(
580
-                  'location' => 'query',
581
-                  'type' => 'integer',
582
-                ),
583
-              ),
584
-            ),'patch' => array(
585
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
586
-              'httpMethod' => 'PATCH',
587
-              'parameters' => array(
588
-                'accountId' => array(
589
-                  'location' => 'path',
590
-                  'type' => 'string',
591
-                  'required' => true,
592
-                ),
593
-                'webPropertyId' => array(
594
-                  'location' => 'path',
595
-                  'type' => 'string',
596
-                  'required' => true,
597
-                ),
598
-                'customMetricId' => array(
599
-                  'location' => 'path',
600
-                  'type' => 'string',
601
-                  'required' => true,
602
-                ),
603
-                'ignoreCustomDataSourceLinks' => array(
604
-                  'location' => 'query',
605
-                  'type' => 'boolean',
606
-                ),
607
-              ),
608
-            ),'update' => array(
609
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
610
-              'httpMethod' => 'PUT',
611
-              'parameters' => array(
612
-                'accountId' => array(
613
-                  'location' => 'path',
614
-                  'type' => 'string',
615
-                  'required' => true,
616
-                ),
617
-                'webPropertyId' => array(
618
-                  'location' => 'path',
619
-                  'type' => 'string',
620
-                  'required' => true,
621
-                ),
622
-                'customMetricId' => array(
623
-                  'location' => 'path',
624
-                  'type' => 'string',
625
-                  'required' => true,
626
-                ),
627
-                'ignoreCustomDataSourceLinks' => array(
628
-                  'location' => 'query',
629
-                  'type' => 'boolean',
630
-                ),
631
-              ),
632
-            ),
633
-          )
634
-        )
635
-    );
636
-    $this->management_experiments = new Google_Service_Analytics_ManagementExperiments_Resource(
637
-        $this,
638
-        $this->serviceName,
639
-        'experiments',
640
-        array(
641
-          'methods' => array(
642
-            'delete' => array(
643
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
644
-              'httpMethod' => 'DELETE',
645
-              'parameters' => array(
646
-                'accountId' => array(
647
-                  'location' => 'path',
648
-                  'type' => 'string',
649
-                  'required' => true,
650
-                ),
651
-                'webPropertyId' => array(
652
-                  'location' => 'path',
653
-                  'type' => 'string',
654
-                  'required' => true,
655
-                ),
656
-                'profileId' => array(
657
-                  'location' => 'path',
658
-                  'type' => 'string',
659
-                  'required' => true,
660
-                ),
661
-                'experimentId' => array(
662
-                  'location' => 'path',
663
-                  'type' => 'string',
664
-                  'required' => true,
665
-                ),
666
-              ),
667
-            ),'get' => array(
668
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
669
-              'httpMethod' => 'GET',
670
-              'parameters' => array(
671
-                'accountId' => array(
672
-                  'location' => 'path',
673
-                  'type' => 'string',
674
-                  'required' => true,
675
-                ),
676
-                'webPropertyId' => array(
677
-                  'location' => 'path',
678
-                  'type' => 'string',
679
-                  'required' => true,
680
-                ),
681
-                'profileId' => array(
682
-                  'location' => 'path',
683
-                  'type' => 'string',
684
-                  'required' => true,
685
-                ),
686
-                'experimentId' => array(
687
-                  'location' => 'path',
688
-                  'type' => 'string',
689
-                  'required' => true,
690
-                ),
691
-              ),
692
-            ),'insert' => array(
693
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
694
-              'httpMethod' => 'POST',
695
-              'parameters' => array(
696
-                'accountId' => array(
697
-                  'location' => 'path',
698
-                  'type' => 'string',
699
-                  'required' => true,
700
-                ),
701
-                'webPropertyId' => array(
702
-                  'location' => 'path',
703
-                  'type' => 'string',
704
-                  'required' => true,
705
-                ),
706
-                'profileId' => array(
707
-                  'location' => 'path',
708
-                  'type' => 'string',
709
-                  'required' => true,
710
-                ),
711
-              ),
712
-            ),'list' => array(
713
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
714
-              'httpMethod' => 'GET',
715
-              'parameters' => array(
716
-                'accountId' => array(
717
-                  'location' => 'path',
718
-                  'type' => 'string',
719
-                  'required' => true,
720
-                ),
721
-                'webPropertyId' => array(
722
-                  'location' => 'path',
723
-                  'type' => 'string',
724
-                  'required' => true,
725
-                ),
726
-                'profileId' => array(
727
-                  'location' => 'path',
728
-                  'type' => 'string',
729
-                  'required' => true,
730
-                ),
731
-                'max-results' => array(
732
-                  'location' => 'query',
733
-                  'type' => 'integer',
734
-                ),
735
-                'start-index' => array(
736
-                  'location' => 'query',
737
-                  'type' => 'integer',
738
-                ),
739
-              ),
740
-            ),'patch' => array(
741
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
742
-              'httpMethod' => 'PATCH',
743
-              'parameters' => array(
744
-                'accountId' => array(
745
-                  'location' => 'path',
746
-                  'type' => 'string',
747
-                  'required' => true,
748
-                ),
749
-                'webPropertyId' => array(
750
-                  'location' => 'path',
751
-                  'type' => 'string',
752
-                  'required' => true,
753
-                ),
754
-                'profileId' => array(
755
-                  'location' => 'path',
756
-                  'type' => 'string',
757
-                  'required' => true,
758
-                ),
759
-                'experimentId' => array(
760
-                  'location' => 'path',
761
-                  'type' => 'string',
762
-                  'required' => true,
763
-                ),
764
-              ),
765
-            ),'update' => array(
766
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
767
-              'httpMethod' => 'PUT',
768
-              'parameters' => array(
769
-                'accountId' => array(
770
-                  'location' => 'path',
771
-                  'type' => 'string',
772
-                  'required' => true,
773
-                ),
774
-                'webPropertyId' => array(
775
-                  'location' => 'path',
776
-                  'type' => 'string',
777
-                  'required' => true,
778
-                ),
779
-                'profileId' => array(
780
-                  'location' => 'path',
781
-                  'type' => 'string',
782
-                  'required' => true,
783
-                ),
784
-                'experimentId' => array(
785
-                  'location' => 'path',
786
-                  'type' => 'string',
787
-                  'required' => true,
788
-                ),
789
-              ),
790
-            ),
791
-          )
792
-        )
793
-    );
794
-    $this->management_filters = new Google_Service_Analytics_ManagementFilters_Resource(
795
-        $this,
796
-        $this->serviceName,
797
-        'filters',
798
-        array(
799
-          'methods' => array(
800
-            'delete' => array(
801
-              'path' => 'management/accounts/{accountId}/filters/{filterId}',
802
-              'httpMethod' => 'DELETE',
803
-              'parameters' => array(
804
-                'accountId' => array(
805
-                  'location' => 'path',
806
-                  'type' => 'string',
807
-                  'required' => true,
808
-                ),
809
-                'filterId' => array(
810
-                  'location' => 'path',
811
-                  'type' => 'string',
812
-                  'required' => true,
813
-                ),
814
-              ),
815
-            ),'get' => array(
816
-              'path' => 'management/accounts/{accountId}/filters/{filterId}',
817
-              'httpMethod' => 'GET',
818
-              'parameters' => array(
819
-                'accountId' => array(
820
-                  'location' => 'path',
821
-                  'type' => 'string',
822
-                  'required' => true,
823
-                ),
824
-                'filterId' => array(
825
-                  'location' => 'path',
826
-                  'type' => 'string',
827
-                  'required' => true,
828
-                ),
829
-              ),
830
-            ),'insert' => array(
831
-              'path' => 'management/accounts/{accountId}/filters',
832
-              'httpMethod' => 'POST',
833
-              'parameters' => array(
834
-                'accountId' => array(
835
-                  'location' => 'path',
836
-                  'type' => 'string',
837
-                  'required' => true,
838
-                ),
839
-              ),
840
-            ),'list' => array(
841
-              'path' => 'management/accounts/{accountId}/filters',
842
-              'httpMethod' => 'GET',
843
-              'parameters' => array(
844
-                'accountId' => array(
845
-                  'location' => 'path',
846
-                  'type' => 'string',
847
-                  'required' => true,
848
-                ),
849
-                'max-results' => array(
850
-                  'location' => 'query',
851
-                  'type' => 'integer',
852
-                ),
853
-                'start-index' => array(
854
-                  'location' => 'query',
855
-                  'type' => 'integer',
856
-                ),
857
-              ),
858
-            ),'patch' => array(
859
-              'path' => 'management/accounts/{accountId}/filters/{filterId}',
860
-              'httpMethod' => 'PATCH',
861
-              'parameters' => array(
862
-                'accountId' => array(
863
-                  'location' => 'path',
864
-                  'type' => 'string',
865
-                  'required' => true,
866
-                ),
867
-                'filterId' => array(
868
-                  'location' => 'path',
869
-                  'type' => 'string',
870
-                  'required' => true,
871
-                ),
872
-              ),
873
-            ),'update' => array(
874
-              'path' => 'management/accounts/{accountId}/filters/{filterId}',
875
-              'httpMethod' => 'PUT',
876
-              'parameters' => array(
877
-                'accountId' => array(
878
-                  'location' => 'path',
879
-                  'type' => 'string',
880
-                  'required' => true,
881
-                ),
882
-                'filterId' => array(
883
-                  'location' => 'path',
884
-                  'type' => 'string',
885
-                  'required' => true,
886
-                ),
887
-              ),
888
-            ),
889
-          )
890
-        )
891
-    );
892
-    $this->management_goals = new Google_Service_Analytics_ManagementGoals_Resource(
893
-        $this,
894
-        $this->serviceName,
895
-        'goals',
896
-        array(
897
-          'methods' => array(
898
-            'get' => array(
899
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
900
-              'httpMethod' => 'GET',
901
-              'parameters' => array(
902
-                'accountId' => array(
903
-                  'location' => 'path',
904
-                  'type' => 'string',
905
-                  'required' => true,
906
-                ),
907
-                'webPropertyId' => array(
908
-                  'location' => 'path',
909
-                  'type' => 'string',
910
-                  'required' => true,
911
-                ),
912
-                'profileId' => array(
913
-                  'location' => 'path',
914
-                  'type' => 'string',
915
-                  'required' => true,
916
-                ),
917
-                'goalId' => array(
918
-                  'location' => 'path',
919
-                  'type' => 'string',
920
-                  'required' => true,
921
-                ),
922
-              ),
923
-            ),'insert' => array(
924
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
925
-              'httpMethod' => 'POST',
926
-              'parameters' => array(
927
-                'accountId' => array(
928
-                  'location' => 'path',
929
-                  'type' => 'string',
930
-                  'required' => true,
931
-                ),
932
-                'webPropertyId' => array(
933
-                  'location' => 'path',
934
-                  'type' => 'string',
935
-                  'required' => true,
936
-                ),
937
-                'profileId' => array(
938
-                  'location' => 'path',
939
-                  'type' => 'string',
940
-                  'required' => true,
941
-                ),
942
-              ),
943
-            ),'list' => array(
944
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
945
-              'httpMethod' => 'GET',
946
-              'parameters' => array(
947
-                'accountId' => array(
948
-                  'location' => 'path',
949
-                  'type' => 'string',
950
-                  'required' => true,
951
-                ),
952
-                'webPropertyId' => array(
953
-                  'location' => 'path',
954
-                  'type' => 'string',
955
-                  'required' => true,
956
-                ),
957
-                'profileId' => array(
958
-                  'location' => 'path',
959
-                  'type' => 'string',
960
-                  'required' => true,
961
-                ),
962
-                'max-results' => array(
963
-                  'location' => 'query',
964
-                  'type' => 'integer',
965
-                ),
966
-                'start-index' => array(
967
-                  'location' => 'query',
968
-                  'type' => 'integer',
969
-                ),
970
-              ),
971
-            ),'patch' => array(
972
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
973
-              'httpMethod' => 'PATCH',
974
-              'parameters' => array(
975
-                'accountId' => array(
976
-                  'location' => 'path',
977
-                  'type' => 'string',
978
-                  'required' => true,
979
-                ),
980
-                'webPropertyId' => array(
981
-                  'location' => 'path',
982
-                  'type' => 'string',
983
-                  'required' => true,
984
-                ),
985
-                'profileId' => array(
986
-                  'location' => 'path',
987
-                  'type' => 'string',
988
-                  'required' => true,
989
-                ),
990
-                'goalId' => array(
991
-                  'location' => 'path',
992
-                  'type' => 'string',
993
-                  'required' => true,
994
-                ),
995
-              ),
996
-            ),'update' => array(
997
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
998
-              'httpMethod' => 'PUT',
999
-              'parameters' => array(
1000
-                'accountId' => array(
1001
-                  'location' => 'path',
1002
-                  'type' => 'string',
1003
-                  'required' => true,
1004
-                ),
1005
-                'webPropertyId' => array(
1006
-                  'location' => 'path',
1007
-                  'type' => 'string',
1008
-                  'required' => true,
1009
-                ),
1010
-                'profileId' => array(
1011
-                  'location' => 'path',
1012
-                  'type' => 'string',
1013
-                  'required' => true,
1014
-                ),
1015
-                'goalId' => array(
1016
-                  'location' => 'path',
1017
-                  'type' => 'string',
1018
-                  'required' => true,
1019
-                ),
1020
-              ),
1021
-            ),
1022
-          )
1023
-        )
1024
-    );
1025
-    $this->management_profileFilterLinks = new Google_Service_Analytics_ManagementProfileFilterLinks_Resource(
1026
-        $this,
1027
-        $this->serviceName,
1028
-        'profileFilterLinks',
1029
-        array(
1030
-          'methods' => array(
1031
-            'delete' => array(
1032
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1033
-              'httpMethod' => 'DELETE',
1034
-              'parameters' => array(
1035
-                'accountId' => array(
1036
-                  'location' => 'path',
1037
-                  'type' => 'string',
1038
-                  'required' => true,
1039
-                ),
1040
-                'webPropertyId' => array(
1041
-                  'location' => 'path',
1042
-                  'type' => 'string',
1043
-                  'required' => true,
1044
-                ),
1045
-                'profileId' => array(
1046
-                  'location' => 'path',
1047
-                  'type' => 'string',
1048
-                  'required' => true,
1049
-                ),
1050
-                'linkId' => array(
1051
-                  'location' => 'path',
1052
-                  'type' => 'string',
1053
-                  'required' => true,
1054
-                ),
1055
-              ),
1056
-            ),'get' => array(
1057
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1058
-              'httpMethod' => 'GET',
1059
-              'parameters' => array(
1060
-                'accountId' => array(
1061
-                  'location' => 'path',
1062
-                  'type' => 'string',
1063
-                  'required' => true,
1064
-                ),
1065
-                'webPropertyId' => array(
1066
-                  'location' => 'path',
1067
-                  'type' => 'string',
1068
-                  'required' => true,
1069
-                ),
1070
-                'profileId' => array(
1071
-                  'location' => 'path',
1072
-                  'type' => 'string',
1073
-                  'required' => true,
1074
-                ),
1075
-                'linkId' => array(
1076
-                  'location' => 'path',
1077
-                  'type' => 'string',
1078
-                  'required' => true,
1079
-                ),
1080
-              ),
1081
-            ),'insert' => array(
1082
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1083
-              'httpMethod' => 'POST',
1084
-              'parameters' => array(
1085
-                'accountId' => array(
1086
-                  'location' => 'path',
1087
-                  'type' => 'string',
1088
-                  'required' => true,
1089
-                ),
1090
-                'webPropertyId' => array(
1091
-                  'location' => 'path',
1092
-                  'type' => 'string',
1093
-                  'required' => true,
1094
-                ),
1095
-                'profileId' => array(
1096
-                  'location' => 'path',
1097
-                  'type' => 'string',
1098
-                  'required' => true,
1099
-                ),
1100
-              ),
1101
-            ),'list' => array(
1102
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1103
-              'httpMethod' => 'GET',
1104
-              'parameters' => array(
1105
-                'accountId' => array(
1106
-                  'location' => 'path',
1107
-                  'type' => 'string',
1108
-                  'required' => true,
1109
-                ),
1110
-                'webPropertyId' => array(
1111
-                  'location' => 'path',
1112
-                  'type' => 'string',
1113
-                  'required' => true,
1114
-                ),
1115
-                'profileId' => array(
1116
-                  'location' => 'path',
1117
-                  'type' => 'string',
1118
-                  'required' => true,
1119
-                ),
1120
-                'max-results' => array(
1121
-                  'location' => 'query',
1122
-                  'type' => 'integer',
1123
-                ),
1124
-                'start-index' => array(
1125
-                  'location' => 'query',
1126
-                  'type' => 'integer',
1127
-                ),
1128
-              ),
1129
-            ),'patch' => array(
1130
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1131
-              'httpMethod' => 'PATCH',
1132
-              'parameters' => array(
1133
-                'accountId' => array(
1134
-                  'location' => 'path',
1135
-                  'type' => 'string',
1136
-                  'required' => true,
1137
-                ),
1138
-                'webPropertyId' => array(
1139
-                  'location' => 'path',
1140
-                  'type' => 'string',
1141
-                  'required' => true,
1142
-                ),
1143
-                'profileId' => array(
1144
-                  'location' => 'path',
1145
-                  'type' => 'string',
1146
-                  'required' => true,
1147
-                ),
1148
-                'linkId' => array(
1149
-                  'location' => 'path',
1150
-                  'type' => 'string',
1151
-                  'required' => true,
1152
-                ),
1153
-              ),
1154
-            ),'update' => array(
1155
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1156
-              'httpMethod' => 'PUT',
1157
-              'parameters' => array(
1158
-                'accountId' => array(
1159
-                  'location' => 'path',
1160
-                  'type' => 'string',
1161
-                  'required' => true,
1162
-                ),
1163
-                'webPropertyId' => array(
1164
-                  'location' => 'path',
1165
-                  'type' => 'string',
1166
-                  'required' => true,
1167
-                ),
1168
-                'profileId' => array(
1169
-                  'location' => 'path',
1170
-                  'type' => 'string',
1171
-                  'required' => true,
1172
-                ),
1173
-                'linkId' => array(
1174
-                  'location' => 'path',
1175
-                  'type' => 'string',
1176
-                  'required' => true,
1177
-                ),
1178
-              ),
1179
-            ),
1180
-          )
1181
-        )
1182
-    );
1183
-    $this->management_profileUserLinks = new Google_Service_Analytics_ManagementProfileUserLinks_Resource(
1184
-        $this,
1185
-        $this->serviceName,
1186
-        'profileUserLinks',
1187
-        array(
1188
-          'methods' => array(
1189
-            'delete' => array(
1190
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1191
-              'httpMethod' => 'DELETE',
1192
-              'parameters' => array(
1193
-                'accountId' => array(
1194
-                  'location' => 'path',
1195
-                  'type' => 'string',
1196
-                  'required' => true,
1197
-                ),
1198
-                'webPropertyId' => array(
1199
-                  'location' => 'path',
1200
-                  'type' => 'string',
1201
-                  'required' => true,
1202
-                ),
1203
-                'profileId' => array(
1204
-                  'location' => 'path',
1205
-                  'type' => 'string',
1206
-                  'required' => true,
1207
-                ),
1208
-                'linkId' => array(
1209
-                  'location' => 'path',
1210
-                  'type' => 'string',
1211
-                  'required' => true,
1212
-                ),
1213
-              ),
1214
-            ),'insert' => array(
1215
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1216
-              'httpMethod' => 'POST',
1217
-              'parameters' => array(
1218
-                'accountId' => array(
1219
-                  'location' => 'path',
1220
-                  'type' => 'string',
1221
-                  'required' => true,
1222
-                ),
1223
-                'webPropertyId' => array(
1224
-                  'location' => 'path',
1225
-                  'type' => 'string',
1226
-                  'required' => true,
1227
-                ),
1228
-                'profileId' => array(
1229
-                  'location' => 'path',
1230
-                  'type' => 'string',
1231
-                  'required' => true,
1232
-                ),
1233
-              ),
1234
-            ),'list' => array(
1235
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1236
-              'httpMethod' => 'GET',
1237
-              'parameters' => array(
1238
-                'accountId' => array(
1239
-                  'location' => 'path',
1240
-                  'type' => 'string',
1241
-                  'required' => true,
1242
-                ),
1243
-                'webPropertyId' => array(
1244
-                  'location' => 'path',
1245
-                  'type' => 'string',
1246
-                  'required' => true,
1247
-                ),
1248
-                'profileId' => array(
1249
-                  'location' => 'path',
1250
-                  'type' => 'string',
1251
-                  'required' => true,
1252
-                ),
1253
-                'max-results' => array(
1254
-                  'location' => 'query',
1255
-                  'type' => 'integer',
1256
-                ),
1257
-                'start-index' => array(
1258
-                  'location' => 'query',
1259
-                  'type' => 'integer',
1260
-                ),
1261
-              ),
1262
-            ),'update' => array(
1263
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1264
-              'httpMethod' => 'PUT',
1265
-              'parameters' => array(
1266
-                'accountId' => array(
1267
-                  'location' => 'path',
1268
-                  'type' => 'string',
1269
-                  'required' => true,
1270
-                ),
1271
-                'webPropertyId' => array(
1272
-                  'location' => 'path',
1273
-                  'type' => 'string',
1274
-                  'required' => true,
1275
-                ),
1276
-                'profileId' => array(
1277
-                  'location' => 'path',
1278
-                  'type' => 'string',
1279
-                  'required' => true,
1280
-                ),
1281
-                'linkId' => array(
1282
-                  'location' => 'path',
1283
-                  'type' => 'string',
1284
-                  'required' => true,
1285
-                ),
1286
-              ),
1287
-            ),
1288
-          )
1289
-        )
1290
-    );
1291
-    $this->management_profiles = new Google_Service_Analytics_ManagementProfiles_Resource(
1292
-        $this,
1293
-        $this->serviceName,
1294
-        'profiles',
1295
-        array(
1296
-          'methods' => array(
1297
-            'delete' => array(
1298
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1299
-              'httpMethod' => 'DELETE',
1300
-              'parameters' => array(
1301
-                'accountId' => array(
1302
-                  'location' => 'path',
1303
-                  'type' => 'string',
1304
-                  'required' => true,
1305
-                ),
1306
-                'webPropertyId' => array(
1307
-                  'location' => 'path',
1308
-                  'type' => 'string',
1309
-                  'required' => true,
1310
-                ),
1311
-                'profileId' => array(
1312
-                  'location' => 'path',
1313
-                  'type' => 'string',
1314
-                  'required' => true,
1315
-                ),
1316
-              ),
1317
-            ),'get' => array(
1318
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1319
-              'httpMethod' => 'GET',
1320
-              'parameters' => array(
1321
-                'accountId' => array(
1322
-                  'location' => 'path',
1323
-                  'type' => 'string',
1324
-                  'required' => true,
1325
-                ),
1326
-                'webPropertyId' => array(
1327
-                  'location' => 'path',
1328
-                  'type' => 'string',
1329
-                  'required' => true,
1330
-                ),
1331
-                'profileId' => array(
1332
-                  'location' => 'path',
1333
-                  'type' => 'string',
1334
-                  'required' => true,
1335
-                ),
1336
-              ),
1337
-            ),'insert' => array(
1338
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1339
-              'httpMethod' => 'POST',
1340
-              'parameters' => array(
1341
-                'accountId' => array(
1342
-                  'location' => 'path',
1343
-                  'type' => 'string',
1344
-                  'required' => true,
1345
-                ),
1346
-                'webPropertyId' => array(
1347
-                  'location' => 'path',
1348
-                  'type' => 'string',
1349
-                  'required' => true,
1350
-                ),
1351
-              ),
1352
-            ),'list' => array(
1353
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1354
-              'httpMethod' => 'GET',
1355
-              'parameters' => array(
1356
-                'accountId' => array(
1357
-                  'location' => 'path',
1358
-                  'type' => 'string',
1359
-                  'required' => true,
1360
-                ),
1361
-                'webPropertyId' => array(
1362
-                  'location' => 'path',
1363
-                  'type' => 'string',
1364
-                  'required' => true,
1365
-                ),
1366
-                'max-results' => array(
1367
-                  'location' => 'query',
1368
-                  'type' => 'integer',
1369
-                ),
1370
-                'start-index' => array(
1371
-                  'location' => 'query',
1372
-                  'type' => 'integer',
1373
-                ),
1374
-              ),
1375
-            ),'patch' => array(
1376
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1377
-              'httpMethod' => 'PATCH',
1378
-              'parameters' => array(
1379
-                'accountId' => array(
1380
-                  'location' => 'path',
1381
-                  'type' => 'string',
1382
-                  'required' => true,
1383
-                ),
1384
-                'webPropertyId' => array(
1385
-                  'location' => 'path',
1386
-                  'type' => 'string',
1387
-                  'required' => true,
1388
-                ),
1389
-                'profileId' => array(
1390
-                  'location' => 'path',
1391
-                  'type' => 'string',
1392
-                  'required' => true,
1393
-                ),
1394
-              ),
1395
-            ),'update' => array(
1396
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1397
-              'httpMethod' => 'PUT',
1398
-              'parameters' => array(
1399
-                'accountId' => array(
1400
-                  'location' => 'path',
1401
-                  'type' => 'string',
1402
-                  'required' => true,
1403
-                ),
1404
-                'webPropertyId' => array(
1405
-                  'location' => 'path',
1406
-                  'type' => 'string',
1407
-                  'required' => true,
1408
-                ),
1409
-                'profileId' => array(
1410
-                  'location' => 'path',
1411
-                  'type' => 'string',
1412
-                  'required' => true,
1413
-                ),
1414
-              ),
1415
-            ),
1416
-          )
1417
-        )
1418
-    );
1419
-    $this->management_segments = new Google_Service_Analytics_ManagementSegments_Resource(
1420
-        $this,
1421
-        $this->serviceName,
1422
-        'segments',
1423
-        array(
1424
-          'methods' => array(
1425
-            'list' => array(
1426
-              'path' => 'management/segments',
1427
-              'httpMethod' => 'GET',
1428
-              'parameters' => array(
1429
-                'max-results' => array(
1430
-                  'location' => 'query',
1431
-                  'type' => 'integer',
1432
-                ),
1433
-                'start-index' => array(
1434
-                  'location' => 'query',
1435
-                  'type' => 'integer',
1436
-                ),
1437
-              ),
1438
-            ),
1439
-          )
1440
-        )
1441
-    );
1442
-    $this->management_unsampledReports = new Google_Service_Analytics_ManagementUnsampledReports_Resource(
1443
-        $this,
1444
-        $this->serviceName,
1445
-        'unsampledReports',
1446
-        array(
1447
-          'methods' => array(
1448
-            'get' => array(
1449
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}',
1450
-              'httpMethod' => 'GET',
1451
-              'parameters' => array(
1452
-                'accountId' => array(
1453
-                  'location' => 'path',
1454
-                  'type' => 'string',
1455
-                  'required' => true,
1456
-                ),
1457
-                'webPropertyId' => array(
1458
-                  'location' => 'path',
1459
-                  'type' => 'string',
1460
-                  'required' => true,
1461
-                ),
1462
-                'profileId' => array(
1463
-                  'location' => 'path',
1464
-                  'type' => 'string',
1465
-                  'required' => true,
1466
-                ),
1467
-                'unsampledReportId' => array(
1468
-                  'location' => 'path',
1469
-                  'type' => 'string',
1470
-                  'required' => true,
1471
-                ),
1472
-              ),
1473
-            ),'insert' => array(
1474
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1475
-              'httpMethod' => 'POST',
1476
-              'parameters' => array(
1477
-                'accountId' => array(
1478
-                  'location' => 'path',
1479
-                  'type' => 'string',
1480
-                  'required' => true,
1481
-                ),
1482
-                'webPropertyId' => array(
1483
-                  'location' => 'path',
1484
-                  'type' => 'string',
1485
-                  'required' => true,
1486
-                ),
1487
-                'profileId' => array(
1488
-                  'location' => 'path',
1489
-                  'type' => 'string',
1490
-                  'required' => true,
1491
-                ),
1492
-              ),
1493
-            ),'list' => array(
1494
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1495
-              'httpMethod' => 'GET',
1496
-              'parameters' => array(
1497
-                'accountId' => array(
1498
-                  'location' => 'path',
1499
-                  'type' => 'string',
1500
-                  'required' => true,
1501
-                ),
1502
-                'webPropertyId' => array(
1503
-                  'location' => 'path',
1504
-                  'type' => 'string',
1505
-                  'required' => true,
1506
-                ),
1507
-                'profileId' => array(
1508
-                  'location' => 'path',
1509
-                  'type' => 'string',
1510
-                  'required' => true,
1511
-                ),
1512
-                'max-results' => array(
1513
-                  'location' => 'query',
1514
-                  'type' => 'integer',
1515
-                ),
1516
-                'start-index' => array(
1517
-                  'location' => 'query',
1518
-                  'type' => 'integer',
1519
-                ),
1520
-              ),
1521
-            ),
1522
-          )
1523
-        )
1524
-    );
1525
-    $this->management_uploads = new Google_Service_Analytics_ManagementUploads_Resource(
1526
-        $this,
1527
-        $this->serviceName,
1528
-        'uploads',
1529
-        array(
1530
-          'methods' => array(
1531
-            'deleteUploadData' => array(
1532
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData',
1533
-              'httpMethod' => 'POST',
1534
-              'parameters' => array(
1535
-                'accountId' => array(
1536
-                  'location' => 'path',
1537
-                  'type' => 'string',
1538
-                  'required' => true,
1539
-                ),
1540
-                'webPropertyId' => array(
1541
-                  'location' => 'path',
1542
-                  'type' => 'string',
1543
-                  'required' => true,
1544
-                ),
1545
-                'customDataSourceId' => array(
1546
-                  'location' => 'path',
1547
-                  'type' => 'string',
1548
-                  'required' => true,
1549
-                ),
1550
-              ),
1551
-            ),'get' => array(
1552
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}',
1553
-              'httpMethod' => 'GET',
1554
-              'parameters' => array(
1555
-                'accountId' => array(
1556
-                  'location' => 'path',
1557
-                  'type' => 'string',
1558
-                  'required' => true,
1559
-                ),
1560
-                'webPropertyId' => array(
1561
-                  'location' => 'path',
1562
-                  'type' => 'string',
1563
-                  'required' => true,
1564
-                ),
1565
-                'customDataSourceId' => array(
1566
-                  'location' => 'path',
1567
-                  'type' => 'string',
1568
-                  'required' => true,
1569
-                ),
1570
-                'uploadId' => array(
1571
-                  'location' => 'path',
1572
-                  'type' => 'string',
1573
-                  'required' => true,
1574
-                ),
1575
-              ),
1576
-            ),'list' => array(
1577
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1578
-              'httpMethod' => 'GET',
1579
-              'parameters' => array(
1580
-                'accountId' => array(
1581
-                  'location' => 'path',
1582
-                  'type' => 'string',
1583
-                  'required' => true,
1584
-                ),
1585
-                'webPropertyId' => array(
1586
-                  'location' => 'path',
1587
-                  'type' => 'string',
1588
-                  'required' => true,
1589
-                ),
1590
-                'customDataSourceId' => array(
1591
-                  'location' => 'path',
1592
-                  'type' => 'string',
1593
-                  'required' => true,
1594
-                ),
1595
-                'max-results' => array(
1596
-                  'location' => 'query',
1597
-                  'type' => 'integer',
1598
-                ),
1599
-                'start-index' => array(
1600
-                  'location' => 'query',
1601
-                  'type' => 'integer',
1602
-                ),
1603
-              ),
1604
-            ),'uploadData' => array(
1605
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1606
-              'httpMethod' => 'POST',
1607
-              'parameters' => array(
1608
-                'accountId' => array(
1609
-                  'location' => 'path',
1610
-                  'type' => 'string',
1611
-                  'required' => true,
1612
-                ),
1613
-                'webPropertyId' => array(
1614
-                  'location' => 'path',
1615
-                  'type' => 'string',
1616
-                  'required' => true,
1617
-                ),
1618
-                'customDataSourceId' => array(
1619
-                  'location' => 'path',
1620
-                  'type' => 'string',
1621
-                  'required' => true,
1622
-                ),
1623
-              ),
1624
-            ),
1625
-          )
1626
-        )
1627
-    );
1628
-    $this->management_webPropertyAdWordsLinks = new Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource(
1629
-        $this,
1630
-        $this->serviceName,
1631
-        'webPropertyAdWordsLinks',
1632
-        array(
1633
-          'methods' => array(
1634
-            'delete' => array(
1635
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1636
-              'httpMethod' => 'DELETE',
1637
-              'parameters' => array(
1638
-                'accountId' => array(
1639
-                  'location' => 'path',
1640
-                  'type' => 'string',
1641
-                  'required' => true,
1642
-                ),
1643
-                'webPropertyId' => array(
1644
-                  'location' => 'path',
1645
-                  'type' => 'string',
1646
-                  'required' => true,
1647
-                ),
1648
-                'webPropertyAdWordsLinkId' => array(
1649
-                  'location' => 'path',
1650
-                  'type' => 'string',
1651
-                  'required' => true,
1652
-                ),
1653
-              ),
1654
-            ),'get' => array(
1655
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1656
-              'httpMethod' => 'GET',
1657
-              'parameters' => array(
1658
-                'accountId' => array(
1659
-                  'location' => 'path',
1660
-                  'type' => 'string',
1661
-                  'required' => true,
1662
-                ),
1663
-                'webPropertyId' => array(
1664
-                  'location' => 'path',
1665
-                  'type' => 'string',
1666
-                  'required' => true,
1667
-                ),
1668
-                'webPropertyAdWordsLinkId' => array(
1669
-                  'location' => 'path',
1670
-                  'type' => 'string',
1671
-                  'required' => true,
1672
-                ),
1673
-              ),
1674
-            ),'insert' => array(
1675
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1676
-              'httpMethod' => 'POST',
1677
-              'parameters' => array(
1678
-                'accountId' => array(
1679
-                  'location' => 'path',
1680
-                  'type' => 'string',
1681
-                  'required' => true,
1682
-                ),
1683
-                'webPropertyId' => array(
1684
-                  'location' => 'path',
1685
-                  'type' => 'string',
1686
-                  'required' => true,
1687
-                ),
1688
-              ),
1689
-            ),'list' => array(
1690
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1691
-              'httpMethod' => 'GET',
1692
-              'parameters' => array(
1693
-                'accountId' => array(
1694
-                  'location' => 'path',
1695
-                  'type' => 'string',
1696
-                  'required' => true,
1697
-                ),
1698
-                'webPropertyId' => array(
1699
-                  'location' => 'path',
1700
-                  'type' => 'string',
1701
-                  'required' => true,
1702
-                ),
1703
-                'max-results' => array(
1704
-                  'location' => 'query',
1705
-                  'type' => 'integer',
1706
-                ),
1707
-                'start-index' => array(
1708
-                  'location' => 'query',
1709
-                  'type' => 'integer',
1710
-                ),
1711
-              ),
1712
-            ),'patch' => array(
1713
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1714
-              'httpMethod' => 'PATCH',
1715
-              'parameters' => array(
1716
-                'accountId' => array(
1717
-                  'location' => 'path',
1718
-                  'type' => 'string',
1719
-                  'required' => true,
1720
-                ),
1721
-                'webPropertyId' => array(
1722
-                  'location' => 'path',
1723
-                  'type' => 'string',
1724
-                  'required' => true,
1725
-                ),
1726
-                'webPropertyAdWordsLinkId' => array(
1727
-                  'location' => 'path',
1728
-                  'type' => 'string',
1729
-                  'required' => true,
1730
-                ),
1731
-              ),
1732
-            ),'update' => array(
1733
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1734
-              'httpMethod' => 'PUT',
1735
-              'parameters' => array(
1736
-                'accountId' => array(
1737
-                  'location' => 'path',
1738
-                  'type' => 'string',
1739
-                  'required' => true,
1740
-                ),
1741
-                'webPropertyId' => array(
1742
-                  'location' => 'path',
1743
-                  'type' => 'string',
1744
-                  'required' => true,
1745
-                ),
1746
-                'webPropertyAdWordsLinkId' => array(
1747
-                  'location' => 'path',
1748
-                  'type' => 'string',
1749
-                  'required' => true,
1750
-                ),
1751
-              ),
1752
-            ),
1753
-          )
1754
-        )
1755
-    );
1756
-    $this->management_webproperties = new Google_Service_Analytics_ManagementWebproperties_Resource(
1757
-        $this,
1758
-        $this->serviceName,
1759
-        'webproperties',
1760
-        array(
1761
-          'methods' => array(
1762
-            'get' => array(
1763
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1764
-              'httpMethod' => 'GET',
1765
-              'parameters' => array(
1766
-                'accountId' => array(
1767
-                  'location' => 'path',
1768
-                  'type' => 'string',
1769
-                  'required' => true,
1770
-                ),
1771
-                'webPropertyId' => array(
1772
-                  'location' => 'path',
1773
-                  'type' => 'string',
1774
-                  'required' => true,
1775
-                ),
1776
-              ),
1777
-            ),'insert' => array(
1778
-              'path' => 'management/accounts/{accountId}/webproperties',
1779
-              'httpMethod' => 'POST',
1780
-              'parameters' => array(
1781
-                'accountId' => array(
1782
-                  'location' => 'path',
1783
-                  'type' => 'string',
1784
-                  'required' => true,
1785
-                ),
1786
-              ),
1787
-            ),'list' => array(
1788
-              'path' => 'management/accounts/{accountId}/webproperties',
1789
-              'httpMethod' => 'GET',
1790
-              'parameters' => array(
1791
-                'accountId' => array(
1792
-                  'location' => 'path',
1793
-                  'type' => 'string',
1794
-                  'required' => true,
1795
-                ),
1796
-                'max-results' => array(
1797
-                  'location' => 'query',
1798
-                  'type' => 'integer',
1799
-                ),
1800
-                'start-index' => array(
1801
-                  'location' => 'query',
1802
-                  'type' => 'integer',
1803
-                ),
1804
-              ),
1805
-            ),'patch' => array(
1806
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1807
-              'httpMethod' => 'PATCH',
1808
-              'parameters' => array(
1809
-                'accountId' => array(
1810
-                  'location' => 'path',
1811
-                  'type' => 'string',
1812
-                  'required' => true,
1813
-                ),
1814
-                'webPropertyId' => array(
1815
-                  'location' => 'path',
1816
-                  'type' => 'string',
1817
-                  'required' => true,
1818
-                ),
1819
-              ),
1820
-            ),'update' => array(
1821
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1822
-              'httpMethod' => 'PUT',
1823
-              'parameters' => array(
1824
-                'accountId' => array(
1825
-                  'location' => 'path',
1826
-                  'type' => 'string',
1827
-                  'required' => true,
1828
-                ),
1829
-                'webPropertyId' => array(
1830
-                  'location' => 'path',
1831
-                  'type' => 'string',
1832
-                  'required' => true,
1833
-                ),
1834
-              ),
1835
-            ),
1836
-          )
1837
-        )
1838
-    );
1839
-    $this->management_webpropertyUserLinks = new Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource(
1840
-        $this,
1841
-        $this->serviceName,
1842
-        'webpropertyUserLinks',
1843
-        array(
1844
-          'methods' => array(
1845
-            'delete' => array(
1846
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
1847
-              'httpMethod' => 'DELETE',
1848
-              'parameters' => array(
1849
-                'accountId' => array(
1850
-                  'location' => 'path',
1851
-                  'type' => 'string',
1852
-                  'required' => true,
1853
-                ),
1854
-                'webPropertyId' => array(
1855
-                  'location' => 'path',
1856
-                  'type' => 'string',
1857
-                  'required' => true,
1858
-                ),
1859
-                'linkId' => array(
1860
-                  'location' => 'path',
1861
-                  'type' => 'string',
1862
-                  'required' => true,
1863
-                ),
1864
-              ),
1865
-            ),'insert' => array(
1866
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1867
-              'httpMethod' => 'POST',
1868
-              'parameters' => array(
1869
-                'accountId' => array(
1870
-                  'location' => 'path',
1871
-                  'type' => 'string',
1872
-                  'required' => true,
1873
-                ),
1874
-                'webPropertyId' => array(
1875
-                  'location' => 'path',
1876
-                  'type' => 'string',
1877
-                  'required' => true,
1878
-                ),
1879
-              ),
1880
-            ),'list' => array(
1881
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1882
-              'httpMethod' => 'GET',
1883
-              'parameters' => array(
1884
-                'accountId' => array(
1885
-                  'location' => 'path',
1886
-                  'type' => 'string',
1887
-                  'required' => true,
1888
-                ),
1889
-                'webPropertyId' => array(
1890
-                  'location' => 'path',
1891
-                  'type' => 'string',
1892
-                  'required' => true,
1893
-                ),
1894
-                'max-results' => array(
1895
-                  'location' => 'query',
1896
-                  'type' => 'integer',
1897
-                ),
1898
-                'start-index' => array(
1899
-                  'location' => 'query',
1900
-                  'type' => 'integer',
1901
-                ),
1902
-              ),
1903
-            ),'update' => array(
1904
-              'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
1905
-              'httpMethod' => 'PUT',
1906
-              'parameters' => array(
1907
-                'accountId' => array(
1908
-                  'location' => 'path',
1909
-                  'type' => 'string',
1910
-                  'required' => true,
1911
-                ),
1912
-                'webPropertyId' => array(
1913
-                  'location' => 'path',
1914
-                  'type' => 'string',
1915
-                  'required' => true,
1916
-                ),
1917
-                'linkId' => array(
1918
-                  'location' => 'path',
1919
-                  'type' => 'string',
1920
-                  'required' => true,
1921
-                ),
1922
-              ),
1923
-            ),
1924
-          )
1925
-        )
1926
-    );
1927
-    $this->metadata_columns = new Google_Service_Analytics_MetadataColumns_Resource(
1928
-        $this,
1929
-        $this->serviceName,
1930
-        'columns',
1931
-        array(
1932
-          'methods' => array(
1933
-            'list' => array(
1934
-              'path' => 'metadata/{reportType}/columns',
1935
-              'httpMethod' => 'GET',
1936
-              'parameters' => array(
1937
-                'reportType' => array(
1938
-                  'location' => 'path',
1939
-                  'type' => 'string',
1940
-                  'required' => true,
1941
-                ),
1942
-              ),
1943
-            ),
1944
-          )
1945
-        )
1946
-    );
1947
-    $this->provisioning = new Google_Service_Analytics_Provisioning_Resource(
1948
-        $this,
1949
-        $this->serviceName,
1950
-        'provisioning',
1951
-        array(
1952
-          'methods' => array(
1953
-            'createAccountTicket' => array(
1954
-              'path' => 'provisioning/createAccountTicket',
1955
-              'httpMethod' => 'POST',
1956
-              'parameters' => array(),
1957
-            ),
1958
-          )
1959
-        )
1960
-    );
84
+	parent::__construct($client);
85
+	$this->rootUrl = 'https://www.googleapis.com/';
86
+	$this->servicePath = 'analytics/v3/';
87
+	$this->version = 'v3';
88
+	$this->serviceName = 'analytics';
89
+
90
+	$this->data_ga = new Google_Service_Analytics_DataGa_Resource(
91
+		$this,
92
+		$this->serviceName,
93
+		'ga',
94
+		array(
95
+		  'methods' => array(
96
+			'get' => array(
97
+			  'path' => 'data/ga',
98
+			  'httpMethod' => 'GET',
99
+			  'parameters' => array(
100
+				'ids' => array(
101
+				  'location' => 'query',
102
+				  'type' => 'string',
103
+				  'required' => true,
104
+				),
105
+				'start-date' => array(
106
+				  'location' => 'query',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'end-date' => array(
111
+				  'location' => 'query',
112
+				  'type' => 'string',
113
+				  'required' => true,
114
+				),
115
+				'metrics' => array(
116
+				  'location' => 'query',
117
+				  'type' => 'string',
118
+				  'required' => true,
119
+				),
120
+				'max-results' => array(
121
+				  'location' => 'query',
122
+				  'type' => 'integer',
123
+				),
124
+				'sort' => array(
125
+				  'location' => 'query',
126
+				  'type' => 'string',
127
+				),
128
+				'dimensions' => array(
129
+				  'location' => 'query',
130
+				  'type' => 'string',
131
+				),
132
+				'start-index' => array(
133
+				  'location' => 'query',
134
+				  'type' => 'integer',
135
+				),
136
+				'segment' => array(
137
+				  'location' => 'query',
138
+				  'type' => 'string',
139
+				),
140
+				'samplingLevel' => array(
141
+				  'location' => 'query',
142
+				  'type' => 'string',
143
+				),
144
+				'filters' => array(
145
+				  'location' => 'query',
146
+				  'type' => 'string',
147
+				),
148
+				'output' => array(
149
+				  'location' => 'query',
150
+				  'type' => 'string',
151
+				),
152
+			  ),
153
+			),
154
+		  )
155
+		)
156
+	);
157
+	$this->data_mcf = new Google_Service_Analytics_DataMcf_Resource(
158
+		$this,
159
+		$this->serviceName,
160
+		'mcf',
161
+		array(
162
+		  'methods' => array(
163
+			'get' => array(
164
+			  'path' => 'data/mcf',
165
+			  'httpMethod' => 'GET',
166
+			  'parameters' => array(
167
+				'ids' => array(
168
+				  'location' => 'query',
169
+				  'type' => 'string',
170
+				  'required' => true,
171
+				),
172
+				'start-date' => array(
173
+				  'location' => 'query',
174
+				  'type' => 'string',
175
+				  'required' => true,
176
+				),
177
+				'end-date' => array(
178
+				  'location' => 'query',
179
+				  'type' => 'string',
180
+				  'required' => true,
181
+				),
182
+				'metrics' => array(
183
+				  'location' => 'query',
184
+				  'type' => 'string',
185
+				  'required' => true,
186
+				),
187
+				'max-results' => array(
188
+				  'location' => 'query',
189
+				  'type' => 'integer',
190
+				),
191
+				'sort' => array(
192
+				  'location' => 'query',
193
+				  'type' => 'string',
194
+				),
195
+				'dimensions' => array(
196
+				  'location' => 'query',
197
+				  'type' => 'string',
198
+				),
199
+				'start-index' => array(
200
+				  'location' => 'query',
201
+				  'type' => 'integer',
202
+				),
203
+				'samplingLevel' => array(
204
+				  'location' => 'query',
205
+				  'type' => 'string',
206
+				),
207
+				'filters' => array(
208
+				  'location' => 'query',
209
+				  'type' => 'string',
210
+				),
211
+			  ),
212
+			),
213
+		  )
214
+		)
215
+	);
216
+	$this->data_realtime = new Google_Service_Analytics_DataRealtime_Resource(
217
+		$this,
218
+		$this->serviceName,
219
+		'realtime',
220
+		array(
221
+		  'methods' => array(
222
+			'get' => array(
223
+			  'path' => 'data/realtime',
224
+			  'httpMethod' => 'GET',
225
+			  'parameters' => array(
226
+				'ids' => array(
227
+				  'location' => 'query',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'metrics' => array(
232
+				  'location' => 'query',
233
+				  'type' => 'string',
234
+				  'required' => true,
235
+				),
236
+				'max-results' => array(
237
+				  'location' => 'query',
238
+				  'type' => 'integer',
239
+				),
240
+				'sort' => array(
241
+				  'location' => 'query',
242
+				  'type' => 'string',
243
+				),
244
+				'dimensions' => array(
245
+				  'location' => 'query',
246
+				  'type' => 'string',
247
+				),
248
+				'filters' => array(
249
+				  'location' => 'query',
250
+				  'type' => 'string',
251
+				),
252
+			  ),
253
+			),
254
+		  )
255
+		)
256
+	);
257
+	$this->management_accountSummaries = new Google_Service_Analytics_ManagementAccountSummaries_Resource(
258
+		$this,
259
+		$this->serviceName,
260
+		'accountSummaries',
261
+		array(
262
+		  'methods' => array(
263
+			'list' => array(
264
+			  'path' => 'management/accountSummaries',
265
+			  'httpMethod' => 'GET',
266
+			  'parameters' => array(
267
+				'max-results' => array(
268
+				  'location' => 'query',
269
+				  'type' => 'integer',
270
+				),
271
+				'start-index' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'integer',
274
+				),
275
+			  ),
276
+			),
277
+		  )
278
+		)
279
+	);
280
+	$this->management_accountUserLinks = new Google_Service_Analytics_ManagementAccountUserLinks_Resource(
281
+		$this,
282
+		$this->serviceName,
283
+		'accountUserLinks',
284
+		array(
285
+		  'methods' => array(
286
+			'delete' => array(
287
+			  'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
288
+			  'httpMethod' => 'DELETE',
289
+			  'parameters' => array(
290
+				'accountId' => array(
291
+				  'location' => 'path',
292
+				  'type' => 'string',
293
+				  'required' => true,
294
+				),
295
+				'linkId' => array(
296
+				  'location' => 'path',
297
+				  'type' => 'string',
298
+				  'required' => true,
299
+				),
300
+			  ),
301
+			),'insert' => array(
302
+			  'path' => 'management/accounts/{accountId}/entityUserLinks',
303
+			  'httpMethod' => 'POST',
304
+			  'parameters' => array(
305
+				'accountId' => array(
306
+				  'location' => 'path',
307
+				  'type' => 'string',
308
+				  'required' => true,
309
+				),
310
+			  ),
311
+			),'list' => array(
312
+			  'path' => 'management/accounts/{accountId}/entityUserLinks',
313
+			  'httpMethod' => 'GET',
314
+			  'parameters' => array(
315
+				'accountId' => array(
316
+				  'location' => 'path',
317
+				  'type' => 'string',
318
+				  'required' => true,
319
+				),
320
+				'max-results' => array(
321
+				  'location' => 'query',
322
+				  'type' => 'integer',
323
+				),
324
+				'start-index' => array(
325
+				  'location' => 'query',
326
+				  'type' => 'integer',
327
+				),
328
+			  ),
329
+			),'update' => array(
330
+			  'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
331
+			  'httpMethod' => 'PUT',
332
+			  'parameters' => array(
333
+				'accountId' => array(
334
+				  'location' => 'path',
335
+				  'type' => 'string',
336
+				  'required' => true,
337
+				),
338
+				'linkId' => array(
339
+				  'location' => 'path',
340
+				  'type' => 'string',
341
+				  'required' => true,
342
+				),
343
+			  ),
344
+			),
345
+		  )
346
+		)
347
+	);
348
+	$this->management_accounts = new Google_Service_Analytics_ManagementAccounts_Resource(
349
+		$this,
350
+		$this->serviceName,
351
+		'accounts',
352
+		array(
353
+		  'methods' => array(
354
+			'list' => array(
355
+			  'path' => 'management/accounts',
356
+			  'httpMethod' => 'GET',
357
+			  'parameters' => array(
358
+				'max-results' => array(
359
+				  'location' => 'query',
360
+				  'type' => 'integer',
361
+				),
362
+				'start-index' => array(
363
+				  'location' => 'query',
364
+				  'type' => 'integer',
365
+				),
366
+			  ),
367
+			),
368
+		  )
369
+		)
370
+	);
371
+	$this->management_customDataSources = new Google_Service_Analytics_ManagementCustomDataSources_Resource(
372
+		$this,
373
+		$this->serviceName,
374
+		'customDataSources',
375
+		array(
376
+		  'methods' => array(
377
+			'list' => array(
378
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources',
379
+			  'httpMethod' => 'GET',
380
+			  'parameters' => array(
381
+				'accountId' => array(
382
+				  'location' => 'path',
383
+				  'type' => 'string',
384
+				  'required' => true,
385
+				),
386
+				'webPropertyId' => array(
387
+				  'location' => 'path',
388
+				  'type' => 'string',
389
+				  'required' => true,
390
+				),
391
+				'max-results' => array(
392
+				  'location' => 'query',
393
+				  'type' => 'integer',
394
+				),
395
+				'start-index' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'integer',
398
+				),
399
+			  ),
400
+			),
401
+		  )
402
+		)
403
+	);
404
+	$this->management_customDimensions = new Google_Service_Analytics_ManagementCustomDimensions_Resource(
405
+		$this,
406
+		$this->serviceName,
407
+		'customDimensions',
408
+		array(
409
+		  'methods' => array(
410
+			'get' => array(
411
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
412
+			  'httpMethod' => 'GET',
413
+			  'parameters' => array(
414
+				'accountId' => array(
415
+				  'location' => 'path',
416
+				  'type' => 'string',
417
+				  'required' => true,
418
+				),
419
+				'webPropertyId' => array(
420
+				  'location' => 'path',
421
+				  'type' => 'string',
422
+				  'required' => true,
423
+				),
424
+				'customDimensionId' => array(
425
+				  'location' => 'path',
426
+				  'type' => 'string',
427
+				  'required' => true,
428
+				),
429
+			  ),
430
+			),'insert' => array(
431
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
432
+			  'httpMethod' => 'POST',
433
+			  'parameters' => array(
434
+				'accountId' => array(
435
+				  'location' => 'path',
436
+				  'type' => 'string',
437
+				  'required' => true,
438
+				),
439
+				'webPropertyId' => array(
440
+				  'location' => 'path',
441
+				  'type' => 'string',
442
+				  'required' => true,
443
+				),
444
+			  ),
445
+			),'list' => array(
446
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
447
+			  'httpMethod' => 'GET',
448
+			  'parameters' => array(
449
+				'accountId' => array(
450
+				  'location' => 'path',
451
+				  'type' => 'string',
452
+				  'required' => true,
453
+				),
454
+				'webPropertyId' => array(
455
+				  'location' => 'path',
456
+				  'type' => 'string',
457
+				  'required' => true,
458
+				),
459
+				'max-results' => array(
460
+				  'location' => 'query',
461
+				  'type' => 'integer',
462
+				),
463
+				'start-index' => array(
464
+				  'location' => 'query',
465
+				  'type' => 'integer',
466
+				),
467
+			  ),
468
+			),'patch' => array(
469
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
470
+			  'httpMethod' => 'PATCH',
471
+			  'parameters' => array(
472
+				'accountId' => array(
473
+				  'location' => 'path',
474
+				  'type' => 'string',
475
+				  'required' => true,
476
+				),
477
+				'webPropertyId' => array(
478
+				  'location' => 'path',
479
+				  'type' => 'string',
480
+				  'required' => true,
481
+				),
482
+				'customDimensionId' => array(
483
+				  'location' => 'path',
484
+				  'type' => 'string',
485
+				  'required' => true,
486
+				),
487
+				'ignoreCustomDataSourceLinks' => array(
488
+				  'location' => 'query',
489
+				  'type' => 'boolean',
490
+				),
491
+			  ),
492
+			),'update' => array(
493
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
494
+			  'httpMethod' => 'PUT',
495
+			  'parameters' => array(
496
+				'accountId' => array(
497
+				  'location' => 'path',
498
+				  'type' => 'string',
499
+				  'required' => true,
500
+				),
501
+				'webPropertyId' => array(
502
+				  'location' => 'path',
503
+				  'type' => 'string',
504
+				  'required' => true,
505
+				),
506
+				'customDimensionId' => array(
507
+				  'location' => 'path',
508
+				  'type' => 'string',
509
+				  'required' => true,
510
+				),
511
+				'ignoreCustomDataSourceLinks' => array(
512
+				  'location' => 'query',
513
+				  'type' => 'boolean',
514
+				),
515
+			  ),
516
+			),
517
+		  )
518
+		)
519
+	);
520
+	$this->management_customMetrics = new Google_Service_Analytics_ManagementCustomMetrics_Resource(
521
+		$this,
522
+		$this->serviceName,
523
+		'customMetrics',
524
+		array(
525
+		  'methods' => array(
526
+			'get' => array(
527
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
528
+			  'httpMethod' => 'GET',
529
+			  'parameters' => array(
530
+				'accountId' => array(
531
+				  'location' => 'path',
532
+				  'type' => 'string',
533
+				  'required' => true,
534
+				),
535
+				'webPropertyId' => array(
536
+				  'location' => 'path',
537
+				  'type' => 'string',
538
+				  'required' => true,
539
+				),
540
+				'customMetricId' => array(
541
+				  'location' => 'path',
542
+				  'type' => 'string',
543
+				  'required' => true,
544
+				),
545
+			  ),
546
+			),'insert' => array(
547
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
548
+			  'httpMethod' => 'POST',
549
+			  'parameters' => array(
550
+				'accountId' => array(
551
+				  'location' => 'path',
552
+				  'type' => 'string',
553
+				  'required' => true,
554
+				),
555
+				'webPropertyId' => array(
556
+				  'location' => 'path',
557
+				  'type' => 'string',
558
+				  'required' => true,
559
+				),
560
+			  ),
561
+			),'list' => array(
562
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
563
+			  'httpMethod' => 'GET',
564
+			  'parameters' => array(
565
+				'accountId' => array(
566
+				  'location' => 'path',
567
+				  'type' => 'string',
568
+				  'required' => true,
569
+				),
570
+				'webPropertyId' => array(
571
+				  'location' => 'path',
572
+				  'type' => 'string',
573
+				  'required' => true,
574
+				),
575
+				'max-results' => array(
576
+				  'location' => 'query',
577
+				  'type' => 'integer',
578
+				),
579
+				'start-index' => array(
580
+				  'location' => 'query',
581
+				  'type' => 'integer',
582
+				),
583
+			  ),
584
+			),'patch' => array(
585
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
586
+			  'httpMethod' => 'PATCH',
587
+			  'parameters' => array(
588
+				'accountId' => array(
589
+				  'location' => 'path',
590
+				  'type' => 'string',
591
+				  'required' => true,
592
+				),
593
+				'webPropertyId' => array(
594
+				  'location' => 'path',
595
+				  'type' => 'string',
596
+				  'required' => true,
597
+				),
598
+				'customMetricId' => array(
599
+				  'location' => 'path',
600
+				  'type' => 'string',
601
+				  'required' => true,
602
+				),
603
+				'ignoreCustomDataSourceLinks' => array(
604
+				  'location' => 'query',
605
+				  'type' => 'boolean',
606
+				),
607
+			  ),
608
+			),'update' => array(
609
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
610
+			  'httpMethod' => 'PUT',
611
+			  'parameters' => array(
612
+				'accountId' => array(
613
+				  'location' => 'path',
614
+				  'type' => 'string',
615
+				  'required' => true,
616
+				),
617
+				'webPropertyId' => array(
618
+				  'location' => 'path',
619
+				  'type' => 'string',
620
+				  'required' => true,
621
+				),
622
+				'customMetricId' => array(
623
+				  'location' => 'path',
624
+				  'type' => 'string',
625
+				  'required' => true,
626
+				),
627
+				'ignoreCustomDataSourceLinks' => array(
628
+				  'location' => 'query',
629
+				  'type' => 'boolean',
630
+				),
631
+			  ),
632
+			),
633
+		  )
634
+		)
635
+	);
636
+	$this->management_experiments = new Google_Service_Analytics_ManagementExperiments_Resource(
637
+		$this,
638
+		$this->serviceName,
639
+		'experiments',
640
+		array(
641
+		  'methods' => array(
642
+			'delete' => array(
643
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
644
+			  'httpMethod' => 'DELETE',
645
+			  'parameters' => array(
646
+				'accountId' => array(
647
+				  'location' => 'path',
648
+				  'type' => 'string',
649
+				  'required' => true,
650
+				),
651
+				'webPropertyId' => array(
652
+				  'location' => 'path',
653
+				  'type' => 'string',
654
+				  'required' => true,
655
+				),
656
+				'profileId' => array(
657
+				  'location' => 'path',
658
+				  'type' => 'string',
659
+				  'required' => true,
660
+				),
661
+				'experimentId' => array(
662
+				  'location' => 'path',
663
+				  'type' => 'string',
664
+				  'required' => true,
665
+				),
666
+			  ),
667
+			),'get' => array(
668
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
669
+			  'httpMethod' => 'GET',
670
+			  'parameters' => array(
671
+				'accountId' => array(
672
+				  'location' => 'path',
673
+				  'type' => 'string',
674
+				  'required' => true,
675
+				),
676
+				'webPropertyId' => array(
677
+				  'location' => 'path',
678
+				  'type' => 'string',
679
+				  'required' => true,
680
+				),
681
+				'profileId' => array(
682
+				  'location' => 'path',
683
+				  'type' => 'string',
684
+				  'required' => true,
685
+				),
686
+				'experimentId' => array(
687
+				  'location' => 'path',
688
+				  'type' => 'string',
689
+				  'required' => true,
690
+				),
691
+			  ),
692
+			),'insert' => array(
693
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
694
+			  'httpMethod' => 'POST',
695
+			  'parameters' => array(
696
+				'accountId' => array(
697
+				  'location' => 'path',
698
+				  'type' => 'string',
699
+				  'required' => true,
700
+				),
701
+				'webPropertyId' => array(
702
+				  'location' => 'path',
703
+				  'type' => 'string',
704
+				  'required' => true,
705
+				),
706
+				'profileId' => array(
707
+				  'location' => 'path',
708
+				  'type' => 'string',
709
+				  'required' => true,
710
+				),
711
+			  ),
712
+			),'list' => array(
713
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
714
+			  'httpMethod' => 'GET',
715
+			  'parameters' => array(
716
+				'accountId' => array(
717
+				  'location' => 'path',
718
+				  'type' => 'string',
719
+				  'required' => true,
720
+				),
721
+				'webPropertyId' => array(
722
+				  'location' => 'path',
723
+				  'type' => 'string',
724
+				  'required' => true,
725
+				),
726
+				'profileId' => array(
727
+				  'location' => 'path',
728
+				  'type' => 'string',
729
+				  'required' => true,
730
+				),
731
+				'max-results' => array(
732
+				  'location' => 'query',
733
+				  'type' => 'integer',
734
+				),
735
+				'start-index' => array(
736
+				  'location' => 'query',
737
+				  'type' => 'integer',
738
+				),
739
+			  ),
740
+			),'patch' => array(
741
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
742
+			  'httpMethod' => 'PATCH',
743
+			  'parameters' => array(
744
+				'accountId' => array(
745
+				  'location' => 'path',
746
+				  'type' => 'string',
747
+				  'required' => true,
748
+				),
749
+				'webPropertyId' => array(
750
+				  'location' => 'path',
751
+				  'type' => 'string',
752
+				  'required' => true,
753
+				),
754
+				'profileId' => array(
755
+				  'location' => 'path',
756
+				  'type' => 'string',
757
+				  'required' => true,
758
+				),
759
+				'experimentId' => array(
760
+				  'location' => 'path',
761
+				  'type' => 'string',
762
+				  'required' => true,
763
+				),
764
+			  ),
765
+			),'update' => array(
766
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
767
+			  'httpMethod' => 'PUT',
768
+			  'parameters' => array(
769
+				'accountId' => array(
770
+				  'location' => 'path',
771
+				  'type' => 'string',
772
+				  'required' => true,
773
+				),
774
+				'webPropertyId' => array(
775
+				  'location' => 'path',
776
+				  'type' => 'string',
777
+				  'required' => true,
778
+				),
779
+				'profileId' => array(
780
+				  'location' => 'path',
781
+				  'type' => 'string',
782
+				  'required' => true,
783
+				),
784
+				'experimentId' => array(
785
+				  'location' => 'path',
786
+				  'type' => 'string',
787
+				  'required' => true,
788
+				),
789
+			  ),
790
+			),
791
+		  )
792
+		)
793
+	);
794
+	$this->management_filters = new Google_Service_Analytics_ManagementFilters_Resource(
795
+		$this,
796
+		$this->serviceName,
797
+		'filters',
798
+		array(
799
+		  'methods' => array(
800
+			'delete' => array(
801
+			  'path' => 'management/accounts/{accountId}/filters/{filterId}',
802
+			  'httpMethod' => 'DELETE',
803
+			  'parameters' => array(
804
+				'accountId' => array(
805
+				  'location' => 'path',
806
+				  'type' => 'string',
807
+				  'required' => true,
808
+				),
809
+				'filterId' => array(
810
+				  'location' => 'path',
811
+				  'type' => 'string',
812
+				  'required' => true,
813
+				),
814
+			  ),
815
+			),'get' => array(
816
+			  'path' => 'management/accounts/{accountId}/filters/{filterId}',
817
+			  'httpMethod' => 'GET',
818
+			  'parameters' => array(
819
+				'accountId' => array(
820
+				  'location' => 'path',
821
+				  'type' => 'string',
822
+				  'required' => true,
823
+				),
824
+				'filterId' => array(
825
+				  'location' => 'path',
826
+				  'type' => 'string',
827
+				  'required' => true,
828
+				),
829
+			  ),
830
+			),'insert' => array(
831
+			  'path' => 'management/accounts/{accountId}/filters',
832
+			  'httpMethod' => 'POST',
833
+			  'parameters' => array(
834
+				'accountId' => array(
835
+				  'location' => 'path',
836
+				  'type' => 'string',
837
+				  'required' => true,
838
+				),
839
+			  ),
840
+			),'list' => array(
841
+			  'path' => 'management/accounts/{accountId}/filters',
842
+			  'httpMethod' => 'GET',
843
+			  'parameters' => array(
844
+				'accountId' => array(
845
+				  'location' => 'path',
846
+				  'type' => 'string',
847
+				  'required' => true,
848
+				),
849
+				'max-results' => array(
850
+				  'location' => 'query',
851
+				  'type' => 'integer',
852
+				),
853
+				'start-index' => array(
854
+				  'location' => 'query',
855
+				  'type' => 'integer',
856
+				),
857
+			  ),
858
+			),'patch' => array(
859
+			  'path' => 'management/accounts/{accountId}/filters/{filterId}',
860
+			  'httpMethod' => 'PATCH',
861
+			  'parameters' => array(
862
+				'accountId' => array(
863
+				  'location' => 'path',
864
+				  'type' => 'string',
865
+				  'required' => true,
866
+				),
867
+				'filterId' => array(
868
+				  'location' => 'path',
869
+				  'type' => 'string',
870
+				  'required' => true,
871
+				),
872
+			  ),
873
+			),'update' => array(
874
+			  'path' => 'management/accounts/{accountId}/filters/{filterId}',
875
+			  'httpMethod' => 'PUT',
876
+			  'parameters' => array(
877
+				'accountId' => array(
878
+				  'location' => 'path',
879
+				  'type' => 'string',
880
+				  'required' => true,
881
+				),
882
+				'filterId' => array(
883
+				  'location' => 'path',
884
+				  'type' => 'string',
885
+				  'required' => true,
886
+				),
887
+			  ),
888
+			),
889
+		  )
890
+		)
891
+	);
892
+	$this->management_goals = new Google_Service_Analytics_ManagementGoals_Resource(
893
+		$this,
894
+		$this->serviceName,
895
+		'goals',
896
+		array(
897
+		  'methods' => array(
898
+			'get' => array(
899
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
900
+			  'httpMethod' => 'GET',
901
+			  'parameters' => array(
902
+				'accountId' => array(
903
+				  'location' => 'path',
904
+				  'type' => 'string',
905
+				  'required' => true,
906
+				),
907
+				'webPropertyId' => array(
908
+				  'location' => 'path',
909
+				  'type' => 'string',
910
+				  'required' => true,
911
+				),
912
+				'profileId' => array(
913
+				  'location' => 'path',
914
+				  'type' => 'string',
915
+				  'required' => true,
916
+				),
917
+				'goalId' => array(
918
+				  'location' => 'path',
919
+				  'type' => 'string',
920
+				  'required' => true,
921
+				),
922
+			  ),
923
+			),'insert' => array(
924
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
925
+			  'httpMethod' => 'POST',
926
+			  'parameters' => array(
927
+				'accountId' => array(
928
+				  'location' => 'path',
929
+				  'type' => 'string',
930
+				  'required' => true,
931
+				),
932
+				'webPropertyId' => array(
933
+				  'location' => 'path',
934
+				  'type' => 'string',
935
+				  'required' => true,
936
+				),
937
+				'profileId' => array(
938
+				  'location' => 'path',
939
+				  'type' => 'string',
940
+				  'required' => true,
941
+				),
942
+			  ),
943
+			),'list' => array(
944
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
945
+			  'httpMethod' => 'GET',
946
+			  'parameters' => array(
947
+				'accountId' => array(
948
+				  'location' => 'path',
949
+				  'type' => 'string',
950
+				  'required' => true,
951
+				),
952
+				'webPropertyId' => array(
953
+				  'location' => 'path',
954
+				  'type' => 'string',
955
+				  'required' => true,
956
+				),
957
+				'profileId' => array(
958
+				  'location' => 'path',
959
+				  'type' => 'string',
960
+				  'required' => true,
961
+				),
962
+				'max-results' => array(
963
+				  'location' => 'query',
964
+				  'type' => 'integer',
965
+				),
966
+				'start-index' => array(
967
+				  'location' => 'query',
968
+				  'type' => 'integer',
969
+				),
970
+			  ),
971
+			),'patch' => array(
972
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
973
+			  'httpMethod' => 'PATCH',
974
+			  'parameters' => array(
975
+				'accountId' => array(
976
+				  'location' => 'path',
977
+				  'type' => 'string',
978
+				  'required' => true,
979
+				),
980
+				'webPropertyId' => array(
981
+				  'location' => 'path',
982
+				  'type' => 'string',
983
+				  'required' => true,
984
+				),
985
+				'profileId' => array(
986
+				  'location' => 'path',
987
+				  'type' => 'string',
988
+				  'required' => true,
989
+				),
990
+				'goalId' => array(
991
+				  'location' => 'path',
992
+				  'type' => 'string',
993
+				  'required' => true,
994
+				),
995
+			  ),
996
+			),'update' => array(
997
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
998
+			  'httpMethod' => 'PUT',
999
+			  'parameters' => array(
1000
+				'accountId' => array(
1001
+				  'location' => 'path',
1002
+				  'type' => 'string',
1003
+				  'required' => true,
1004
+				),
1005
+				'webPropertyId' => array(
1006
+				  'location' => 'path',
1007
+				  'type' => 'string',
1008
+				  'required' => true,
1009
+				),
1010
+				'profileId' => array(
1011
+				  'location' => 'path',
1012
+				  'type' => 'string',
1013
+				  'required' => true,
1014
+				),
1015
+				'goalId' => array(
1016
+				  'location' => 'path',
1017
+				  'type' => 'string',
1018
+				  'required' => true,
1019
+				),
1020
+			  ),
1021
+			),
1022
+		  )
1023
+		)
1024
+	);
1025
+	$this->management_profileFilterLinks = new Google_Service_Analytics_ManagementProfileFilterLinks_Resource(
1026
+		$this,
1027
+		$this->serviceName,
1028
+		'profileFilterLinks',
1029
+		array(
1030
+		  'methods' => array(
1031
+			'delete' => array(
1032
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1033
+			  'httpMethod' => 'DELETE',
1034
+			  'parameters' => array(
1035
+				'accountId' => array(
1036
+				  'location' => 'path',
1037
+				  'type' => 'string',
1038
+				  'required' => true,
1039
+				),
1040
+				'webPropertyId' => array(
1041
+				  'location' => 'path',
1042
+				  'type' => 'string',
1043
+				  'required' => true,
1044
+				),
1045
+				'profileId' => array(
1046
+				  'location' => 'path',
1047
+				  'type' => 'string',
1048
+				  'required' => true,
1049
+				),
1050
+				'linkId' => array(
1051
+				  'location' => 'path',
1052
+				  'type' => 'string',
1053
+				  'required' => true,
1054
+				),
1055
+			  ),
1056
+			),'get' => array(
1057
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1058
+			  'httpMethod' => 'GET',
1059
+			  'parameters' => array(
1060
+				'accountId' => array(
1061
+				  'location' => 'path',
1062
+				  'type' => 'string',
1063
+				  'required' => true,
1064
+				),
1065
+				'webPropertyId' => array(
1066
+				  'location' => 'path',
1067
+				  'type' => 'string',
1068
+				  'required' => true,
1069
+				),
1070
+				'profileId' => array(
1071
+				  'location' => 'path',
1072
+				  'type' => 'string',
1073
+				  'required' => true,
1074
+				),
1075
+				'linkId' => array(
1076
+				  'location' => 'path',
1077
+				  'type' => 'string',
1078
+				  'required' => true,
1079
+				),
1080
+			  ),
1081
+			),'insert' => array(
1082
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1083
+			  'httpMethod' => 'POST',
1084
+			  'parameters' => array(
1085
+				'accountId' => array(
1086
+				  'location' => 'path',
1087
+				  'type' => 'string',
1088
+				  'required' => true,
1089
+				),
1090
+				'webPropertyId' => array(
1091
+				  'location' => 'path',
1092
+				  'type' => 'string',
1093
+				  'required' => true,
1094
+				),
1095
+				'profileId' => array(
1096
+				  'location' => 'path',
1097
+				  'type' => 'string',
1098
+				  'required' => true,
1099
+				),
1100
+			  ),
1101
+			),'list' => array(
1102
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1103
+			  'httpMethod' => 'GET',
1104
+			  'parameters' => array(
1105
+				'accountId' => array(
1106
+				  'location' => 'path',
1107
+				  'type' => 'string',
1108
+				  'required' => true,
1109
+				),
1110
+				'webPropertyId' => array(
1111
+				  'location' => 'path',
1112
+				  'type' => 'string',
1113
+				  'required' => true,
1114
+				),
1115
+				'profileId' => array(
1116
+				  'location' => 'path',
1117
+				  'type' => 'string',
1118
+				  'required' => true,
1119
+				),
1120
+				'max-results' => array(
1121
+				  'location' => 'query',
1122
+				  'type' => 'integer',
1123
+				),
1124
+				'start-index' => array(
1125
+				  'location' => 'query',
1126
+				  'type' => 'integer',
1127
+				),
1128
+			  ),
1129
+			),'patch' => array(
1130
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1131
+			  'httpMethod' => 'PATCH',
1132
+			  'parameters' => array(
1133
+				'accountId' => array(
1134
+				  'location' => 'path',
1135
+				  'type' => 'string',
1136
+				  'required' => true,
1137
+				),
1138
+				'webPropertyId' => array(
1139
+				  'location' => 'path',
1140
+				  'type' => 'string',
1141
+				  'required' => true,
1142
+				),
1143
+				'profileId' => array(
1144
+				  'location' => 'path',
1145
+				  'type' => 'string',
1146
+				  'required' => true,
1147
+				),
1148
+				'linkId' => array(
1149
+				  'location' => 'path',
1150
+				  'type' => 'string',
1151
+				  'required' => true,
1152
+				),
1153
+			  ),
1154
+			),'update' => array(
1155
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1156
+			  'httpMethod' => 'PUT',
1157
+			  'parameters' => array(
1158
+				'accountId' => array(
1159
+				  'location' => 'path',
1160
+				  'type' => 'string',
1161
+				  'required' => true,
1162
+				),
1163
+				'webPropertyId' => array(
1164
+				  'location' => 'path',
1165
+				  'type' => 'string',
1166
+				  'required' => true,
1167
+				),
1168
+				'profileId' => array(
1169
+				  'location' => 'path',
1170
+				  'type' => 'string',
1171
+				  'required' => true,
1172
+				),
1173
+				'linkId' => array(
1174
+				  'location' => 'path',
1175
+				  'type' => 'string',
1176
+				  'required' => true,
1177
+				),
1178
+			  ),
1179
+			),
1180
+		  )
1181
+		)
1182
+	);
1183
+	$this->management_profileUserLinks = new Google_Service_Analytics_ManagementProfileUserLinks_Resource(
1184
+		$this,
1185
+		$this->serviceName,
1186
+		'profileUserLinks',
1187
+		array(
1188
+		  'methods' => array(
1189
+			'delete' => array(
1190
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1191
+			  'httpMethod' => 'DELETE',
1192
+			  'parameters' => array(
1193
+				'accountId' => array(
1194
+				  'location' => 'path',
1195
+				  'type' => 'string',
1196
+				  'required' => true,
1197
+				),
1198
+				'webPropertyId' => array(
1199
+				  'location' => 'path',
1200
+				  'type' => 'string',
1201
+				  'required' => true,
1202
+				),
1203
+				'profileId' => array(
1204
+				  'location' => 'path',
1205
+				  'type' => 'string',
1206
+				  'required' => true,
1207
+				),
1208
+				'linkId' => array(
1209
+				  'location' => 'path',
1210
+				  'type' => 'string',
1211
+				  'required' => true,
1212
+				),
1213
+			  ),
1214
+			),'insert' => array(
1215
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1216
+			  'httpMethod' => 'POST',
1217
+			  'parameters' => array(
1218
+				'accountId' => array(
1219
+				  'location' => 'path',
1220
+				  'type' => 'string',
1221
+				  'required' => true,
1222
+				),
1223
+				'webPropertyId' => array(
1224
+				  'location' => 'path',
1225
+				  'type' => 'string',
1226
+				  'required' => true,
1227
+				),
1228
+				'profileId' => array(
1229
+				  'location' => 'path',
1230
+				  'type' => 'string',
1231
+				  'required' => true,
1232
+				),
1233
+			  ),
1234
+			),'list' => array(
1235
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1236
+			  'httpMethod' => 'GET',
1237
+			  'parameters' => array(
1238
+				'accountId' => array(
1239
+				  'location' => 'path',
1240
+				  'type' => 'string',
1241
+				  'required' => true,
1242
+				),
1243
+				'webPropertyId' => array(
1244
+				  'location' => 'path',
1245
+				  'type' => 'string',
1246
+				  'required' => true,
1247
+				),
1248
+				'profileId' => array(
1249
+				  'location' => 'path',
1250
+				  'type' => 'string',
1251
+				  'required' => true,
1252
+				),
1253
+				'max-results' => array(
1254
+				  'location' => 'query',
1255
+				  'type' => 'integer',
1256
+				),
1257
+				'start-index' => array(
1258
+				  'location' => 'query',
1259
+				  'type' => 'integer',
1260
+				),
1261
+			  ),
1262
+			),'update' => array(
1263
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1264
+			  'httpMethod' => 'PUT',
1265
+			  'parameters' => array(
1266
+				'accountId' => array(
1267
+				  'location' => 'path',
1268
+				  'type' => 'string',
1269
+				  'required' => true,
1270
+				),
1271
+				'webPropertyId' => array(
1272
+				  'location' => 'path',
1273
+				  'type' => 'string',
1274
+				  'required' => true,
1275
+				),
1276
+				'profileId' => array(
1277
+				  'location' => 'path',
1278
+				  'type' => 'string',
1279
+				  'required' => true,
1280
+				),
1281
+				'linkId' => array(
1282
+				  'location' => 'path',
1283
+				  'type' => 'string',
1284
+				  'required' => true,
1285
+				),
1286
+			  ),
1287
+			),
1288
+		  )
1289
+		)
1290
+	);
1291
+	$this->management_profiles = new Google_Service_Analytics_ManagementProfiles_Resource(
1292
+		$this,
1293
+		$this->serviceName,
1294
+		'profiles',
1295
+		array(
1296
+		  'methods' => array(
1297
+			'delete' => array(
1298
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1299
+			  'httpMethod' => 'DELETE',
1300
+			  'parameters' => array(
1301
+				'accountId' => array(
1302
+				  'location' => 'path',
1303
+				  'type' => 'string',
1304
+				  'required' => true,
1305
+				),
1306
+				'webPropertyId' => array(
1307
+				  'location' => 'path',
1308
+				  'type' => 'string',
1309
+				  'required' => true,
1310
+				),
1311
+				'profileId' => array(
1312
+				  'location' => 'path',
1313
+				  'type' => 'string',
1314
+				  'required' => true,
1315
+				),
1316
+			  ),
1317
+			),'get' => array(
1318
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1319
+			  'httpMethod' => 'GET',
1320
+			  'parameters' => array(
1321
+				'accountId' => array(
1322
+				  'location' => 'path',
1323
+				  'type' => 'string',
1324
+				  'required' => true,
1325
+				),
1326
+				'webPropertyId' => array(
1327
+				  'location' => 'path',
1328
+				  'type' => 'string',
1329
+				  'required' => true,
1330
+				),
1331
+				'profileId' => array(
1332
+				  'location' => 'path',
1333
+				  'type' => 'string',
1334
+				  'required' => true,
1335
+				),
1336
+			  ),
1337
+			),'insert' => array(
1338
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1339
+			  'httpMethod' => 'POST',
1340
+			  'parameters' => array(
1341
+				'accountId' => array(
1342
+				  'location' => 'path',
1343
+				  'type' => 'string',
1344
+				  'required' => true,
1345
+				),
1346
+				'webPropertyId' => array(
1347
+				  'location' => 'path',
1348
+				  'type' => 'string',
1349
+				  'required' => true,
1350
+				),
1351
+			  ),
1352
+			),'list' => array(
1353
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1354
+			  'httpMethod' => 'GET',
1355
+			  'parameters' => array(
1356
+				'accountId' => array(
1357
+				  'location' => 'path',
1358
+				  'type' => 'string',
1359
+				  'required' => true,
1360
+				),
1361
+				'webPropertyId' => array(
1362
+				  'location' => 'path',
1363
+				  'type' => 'string',
1364
+				  'required' => true,
1365
+				),
1366
+				'max-results' => array(
1367
+				  'location' => 'query',
1368
+				  'type' => 'integer',
1369
+				),
1370
+				'start-index' => array(
1371
+				  'location' => 'query',
1372
+				  'type' => 'integer',
1373
+				),
1374
+			  ),
1375
+			),'patch' => array(
1376
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1377
+			  'httpMethod' => 'PATCH',
1378
+			  'parameters' => array(
1379
+				'accountId' => array(
1380
+				  'location' => 'path',
1381
+				  'type' => 'string',
1382
+				  'required' => true,
1383
+				),
1384
+				'webPropertyId' => array(
1385
+				  'location' => 'path',
1386
+				  'type' => 'string',
1387
+				  'required' => true,
1388
+				),
1389
+				'profileId' => array(
1390
+				  'location' => 'path',
1391
+				  'type' => 'string',
1392
+				  'required' => true,
1393
+				),
1394
+			  ),
1395
+			),'update' => array(
1396
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1397
+			  'httpMethod' => 'PUT',
1398
+			  'parameters' => array(
1399
+				'accountId' => array(
1400
+				  'location' => 'path',
1401
+				  'type' => 'string',
1402
+				  'required' => true,
1403
+				),
1404
+				'webPropertyId' => array(
1405
+				  'location' => 'path',
1406
+				  'type' => 'string',
1407
+				  'required' => true,
1408
+				),
1409
+				'profileId' => array(
1410
+				  'location' => 'path',
1411
+				  'type' => 'string',
1412
+				  'required' => true,
1413
+				),
1414
+			  ),
1415
+			),
1416
+		  )
1417
+		)
1418
+	);
1419
+	$this->management_segments = new Google_Service_Analytics_ManagementSegments_Resource(
1420
+		$this,
1421
+		$this->serviceName,
1422
+		'segments',
1423
+		array(
1424
+		  'methods' => array(
1425
+			'list' => array(
1426
+			  'path' => 'management/segments',
1427
+			  'httpMethod' => 'GET',
1428
+			  'parameters' => array(
1429
+				'max-results' => array(
1430
+				  'location' => 'query',
1431
+				  'type' => 'integer',
1432
+				),
1433
+				'start-index' => array(
1434
+				  'location' => 'query',
1435
+				  'type' => 'integer',
1436
+				),
1437
+			  ),
1438
+			),
1439
+		  )
1440
+		)
1441
+	);
1442
+	$this->management_unsampledReports = new Google_Service_Analytics_ManagementUnsampledReports_Resource(
1443
+		$this,
1444
+		$this->serviceName,
1445
+		'unsampledReports',
1446
+		array(
1447
+		  'methods' => array(
1448
+			'get' => array(
1449
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports/{unsampledReportId}',
1450
+			  'httpMethod' => 'GET',
1451
+			  'parameters' => array(
1452
+				'accountId' => array(
1453
+				  'location' => 'path',
1454
+				  'type' => 'string',
1455
+				  'required' => true,
1456
+				),
1457
+				'webPropertyId' => array(
1458
+				  'location' => 'path',
1459
+				  'type' => 'string',
1460
+				  'required' => true,
1461
+				),
1462
+				'profileId' => array(
1463
+				  'location' => 'path',
1464
+				  'type' => 'string',
1465
+				  'required' => true,
1466
+				),
1467
+				'unsampledReportId' => array(
1468
+				  'location' => 'path',
1469
+				  'type' => 'string',
1470
+				  'required' => true,
1471
+				),
1472
+			  ),
1473
+			),'insert' => array(
1474
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1475
+			  'httpMethod' => 'POST',
1476
+			  'parameters' => array(
1477
+				'accountId' => array(
1478
+				  'location' => 'path',
1479
+				  'type' => 'string',
1480
+				  'required' => true,
1481
+				),
1482
+				'webPropertyId' => array(
1483
+				  'location' => 'path',
1484
+				  'type' => 'string',
1485
+				  'required' => true,
1486
+				),
1487
+				'profileId' => array(
1488
+				  'location' => 'path',
1489
+				  'type' => 'string',
1490
+				  'required' => true,
1491
+				),
1492
+			  ),
1493
+			),'list' => array(
1494
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1495
+			  'httpMethod' => 'GET',
1496
+			  'parameters' => array(
1497
+				'accountId' => array(
1498
+				  'location' => 'path',
1499
+				  'type' => 'string',
1500
+				  'required' => true,
1501
+				),
1502
+				'webPropertyId' => array(
1503
+				  'location' => 'path',
1504
+				  'type' => 'string',
1505
+				  'required' => true,
1506
+				),
1507
+				'profileId' => array(
1508
+				  'location' => 'path',
1509
+				  'type' => 'string',
1510
+				  'required' => true,
1511
+				),
1512
+				'max-results' => array(
1513
+				  'location' => 'query',
1514
+				  'type' => 'integer',
1515
+				),
1516
+				'start-index' => array(
1517
+				  'location' => 'query',
1518
+				  'type' => 'integer',
1519
+				),
1520
+			  ),
1521
+			),
1522
+		  )
1523
+		)
1524
+	);
1525
+	$this->management_uploads = new Google_Service_Analytics_ManagementUploads_Resource(
1526
+		$this,
1527
+		$this->serviceName,
1528
+		'uploads',
1529
+		array(
1530
+		  'methods' => array(
1531
+			'deleteUploadData' => array(
1532
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/deleteUploadData',
1533
+			  'httpMethod' => 'POST',
1534
+			  'parameters' => array(
1535
+				'accountId' => array(
1536
+				  'location' => 'path',
1537
+				  'type' => 'string',
1538
+				  'required' => true,
1539
+				),
1540
+				'webPropertyId' => array(
1541
+				  'location' => 'path',
1542
+				  'type' => 'string',
1543
+				  'required' => true,
1544
+				),
1545
+				'customDataSourceId' => array(
1546
+				  'location' => 'path',
1547
+				  'type' => 'string',
1548
+				  'required' => true,
1549
+				),
1550
+			  ),
1551
+			),'get' => array(
1552
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}',
1553
+			  'httpMethod' => 'GET',
1554
+			  'parameters' => array(
1555
+				'accountId' => array(
1556
+				  'location' => 'path',
1557
+				  'type' => 'string',
1558
+				  'required' => true,
1559
+				),
1560
+				'webPropertyId' => array(
1561
+				  'location' => 'path',
1562
+				  'type' => 'string',
1563
+				  'required' => true,
1564
+				),
1565
+				'customDataSourceId' => array(
1566
+				  'location' => 'path',
1567
+				  'type' => 'string',
1568
+				  'required' => true,
1569
+				),
1570
+				'uploadId' => array(
1571
+				  'location' => 'path',
1572
+				  'type' => 'string',
1573
+				  'required' => true,
1574
+				),
1575
+			  ),
1576
+			),'list' => array(
1577
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1578
+			  'httpMethod' => 'GET',
1579
+			  'parameters' => array(
1580
+				'accountId' => array(
1581
+				  'location' => 'path',
1582
+				  'type' => 'string',
1583
+				  'required' => true,
1584
+				),
1585
+				'webPropertyId' => array(
1586
+				  'location' => 'path',
1587
+				  'type' => 'string',
1588
+				  'required' => true,
1589
+				),
1590
+				'customDataSourceId' => array(
1591
+				  'location' => 'path',
1592
+				  'type' => 'string',
1593
+				  'required' => true,
1594
+				),
1595
+				'max-results' => array(
1596
+				  'location' => 'query',
1597
+				  'type' => 'integer',
1598
+				),
1599
+				'start-index' => array(
1600
+				  'location' => 'query',
1601
+				  'type' => 'integer',
1602
+				),
1603
+			  ),
1604
+			),'uploadData' => array(
1605
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1606
+			  'httpMethod' => 'POST',
1607
+			  'parameters' => array(
1608
+				'accountId' => array(
1609
+				  'location' => 'path',
1610
+				  'type' => 'string',
1611
+				  'required' => true,
1612
+				),
1613
+				'webPropertyId' => array(
1614
+				  'location' => 'path',
1615
+				  'type' => 'string',
1616
+				  'required' => true,
1617
+				),
1618
+				'customDataSourceId' => array(
1619
+				  'location' => 'path',
1620
+				  'type' => 'string',
1621
+				  'required' => true,
1622
+				),
1623
+			  ),
1624
+			),
1625
+		  )
1626
+		)
1627
+	);
1628
+	$this->management_webPropertyAdWordsLinks = new Google_Service_Analytics_ManagementWebPropertyAdWordsLinks_Resource(
1629
+		$this,
1630
+		$this->serviceName,
1631
+		'webPropertyAdWordsLinks',
1632
+		array(
1633
+		  'methods' => array(
1634
+			'delete' => array(
1635
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1636
+			  'httpMethod' => 'DELETE',
1637
+			  'parameters' => array(
1638
+				'accountId' => array(
1639
+				  'location' => 'path',
1640
+				  'type' => 'string',
1641
+				  'required' => true,
1642
+				),
1643
+				'webPropertyId' => array(
1644
+				  'location' => 'path',
1645
+				  'type' => 'string',
1646
+				  'required' => true,
1647
+				),
1648
+				'webPropertyAdWordsLinkId' => array(
1649
+				  'location' => 'path',
1650
+				  'type' => 'string',
1651
+				  'required' => true,
1652
+				),
1653
+			  ),
1654
+			),'get' => array(
1655
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1656
+			  'httpMethod' => 'GET',
1657
+			  'parameters' => array(
1658
+				'accountId' => array(
1659
+				  'location' => 'path',
1660
+				  'type' => 'string',
1661
+				  'required' => true,
1662
+				),
1663
+				'webPropertyId' => array(
1664
+				  'location' => 'path',
1665
+				  'type' => 'string',
1666
+				  'required' => true,
1667
+				),
1668
+				'webPropertyAdWordsLinkId' => array(
1669
+				  'location' => 'path',
1670
+				  'type' => 'string',
1671
+				  'required' => true,
1672
+				),
1673
+			  ),
1674
+			),'insert' => array(
1675
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1676
+			  'httpMethod' => 'POST',
1677
+			  'parameters' => array(
1678
+				'accountId' => array(
1679
+				  'location' => 'path',
1680
+				  'type' => 'string',
1681
+				  'required' => true,
1682
+				),
1683
+				'webPropertyId' => array(
1684
+				  'location' => 'path',
1685
+				  'type' => 'string',
1686
+				  'required' => true,
1687
+				),
1688
+			  ),
1689
+			),'list' => array(
1690
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1691
+			  'httpMethod' => 'GET',
1692
+			  'parameters' => array(
1693
+				'accountId' => array(
1694
+				  'location' => 'path',
1695
+				  'type' => 'string',
1696
+				  'required' => true,
1697
+				),
1698
+				'webPropertyId' => array(
1699
+				  'location' => 'path',
1700
+				  'type' => 'string',
1701
+				  'required' => true,
1702
+				),
1703
+				'max-results' => array(
1704
+				  'location' => 'query',
1705
+				  'type' => 'integer',
1706
+				),
1707
+				'start-index' => array(
1708
+				  'location' => 'query',
1709
+				  'type' => 'integer',
1710
+				),
1711
+			  ),
1712
+			),'patch' => array(
1713
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1714
+			  'httpMethod' => 'PATCH',
1715
+			  'parameters' => array(
1716
+				'accountId' => array(
1717
+				  'location' => 'path',
1718
+				  'type' => 'string',
1719
+				  'required' => true,
1720
+				),
1721
+				'webPropertyId' => array(
1722
+				  'location' => 'path',
1723
+				  'type' => 'string',
1724
+				  'required' => true,
1725
+				),
1726
+				'webPropertyAdWordsLinkId' => array(
1727
+				  'location' => 'path',
1728
+				  'type' => 'string',
1729
+				  'required' => true,
1730
+				),
1731
+			  ),
1732
+			),'update' => array(
1733
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1734
+			  'httpMethod' => 'PUT',
1735
+			  'parameters' => array(
1736
+				'accountId' => array(
1737
+				  'location' => 'path',
1738
+				  'type' => 'string',
1739
+				  'required' => true,
1740
+				),
1741
+				'webPropertyId' => array(
1742
+				  'location' => 'path',
1743
+				  'type' => 'string',
1744
+				  'required' => true,
1745
+				),
1746
+				'webPropertyAdWordsLinkId' => array(
1747
+				  'location' => 'path',
1748
+				  'type' => 'string',
1749
+				  'required' => true,
1750
+				),
1751
+			  ),
1752
+			),
1753
+		  )
1754
+		)
1755
+	);
1756
+	$this->management_webproperties = new Google_Service_Analytics_ManagementWebproperties_Resource(
1757
+		$this,
1758
+		$this->serviceName,
1759
+		'webproperties',
1760
+		array(
1761
+		  'methods' => array(
1762
+			'get' => array(
1763
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1764
+			  'httpMethod' => 'GET',
1765
+			  'parameters' => array(
1766
+				'accountId' => array(
1767
+				  'location' => 'path',
1768
+				  'type' => 'string',
1769
+				  'required' => true,
1770
+				),
1771
+				'webPropertyId' => array(
1772
+				  'location' => 'path',
1773
+				  'type' => 'string',
1774
+				  'required' => true,
1775
+				),
1776
+			  ),
1777
+			),'insert' => array(
1778
+			  'path' => 'management/accounts/{accountId}/webproperties',
1779
+			  'httpMethod' => 'POST',
1780
+			  'parameters' => array(
1781
+				'accountId' => array(
1782
+				  'location' => 'path',
1783
+				  'type' => 'string',
1784
+				  'required' => true,
1785
+				),
1786
+			  ),
1787
+			),'list' => array(
1788
+			  'path' => 'management/accounts/{accountId}/webproperties',
1789
+			  'httpMethod' => 'GET',
1790
+			  'parameters' => array(
1791
+				'accountId' => array(
1792
+				  'location' => 'path',
1793
+				  'type' => 'string',
1794
+				  'required' => true,
1795
+				),
1796
+				'max-results' => array(
1797
+				  'location' => 'query',
1798
+				  'type' => 'integer',
1799
+				),
1800
+				'start-index' => array(
1801
+				  'location' => 'query',
1802
+				  'type' => 'integer',
1803
+				),
1804
+			  ),
1805
+			),'patch' => array(
1806
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1807
+			  'httpMethod' => 'PATCH',
1808
+			  'parameters' => array(
1809
+				'accountId' => array(
1810
+				  'location' => 'path',
1811
+				  'type' => 'string',
1812
+				  'required' => true,
1813
+				),
1814
+				'webPropertyId' => array(
1815
+				  'location' => 'path',
1816
+				  'type' => 'string',
1817
+				  'required' => true,
1818
+				),
1819
+			  ),
1820
+			),'update' => array(
1821
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1822
+			  'httpMethod' => 'PUT',
1823
+			  'parameters' => array(
1824
+				'accountId' => array(
1825
+				  'location' => 'path',
1826
+				  'type' => 'string',
1827
+				  'required' => true,
1828
+				),
1829
+				'webPropertyId' => array(
1830
+				  'location' => 'path',
1831
+				  'type' => 'string',
1832
+				  'required' => true,
1833
+				),
1834
+			  ),
1835
+			),
1836
+		  )
1837
+		)
1838
+	);
1839
+	$this->management_webpropertyUserLinks = new Google_Service_Analytics_ManagementWebpropertyUserLinks_Resource(
1840
+		$this,
1841
+		$this->serviceName,
1842
+		'webpropertyUserLinks',
1843
+		array(
1844
+		  'methods' => array(
1845
+			'delete' => array(
1846
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
1847
+			  'httpMethod' => 'DELETE',
1848
+			  'parameters' => array(
1849
+				'accountId' => array(
1850
+				  'location' => 'path',
1851
+				  'type' => 'string',
1852
+				  'required' => true,
1853
+				),
1854
+				'webPropertyId' => array(
1855
+				  'location' => 'path',
1856
+				  'type' => 'string',
1857
+				  'required' => true,
1858
+				),
1859
+				'linkId' => array(
1860
+				  'location' => 'path',
1861
+				  'type' => 'string',
1862
+				  'required' => true,
1863
+				),
1864
+			  ),
1865
+			),'insert' => array(
1866
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1867
+			  'httpMethod' => 'POST',
1868
+			  'parameters' => array(
1869
+				'accountId' => array(
1870
+				  'location' => 'path',
1871
+				  'type' => 'string',
1872
+				  'required' => true,
1873
+				),
1874
+				'webPropertyId' => array(
1875
+				  'location' => 'path',
1876
+				  'type' => 'string',
1877
+				  'required' => true,
1878
+				),
1879
+			  ),
1880
+			),'list' => array(
1881
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1882
+			  'httpMethod' => 'GET',
1883
+			  'parameters' => array(
1884
+				'accountId' => array(
1885
+				  'location' => 'path',
1886
+				  'type' => 'string',
1887
+				  'required' => true,
1888
+				),
1889
+				'webPropertyId' => array(
1890
+				  'location' => 'path',
1891
+				  'type' => 'string',
1892
+				  'required' => true,
1893
+				),
1894
+				'max-results' => array(
1895
+				  'location' => 'query',
1896
+				  'type' => 'integer',
1897
+				),
1898
+				'start-index' => array(
1899
+				  'location' => 'query',
1900
+				  'type' => 'integer',
1901
+				),
1902
+			  ),
1903
+			),'update' => array(
1904
+			  'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
1905
+			  'httpMethod' => 'PUT',
1906
+			  'parameters' => array(
1907
+				'accountId' => array(
1908
+				  'location' => 'path',
1909
+				  'type' => 'string',
1910
+				  'required' => true,
1911
+				),
1912
+				'webPropertyId' => array(
1913
+				  'location' => 'path',
1914
+				  'type' => 'string',
1915
+				  'required' => true,
1916
+				),
1917
+				'linkId' => array(
1918
+				  'location' => 'path',
1919
+				  'type' => 'string',
1920
+				  'required' => true,
1921
+				),
1922
+			  ),
1923
+			),
1924
+		  )
1925
+		)
1926
+	);
1927
+	$this->metadata_columns = new Google_Service_Analytics_MetadataColumns_Resource(
1928
+		$this,
1929
+		$this->serviceName,
1930
+		'columns',
1931
+		array(
1932
+		  'methods' => array(
1933
+			'list' => array(
1934
+			  'path' => 'metadata/{reportType}/columns',
1935
+			  'httpMethod' => 'GET',
1936
+			  'parameters' => array(
1937
+				'reportType' => array(
1938
+				  'location' => 'path',
1939
+				  'type' => 'string',
1940
+				  'required' => true,
1941
+				),
1942
+			  ),
1943
+			),
1944
+		  )
1945
+		)
1946
+	);
1947
+	$this->provisioning = new Google_Service_Analytics_Provisioning_Resource(
1948
+		$this,
1949
+		$this->serviceName,
1950
+		'provisioning',
1951
+		array(
1952
+		  'methods' => array(
1953
+			'createAccountTicket' => array(
1954
+			  'path' => 'provisioning/createAccountTicket',
1955
+			  'httpMethod' => 'POST',
1956
+			  'parameters' => array(),
1957
+			),
1958
+		  )
1959
+		)
1960
+	);
1961 1961
   }
1962 1962
 }
1963 1963
 
@@ -2018,9 +2018,9 @@  discard block
 block discarded – undo
2018 2018
    */
2019 2019
   public function get($ids, $startDate, $endDate, $metrics, $optParams = array())
2020 2020
   {
2021
-    $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
2022
-    $params = array_merge($params, $optParams);
2023
-    return $this->call('get', array($params), "Google_Service_Analytics_GaData");
2021
+	$params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
2022
+	$params = array_merge($params, $optParams);
2023
+	return $this->call('get', array($params), "Google_Service_Analytics_GaData");
2024 2024
   }
2025 2025
 }
2026 2026
 /**
@@ -2065,9 +2065,9 @@  discard block
 block discarded – undo
2065 2065
    */
2066 2066
   public function get($ids, $startDate, $endDate, $metrics, $optParams = array())
2067 2067
   {
2068
-    $params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
2069
-    $params = array_merge($params, $optParams);
2070
-    return $this->call('get', array($params), "Google_Service_Analytics_McfData");
2068
+	$params = array('ids' => $ids, 'start-date' => $startDate, 'end-date' => $endDate, 'metrics' => $metrics);
2069
+	$params = array_merge($params, $optParams);
2070
+	return $this->call('get', array($params), "Google_Service_Analytics_McfData");
2071 2071
   }
2072 2072
 }
2073 2073
 /**
@@ -2102,9 +2102,9 @@  discard block
 block discarded – undo
2102 2102
    */
2103 2103
   public function get($ids, $metrics, $optParams = array())
2104 2104
   {
2105
-    $params = array('ids' => $ids, 'metrics' => $metrics);
2106
-    $params = array_merge($params, $optParams);
2107
-    return $this->call('get', array($params), "Google_Service_Analytics_RealtimeData");
2105
+	$params = array('ids' => $ids, 'metrics' => $metrics);
2106
+	$params = array_merge($params, $optParams);
2107
+	return $this->call('get', array($params), "Google_Service_Analytics_RealtimeData");
2108 2108
   }
2109 2109
 }
2110 2110
 
@@ -2146,9 +2146,9 @@  discard block
 block discarded – undo
2146 2146
    */
2147 2147
   public function listManagementAccountSummaries($optParams = array())
2148 2148
   {
2149
-    $params = array();
2150
-    $params = array_merge($params, $optParams);
2151
-    return $this->call('list', array($params), "Google_Service_Analytics_AccountSummaries");
2149
+	$params = array();
2150
+	$params = array_merge($params, $optParams);
2151
+	return $this->call('list', array($params), "Google_Service_Analytics_AccountSummaries");
2152 2152
   }
2153 2153
 }
2154 2154
 /**
@@ -2171,9 +2171,9 @@  discard block
 block discarded – undo
2171 2171
    */
2172 2172
   public function delete($accountId, $linkId, $optParams = array())
2173 2173
   {
2174
-    $params = array('accountId' => $accountId, 'linkId' => $linkId);
2175
-    $params = array_merge($params, $optParams);
2176
-    return $this->call('delete', array($params));
2174
+	$params = array('accountId' => $accountId, 'linkId' => $linkId);
2175
+	$params = array_merge($params, $optParams);
2176
+	return $this->call('delete', array($params));
2177 2177
   }
2178 2178
 
2179 2179
   /**
@@ -2186,9 +2186,9 @@  discard block
 block discarded – undo
2186 2186
    */
2187 2187
   public function insert($accountId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
2188 2188
   {
2189
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
2190
-    $params = array_merge($params, $optParams);
2191
-    return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
2189
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
2190
+	$params = array_merge($params, $optParams);
2191
+	return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
2192 2192
   }
2193 2193
 
2194 2194
   /**
@@ -2207,9 +2207,9 @@  discard block
 block discarded – undo
2207 2207
    */
2208 2208
   public function listManagementAccountUserLinks($accountId, $optParams = array())
2209 2209
   {
2210
-    $params = array('accountId' => $accountId);
2211
-    $params = array_merge($params, $optParams);
2212
-    return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
2210
+	$params = array('accountId' => $accountId);
2211
+	$params = array_merge($params, $optParams);
2212
+	return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
2213 2213
   }
2214 2214
 
2215 2215
   /**
@@ -2224,9 +2224,9 @@  discard block
 block discarded – undo
2224 2224
    */
2225 2225
   public function update($accountId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
2226 2226
   {
2227
-    $params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody);
2228
-    $params = array_merge($params, $optParams);
2229
-    return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
2227
+	$params = array('accountId' => $accountId, 'linkId' => $linkId, 'postBody' => $postBody);
2228
+	$params = array_merge($params, $optParams);
2229
+	return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
2230 2230
   }
2231 2231
 }
2232 2232
 /**
@@ -2255,9 +2255,9 @@  discard block
 block discarded – undo
2255 2255
    */
2256 2256
   public function listManagementAccounts($optParams = array())
2257 2257
   {
2258
-    $params = array();
2259
-    $params = array_merge($params, $optParams);
2260
-    return $this->call('list', array($params), "Google_Service_Analytics_Accounts");
2258
+	$params = array();
2259
+	$params = array_merge($params, $optParams);
2260
+	return $this->call('list', array($params), "Google_Service_Analytics_Accounts");
2261 2261
   }
2262 2262
 }
2263 2263
 /**
@@ -2289,9 +2289,9 @@  discard block
 block discarded – undo
2289 2289
    */
2290 2290
   public function listManagementCustomDataSources($accountId, $webPropertyId, $optParams = array())
2291 2291
   {
2292
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2293
-    $params = array_merge($params, $optParams);
2294
-    return $this->call('list', array($params), "Google_Service_Analytics_CustomDataSources");
2292
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2293
+	$params = array_merge($params, $optParams);
2294
+	return $this->call('list', array($params), "Google_Service_Analytics_CustomDataSources");
2295 2295
   }
2296 2296
 }
2297 2297
 /**
@@ -2317,9 +2317,9 @@  discard block
 block discarded – undo
2317 2317
    */
2318 2318
   public function get($accountId, $webPropertyId, $customDimensionId, $optParams = array())
2319 2319
   {
2320
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId);
2321
-    $params = array_merge($params, $optParams);
2322
-    return $this->call('get', array($params), "Google_Service_Analytics_CustomDimension");
2320
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId);
2321
+	$params = array_merge($params, $optParams);
2322
+	return $this->call('get', array($params), "Google_Service_Analytics_CustomDimension");
2323 2323
   }
2324 2324
 
2325 2325
   /**
@@ -2334,9 +2334,9 @@  discard block
 block discarded – undo
2334 2334
    */
2335 2335
   public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array())
2336 2336
   {
2337
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
2338
-    $params = array_merge($params, $optParams);
2339
-    return $this->call('insert', array($params), "Google_Service_Analytics_CustomDimension");
2337
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
2338
+	$params = array_merge($params, $optParams);
2339
+	return $this->call('insert', array($params), "Google_Service_Analytics_CustomDimension");
2340 2340
   }
2341 2341
 
2342 2342
   /**
@@ -2356,9 +2356,9 @@  discard block
 block discarded – undo
2356 2356
    */
2357 2357
   public function listManagementCustomDimensions($accountId, $webPropertyId, $optParams = array())
2358 2358
   {
2359
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2360
-    $params = array_merge($params, $optParams);
2361
-    return $this->call('list', array($params), "Google_Service_Analytics_CustomDimensions");
2359
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2360
+	$params = array_merge($params, $optParams);
2361
+	return $this->call('list', array($params), "Google_Service_Analytics_CustomDimensions");
2362 2362
   }
2363 2363
 
2364 2364
   /**
@@ -2380,9 +2380,9 @@  discard block
 block discarded – undo
2380 2380
    */
2381 2381
   public function patch($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array())
2382 2382
   {
2383
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody);
2384
-    $params = array_merge($params, $optParams);
2385
-    return $this->call('patch', array($params), "Google_Service_Analytics_CustomDimension");
2383
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody);
2384
+	$params = array_merge($params, $optParams);
2385
+	return $this->call('patch', array($params), "Google_Service_Analytics_CustomDimension");
2386 2386
   }
2387 2387
 
2388 2388
   /**
@@ -2403,9 +2403,9 @@  discard block
 block discarded – undo
2403 2403
    */
2404 2404
   public function update($accountId, $webPropertyId, $customDimensionId, Google_Service_Analytics_CustomDimension $postBody, $optParams = array())
2405 2405
   {
2406
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody);
2407
-    $params = array_merge($params, $optParams);
2408
-    return $this->call('update', array($params), "Google_Service_Analytics_CustomDimension");
2406
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDimensionId' => $customDimensionId, 'postBody' => $postBody);
2407
+	$params = array_merge($params, $optParams);
2408
+	return $this->call('update', array($params), "Google_Service_Analytics_CustomDimension");
2409 2409
   }
2410 2410
 }
2411 2411
 /**
@@ -2431,9 +2431,9 @@  discard block
 block discarded – undo
2431 2431
    */
2432 2432
   public function get($accountId, $webPropertyId, $customMetricId, $optParams = array())
2433 2433
   {
2434
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId);
2435
-    $params = array_merge($params, $optParams);
2436
-    return $this->call('get', array($params), "Google_Service_Analytics_CustomMetric");
2434
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId);
2435
+	$params = array_merge($params, $optParams);
2436
+	return $this->call('get', array($params), "Google_Service_Analytics_CustomMetric");
2437 2437
   }
2438 2438
 
2439 2439
   /**
@@ -2448,9 +2448,9 @@  discard block
 block discarded – undo
2448 2448
    */
2449 2449
   public function insert($accountId, $webPropertyId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array())
2450 2450
   {
2451
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
2452
-    $params = array_merge($params, $optParams);
2453
-    return $this->call('insert', array($params), "Google_Service_Analytics_CustomMetric");
2451
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
2452
+	$params = array_merge($params, $optParams);
2453
+	return $this->call('insert', array($params), "Google_Service_Analytics_CustomMetric");
2454 2454
   }
2455 2455
 
2456 2456
   /**
@@ -2470,9 +2470,9 @@  discard block
 block discarded – undo
2470 2470
    */
2471 2471
   public function listManagementCustomMetrics($accountId, $webPropertyId, $optParams = array())
2472 2472
   {
2473
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2474
-    $params = array_merge($params, $optParams);
2475
-    return $this->call('list', array($params), "Google_Service_Analytics_CustomMetrics");
2473
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
2474
+	$params = array_merge($params, $optParams);
2475
+	return $this->call('list', array($params), "Google_Service_Analytics_CustomMetrics");
2476 2476
   }
2477 2477
 
2478 2478
   /**
@@ -2493,9 +2493,9 @@  discard block
 block discarded – undo
2493 2493
    */
2494 2494
   public function patch($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array())
2495 2495
   {
2496
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody);
2497
-    $params = array_merge($params, $optParams);
2498
-    return $this->call('patch', array($params), "Google_Service_Analytics_CustomMetric");
2496
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody);
2497
+	$params = array_merge($params, $optParams);
2498
+	return $this->call('patch', array($params), "Google_Service_Analytics_CustomMetric");
2499 2499
   }
2500 2500
 
2501 2501
   /**
@@ -2515,9 +2515,9 @@  discard block
 block discarded – undo
2515 2515
    */
2516 2516
   public function update($accountId, $webPropertyId, $customMetricId, Google_Service_Analytics_CustomMetric $postBody, $optParams = array())
2517 2517
   {
2518
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody);
2519
-    $params = array_merge($params, $optParams);
2520
-    return $this->call('update', array($params), "Google_Service_Analytics_CustomMetric");
2518
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customMetricId' => $customMetricId, 'postBody' => $postBody);
2519
+	$params = array_merge($params, $optParams);
2520
+	return $this->call('update', array($params), "Google_Service_Analytics_CustomMetric");
2521 2521
   }
2522 2522
 }
2523 2523
 /**
@@ -2542,9 +2542,9 @@  discard block
 block discarded – undo
2542 2542
    */
2543 2543
   public function delete($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array())
2544 2544
   {
2545
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
2546
-    $params = array_merge($params, $optParams);
2547
-    return $this->call('delete', array($params));
2545
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
2546
+	$params = array_merge($params, $optParams);
2547
+	return $this->call('delete', array($params));
2548 2548
   }
2549 2549
 
2550 2550
   /**
@@ -2559,9 +2559,9 @@  discard block
 block discarded – undo
2559 2559
    */
2560 2560
   public function get($accountId, $webPropertyId, $profileId, $experimentId, $optParams = array())
2561 2561
   {
2562
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
2563
-    $params = array_merge($params, $optParams);
2564
-    return $this->call('get', array($params), "Google_Service_Analytics_Experiment");
2562
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId);
2563
+	$params = array_merge($params, $optParams);
2564
+	return $this->call('get', array($params), "Google_Service_Analytics_Experiment");
2565 2565
   }
2566 2566
 
2567 2567
   /**
@@ -2576,9 +2576,9 @@  discard block
 block discarded – undo
2576 2576
    */
2577 2577
   public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Experiment $postBody, $optParams = array())
2578 2578
   {
2579
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2580
-    $params = array_merge($params, $optParams);
2581
-    return $this->call('insert', array($params), "Google_Service_Analytics_Experiment");
2579
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2580
+	$params = array_merge($params, $optParams);
2581
+	return $this->call('insert', array($params), "Google_Service_Analytics_Experiment");
2582 2582
   }
2583 2583
 
2584 2584
   /**
@@ -2599,9 +2599,9 @@  discard block
 block discarded – undo
2599 2599
    */
2600 2600
   public function listManagementExperiments($accountId, $webPropertyId, $profileId, $optParams = array())
2601 2601
   {
2602
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2603
-    $params = array_merge($params, $optParams);
2604
-    return $this->call('list', array($params), "Google_Service_Analytics_Experiments");
2602
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2603
+	$params = array_merge($params, $optParams);
2604
+	return $this->call('list', array($params), "Google_Service_Analytics_Experiments");
2605 2605
   }
2606 2606
 
2607 2607
   /**
@@ -2618,9 +2618,9 @@  discard block
 block discarded – undo
2618 2618
    */
2619 2619
   public function patch($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array())
2620 2620
   {
2621
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
2622
-    $params = array_merge($params, $optParams);
2623
-    return $this->call('patch', array($params), "Google_Service_Analytics_Experiment");
2621
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
2622
+	$params = array_merge($params, $optParams);
2623
+	return $this->call('patch', array($params), "Google_Service_Analytics_Experiment");
2624 2624
   }
2625 2625
 
2626 2626
   /**
@@ -2636,9 +2636,9 @@  discard block
 block discarded – undo
2636 2636
    */
2637 2637
   public function update($accountId, $webPropertyId, $profileId, $experimentId, Google_Service_Analytics_Experiment $postBody, $optParams = array())
2638 2638
   {
2639
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
2640
-    $params = array_merge($params, $optParams);
2641
-    return $this->call('update', array($params), "Google_Service_Analytics_Experiment");
2639
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'experimentId' => $experimentId, 'postBody' => $postBody);
2640
+	$params = array_merge($params, $optParams);
2641
+	return $this->call('update', array($params), "Google_Service_Analytics_Experiment");
2642 2642
   }
2643 2643
 }
2644 2644
 /**
@@ -2662,9 +2662,9 @@  discard block
 block discarded – undo
2662 2662
    */
2663 2663
   public function delete($accountId, $filterId, $optParams = array())
2664 2664
   {
2665
-    $params = array('accountId' => $accountId, 'filterId' => $filterId);
2666
-    $params = array_merge($params, $optParams);
2667
-    return $this->call('delete', array($params), "Google_Service_Analytics_Filter");
2665
+	$params = array('accountId' => $accountId, 'filterId' => $filterId);
2666
+	$params = array_merge($params, $optParams);
2667
+	return $this->call('delete', array($params), "Google_Service_Analytics_Filter");
2668 2668
   }
2669 2669
 
2670 2670
   /**
@@ -2677,9 +2677,9 @@  discard block
 block discarded – undo
2677 2677
    */
2678 2678
   public function get($accountId, $filterId, $optParams = array())
2679 2679
   {
2680
-    $params = array('accountId' => $accountId, 'filterId' => $filterId);
2681
-    $params = array_merge($params, $optParams);
2682
-    return $this->call('get', array($params), "Google_Service_Analytics_Filter");
2680
+	$params = array('accountId' => $accountId, 'filterId' => $filterId);
2681
+	$params = array_merge($params, $optParams);
2682
+	return $this->call('get', array($params), "Google_Service_Analytics_Filter");
2683 2683
   }
2684 2684
 
2685 2685
   /**
@@ -2692,9 +2692,9 @@  discard block
 block discarded – undo
2692 2692
    */
2693 2693
   public function insert($accountId, Google_Service_Analytics_Filter $postBody, $optParams = array())
2694 2694
   {
2695
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
2696
-    $params = array_merge($params, $optParams);
2697
-    return $this->call('insert', array($params), "Google_Service_Analytics_Filter");
2695
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
2696
+	$params = array_merge($params, $optParams);
2697
+	return $this->call('insert', array($params), "Google_Service_Analytics_Filter");
2698 2698
   }
2699 2699
 
2700 2700
   /**
@@ -2711,9 +2711,9 @@  discard block
 block discarded – undo
2711 2711
    */
2712 2712
   public function listManagementFilters($accountId, $optParams = array())
2713 2713
   {
2714
-    $params = array('accountId' => $accountId);
2715
-    $params = array_merge($params, $optParams);
2716
-    return $this->call('list', array($params), "Google_Service_Analytics_Filters");
2714
+	$params = array('accountId' => $accountId);
2715
+	$params = array_merge($params, $optParams);
2716
+	return $this->call('list', array($params), "Google_Service_Analytics_Filters");
2717 2717
   }
2718 2718
 
2719 2719
   /**
@@ -2728,9 +2728,9 @@  discard block
 block discarded – undo
2728 2728
    */
2729 2729
   public function patch($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array())
2730 2730
   {
2731
-    $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
2732
-    $params = array_merge($params, $optParams);
2733
-    return $this->call('patch', array($params), "Google_Service_Analytics_Filter");
2731
+	$params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
2732
+	$params = array_merge($params, $optParams);
2733
+	return $this->call('patch', array($params), "Google_Service_Analytics_Filter");
2734 2734
   }
2735 2735
 
2736 2736
   /**
@@ -2744,9 +2744,9 @@  discard block
 block discarded – undo
2744 2744
    */
2745 2745
   public function update($accountId, $filterId, Google_Service_Analytics_Filter $postBody, $optParams = array())
2746 2746
   {
2747
-    $params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
2748
-    $params = array_merge($params, $optParams);
2749
-    return $this->call('update', array($params), "Google_Service_Analytics_Filter");
2747
+	$params = array('accountId' => $accountId, 'filterId' => $filterId, 'postBody' => $postBody);
2748
+	$params = array_merge($params, $optParams);
2749
+	return $this->call('update', array($params), "Google_Service_Analytics_Filter");
2750 2750
   }
2751 2751
 }
2752 2752
 /**
@@ -2772,9 +2772,9 @@  discard block
 block discarded – undo
2772 2772
    */
2773 2773
   public function get($accountId, $webPropertyId, $profileId, $goalId, $optParams = array())
2774 2774
   {
2775
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId);
2776
-    $params = array_merge($params, $optParams);
2777
-    return $this->call('get', array($params), "Google_Service_Analytics_Goal");
2775
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId);
2776
+	$params = array_merge($params, $optParams);
2777
+	return $this->call('get', array($params), "Google_Service_Analytics_Goal");
2778 2778
   }
2779 2779
 
2780 2780
   /**
@@ -2789,9 +2789,9 @@  discard block
 block discarded – undo
2789 2789
    */
2790 2790
   public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Goal $postBody, $optParams = array())
2791 2791
   {
2792
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2793
-    $params = array_merge($params, $optParams);
2794
-    return $this->call('insert', array($params), "Google_Service_Analytics_Goal");
2792
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2793
+	$params = array_merge($params, $optParams);
2794
+	return $this->call('insert', array($params), "Google_Service_Analytics_Goal");
2795 2795
   }
2796 2796
 
2797 2797
   /**
@@ -2816,9 +2816,9 @@  discard block
 block discarded – undo
2816 2816
    */
2817 2817
   public function listManagementGoals($accountId, $webPropertyId, $profileId, $optParams = array())
2818 2818
   {
2819
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2820
-    $params = array_merge($params, $optParams);
2821
-    return $this->call('list', array($params), "Google_Service_Analytics_Goals");
2819
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2820
+	$params = array_merge($params, $optParams);
2821
+	return $this->call('list', array($params), "Google_Service_Analytics_Goals");
2822 2822
   }
2823 2823
 
2824 2824
   /**
@@ -2835,9 +2835,9 @@  discard block
 block discarded – undo
2835 2835
    */
2836 2836
   public function patch($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array())
2837 2837
   {
2838
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
2839
-    $params = array_merge($params, $optParams);
2840
-    return $this->call('patch', array($params), "Google_Service_Analytics_Goal");
2838
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
2839
+	$params = array_merge($params, $optParams);
2840
+	return $this->call('patch', array($params), "Google_Service_Analytics_Goal");
2841 2841
   }
2842 2842
 
2843 2843
   /**
@@ -2853,9 +2853,9 @@  discard block
 block discarded – undo
2853 2853
    */
2854 2854
   public function update($accountId, $webPropertyId, $profileId, $goalId, Google_Service_Analytics_Goal $postBody, $optParams = array())
2855 2855
   {
2856
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
2857
-    $params = array_merge($params, $optParams);
2858
-    return $this->call('update', array($params), "Google_Service_Analytics_Goal");
2856
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'goalId' => $goalId, 'postBody' => $postBody);
2857
+	$params = array_merge($params, $optParams);
2858
+	return $this->call('update', array($params), "Google_Service_Analytics_Goal");
2859 2859
   }
2860 2860
 }
2861 2861
 /**
@@ -2881,9 +2881,9 @@  discard block
 block discarded – undo
2881 2881
    */
2882 2882
   public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
2883 2883
   {
2884
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
2885
-    $params = array_merge($params, $optParams);
2886
-    return $this->call('delete', array($params));
2884
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
2885
+	$params = array_merge($params, $optParams);
2886
+	return $this->call('delete', array($params));
2887 2887
   }
2888 2888
 
2889 2889
   /**
@@ -2899,9 +2899,9 @@  discard block
 block discarded – undo
2899 2899
    */
2900 2900
   public function get($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
2901 2901
   {
2902
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
2903
-    $params = array_merge($params, $optParams);
2904
-    return $this->call('get', array($params), "Google_Service_Analytics_ProfileFilterLink");
2902
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
2903
+	$params = array_merge($params, $optParams);
2904
+	return $this->call('get', array($params), "Google_Service_Analytics_ProfileFilterLink");
2905 2905
   }
2906 2906
 
2907 2907
   /**
@@ -2917,9 +2917,9 @@  discard block
 block discarded – undo
2917 2917
    */
2918 2918
   public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
2919 2919
   {
2920
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2921
-    $params = array_merge($params, $optParams);
2922
-    return $this->call('insert', array($params), "Google_Service_Analytics_ProfileFilterLink");
2920
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
2921
+	$params = array_merge($params, $optParams);
2922
+	return $this->call('insert', array($params), "Google_Service_Analytics_ProfileFilterLink");
2923 2923
   }
2924 2924
 
2925 2925
   /**
@@ -2943,9 +2943,9 @@  discard block
 block discarded – undo
2943 2943
    */
2944 2944
   public function listManagementProfileFilterLinks($accountId, $webPropertyId, $profileId, $optParams = array())
2945 2945
   {
2946
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2947
-    $params = array_merge($params, $optParams);
2948
-    return $this->call('list', array($params), "Google_Service_Analytics_ProfileFilterLinks");
2946
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
2947
+	$params = array_merge($params, $optParams);
2948
+	return $this->call('list', array($params), "Google_Service_Analytics_ProfileFilterLinks");
2949 2949
   }
2950 2950
 
2951 2951
   /**
@@ -2963,9 +2963,9 @@  discard block
 block discarded – undo
2963 2963
    */
2964 2964
   public function patch($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
2965 2965
   {
2966
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
2967
-    $params = array_merge($params, $optParams);
2968
-    return $this->call('patch', array($params), "Google_Service_Analytics_ProfileFilterLink");
2966
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
2967
+	$params = array_merge($params, $optParams);
2968
+	return $this->call('patch', array($params), "Google_Service_Analytics_ProfileFilterLink");
2969 2969
   }
2970 2970
 
2971 2971
   /**
@@ -2982,9 +2982,9 @@  discard block
 block discarded – undo
2982 2982
    */
2983 2983
   public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_ProfileFilterLink $postBody, $optParams = array())
2984 2984
   {
2985
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
2986
-    $params = array_merge($params, $optParams);
2987
-    return $this->call('update', array($params), "Google_Service_Analytics_ProfileFilterLink");
2985
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
2986
+	$params = array_merge($params, $optParams);
2987
+	return $this->call('update', array($params), "Google_Service_Analytics_ProfileFilterLink");
2988 2988
   }
2989 2989
 }
2990 2990
 /**
@@ -3009,9 +3009,9 @@  discard block
 block discarded – undo
3009 3009
    */
3010 3010
   public function delete($accountId, $webPropertyId, $profileId, $linkId, $optParams = array())
3011 3011
   {
3012
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
3013
-    $params = array_merge($params, $optParams);
3014
-    return $this->call('delete', array($params));
3012
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId);
3013
+	$params = array_merge($params, $optParams);
3014
+	return $this->call('delete', array($params));
3015 3015
   }
3016 3016
 
3017 3017
   /**
@@ -3026,9 +3026,9 @@  discard block
 block discarded – undo
3026 3026
    */
3027 3027
   public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
3028 3028
   {
3029
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3030
-    $params = array_merge($params, $optParams);
3031
-    return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
3029
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3030
+	$params = array_merge($params, $optParams);
3031
+	return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
3032 3032
   }
3033 3033
 
3034 3034
   /**
@@ -3054,9 +3054,9 @@  discard block
 block discarded – undo
3054 3054
    */
3055 3055
   public function listManagementProfileUserLinks($accountId, $webPropertyId, $profileId, $optParams = array())
3056 3056
   {
3057
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3058
-    $params = array_merge($params, $optParams);
3059
-    return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
3057
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3058
+	$params = array_merge($params, $optParams);
3059
+	return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
3060 3060
   }
3061 3061
 
3062 3062
   /**
@@ -3073,9 +3073,9 @@  discard block
 block discarded – undo
3073 3073
    */
3074 3074
   public function update($accountId, $webPropertyId, $profileId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
3075 3075
   {
3076
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
3077
-    $params = array_merge($params, $optParams);
3078
-    return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
3076
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'linkId' => $linkId, 'postBody' => $postBody);
3077
+	$params = array_merge($params, $optParams);
3078
+	return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
3079 3079
   }
3080 3080
 }
3081 3081
 /**
@@ -3100,9 +3100,9 @@  discard block
 block discarded – undo
3100 3100
    */
3101 3101
   public function delete($accountId, $webPropertyId, $profileId, $optParams = array())
3102 3102
   {
3103
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3104
-    $params = array_merge($params, $optParams);
3105
-    return $this->call('delete', array($params));
3103
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3104
+	$params = array_merge($params, $optParams);
3105
+	return $this->call('delete', array($params));
3106 3106
   }
3107 3107
 
3108 3108
   /**
@@ -3116,9 +3116,9 @@  discard block
 block discarded – undo
3116 3116
    */
3117 3117
   public function get($accountId, $webPropertyId, $profileId, $optParams = array())
3118 3118
   {
3119
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3120
-    $params = array_merge($params, $optParams);
3121
-    return $this->call('get', array($params), "Google_Service_Analytics_Profile");
3119
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3120
+	$params = array_merge($params, $optParams);
3121
+	return $this->call('get', array($params), "Google_Service_Analytics_Profile");
3122 3122
   }
3123 3123
 
3124 3124
   /**
@@ -3133,9 +3133,9 @@  discard block
 block discarded – undo
3133 3133
    */
3134 3134
   public function insert($accountId, $webPropertyId, Google_Service_Analytics_Profile $postBody, $optParams = array())
3135 3135
   {
3136
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3137
-    $params = array_merge($params, $optParams);
3138
-    return $this->call('insert', array($params), "Google_Service_Analytics_Profile");
3136
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3137
+	$params = array_merge($params, $optParams);
3138
+	return $this->call('insert', array($params), "Google_Service_Analytics_Profile");
3139 3139
   }
3140 3140
 
3141 3141
   /**
@@ -3158,9 +3158,9 @@  discard block
 block discarded – undo
3158 3158
    */
3159 3159
   public function listManagementProfiles($accountId, $webPropertyId, $optParams = array())
3160 3160
   {
3161
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3162
-    $params = array_merge($params, $optParams);
3163
-    return $this->call('list', array($params), "Google_Service_Analytics_Profiles");
3161
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3162
+	$params = array_merge($params, $optParams);
3163
+	return $this->call('list', array($params), "Google_Service_Analytics_Profiles");
3164 3164
   }
3165 3165
 
3166 3166
   /**
@@ -3177,9 +3177,9 @@  discard block
 block discarded – undo
3177 3177
    */
3178 3178
   public function patch($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array())
3179 3179
   {
3180
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3181
-    $params = array_merge($params, $optParams);
3182
-    return $this->call('patch', array($params), "Google_Service_Analytics_Profile");
3180
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3181
+	$params = array_merge($params, $optParams);
3182
+	return $this->call('patch', array($params), "Google_Service_Analytics_Profile");
3183 3183
   }
3184 3184
 
3185 3185
   /**
@@ -3195,9 +3195,9 @@  discard block
 block discarded – undo
3195 3195
    */
3196 3196
   public function update($accountId, $webPropertyId, $profileId, Google_Service_Analytics_Profile $postBody, $optParams = array())
3197 3197
   {
3198
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3199
-    $params = array_merge($params, $optParams);
3200
-    return $this->call('update', array($params), "Google_Service_Analytics_Profile");
3198
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3199
+	$params = array_merge($params, $optParams);
3200
+	return $this->call('update', array($params), "Google_Service_Analytics_Profile");
3201 3201
   }
3202 3202
 }
3203 3203
 /**
@@ -3226,9 +3226,9 @@  discard block
 block discarded – undo
3226 3226
    */
3227 3227
   public function listManagementSegments($optParams = array())
3228 3228
   {
3229
-    $params = array();
3230
-    $params = array_merge($params, $optParams);
3231
-    return $this->call('list', array($params), "Google_Service_Analytics_Segments");
3229
+	$params = array();
3230
+	$params = array_merge($params, $optParams);
3231
+	return $this->call('list', array($params), "Google_Service_Analytics_Segments");
3232 3232
   }
3233 3233
 }
3234 3234
 /**
@@ -3255,9 +3255,9 @@  discard block
 block discarded – undo
3255 3255
    */
3256 3256
   public function get($accountId, $webPropertyId, $profileId, $unsampledReportId, $optParams = array())
3257 3257
   {
3258
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId);
3259
-    $params = array_merge($params, $optParams);
3260
-    return $this->call('get', array($params), "Google_Service_Analytics_UnsampledReport");
3258
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'unsampledReportId' => $unsampledReportId);
3259
+	$params = array_merge($params, $optParams);
3260
+	return $this->call('get', array($params), "Google_Service_Analytics_UnsampledReport");
3261 3261
   }
3262 3262
 
3263 3263
   /**
@@ -3274,9 +3274,9 @@  discard block
 block discarded – undo
3274 3274
    */
3275 3275
   public function insert($accountId, $webPropertyId, $profileId, Google_Service_Analytics_UnsampledReport $postBody, $optParams = array())
3276 3276
   {
3277
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3278
-    $params = array_merge($params, $optParams);
3279
-    return $this->call('insert', array($params), "Google_Service_Analytics_UnsampledReport");
3277
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId, 'postBody' => $postBody);
3278
+	$params = array_merge($params, $optParams);
3279
+	return $this->call('insert', array($params), "Google_Service_Analytics_UnsampledReport");
3280 3280
   }
3281 3281
 
3282 3282
   /**
@@ -3300,9 +3300,9 @@  discard block
 block discarded – undo
3300 3300
    */
3301 3301
   public function listManagementUnsampledReports($accountId, $webPropertyId, $profileId, $optParams = array())
3302 3302
   {
3303
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3304
-    $params = array_merge($params, $optParams);
3305
-    return $this->call('list', array($params), "Google_Service_Analytics_UnsampledReports");
3303
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'profileId' => $profileId);
3304
+	$params = array_merge($params, $optParams);
3305
+	return $this->call('list', array($params), "Google_Service_Analytics_UnsampledReports");
3306 3306
   }
3307 3307
 }
3308 3308
 /**
@@ -3328,9 +3328,9 @@  discard block
 block discarded – undo
3328 3328
    */
3329 3329
   public function deleteUploadData($accountId, $webPropertyId, $customDataSourceId, Google_Service_Analytics_AnalyticsDataimportDeleteUploadDataRequest $postBody, $optParams = array())
3330 3330
   {
3331
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody);
3332
-    $params = array_merge($params, $optParams);
3333
-    return $this->call('deleteUploadData', array($params));
3331
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'postBody' => $postBody);
3332
+	$params = array_merge($params, $optParams);
3333
+	return $this->call('deleteUploadData', array($params));
3334 3334
   }
3335 3335
 
3336 3336
   /**
@@ -3346,9 +3346,9 @@  discard block
 block discarded – undo
3346 3346
    */
3347 3347
   public function get($accountId, $webPropertyId, $customDataSourceId, $uploadId, $optParams = array())
3348 3348
   {
3349
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId);
3350
-    $params = array_merge($params, $optParams);
3351
-    return $this->call('get', array($params), "Google_Service_Analytics_Upload");
3349
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId, 'uploadId' => $uploadId);
3350
+	$params = array_merge($params, $optParams);
3351
+	return $this->call('get', array($params), "Google_Service_Analytics_Upload");
3352 3352
   }
3353 3353
 
3354 3354
   /**
@@ -3369,9 +3369,9 @@  discard block
 block discarded – undo
3369 3369
    */
3370 3370
   public function listManagementUploads($accountId, $webPropertyId, $customDataSourceId, $optParams = array())
3371 3371
   {
3372
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
3373
-    $params = array_merge($params, $optParams);
3374
-    return $this->call('list', array($params), "Google_Service_Analytics_Uploads");
3372
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
3373
+	$params = array_merge($params, $optParams);
3374
+	return $this->call('list', array($params), "Google_Service_Analytics_Uploads");
3375 3375
   }
3376 3376
 
3377 3377
   /**
@@ -3387,9 +3387,9 @@  discard block
 block discarded – undo
3387 3387
    */
3388 3388
   public function uploadData($accountId, $webPropertyId, $customDataSourceId, $optParams = array())
3389 3389
   {
3390
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
3391
-    $params = array_merge($params, $optParams);
3392
-    return $this->call('uploadData', array($params), "Google_Service_Analytics_Upload");
3390
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'customDataSourceId' => $customDataSourceId);
3391
+	$params = array_merge($params, $optParams);
3392
+	return $this->call('uploadData', array($params), "Google_Service_Analytics_Upload");
3393 3393
   }
3394 3394
 }
3395 3395
 /**
@@ -3414,9 +3414,9 @@  discard block
 block discarded – undo
3414 3414
    */
3415 3415
   public function delete($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array())
3416 3416
   {
3417
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
3418
-    $params = array_merge($params, $optParams);
3419
-    return $this->call('delete', array($params));
3417
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
3418
+	$params = array_merge($params, $optParams);
3419
+	return $this->call('delete', array($params));
3420 3420
   }
3421 3421
 
3422 3422
   /**
@@ -3433,9 +3433,9 @@  discard block
 block discarded – undo
3433 3433
    */
3434 3434
   public function get($accountId, $webPropertyId, $webPropertyAdWordsLinkId, $optParams = array())
3435 3435
   {
3436
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
3437
-    $params = array_merge($params, $optParams);
3438
-    return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3436
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId);
3437
+	$params = array_merge($params, $optParams);
3438
+	return $this->call('get', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3439 3439
   }
3440 3440
 
3441 3441
   /**
@@ -3450,9 +3450,9 @@  discard block
 block discarded – undo
3450 3450
    */
3451 3451
   public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
3452 3452
   {
3453
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3454
-    $params = array_merge($params, $optParams);
3455
-    return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3453
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3454
+	$params = array_merge($params, $optParams);
3455
+	return $this->call('insert', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3456 3456
   }
3457 3457
 
3458 3458
   /**
@@ -3474,9 +3474,9 @@  discard block
 block discarded – undo
3474 3474
    */
3475 3475
   public function listManagementWebPropertyAdWordsLinks($accountId, $webPropertyId, $optParams = array())
3476 3476
   {
3477
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3478
-    $params = array_merge($params, $optParams);
3479
-    return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks");
3477
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3478
+	$params = array_merge($params, $optParams);
3479
+	return $this->call('list', array($params), "Google_Service_Analytics_EntityAdWordsLinks");
3480 3480
   }
3481 3481
 
3482 3482
   /**
@@ -3494,9 +3494,9 @@  discard block
 block discarded – undo
3494 3494
    */
3495 3495
   public function patch($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
3496 3496
   {
3497
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
3498
-    $params = array_merge($params, $optParams);
3499
-    return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3497
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
3498
+	$params = array_merge($params, $optParams);
3499
+	return $this->call('patch', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3500 3500
   }
3501 3501
 
3502 3502
   /**
@@ -3514,9 +3514,9 @@  discard block
 block discarded – undo
3514 3514
    */
3515 3515
   public function update($accountId, $webPropertyId, $webPropertyAdWordsLinkId, Google_Service_Analytics_EntityAdWordsLink $postBody, $optParams = array())
3516 3516
   {
3517
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
3518
-    $params = array_merge($params, $optParams);
3519
-    return $this->call('update', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3517
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'webPropertyAdWordsLinkId' => $webPropertyAdWordsLinkId, 'postBody' => $postBody);
3518
+	$params = array_merge($params, $optParams);
3519
+	return $this->call('update', array($params), "Google_Service_Analytics_EntityAdWordsLink");
3520 3520
   }
3521 3521
 }
3522 3522
 /**
@@ -3540,9 +3540,9 @@  discard block
 block discarded – undo
3540 3540
    */
3541 3541
   public function get($accountId, $webPropertyId, $optParams = array())
3542 3542
   {
3543
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3544
-    $params = array_merge($params, $optParams);
3545
-    return $this->call('get', array($params), "Google_Service_Analytics_Webproperty");
3543
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3544
+	$params = array_merge($params, $optParams);
3545
+	return $this->call('get', array($params), "Google_Service_Analytics_Webproperty");
3546 3546
   }
3547 3547
 
3548 3548
   /**
@@ -3557,9 +3557,9 @@  discard block
 block discarded – undo
3557 3557
    */
3558 3558
   public function insert($accountId, Google_Service_Analytics_Webproperty $postBody, $optParams = array())
3559 3559
   {
3560
-    $params = array('accountId' => $accountId, 'postBody' => $postBody);
3561
-    $params = array_merge($params, $optParams);
3562
-    return $this->call('insert', array($params), "Google_Service_Analytics_Webproperty");
3560
+	$params = array('accountId' => $accountId, 'postBody' => $postBody);
3561
+	$params = array_merge($params, $optParams);
3562
+	return $this->call('insert', array($params), "Google_Service_Analytics_Webproperty");
3563 3563
   }
3564 3564
 
3565 3565
   /**
@@ -3579,9 +3579,9 @@  discard block
 block discarded – undo
3579 3579
    */
3580 3580
   public function listManagementWebproperties($accountId, $optParams = array())
3581 3581
   {
3582
-    $params = array('accountId' => $accountId);
3583
-    $params = array_merge($params, $optParams);
3584
-    return $this->call('list', array($params), "Google_Service_Analytics_Webproperties");
3582
+	$params = array('accountId' => $accountId);
3583
+	$params = array_merge($params, $optParams);
3584
+	return $this->call('list', array($params), "Google_Service_Analytics_Webproperties");
3585 3585
   }
3586 3586
 
3587 3587
   /**
@@ -3596,9 +3596,9 @@  discard block
 block discarded – undo
3596 3596
    */
3597 3597
   public function patch($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array())
3598 3598
   {
3599
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3600
-    $params = array_merge($params, $optParams);
3601
-    return $this->call('patch', array($params), "Google_Service_Analytics_Webproperty");
3599
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3600
+	$params = array_merge($params, $optParams);
3601
+	return $this->call('patch', array($params), "Google_Service_Analytics_Webproperty");
3602 3602
   }
3603 3603
 
3604 3604
   /**
@@ -3612,9 +3612,9 @@  discard block
 block discarded – undo
3612 3612
    */
3613 3613
   public function update($accountId, $webPropertyId, Google_Service_Analytics_Webproperty $postBody, $optParams = array())
3614 3614
   {
3615
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3616
-    $params = array_merge($params, $optParams);
3617
-    return $this->call('update', array($params), "Google_Service_Analytics_Webproperty");
3615
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3616
+	$params = array_merge($params, $optParams);
3617
+	return $this->call('update', array($params), "Google_Service_Analytics_Webproperty");
3618 3618
   }
3619 3619
 }
3620 3620
 /**
@@ -3638,9 +3638,9 @@  discard block
 block discarded – undo
3638 3638
    */
3639 3639
   public function delete($accountId, $webPropertyId, $linkId, $optParams = array())
3640 3640
   {
3641
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId);
3642
-    $params = array_merge($params, $optParams);
3643
-    return $this->call('delete', array($params));
3641
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId);
3642
+	$params = array_merge($params, $optParams);
3643
+	return $this->call('delete', array($params));
3644 3644
   }
3645 3645
 
3646 3646
   /**
@@ -3654,9 +3654,9 @@  discard block
 block discarded – undo
3654 3654
    */
3655 3655
   public function insert($accountId, $webPropertyId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
3656 3656
   {
3657
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3658
-    $params = array_merge($params, $optParams);
3659
-    return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
3657
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'postBody' => $postBody);
3658
+	$params = array_merge($params, $optParams);
3659
+	return $this->call('insert', array($params), "Google_Service_Analytics_EntityUserLink");
3660 3660
   }
3661 3661
 
3662 3662
   /**
@@ -3678,9 +3678,9 @@  discard block
 block discarded – undo
3678 3678
    */
3679 3679
   public function listManagementWebpropertyUserLinks($accountId, $webPropertyId, $optParams = array())
3680 3680
   {
3681
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3682
-    $params = array_merge($params, $optParams);
3683
-    return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
3681
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId);
3682
+	$params = array_merge($params, $optParams);
3683
+	return $this->call('list', array($params), "Google_Service_Analytics_EntityUserLinks");
3684 3684
   }
3685 3685
 
3686 3686
   /**
@@ -3697,9 +3697,9 @@  discard block
 block discarded – undo
3697 3697
    */
3698 3698
   public function update($accountId, $webPropertyId, $linkId, Google_Service_Analytics_EntityUserLink $postBody, $optParams = array())
3699 3699
   {
3700
-    $params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody);
3701
-    $params = array_merge($params, $optParams);
3702
-    return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
3700
+	$params = array('accountId' => $accountId, 'webPropertyId' => $webPropertyId, 'linkId' => $linkId, 'postBody' => $postBody);
3701
+	$params = array_merge($params, $optParams);
3702
+	return $this->call('update', array($params), "Google_Service_Analytics_EntityUserLink");
3703 3703
   }
3704 3704
 }
3705 3705
 
@@ -3736,9 +3736,9 @@  discard block
 block discarded – undo
3736 3736
    */
3737 3737
   public function listMetadataColumns($reportType, $optParams = array())
3738 3738
   {
3739
-    $params = array('reportType' => $reportType);
3740
-    $params = array_merge($params, $optParams);
3741
-    return $this->call('list', array($params), "Google_Service_Analytics_Columns");
3739
+	$params = array('reportType' => $reportType);
3740
+	$params = array_merge($params, $optParams);
3741
+	return $this->call('list', array($params), "Google_Service_Analytics_Columns");
3742 3742
   }
3743 3743
 }
3744 3744
 
@@ -3762,9 +3762,9 @@  discard block
 block discarded – undo
3762 3762
    */
3763 3763
   public function createAccountTicket(Google_Service_Analytics_AccountTicket $postBody, $optParams = array())
3764 3764
   {
3765
-    $params = array('postBody' => $postBody);
3766
-    $params = array_merge($params, $optParams);
3767
-    return $this->call('createAccountTicket', array($params), "Google_Service_Analytics_AccountTicket");
3765
+	$params = array('postBody' => $postBody);
3766
+	$params = array_merge($params, $optParams);
3767
+	return $this->call('createAccountTicket', array($params), "Google_Service_Analytics_AccountTicket");
3768 3768
   }
3769 3769
 }
3770 3770
 
@@ -3789,67 +3789,67 @@  discard block
 block discarded – undo
3789 3789
 
3790 3790
   public function setChildLink(Google_Service_Analytics_AccountChildLink $childLink)
3791 3791
   {
3792
-    $this->childLink = $childLink;
3792
+	$this->childLink = $childLink;
3793 3793
   }
3794 3794
   public function getChildLink()
3795 3795
   {
3796
-    return $this->childLink;
3796
+	return $this->childLink;
3797 3797
   }
3798 3798
   public function setCreated($created)
3799 3799
   {
3800
-    $this->created = $created;
3800
+	$this->created = $created;
3801 3801
   }
3802 3802
   public function getCreated()
3803 3803
   {
3804
-    return $this->created;
3804
+	return $this->created;
3805 3805
   }
3806 3806
   public function setId($id)
3807 3807
   {
3808
-    $this->id = $id;
3808
+	$this->id = $id;
3809 3809
   }
3810 3810
   public function getId()
3811 3811
   {
3812
-    return $this->id;
3812
+	return $this->id;
3813 3813
   }
3814 3814
   public function setKind($kind)
3815 3815
   {
3816
-    $this->kind = $kind;
3816
+	$this->kind = $kind;
3817 3817
   }
3818 3818
   public function getKind()
3819 3819
   {
3820
-    return $this->kind;
3820
+	return $this->kind;
3821 3821
   }
3822 3822
   public function setName($name)
3823 3823
   {
3824
-    $this->name = $name;
3824
+	$this->name = $name;
3825 3825
   }
3826 3826
   public function getName()
3827 3827
   {
3828
-    return $this->name;
3828
+	return $this->name;
3829 3829
   }
3830 3830
   public function setPermissions(Google_Service_Analytics_AccountPermissions $permissions)
3831 3831
   {
3832
-    $this->permissions = $permissions;
3832
+	$this->permissions = $permissions;
3833 3833
   }
3834 3834
   public function getPermissions()
3835 3835
   {
3836
-    return $this->permissions;
3836
+	return $this->permissions;
3837 3837
   }
3838 3838
   public function setSelfLink($selfLink)
3839 3839
   {
3840
-    $this->selfLink = $selfLink;
3840
+	$this->selfLink = $selfLink;
3841 3841
   }
3842 3842
   public function getSelfLink()
3843 3843
   {
3844
-    return $this->selfLink;
3844
+	return $this->selfLink;
3845 3845
   }
3846 3846
   public function setUpdated($updated)
3847 3847
   {
3848
-    $this->updated = $updated;
3848
+	$this->updated = $updated;
3849 3849
   }
3850 3850
   public function getUpdated()
3851 3851
   {
3852
-    return $this->updated;
3852
+	return $this->updated;
3853 3853
   }
3854 3854
 }
3855 3855
 
@@ -3863,19 +3863,19 @@  discard block
 block discarded – undo
3863 3863
 
3864 3864
   public function setHref($href)
3865 3865
   {
3866
-    $this->href = $href;
3866
+	$this->href = $href;
3867 3867
   }
3868 3868
   public function getHref()
3869 3869
   {
3870
-    return $this->href;
3870
+	return $this->href;
3871 3871
   }
3872 3872
   public function setType($type)
3873 3873
   {
3874
-    $this->type = $type;
3874
+	$this->type = $type;
3875 3875
   }
3876 3876
   public function getType()
3877 3877
   {
3878
-    return $this->type;
3878
+	return $this->type;
3879 3879
   }
3880 3880
 }
3881 3881
 
@@ -3889,11 +3889,11 @@  discard block
 block discarded – undo
3889 3889
 
3890 3890
   public function setEffective($effective)
3891 3891
   {
3892
-    $this->effective = $effective;
3892
+	$this->effective = $effective;
3893 3893
   }
3894 3894
   public function getEffective()
3895 3895
   {
3896
-    return $this->effective;
3896
+	return $this->effective;
3897 3897
   }
3898 3898
 }
3899 3899
 
@@ -3909,35 +3909,35 @@  discard block
 block discarded – undo
3909 3909
 
3910 3910
   public function setHref($href)
3911 3911
   {
3912
-    $this->href = $href;
3912
+	$this->href = $href;
3913 3913
   }
3914 3914
   public function getHref()
3915 3915
   {
3916
-    return $this->href;
3916
+	return $this->href;
3917 3917
   }
3918 3918
   public function setId($id)
3919 3919
   {
3920
-    $this->id = $id;
3920
+	$this->id = $id;
3921 3921
   }
3922 3922
   public function getId()
3923 3923
   {
3924
-    return $this->id;
3924
+	return $this->id;
3925 3925
   }
3926 3926
   public function setKind($kind)
3927 3927
   {
3928
-    $this->kind = $kind;
3928
+	$this->kind = $kind;
3929 3929
   }
3930 3930
   public function getKind()
3931 3931
   {
3932
-    return $this->kind;
3932
+	return $this->kind;
3933 3933
   }
3934 3934
   public function setName($name)
3935 3935
   {
3936
-    $this->name = $name;
3936
+	$this->name = $name;
3937 3937
   }
3938 3938
   public function getName()
3939 3939
   {
3940
-    return $this->name;
3940
+	return $this->name;
3941 3941
   }
3942 3942
 }
3943 3943
 
@@ -3959,67 +3959,67 @@  discard block
 block discarded – undo
3959 3959
 
3960 3960
   public function setItems($items)
3961 3961
   {
3962
-    $this->items = $items;
3962
+	$this->items = $items;
3963 3963
   }
3964 3964
   public function getItems()
3965 3965
   {
3966
-    return $this->items;
3966
+	return $this->items;
3967 3967
   }
3968 3968
   public function setItemsPerPage($itemsPerPage)
3969 3969
   {
3970
-    $this->itemsPerPage = $itemsPerPage;
3970
+	$this->itemsPerPage = $itemsPerPage;
3971 3971
   }
3972 3972
   public function getItemsPerPage()
3973 3973
   {
3974
-    return $this->itemsPerPage;
3974
+	return $this->itemsPerPage;
3975 3975
   }
3976 3976
   public function setKind($kind)
3977 3977
   {
3978
-    $this->kind = $kind;
3978
+	$this->kind = $kind;
3979 3979
   }
3980 3980
   public function getKind()
3981 3981
   {
3982
-    return $this->kind;
3982
+	return $this->kind;
3983 3983
   }
3984 3984
   public function setNextLink($nextLink)
3985 3985
   {
3986
-    $this->nextLink = $nextLink;
3986
+	$this->nextLink = $nextLink;
3987 3987
   }
3988 3988
   public function getNextLink()
3989 3989
   {
3990
-    return $this->nextLink;
3990
+	return $this->nextLink;
3991 3991
   }
3992 3992
   public function setPreviousLink($previousLink)
3993 3993
   {
3994
-    $this->previousLink = $previousLink;
3994
+	$this->previousLink = $previousLink;
3995 3995
   }
3996 3996
   public function getPreviousLink()
3997 3997
   {
3998
-    return $this->previousLink;
3998
+	return $this->previousLink;
3999 3999
   }
4000 4000
   public function setStartIndex($startIndex)
4001 4001
   {
4002
-    $this->startIndex = $startIndex;
4002
+	$this->startIndex = $startIndex;
4003 4003
   }
4004 4004
   public function getStartIndex()
4005 4005
   {
4006
-    return $this->startIndex;
4006
+	return $this->startIndex;
4007 4007
   }
4008 4008
   public function setTotalResults($totalResults)
4009 4009
   {
4010
-    $this->totalResults = $totalResults;
4010
+	$this->totalResults = $totalResults;
4011 4011
   }
4012 4012
   public function getTotalResults()
4013 4013
   {
4014
-    return $this->totalResults;
4014
+	return $this->totalResults;
4015 4015
   }
4016 4016
   public function setUsername($username)
4017 4017
   {
4018
-    $this->username = $username;
4018
+	$this->username = $username;
4019 4019
   }
4020 4020
   public function getUsername()
4021 4021
   {
4022
-    return $this->username;
4022
+	return $this->username;
4023 4023
   }
4024 4024
 }
4025 4025
 
@@ -4037,35 +4037,35 @@  discard block
 block discarded – undo
4037 4037
 
4038 4038
   public function setId($id)
4039 4039
   {
4040
-    $this->id = $id;
4040
+	$this->id = $id;
4041 4041
   }
4042 4042
   public function getId()
4043 4043
   {
4044
-    return $this->id;
4044
+	return $this->id;
4045 4045
   }
4046 4046
   public function setKind($kind)
4047 4047
   {
4048
-    $this->kind = $kind;
4048
+	$this->kind = $kind;
4049 4049
   }
4050 4050
   public function getKind()
4051 4051
   {
4052
-    return $this->kind;
4052
+	return $this->kind;
4053 4053
   }
4054 4054
   public function setName($name)
4055 4055
   {
4056
-    $this->name = $name;
4056
+	$this->name = $name;
4057 4057
   }
4058 4058
   public function getName()
4059 4059
   {
4060
-    return $this->name;
4060
+	return $this->name;
4061 4061
   }
4062 4062
   public function setWebProperties($webProperties)
4063 4063
   {
4064
-    $this->webProperties = $webProperties;
4064
+	$this->webProperties = $webProperties;
4065 4065
   }
4066 4066
   public function getWebProperties()
4067 4067
   {
4068
-    return $this->webProperties;
4068
+	return $this->webProperties;
4069 4069
   }
4070 4070
 }
4071 4071
 
@@ -4086,51 +4086,51 @@  discard block
 block discarded – undo
4086 4086
 
4087 4087
   public function setAccount(Google_Service_Analytics_Account $account)
4088 4088
   {
4089
-    $this->account = $account;
4089
+	$this->account = $account;
4090 4090
   }
4091 4091
   public function getAccount()
4092 4092
   {
4093
-    return $this->account;
4093
+	return $this->account;
4094 4094
   }
4095 4095
   public function setId($id)
4096 4096
   {
4097
-    $this->id = $id;
4097
+	$this->id = $id;
4098 4098
   }
4099 4099
   public function getId()
4100 4100
   {
4101
-    return $this->id;
4101
+	return $this->id;
4102 4102
   }
4103 4103
   public function setKind($kind)
4104 4104
   {
4105
-    $this->kind = $kind;
4105
+	$this->kind = $kind;
4106 4106
   }
4107 4107
   public function getKind()
4108 4108
   {
4109
-    return $this->kind;
4109
+	return $this->kind;
4110 4110
   }
4111 4111
   public function setProfile(Google_Service_Analytics_Profile $profile)
4112 4112
   {
4113
-    $this->profile = $profile;
4113
+	$this->profile = $profile;
4114 4114
   }
4115 4115
   public function getProfile()
4116 4116
   {
4117
-    return $this->profile;
4117
+	return $this->profile;
4118 4118
   }
4119 4119
   public function setRedirectUri($redirectUri)
4120 4120
   {
4121
-    $this->redirectUri = $redirectUri;
4121
+	$this->redirectUri = $redirectUri;
4122 4122
   }
4123 4123
   public function getRedirectUri()
4124 4124
   {
4125
-    return $this->redirectUri;
4125
+	return $this->redirectUri;
4126 4126
   }
4127 4127
   public function setWebproperty(Google_Service_Analytics_Webproperty $webproperty)
4128 4128
   {
4129
-    $this->webproperty = $webproperty;
4129
+	$this->webproperty = $webproperty;
4130 4130
   }
4131 4131
   public function getWebproperty()
4132 4132
   {
4133
-    return $this->webproperty;
4133
+	return $this->webproperty;
4134 4134
   }
4135 4135
 }
4136 4136
 
@@ -4152,67 +4152,67 @@  discard block
 block discarded – undo
4152 4152
 
4153 4153
   public function setItems($items)
4154 4154
   {
4155
-    $this->items = $items;
4155
+	$this->items = $items;
4156 4156
   }
4157 4157
   public function getItems()
4158 4158
   {
4159
-    return $this->items;
4159
+	return $this->items;
4160 4160
   }
4161 4161
   public function setItemsPerPage($itemsPerPage)
4162 4162
   {
4163
-    $this->itemsPerPage = $itemsPerPage;
4163
+	$this->itemsPerPage = $itemsPerPage;
4164 4164
   }
4165 4165
   public function getItemsPerPage()
4166 4166
   {
4167
-    return $this->itemsPerPage;
4167
+	return $this->itemsPerPage;
4168 4168
   }
4169 4169
   public function setKind($kind)
4170 4170
   {
4171
-    $this->kind = $kind;
4171
+	$this->kind = $kind;
4172 4172
   }
4173 4173
   public function getKind()
4174 4174
   {
4175
-    return $this->kind;
4175
+	return $this->kind;
4176 4176
   }
4177 4177
   public function setNextLink($nextLink)
4178 4178
   {
4179
-    $this->nextLink = $nextLink;
4179
+	$this->nextLink = $nextLink;
4180 4180
   }
4181 4181
   public function getNextLink()
4182 4182
   {
4183
-    return $this->nextLink;
4183
+	return $this->nextLink;
4184 4184
   }
4185 4185
   public function setPreviousLink($previousLink)
4186 4186
   {
4187
-    $this->previousLink = $previousLink;
4187
+	$this->previousLink = $previousLink;
4188 4188
   }
4189 4189
   public function getPreviousLink()
4190 4190
   {
4191
-    return $this->previousLink;
4191
+	return $this->previousLink;
4192 4192
   }
4193 4193
   public function setStartIndex($startIndex)
4194 4194
   {
4195
-    $this->startIndex = $startIndex;
4195
+	$this->startIndex = $startIndex;
4196 4196
   }
4197 4197
   public function getStartIndex()
4198 4198
   {
4199
-    return $this->startIndex;
4199
+	return $this->startIndex;
4200 4200
   }
4201 4201
   public function setTotalResults($totalResults)
4202 4202
   {
4203
-    $this->totalResults = $totalResults;
4203
+	$this->totalResults = $totalResults;
4204 4204
   }
4205 4205
   public function getTotalResults()
4206 4206
   {
4207
-    return $this->totalResults;
4207
+	return $this->totalResults;
4208 4208
   }
4209 4209
   public function setUsername($username)
4210 4210
   {
4211
-    $this->username = $username;
4211
+	$this->username = $username;
4212 4212
   }
4213 4213
   public function getUsername()
4214 4214
   {
4215
-    return $this->username;
4215
+	return $this->username;
4216 4216
   }
4217 4217
 }
4218 4218
 
@@ -4227,27 +4227,27 @@  discard block
 block discarded – undo
4227 4227
 
4228 4228
   public function setAutoTaggingEnabled($autoTaggingEnabled)
4229 4229
   {
4230
-    $this->autoTaggingEnabled = $autoTaggingEnabled;
4230
+	$this->autoTaggingEnabled = $autoTaggingEnabled;
4231 4231
   }
4232 4232
   public function getAutoTaggingEnabled()
4233 4233
   {
4234
-    return $this->autoTaggingEnabled;
4234
+	return $this->autoTaggingEnabled;
4235 4235
   }
4236 4236
   public function setCustomerId($customerId)
4237 4237
   {
4238
-    $this->customerId = $customerId;
4238
+	$this->customerId = $customerId;
4239 4239
   }
4240 4240
   public function getCustomerId()
4241 4241
   {
4242
-    return $this->customerId;
4242
+	return $this->customerId;
4243 4243
   }
4244 4244
   public function setKind($kind)
4245 4245
   {
4246
-    $this->kind = $kind;
4246
+	$this->kind = $kind;
4247 4247
   }
4248 4248
   public function getKind()
4249 4249
   {
4250
-    return $this->kind;
4250
+	return $this->kind;
4251 4251
   }
4252 4252
 }
4253 4253
 
@@ -4261,11 +4261,11 @@  discard block
 block discarded – undo
4261 4261
 
4262 4262
   public function setCustomDataImportUids($customDataImportUids)
4263 4263
   {
4264
-    $this->customDataImportUids = $customDataImportUids;
4264
+	$this->customDataImportUids = $customDataImportUids;
4265 4265
   }
4266 4266
   public function getCustomDataImportUids()
4267 4267
   {
4268
-    return $this->customDataImportUids;
4268
+	return $this->customDataImportUids;
4269 4269
   }
4270 4270
 }
4271 4271
 
@@ -4280,27 +4280,27 @@  discard block
 block discarded – undo
4280 4280
 
4281 4281
   public function setAttributes($attributes)
4282 4282
   {
4283
-    $this->attributes = $attributes;
4283
+	$this->attributes = $attributes;
4284 4284
   }
4285 4285
   public function getAttributes()
4286 4286
   {
4287
-    return $this->attributes;
4287
+	return $this->attributes;
4288 4288
   }
4289 4289
   public function setId($id)
4290 4290
   {
4291
-    $this->id = $id;
4291
+	$this->id = $id;
4292 4292
   }
4293 4293
   public function getId()
4294 4294
   {
4295
-    return $this->id;
4295
+	return $this->id;
4296 4296
   }
4297 4297
   public function setKind($kind)
4298 4298
   {
4299
-    $this->kind = $kind;
4299
+	$this->kind = $kind;
4300 4300
   }
4301 4301
   public function getKind()
4302 4302
   {
4303
-    return $this->kind;
4303
+	return $this->kind;
4304 4304
   }
4305 4305
 }
4306 4306
 
@@ -4323,43 +4323,43 @@  discard block
 block discarded – undo
4323 4323
 
4324 4324
   public function setAttributeNames($attributeNames)
4325 4325
   {
4326
-    $this->attributeNames = $attributeNames;
4326
+	$this->attributeNames = $attributeNames;
4327 4327
   }
4328 4328
   public function getAttributeNames()
4329 4329
   {
4330
-    return $this->attributeNames;
4330
+	return $this->attributeNames;
4331 4331
   }
4332 4332
   public function setEtag($etag)
4333 4333
   {
4334
-    $this->etag = $etag;
4334
+	$this->etag = $etag;
4335 4335
   }
4336 4336
   public function getEtag()
4337 4337
   {
4338
-    return $this->etag;
4338
+	return $this->etag;
4339 4339
   }
4340 4340
   public function setItems($items)
4341 4341
   {
4342
-    $this->items = $items;
4342
+	$this->items = $items;
4343 4343
   }
4344 4344
   public function getItems()
4345 4345
   {
4346
-    return $this->items;
4346
+	return $this->items;
4347 4347
   }
4348 4348
   public function setKind($kind)
4349 4349
   {
4350
-    $this->kind = $kind;
4350
+	$this->kind = $kind;
4351 4351
   }
4352 4352
   public function getKind()
4353 4353
   {
4354
-    return $this->kind;
4354
+	return $this->kind;
4355 4355
   }
4356 4356
   public function setTotalResults($totalResults)
4357 4357
   {
4358
-    $this->totalResults = $totalResults;
4358
+	$this->totalResults = $totalResults;
4359 4359
   }
4360 4360
   public function getTotalResults()
4361 4361
   {
4362
-    return $this->totalResults;
4362
+	return $this->totalResults;
4363 4363
   }
4364 4364
 }
4365 4365
 
@@ -4389,123 +4389,123 @@  discard block
 block discarded – undo
4389 4389
 
4390 4390
   public function setAccountId($accountId)
4391 4391
   {
4392
-    $this->accountId = $accountId;
4392
+	$this->accountId = $accountId;
4393 4393
   }
4394 4394
   public function getAccountId()
4395 4395
   {
4396
-    return $this->accountId;
4396
+	return $this->accountId;
4397 4397
   }
4398 4398
   public function setChildLink(Google_Service_Analytics_CustomDataSourceChildLink $childLink)
4399 4399
   {
4400
-    $this->childLink = $childLink;
4400
+	$this->childLink = $childLink;
4401 4401
   }
4402 4402
   public function getChildLink()
4403 4403
   {
4404
-    return $this->childLink;
4404
+	return $this->childLink;
4405 4405
   }
4406 4406
   public function setCreated($created)
4407 4407
   {
4408
-    $this->created = $created;
4408
+	$this->created = $created;
4409 4409
   }
4410 4410
   public function getCreated()
4411 4411
   {
4412
-    return $this->created;
4412
+	return $this->created;
4413 4413
   }
4414 4414
   public function setDescription($description)
4415 4415
   {
4416
-    $this->description = $description;
4416
+	$this->description = $description;
4417 4417
   }
4418 4418
   public function getDescription()
4419 4419
   {
4420
-    return $this->description;
4420
+	return $this->description;
4421 4421
   }
4422 4422
   public function setId($id)
4423 4423
   {
4424
-    $this->id = $id;
4424
+	$this->id = $id;
4425 4425
   }
4426 4426
   public function getId()
4427 4427
   {
4428
-    return $this->id;
4428
+	return $this->id;
4429 4429
   }
4430 4430
   public function setImportBehavior($importBehavior)
4431 4431
   {
4432
-    $this->importBehavior = $importBehavior;
4432
+	$this->importBehavior = $importBehavior;
4433 4433
   }
4434 4434
   public function getImportBehavior()
4435 4435
   {
4436
-    return $this->importBehavior;
4436
+	return $this->importBehavior;
4437 4437
   }
4438 4438
   public function setKind($kind)
4439 4439
   {
4440
-    $this->kind = $kind;
4440
+	$this->kind = $kind;
4441 4441
   }
4442 4442
   public function getKind()
4443 4443
   {
4444
-    return $this->kind;
4444
+	return $this->kind;
4445 4445
   }
4446 4446
   public function setName($name)
4447 4447
   {
4448
-    $this->name = $name;
4448
+	$this->name = $name;
4449 4449
   }
4450 4450
   public function getName()
4451 4451
   {
4452
-    return $this->name;
4452
+	return $this->name;
4453 4453
   }
4454 4454
   public function setParentLink(Google_Service_Analytics_CustomDataSourceParentLink $parentLink)
4455 4455
   {
4456
-    $this->parentLink = $parentLink;
4456
+	$this->parentLink = $parentLink;
4457 4457
   }
4458 4458
   public function getParentLink()
4459 4459
   {
4460
-    return $this->parentLink;
4460
+	return $this->parentLink;
4461 4461
   }
4462 4462
   public function setProfilesLinked($profilesLinked)
4463 4463
   {
4464
-    $this->profilesLinked = $profilesLinked;
4464
+	$this->profilesLinked = $profilesLinked;
4465 4465
   }
4466 4466
   public function getProfilesLinked()
4467 4467
   {
4468
-    return $this->profilesLinked;
4468
+	return $this->profilesLinked;
4469 4469
   }
4470 4470
   public function setSelfLink($selfLink)
4471 4471
   {
4472
-    $this->selfLink = $selfLink;
4472
+	$this->selfLink = $selfLink;
4473 4473
   }
4474 4474
   public function getSelfLink()
4475 4475
   {
4476
-    return $this->selfLink;
4476
+	return $this->selfLink;
4477 4477
   }
4478 4478
   public function setType($type)
4479 4479
   {
4480
-    $this->type = $type;
4480
+	$this->type = $type;
4481 4481
   }
4482 4482
   public function getType()
4483 4483
   {
4484
-    return $this->type;
4484
+	return $this->type;
4485 4485
   }
4486 4486
   public function setUpdated($updated)
4487 4487
   {
4488
-    $this->updated = $updated;
4488
+	$this->updated = $updated;
4489 4489
   }
4490 4490
   public function getUpdated()
4491 4491
   {
4492
-    return $this->updated;
4492
+	return $this->updated;
4493 4493
   }
4494 4494
   public function setUploadType($uploadType)
4495 4495
   {
4496
-    $this->uploadType = $uploadType;
4496
+	$this->uploadType = $uploadType;
4497 4497
   }
4498 4498
   public function getUploadType()
4499 4499
   {
4500
-    return $this->uploadType;
4500
+	return $this->uploadType;
4501 4501
   }
4502 4502
   public function setWebPropertyId($webPropertyId)
4503 4503
   {
4504
-    $this->webPropertyId = $webPropertyId;
4504
+	$this->webPropertyId = $webPropertyId;
4505 4505
   }
4506 4506
   public function getWebPropertyId()
4507 4507
   {
4508
-    return $this->webPropertyId;
4508
+	return $this->webPropertyId;
4509 4509
   }
4510 4510
 }
4511 4511
 
@@ -4519,19 +4519,19 @@  discard block
 block discarded – undo
4519 4519
 
4520 4520
   public function setHref($href)
4521 4521
   {
4522
-    $this->href = $href;
4522
+	$this->href = $href;
4523 4523
   }
4524 4524
   public function getHref()
4525 4525
   {
4526
-    return $this->href;
4526
+	return $this->href;
4527 4527
   }
4528 4528
   public function setType($type)
4529 4529
   {
4530
-    $this->type = $type;
4530
+	$this->type = $type;
4531 4531
   }
4532 4532
   public function getType()
4533 4533
   {
4534
-    return $this->type;
4534
+	return $this->type;
4535 4535
   }
4536 4536
 }
4537 4537
 
@@ -4545,19 +4545,19 @@  discard block
 block discarded – undo
4545 4545
 
4546 4546
   public function setHref($href)
4547 4547
   {
4548
-    $this->href = $href;
4548
+	$this->href = $href;
4549 4549
   }
4550 4550
   public function getHref()
4551 4551
   {
4552
-    return $this->href;
4552
+	return $this->href;
4553 4553
   }
4554 4554
   public function setType($type)
4555 4555
   {
4556
-    $this->type = $type;
4556
+	$this->type = $type;
4557 4557
   }
4558 4558
   public function getType()
4559 4559
   {
4560
-    return $this->type;
4560
+	return $this->type;
4561 4561
   }
4562 4562
 }
4563 4563
 
@@ -4579,67 +4579,67 @@  discard block
 block discarded – undo
4579 4579
 
4580 4580
   public function setItems($items)
4581 4581
   {
4582
-    $this->items = $items;
4582
+	$this->items = $items;
4583 4583
   }
4584 4584
   public function getItems()
4585 4585
   {
4586
-    return $this->items;
4586
+	return $this->items;
4587 4587
   }
4588 4588
   public function setItemsPerPage($itemsPerPage)
4589 4589
   {
4590
-    $this->itemsPerPage = $itemsPerPage;
4590
+	$this->itemsPerPage = $itemsPerPage;
4591 4591
   }
4592 4592
   public function getItemsPerPage()
4593 4593
   {
4594
-    return $this->itemsPerPage;
4594
+	return $this->itemsPerPage;
4595 4595
   }
4596 4596
   public function setKind($kind)
4597 4597
   {
4598
-    $this->kind = $kind;
4598
+	$this->kind = $kind;
4599 4599
   }
4600 4600
   public function getKind()
4601 4601
   {
4602
-    return $this->kind;
4602
+	return $this->kind;
4603 4603
   }
4604 4604
   public function setNextLink($nextLink)
4605 4605
   {
4606
-    $this->nextLink = $nextLink;
4606
+	$this->nextLink = $nextLink;
4607 4607
   }
4608 4608
   public function getNextLink()
4609 4609
   {
4610
-    return $this->nextLink;
4610
+	return $this->nextLink;
4611 4611
   }
4612 4612
   public function setPreviousLink($previousLink)
4613 4613
   {
4614
-    $this->previousLink = $previousLink;
4614
+	$this->previousLink = $previousLink;
4615 4615
   }
4616 4616
   public function getPreviousLink()
4617 4617
   {
4618
-    return $this->previousLink;
4618
+	return $this->previousLink;
4619 4619
   }
4620 4620
   public function setStartIndex($startIndex)
4621 4621
   {
4622
-    $this->startIndex = $startIndex;
4622
+	$this->startIndex = $startIndex;
4623 4623
   }
4624 4624
   public function getStartIndex()
4625 4625
   {
4626
-    return $this->startIndex;
4626
+	return $this->startIndex;
4627 4627
   }
4628 4628
   public function setTotalResults($totalResults)
4629 4629
   {
4630
-    $this->totalResults = $totalResults;
4630
+	$this->totalResults = $totalResults;
4631 4631
   }
4632 4632
   public function getTotalResults()
4633 4633
   {
4634
-    return $this->totalResults;
4634
+	return $this->totalResults;
4635 4635
   }
4636 4636
   public function setUsername($username)
4637 4637
   {
4638
-    $this->username = $username;
4638
+	$this->username = $username;
4639 4639
   }
4640 4640
   public function getUsername()
4641 4641
   {
4642
-    return $this->username;
4642
+	return $this->username;
4643 4643
   }
4644 4644
 }
4645 4645
 
@@ -4664,99 +4664,99 @@  discard block
 block discarded – undo
4664 4664
 
4665 4665
   public function setAccountId($accountId)
4666 4666
   {
4667
-    $this->accountId = $accountId;
4667
+	$this->accountId = $accountId;
4668 4668
   }
4669 4669
   public function getAccountId()
4670 4670
   {
4671
-    return $this->accountId;
4671
+	return $this->accountId;
4672 4672
   }
4673 4673
   public function setActive($active)
4674 4674
   {
4675
-    $this->active = $active;
4675
+	$this->active = $active;
4676 4676
   }
4677 4677
   public function getActive()
4678 4678
   {
4679
-    return $this->active;
4679
+	return $this->active;
4680 4680
   }
4681 4681
   public function setCreated($created)
4682 4682
   {
4683
-    $this->created = $created;
4683
+	$this->created = $created;
4684 4684
   }
4685 4685
   public function getCreated()
4686 4686
   {
4687
-    return $this->created;
4687
+	return $this->created;
4688 4688
   }
4689 4689
   public function setId($id)
4690 4690
   {
4691
-    $this->id = $id;
4691
+	$this->id = $id;
4692 4692
   }
4693 4693
   public function getId()
4694 4694
   {
4695
-    return $this->id;
4695
+	return $this->id;
4696 4696
   }
4697 4697
   public function setIndex($index)
4698 4698
   {
4699
-    $this->index = $index;
4699
+	$this->index = $index;
4700 4700
   }
4701 4701
   public function getIndex()
4702 4702
   {
4703
-    return $this->index;
4703
+	return $this->index;
4704 4704
   }
4705 4705
   public function setKind($kind)
4706 4706
   {
4707
-    $this->kind = $kind;
4707
+	$this->kind = $kind;
4708 4708
   }
4709 4709
   public function getKind()
4710 4710
   {
4711
-    return $this->kind;
4711
+	return $this->kind;
4712 4712
   }
4713 4713
   public function setName($name)
4714 4714
   {
4715
-    $this->name = $name;
4715
+	$this->name = $name;
4716 4716
   }
4717 4717
   public function getName()
4718 4718
   {
4719
-    return $this->name;
4719
+	return $this->name;
4720 4720
   }
4721 4721
   public function setParentLink(Google_Service_Analytics_CustomDimensionParentLink $parentLink)
4722 4722
   {
4723
-    $this->parentLink = $parentLink;
4723
+	$this->parentLink = $parentLink;
4724 4724
   }
4725 4725
   public function getParentLink()
4726 4726
   {
4727
-    return $this->parentLink;
4727
+	return $this->parentLink;
4728 4728
   }
4729 4729
   public function setScope($scope)
4730 4730
   {
4731
-    $this->scope = $scope;
4731
+	$this->scope = $scope;
4732 4732
   }
4733 4733
   public function getScope()
4734 4734
   {
4735
-    return $this->scope;
4735
+	return $this->scope;
4736 4736
   }
4737 4737
   public function setSelfLink($selfLink)
4738 4738
   {
4739
-    $this->selfLink = $selfLink;
4739
+	$this->selfLink = $selfLink;
4740 4740
   }
4741 4741
   public function getSelfLink()
4742 4742
   {
4743
-    return $this->selfLink;
4743
+	return $this->selfLink;
4744 4744
   }
4745 4745
   public function setUpdated($updated)
4746 4746
   {
4747
-    $this->updated = $updated;
4747
+	$this->updated = $updated;
4748 4748
   }
4749 4749
   public function getUpdated()
4750 4750
   {
4751
-    return $this->updated;
4751
+	return $this->updated;
4752 4752
   }
4753 4753
   public function setWebPropertyId($webPropertyId)
4754 4754
   {
4755
-    $this->webPropertyId = $webPropertyId;
4755
+	$this->webPropertyId = $webPropertyId;
4756 4756
   }
4757 4757
   public function getWebPropertyId()
4758 4758
   {
4759
-    return $this->webPropertyId;
4759
+	return $this->webPropertyId;
4760 4760
   }
4761 4761
 }
4762 4762
 
@@ -4770,19 +4770,19 @@  discard block
 block discarded – undo
4770 4770
 
4771 4771
   public function setHref($href)
4772 4772
   {
4773
-    $this->href = $href;
4773
+	$this->href = $href;
4774 4774
   }
4775 4775
   public function getHref()
4776 4776
   {
4777
-    return $this->href;
4777
+	return $this->href;
4778 4778
   }
4779 4779
   public function setType($type)
4780 4780
   {
4781
-    $this->type = $type;
4781
+	$this->type = $type;
4782 4782
   }
4783 4783
   public function getType()
4784 4784
   {
4785
-    return $this->type;
4785
+	return $this->type;
4786 4786
   }
4787 4787
 }
4788 4788
 
@@ -4804,75 +4804,75 @@  discard block
 block discarded – undo
4804 4804
 
4805 4805
   public function setItems($items)
4806 4806
   {
4807
-    $this->items = $items;
4807
+	$this->items = $items;
4808 4808
   }
4809 4809
   public function getItems()
4810 4810
   {
4811
-    return $this->items;
4811
+	return $this->items;
4812 4812
   }
4813 4813
   public function setItemsPerPage($itemsPerPage)
4814 4814
   {
4815
-    $this->itemsPerPage = $itemsPerPage;
4815
+	$this->itemsPerPage = $itemsPerPage;
4816 4816
   }
4817 4817
   public function getItemsPerPage()
4818 4818
   {
4819
-    return $this->itemsPerPage;
4819
+	return $this->itemsPerPage;
4820 4820
   }
4821 4821
   public function setKind($kind)
4822 4822
   {
4823
-    $this->kind = $kind;
4823
+	$this->kind = $kind;
4824 4824
   }
4825 4825
   public function getKind()
4826 4826
   {
4827
-    return $this->kind;
4827
+	return $this->kind;
4828 4828
   }
4829 4829
   public function setNextLink($nextLink)
4830 4830
   {
4831
-    $this->nextLink = $nextLink;
4831
+	$this->nextLink = $nextLink;
4832 4832
   }
4833 4833
   public function getNextLink()
4834 4834
   {
4835
-    return $this->nextLink;
4835
+	return $this->nextLink;
4836 4836
   }
4837 4837
   public function setPreviousLink($previousLink)
4838 4838
   {
4839
-    $this->previousLink = $previousLink;
4839
+	$this->previousLink = $previousLink;
4840 4840
   }
4841 4841
   public function getPreviousLink()
4842 4842
   {
4843
-    return $this->previousLink;
4843
+	return $this->previousLink;
4844 4844
   }
4845 4845
   public function setStartIndex($startIndex)
4846 4846
   {
4847
-    $this->startIndex = $startIndex;
4847
+	$this->startIndex = $startIndex;
4848 4848
   }
4849 4849
   public function getStartIndex()
4850 4850
   {
4851
-    return $this->startIndex;
4851
+	return $this->startIndex;
4852 4852
   }
4853 4853
   public function setTotalResults($totalResults)
4854 4854
   {
4855
-    $this->totalResults = $totalResults;
4855
+	$this->totalResults = $totalResults;
4856 4856
   }
4857 4857
   public function getTotalResults()
4858 4858
   {
4859
-    return $this->totalResults;
4859
+	return $this->totalResults;
4860 4860
   }
4861 4861
   public function setUsername($username)
4862 4862
   {
4863
-    $this->username = $username;
4863
+	$this->username = $username;
4864 4864
   }
4865 4865
   public function getUsername()
4866 4866
   {
4867
-    return $this->username;
4867
+	return $this->username;
4868 4868
   }
4869 4869
 }
4870 4870
 
4871 4871
 class Google_Service_Analytics_CustomMetric extends Google_Model
4872 4872
 {
4873 4873
   protected $internal_gapi_mappings = array(
4874
-        "maxValue" => "max_value",
4875
-        "minValue" => "min_value",
4874
+		"maxValue" => "max_value",
4875
+		"minValue" => "min_value",
4876 4876
   );
4877 4877
   public $accountId;
4878 4878
   public $active;
@@ -4894,123 +4894,123 @@  discard block
 block discarded – undo
4894 4894
 
4895 4895
   public function setAccountId($accountId)
4896 4896
   {
4897
-    $this->accountId = $accountId;
4897
+	$this->accountId = $accountId;
4898 4898
   }
4899 4899
   public function getAccountId()
4900 4900
   {
4901
-    return $this->accountId;
4901
+	return $this->accountId;
4902 4902
   }
4903 4903
   public function setActive($active)
4904 4904
   {
4905
-    $this->active = $active;
4905
+	$this->active = $active;
4906 4906
   }
4907 4907
   public function getActive()
4908 4908
   {
4909
-    return $this->active;
4909
+	return $this->active;
4910 4910
   }
4911 4911
   public function setCreated($created)
4912 4912
   {
4913
-    $this->created = $created;
4913
+	$this->created = $created;
4914 4914
   }
4915 4915
   public function getCreated()
4916 4916
   {
4917
-    return $this->created;
4917
+	return $this->created;
4918 4918
   }
4919 4919
   public function setId($id)
4920 4920
   {
4921
-    $this->id = $id;
4921
+	$this->id = $id;
4922 4922
   }
4923 4923
   public function getId()
4924 4924
   {
4925
-    return $this->id;
4925
+	return $this->id;
4926 4926
   }
4927 4927
   public function setIndex($index)
4928 4928
   {
4929
-    $this->index = $index;
4929
+	$this->index = $index;
4930 4930
   }
4931 4931
   public function getIndex()
4932 4932
   {
4933
-    return $this->index;
4933
+	return $this->index;
4934 4934
   }
4935 4935
   public function setKind($kind)
4936 4936
   {
4937
-    $this->kind = $kind;
4937
+	$this->kind = $kind;
4938 4938
   }
4939 4939
   public function getKind()
4940 4940
   {
4941
-    return $this->kind;
4941
+	return $this->kind;
4942 4942
   }
4943 4943
   public function setMaxValue($maxValue)
4944 4944
   {
4945
-    $this->maxValue = $maxValue;
4945
+	$this->maxValue = $maxValue;
4946 4946
   }
4947 4947
   public function getMaxValue()
4948 4948
   {
4949
-    return $this->maxValue;
4949
+	return $this->maxValue;
4950 4950
   }
4951 4951
   public function setMinValue($minValue)
4952 4952
   {
4953
-    $this->minValue = $minValue;
4953
+	$this->minValue = $minValue;
4954 4954
   }
4955 4955
   public function getMinValue()
4956 4956
   {
4957
-    return $this->minValue;
4957
+	return $this->minValue;
4958 4958
   }
4959 4959
   public function setName($name)
4960 4960
   {
4961
-    $this->name = $name;
4961
+	$this->name = $name;
4962 4962
   }
4963 4963
   public function getName()
4964 4964
   {
4965
-    return $this->name;
4965
+	return $this->name;
4966 4966
   }
4967 4967
   public function setParentLink(Google_Service_Analytics_CustomMetricParentLink $parentLink)
4968 4968
   {
4969
-    $this->parentLink = $parentLink;
4969
+	$this->parentLink = $parentLink;
4970 4970
   }
4971 4971
   public function getParentLink()
4972 4972
   {
4973
-    return $this->parentLink;
4973
+	return $this->parentLink;
4974 4974
   }
4975 4975
   public function setScope($scope)
4976 4976
   {
4977
-    $this->scope = $scope;
4977
+	$this->scope = $scope;
4978 4978
   }
4979 4979
   public function getScope()
4980 4980
   {
4981
-    return $this->scope;
4981
+	return $this->scope;
4982 4982
   }
4983 4983
   public function setSelfLink($selfLink)
4984 4984
   {
4985
-    $this->selfLink = $selfLink;
4985
+	$this->selfLink = $selfLink;
4986 4986
   }
4987 4987
   public function getSelfLink()
4988 4988
   {
4989
-    return $this->selfLink;
4989
+	return $this->selfLink;
4990 4990
   }
4991 4991
   public function setType($type)
4992 4992
   {
4993
-    $this->type = $type;
4993
+	$this->type = $type;
4994 4994
   }
4995 4995
   public function getType()
4996 4996
   {
4997
-    return $this->type;
4997
+	return $this->type;
4998 4998
   }
4999 4999
   public function setUpdated($updated)
5000 5000
   {
5001
-    $this->updated = $updated;
5001
+	$this->updated = $updated;
5002 5002
   }
5003 5003
   public function getUpdated()
5004 5004
   {
5005
-    return $this->updated;
5005
+	return $this->updated;
5006 5006
   }
5007 5007
   public function setWebPropertyId($webPropertyId)
5008 5008
   {
5009
-    $this->webPropertyId = $webPropertyId;
5009
+	$this->webPropertyId = $webPropertyId;
5010 5010
   }
5011 5011
   public function getWebPropertyId()
5012 5012
   {
5013
-    return $this->webPropertyId;
5013
+	return $this->webPropertyId;
5014 5014
   }
5015 5015
 }
5016 5016
 
@@ -5024,19 +5024,19 @@  discard block
 block discarded – undo
5024 5024
 
5025 5025
   public function setHref($href)
5026 5026
   {
5027
-    $this->href = $href;
5027
+	$this->href = $href;
5028 5028
   }
5029 5029
   public function getHref()
5030 5030
   {
5031
-    return $this->href;
5031
+	return $this->href;
5032 5032
   }
5033 5033
   public function setType($type)
5034 5034
   {
5035
-    $this->type = $type;
5035
+	$this->type = $type;
5036 5036
   }
5037 5037
   public function getType()
5038 5038
   {
5039
-    return $this->type;
5039
+	return $this->type;
5040 5040
   }
5041 5041
 }
5042 5042
 
@@ -5058,67 +5058,67 @@  discard block
 block discarded – undo
5058 5058
 
5059 5059
   public function setItems($items)
5060 5060
   {
5061
-    $this->items = $items;
5061
+	$this->items = $items;
5062 5062
   }
5063 5063
   public function getItems()
5064 5064
   {
5065
-    return $this->items;
5065
+	return $this->items;
5066 5066
   }
5067 5067
   public function setItemsPerPage($itemsPerPage)
5068 5068
   {
5069
-    $this->itemsPerPage = $itemsPerPage;
5069
+	$this->itemsPerPage = $itemsPerPage;
5070 5070
   }
5071 5071
   public function getItemsPerPage()
5072 5072
   {
5073
-    return $this->itemsPerPage;
5073
+	return $this->itemsPerPage;
5074 5074
   }
5075 5075
   public function setKind($kind)
5076 5076
   {
5077
-    $this->kind = $kind;
5077
+	$this->kind = $kind;
5078 5078
   }
5079 5079
   public function getKind()
5080 5080
   {
5081
-    return $this->kind;
5081
+	return $this->kind;
5082 5082
   }
5083 5083
   public function setNextLink($nextLink)
5084 5084
   {
5085
-    $this->nextLink = $nextLink;
5085
+	$this->nextLink = $nextLink;
5086 5086
   }
5087 5087
   public function getNextLink()
5088 5088
   {
5089
-    return $this->nextLink;
5089
+	return $this->nextLink;
5090 5090
   }
5091 5091
   public function setPreviousLink($previousLink)
5092 5092
   {
5093
-    $this->previousLink = $previousLink;
5093
+	$this->previousLink = $previousLink;
5094 5094
   }
5095 5095
   public function getPreviousLink()
5096 5096
   {
5097
-    return $this->previousLink;
5097
+	return $this->previousLink;
5098 5098
   }
5099 5099
   public function setStartIndex($startIndex)
5100 5100
   {
5101
-    $this->startIndex = $startIndex;
5101
+	$this->startIndex = $startIndex;
5102 5102
   }
5103 5103
   public function getStartIndex()
5104 5104
   {
5105
-    return $this->startIndex;
5105
+	return $this->startIndex;
5106 5106
   }
5107 5107
   public function setTotalResults($totalResults)
5108 5108
   {
5109
-    $this->totalResults = $totalResults;
5109
+	$this->totalResults = $totalResults;
5110 5110
   }
5111 5111
   public function getTotalResults()
5112 5112
   {
5113
-    return $this->totalResults;
5113
+	return $this->totalResults;
5114 5114
   }
5115 5115
   public function setUsername($username)
5116 5116
   {
5117
-    $this->username = $username;
5117
+	$this->username = $username;
5118 5118
   }
5119 5119
   public function getUsername()
5120 5120
   {
5121
-    return $this->username;
5121
+	return $this->username;
5122 5122
   }
5123 5123
 }
5124 5124
 
@@ -5140,59 +5140,59 @@  discard block
 block discarded – undo
5140 5140
 
5141 5141
   public function setAdWordsAccounts($adWordsAccounts)
5142 5142
   {
5143
-    $this->adWordsAccounts = $adWordsAccounts;
5143
+	$this->adWordsAccounts = $adWordsAccounts;
5144 5144
   }
5145 5145
   public function getAdWordsAccounts()
5146 5146
   {
5147
-    return $this->adWordsAccounts;
5147
+	return $this->adWordsAccounts;
5148 5148
   }
5149 5149
   public function setEntity(Google_Service_Analytics_EntityAdWordsLinkEntity $entity)
5150 5150
   {
5151
-    $this->entity = $entity;
5151
+	$this->entity = $entity;
5152 5152
   }
5153 5153
   public function getEntity()
5154 5154
   {
5155
-    return $this->entity;
5155
+	return $this->entity;
5156 5156
   }
5157 5157
   public function setId($id)
5158 5158
   {
5159
-    $this->id = $id;
5159
+	$this->id = $id;
5160 5160
   }
5161 5161
   public function getId()
5162 5162
   {
5163
-    return $this->id;
5163
+	return $this->id;
5164 5164
   }
5165 5165
   public function setKind($kind)
5166 5166
   {
5167
-    $this->kind = $kind;
5167
+	$this->kind = $kind;
5168 5168
   }
5169 5169
   public function getKind()
5170 5170
   {
5171
-    return $this->kind;
5171
+	return $this->kind;
5172 5172
   }
5173 5173
   public function setName($name)
5174 5174
   {
5175
-    $this->name = $name;
5175
+	$this->name = $name;
5176 5176
   }
5177 5177
   public function getName()
5178 5178
   {
5179
-    return $this->name;
5179
+	return $this->name;
5180 5180
   }
5181 5181
   public function setProfileIds($profileIds)
5182 5182
   {
5183
-    $this->profileIds = $profileIds;
5183
+	$this->profileIds = $profileIds;
5184 5184
   }
5185 5185
   public function getProfileIds()
5186 5186
   {
5187
-    return $this->profileIds;
5187
+	return $this->profileIds;
5188 5188
   }
5189 5189
   public function setSelfLink($selfLink)
5190 5190
   {
5191
-    $this->selfLink = $selfLink;
5191
+	$this->selfLink = $selfLink;
5192 5192
   }
5193 5193
   public function getSelfLink()
5194 5194
   {
5195
-    return $this->selfLink;
5195
+	return $this->selfLink;
5196 5196
   }
5197 5197
 }
5198 5198
 
@@ -5206,11 +5206,11 @@  discard block
 block discarded – undo
5206 5206
 
5207 5207
   public function setWebPropertyRef(Google_Service_Analytics_WebPropertyRef $webPropertyRef)
5208 5208
   {
5209
-    $this->webPropertyRef = $webPropertyRef;
5209
+	$this->webPropertyRef = $webPropertyRef;
5210 5210
   }
5211 5211
   public function getWebPropertyRef()
5212 5212
   {
5213
-    return $this->webPropertyRef;
5213
+	return $this->webPropertyRef;
5214 5214
   }
5215 5215
 }
5216 5216
 
@@ -5231,59 +5231,59 @@  discard block
 block discarded – undo
5231 5231
 
5232 5232
   public function setItems($items)
5233 5233
   {
5234
-    $this->items = $items;
5234
+	$this->items = $items;
5235 5235
   }
5236 5236
   public function getItems()
5237 5237
   {
5238
-    return $this->items;
5238
+	return $this->items;
5239 5239
   }
5240 5240
   public function setItemsPerPage($itemsPerPage)
5241 5241
   {
5242
-    $this->itemsPerPage = $itemsPerPage;
5242
+	$this->itemsPerPage = $itemsPerPage;
5243 5243
   }
5244 5244
   public function getItemsPerPage()
5245 5245
   {
5246
-    return $this->itemsPerPage;
5246
+	return $this->itemsPerPage;
5247 5247
   }
5248 5248
   public function setKind($kind)
5249 5249
   {
5250
-    $this->kind = $kind;
5250
+	$this->kind = $kind;
5251 5251
   }
5252 5252
   public function getKind()
5253 5253
   {
5254
-    return $this->kind;
5254
+	return $this->kind;
5255 5255
   }
5256 5256
   public function setNextLink($nextLink)
5257 5257
   {
5258
-    $this->nextLink = $nextLink;
5258
+	$this->nextLink = $nextLink;
5259 5259
   }
5260 5260
   public function getNextLink()
5261 5261
   {
5262
-    return $this->nextLink;
5262
+	return $this->nextLink;
5263 5263
   }
5264 5264
   public function setPreviousLink($previousLink)
5265 5265
   {
5266
-    $this->previousLink = $previousLink;
5266
+	$this->previousLink = $previousLink;
5267 5267
   }
5268 5268
   public function getPreviousLink()
5269 5269
   {
5270
-    return $this->previousLink;
5270
+	return $this->previousLink;
5271 5271
   }
5272 5272
   public function setStartIndex($startIndex)
5273 5273
   {
5274
-    $this->startIndex = $startIndex;
5274
+	$this->startIndex = $startIndex;
5275 5275
   }
5276 5276
   public function getStartIndex()
5277 5277
   {
5278
-    return $this->startIndex;
5278
+	return $this->startIndex;
5279 5279
   }
5280 5280
   public function setTotalResults($totalResults)
5281 5281
   {
5282
-    $this->totalResults = $totalResults;
5282
+	$this->totalResults = $totalResults;
5283 5283
   }
5284 5284
   public function getTotalResults()
5285 5285
   {
5286
-    return $this->totalResults;
5286
+	return $this->totalResults;
5287 5287
   }
5288 5288
 }
5289 5289
 
@@ -5304,51 +5304,51 @@  discard block
 block discarded – undo
5304 5304
 
5305 5305
   public function setEntity(Google_Service_Analytics_EntityUserLinkEntity $entity)
5306 5306
   {
5307
-    $this->entity = $entity;
5307
+	$this->entity = $entity;
5308 5308
   }
5309 5309
   public function getEntity()
5310 5310
   {
5311
-    return $this->entity;
5311
+	return $this->entity;
5312 5312
   }
5313 5313
   public function setId($id)
5314 5314
   {
5315
-    $this->id = $id;
5315
+	$this->id = $id;
5316 5316
   }
5317 5317
   public function getId()
5318 5318
   {
5319
-    return $this->id;
5319
+	return $this->id;
5320 5320
   }
5321 5321
   public function setKind($kind)
5322 5322
   {
5323
-    $this->kind = $kind;
5323
+	$this->kind = $kind;
5324 5324
   }
5325 5325
   public function getKind()
5326 5326
   {
5327
-    return $this->kind;
5327
+	return $this->kind;
5328 5328
   }
5329 5329
   public function setPermissions(Google_Service_Analytics_EntityUserLinkPermissions $permissions)
5330 5330
   {
5331
-    $this->permissions = $permissions;
5331
+	$this->permissions = $permissions;
5332 5332
   }
5333 5333
   public function getPermissions()
5334 5334
   {
5335
-    return $this->permissions;
5335
+	return $this->permissions;
5336 5336
   }
5337 5337
   public function setSelfLink($selfLink)
5338 5338
   {
5339
-    $this->selfLink = $selfLink;
5339
+	$this->selfLink = $selfLink;
5340 5340
   }
5341 5341
   public function getSelfLink()
5342 5342
   {
5343
-    return $this->selfLink;
5343
+	return $this->selfLink;
5344 5344
   }
5345 5345
   public function setUserRef(Google_Service_Analytics_UserRef $userRef)
5346 5346
   {
5347
-    $this->userRef = $userRef;
5347
+	$this->userRef = $userRef;
5348 5348
   }
5349 5349
   public function getUserRef()
5350 5350
   {
5351
-    return $this->userRef;
5351
+	return $this->userRef;
5352 5352
   }
5353 5353
 }
5354 5354
 
@@ -5366,27 +5366,27 @@  discard block
 block discarded – undo
5366 5366
 
5367 5367
   public function setAccountRef(Google_Service_Analytics_AccountRef $accountRef)
5368 5368
   {
5369
-    $this->accountRef = $accountRef;
5369
+	$this->accountRef = $accountRef;
5370 5370
   }
5371 5371
   public function getAccountRef()
5372 5372
   {
5373
-    return $this->accountRef;
5373
+	return $this->accountRef;
5374 5374
   }
5375 5375
   public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef)
5376 5376
   {
5377
-    $this->profileRef = $profileRef;
5377
+	$this->profileRef = $profileRef;
5378 5378
   }
5379 5379
   public function getProfileRef()
5380 5380
   {
5381
-    return $this->profileRef;
5381
+	return $this->profileRef;
5382 5382
   }
5383 5383
   public function setWebPropertyRef(Google_Service_Analytics_WebPropertyRef $webPropertyRef)
5384 5384
   {
5385
-    $this->webPropertyRef = $webPropertyRef;
5385
+	$this->webPropertyRef = $webPropertyRef;
5386 5386
   }
5387 5387
   public function getWebPropertyRef()
5388 5388
   {
5389
-    return $this->webPropertyRef;
5389
+	return $this->webPropertyRef;
5390 5390
   }
5391 5391
 }
5392 5392
 
@@ -5401,19 +5401,19 @@  discard block
 block discarded – undo
5401 5401
 
5402 5402
   public function setEffective($effective)
5403 5403
   {
5404
-    $this->effective = $effective;
5404
+	$this->effective = $effective;
5405 5405
   }
5406 5406
   public function getEffective()
5407 5407
   {
5408
-    return $this->effective;
5408
+	return $this->effective;
5409 5409
   }
5410 5410
   public function setLocal($local)
5411 5411
   {
5412
-    $this->local = $local;
5412
+	$this->local = $local;
5413 5413
   }
5414 5414
   public function getLocal()
5415 5415
   {
5416
-    return $this->local;
5416
+	return $this->local;
5417 5417
   }
5418 5418
 }
5419 5419
 
@@ -5434,59 +5434,59 @@  discard block
 block discarded – undo
5434 5434
 
5435 5435
   public function setItems($items)
5436 5436
   {
5437
-    $this->items = $items;
5437
+	$this->items = $items;
5438 5438
   }
5439 5439
   public function getItems()
5440 5440
   {
5441
-    return $this->items;
5441
+	return $this->items;
5442 5442
   }
5443 5443
   public function setItemsPerPage($itemsPerPage)
5444 5444
   {
5445
-    $this->itemsPerPage = $itemsPerPage;
5445
+	$this->itemsPerPage = $itemsPerPage;
5446 5446
   }
5447 5447
   public function getItemsPerPage()
5448 5448
   {
5449
-    return $this->itemsPerPage;
5449
+	return $this->itemsPerPage;
5450 5450
   }
5451 5451
   public function setKind($kind)
5452 5452
   {
5453
-    $this->kind = $kind;
5453
+	$this->kind = $kind;
5454 5454
   }
5455 5455
   public function getKind()
5456 5456
   {
5457
-    return $this->kind;
5457
+	return $this->kind;
5458 5458
   }
5459 5459
   public function setNextLink($nextLink)
5460 5460
   {
5461
-    $this->nextLink = $nextLink;
5461
+	$this->nextLink = $nextLink;
5462 5462
   }
5463 5463
   public function getNextLink()
5464 5464
   {
5465
-    return $this->nextLink;
5465
+	return $this->nextLink;
5466 5466
   }
5467 5467
   public function setPreviousLink($previousLink)
5468 5468
   {
5469
-    $this->previousLink = $previousLink;
5469
+	$this->previousLink = $previousLink;
5470 5470
   }
5471 5471
   public function getPreviousLink()
5472 5472
   {
5473
-    return $this->previousLink;
5473
+	return $this->previousLink;
5474 5474
   }
5475 5475
   public function setStartIndex($startIndex)
5476 5476
   {
5477
-    $this->startIndex = $startIndex;
5477
+	$this->startIndex = $startIndex;
5478 5478
   }
5479 5479
   public function getStartIndex()
5480 5480
   {
5481
-    return $this->startIndex;
5481
+	return $this->startIndex;
5482 5482
   }
5483 5483
   public function setTotalResults($totalResults)
5484 5484
   {
5485
-    $this->totalResults = $totalResults;
5485
+	$this->totalResults = $totalResults;
5486 5486
   }
5487 5487
   public function getTotalResults()
5488 5488
   {
5489
-    return $this->totalResults;
5489
+	return $this->totalResults;
5490 5490
   }
5491 5491
 }
5492 5492
 
@@ -5529,227 +5529,227 @@  discard block
 block discarded – undo
5529 5529
 
5530 5530
   public function setAccountId($accountId)
5531 5531
   {
5532
-    $this->accountId = $accountId;
5532
+	$this->accountId = $accountId;
5533 5533
   }
5534 5534
   public function getAccountId()
5535 5535
   {
5536
-    return $this->accountId;
5536
+	return $this->accountId;
5537 5537
   }
5538 5538
   public function setCreated($created)
5539 5539
   {
5540
-    $this->created = $created;
5540
+	$this->created = $created;
5541 5541
   }
5542 5542
   public function getCreated()
5543 5543
   {
5544
-    return $this->created;
5544
+	return $this->created;
5545 5545
   }
5546 5546
   public function setDescription($description)
5547 5547
   {
5548
-    $this->description = $description;
5548
+	$this->description = $description;
5549 5549
   }
5550 5550
   public function getDescription()
5551 5551
   {
5552
-    return $this->description;
5552
+	return $this->description;
5553 5553
   }
5554 5554
   public function setEditableInGaUi($editableInGaUi)
5555 5555
   {
5556
-    $this->editableInGaUi = $editableInGaUi;
5556
+	$this->editableInGaUi = $editableInGaUi;
5557 5557
   }
5558 5558
   public function getEditableInGaUi()
5559 5559
   {
5560
-    return $this->editableInGaUi;
5560
+	return $this->editableInGaUi;
5561 5561
   }
5562 5562
   public function setEndTime($endTime)
5563 5563
   {
5564
-    $this->endTime = $endTime;
5564
+	$this->endTime = $endTime;
5565 5565
   }
5566 5566
   public function getEndTime()
5567 5567
   {
5568
-    return $this->endTime;
5568
+	return $this->endTime;
5569 5569
   }
5570 5570
   public function setEqualWeighting($equalWeighting)
5571 5571
   {
5572
-    $this->equalWeighting = $equalWeighting;
5572
+	$this->equalWeighting = $equalWeighting;
5573 5573
   }
5574 5574
   public function getEqualWeighting()
5575 5575
   {
5576
-    return $this->equalWeighting;
5576
+	return $this->equalWeighting;
5577 5577
   }
5578 5578
   public function setId($id)
5579 5579
   {
5580
-    $this->id = $id;
5580
+	$this->id = $id;
5581 5581
   }
5582 5582
   public function getId()
5583 5583
   {
5584
-    return $this->id;
5584
+	return $this->id;
5585 5585
   }
5586 5586
   public function setInternalWebPropertyId($internalWebPropertyId)
5587 5587
   {
5588
-    $this->internalWebPropertyId = $internalWebPropertyId;
5588
+	$this->internalWebPropertyId = $internalWebPropertyId;
5589 5589
   }
5590 5590
   public function getInternalWebPropertyId()
5591 5591
   {
5592
-    return $this->internalWebPropertyId;
5592
+	return $this->internalWebPropertyId;
5593 5593
   }
5594 5594
   public function setKind($kind)
5595 5595
   {
5596
-    $this->kind = $kind;
5596
+	$this->kind = $kind;
5597 5597
   }
5598 5598
   public function getKind()
5599 5599
   {
5600
-    return $this->kind;
5600
+	return $this->kind;
5601 5601
   }
5602 5602
   public function setMinimumExperimentLengthInDays($minimumExperimentLengthInDays)
5603 5603
   {
5604
-    $this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays;
5604
+	$this->minimumExperimentLengthInDays = $minimumExperimentLengthInDays;
5605 5605
   }
5606 5606
   public function getMinimumExperimentLengthInDays()
5607 5607
   {
5608
-    return $this->minimumExperimentLengthInDays;
5608
+	return $this->minimumExperimentLengthInDays;
5609 5609
   }
5610 5610
   public function setName($name)
5611 5611
   {
5612
-    $this->name = $name;
5612
+	$this->name = $name;
5613 5613
   }
5614 5614
   public function getName()
5615 5615
   {
5616
-    return $this->name;
5616
+	return $this->name;
5617 5617
   }
5618 5618
   public function setObjectiveMetric($objectiveMetric)
5619 5619
   {
5620
-    $this->objectiveMetric = $objectiveMetric;
5620
+	$this->objectiveMetric = $objectiveMetric;
5621 5621
   }
5622 5622
   public function getObjectiveMetric()
5623 5623
   {
5624
-    return $this->objectiveMetric;
5624
+	return $this->objectiveMetric;
5625 5625
   }
5626 5626
   public function setOptimizationType($optimizationType)
5627 5627
   {
5628
-    $this->optimizationType = $optimizationType;
5628
+	$this->optimizationType = $optimizationType;
5629 5629
   }
5630 5630
   public function getOptimizationType()
5631 5631
   {
5632
-    return $this->optimizationType;
5632
+	return $this->optimizationType;
5633 5633
   }
5634 5634
   public function setParentLink(Google_Service_Analytics_ExperimentParentLink $parentLink)
5635 5635
   {
5636
-    $this->parentLink = $parentLink;
5636
+	$this->parentLink = $parentLink;
5637 5637
   }
5638 5638
   public function getParentLink()
5639 5639
   {
5640
-    return $this->parentLink;
5640
+	return $this->parentLink;
5641 5641
   }
5642 5642
   public function setProfileId($profileId)
5643 5643
   {
5644
-    $this->profileId = $profileId;
5644
+	$this->profileId = $profileId;
5645 5645
   }
5646 5646
   public function getProfileId()
5647 5647
   {
5648
-    return $this->profileId;
5648
+	return $this->profileId;
5649 5649
   }
5650 5650
   public function setReasonExperimentEnded($reasonExperimentEnded)
5651 5651
   {
5652
-    $this->reasonExperimentEnded = $reasonExperimentEnded;
5652
+	$this->reasonExperimentEnded = $reasonExperimentEnded;
5653 5653
   }
5654 5654
   public function getReasonExperimentEnded()
5655 5655
   {
5656
-    return $this->reasonExperimentEnded;
5656
+	return $this->reasonExperimentEnded;
5657 5657
   }
5658 5658
   public function setRewriteVariationUrlsAsOriginal($rewriteVariationUrlsAsOriginal)
5659 5659
   {
5660
-    $this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal;
5660
+	$this->rewriteVariationUrlsAsOriginal = $rewriteVariationUrlsAsOriginal;
5661 5661
   }
5662 5662
   public function getRewriteVariationUrlsAsOriginal()
5663 5663
   {
5664
-    return $this->rewriteVariationUrlsAsOriginal;
5664
+	return $this->rewriteVariationUrlsAsOriginal;
5665 5665
   }
5666 5666
   public function setSelfLink($selfLink)
5667 5667
   {
5668
-    $this->selfLink = $selfLink;
5668
+	$this->selfLink = $selfLink;
5669 5669
   }
5670 5670
   public function getSelfLink()
5671 5671
   {
5672
-    return $this->selfLink;
5672
+	return $this->selfLink;
5673 5673
   }
5674 5674
   public function setServingFramework($servingFramework)
5675 5675
   {
5676
-    $this->servingFramework = $servingFramework;
5676
+	$this->servingFramework = $servingFramework;
5677 5677
   }
5678 5678
   public function getServingFramework()
5679 5679
   {
5680
-    return $this->servingFramework;
5680
+	return $this->servingFramework;
5681 5681
   }
5682 5682
   public function setSnippet($snippet)
5683 5683
   {
5684
-    $this->snippet = $snippet;
5684
+	$this->snippet = $snippet;
5685 5685
   }
5686 5686
   public function getSnippet()
5687 5687
   {
5688
-    return $this->snippet;
5688
+	return $this->snippet;
5689 5689
   }
5690 5690
   public function setStartTime($startTime)
5691 5691
   {
5692
-    $this->startTime = $startTime;
5692
+	$this->startTime = $startTime;
5693 5693
   }
5694 5694
   public function getStartTime()
5695 5695
   {
5696
-    return $this->startTime;
5696
+	return $this->startTime;
5697 5697
   }
5698 5698
   public function setStatus($status)
5699 5699
   {
5700
-    $this->status = $status;
5700
+	$this->status = $status;
5701 5701
   }
5702 5702
   public function getStatus()
5703 5703
   {
5704
-    return $this->status;
5704
+	return $this->status;
5705 5705
   }
5706 5706
   public function setTrafficCoverage($trafficCoverage)
5707 5707
   {
5708
-    $this->trafficCoverage = $trafficCoverage;
5708
+	$this->trafficCoverage = $trafficCoverage;
5709 5709
   }
5710 5710
   public function getTrafficCoverage()
5711 5711
   {
5712
-    return $this->trafficCoverage;
5712
+	return $this->trafficCoverage;
5713 5713
   }
5714 5714
   public function setUpdated($updated)
5715 5715
   {
5716
-    $this->updated = $updated;
5716
+	$this->updated = $updated;
5717 5717
   }
5718 5718
   public function getUpdated()
5719 5719
   {
5720
-    return $this->updated;
5720
+	return $this->updated;
5721 5721
   }
5722 5722
   public function setVariations($variations)
5723 5723
   {
5724
-    $this->variations = $variations;
5724
+	$this->variations = $variations;
5725 5725
   }
5726 5726
   public function getVariations()
5727 5727
   {
5728
-    return $this->variations;
5728
+	return $this->variations;
5729 5729
   }
5730 5730
   public function setWebPropertyId($webPropertyId)
5731 5731
   {
5732
-    $this->webPropertyId = $webPropertyId;
5732
+	$this->webPropertyId = $webPropertyId;
5733 5733
   }
5734 5734
   public function getWebPropertyId()
5735 5735
   {
5736
-    return $this->webPropertyId;
5736
+	return $this->webPropertyId;
5737 5737
   }
5738 5738
   public function setWinnerConfidenceLevel($winnerConfidenceLevel)
5739 5739
   {
5740
-    $this->winnerConfidenceLevel = $winnerConfidenceLevel;
5740
+	$this->winnerConfidenceLevel = $winnerConfidenceLevel;
5741 5741
   }
5742 5742
   public function getWinnerConfidenceLevel()
5743 5743
   {
5744
-    return $this->winnerConfidenceLevel;
5744
+	return $this->winnerConfidenceLevel;
5745 5745
   }
5746 5746
   public function setWinnerFound($winnerFound)
5747 5747
   {
5748
-    $this->winnerFound = $winnerFound;
5748
+	$this->winnerFound = $winnerFound;
5749 5749
   }
5750 5750
   public function getWinnerFound()
5751 5751
   {
5752
-    return $this->winnerFound;
5752
+	return $this->winnerFound;
5753 5753
   }
5754 5754
 }
5755 5755
 
@@ -5763,19 +5763,19 @@  discard block
 block discarded – undo
5763 5763
 
5764 5764
   public function setHref($href)
5765 5765
   {
5766
-    $this->href = $href;
5766
+	$this->href = $href;
5767 5767
   }
5768 5768
   public function getHref()
5769 5769
   {
5770
-    return $this->href;
5770
+	return $this->href;
5771 5771
   }
5772 5772
   public function setType($type)
5773 5773
   {
5774
-    $this->type = $type;
5774
+	$this->type = $type;
5775 5775
   }
5776 5776
   public function getType()
5777 5777
   {
5778
-    return $this->type;
5778
+	return $this->type;
5779 5779
   }
5780 5780
 }
5781 5781
 
@@ -5792,43 +5792,43 @@  discard block
 block discarded – undo
5792 5792
 
5793 5793
   public function setName($name)
5794 5794
   {
5795
-    $this->name = $name;
5795
+	$this->name = $name;
5796 5796
   }
5797 5797
   public function getName()
5798 5798
   {
5799
-    return $this->name;
5799
+	return $this->name;
5800 5800
   }
5801 5801
   public function setStatus($status)
5802 5802
   {
5803
-    $this->status = $status;
5803
+	$this->status = $status;
5804 5804
   }
5805 5805
   public function getStatus()
5806 5806
   {
5807
-    return $this->status;
5807
+	return $this->status;
5808 5808
   }
5809 5809
   public function setUrl($url)
5810 5810
   {
5811
-    $this->url = $url;
5811
+	$this->url = $url;
5812 5812
   }
5813 5813
   public function getUrl()
5814 5814
   {
5815
-    return $this->url;
5815
+	return $this->url;
5816 5816
   }
5817 5817
   public function setWeight($weight)
5818 5818
   {
5819
-    $this->weight = $weight;
5819
+	$this->weight = $weight;
5820 5820
   }
5821 5821
   public function getWeight()
5822 5822
   {
5823
-    return $this->weight;
5823
+	return $this->weight;
5824 5824
   }
5825 5825
   public function setWon($won)
5826 5826
   {
5827
-    $this->won = $won;
5827
+	$this->won = $won;
5828 5828
   }
5829 5829
   public function getWon()
5830 5830
   {
5831
-    return $this->won;
5831
+	return $this->won;
5832 5832
   }
5833 5833
 }
5834 5834
 
@@ -5850,67 +5850,67 @@  discard block
 block discarded – undo
5850 5850
 
5851 5851
   public function setItems($items)
5852 5852
   {
5853
-    $this->items = $items;
5853
+	$this->items = $items;
5854 5854
   }
5855 5855
   public function getItems()
5856 5856
   {
5857
-    return $this->items;
5857
+	return $this->items;
5858 5858
   }
5859 5859
   public function setItemsPerPage($itemsPerPage)
5860 5860
   {
5861
-    $this->itemsPerPage = $itemsPerPage;
5861
+	$this->itemsPerPage = $itemsPerPage;
5862 5862
   }
5863 5863
   public function getItemsPerPage()
5864 5864
   {
5865
-    return $this->itemsPerPage;
5865
+	return $this->itemsPerPage;
5866 5866
   }
5867 5867
   public function setKind($kind)
5868 5868
   {
5869
-    $this->kind = $kind;
5869
+	$this->kind = $kind;
5870 5870
   }
5871 5871
   public function getKind()
5872 5872
   {
5873
-    return $this->kind;
5873
+	return $this->kind;
5874 5874
   }
5875 5875
   public function setNextLink($nextLink)
5876 5876
   {
5877
-    $this->nextLink = $nextLink;
5877
+	$this->nextLink = $nextLink;
5878 5878
   }
5879 5879
   public function getNextLink()
5880 5880
   {
5881
-    return $this->nextLink;
5881
+	return $this->nextLink;
5882 5882
   }
5883 5883
   public function setPreviousLink($previousLink)
5884 5884
   {
5885
-    $this->previousLink = $previousLink;
5885
+	$this->previousLink = $previousLink;
5886 5886
   }
5887 5887
   public function getPreviousLink()
5888 5888
   {
5889
-    return $this->previousLink;
5889
+	return $this->previousLink;
5890 5890
   }
5891 5891
   public function setStartIndex($startIndex)
5892 5892
   {
5893
-    $this->startIndex = $startIndex;
5893
+	$this->startIndex = $startIndex;
5894 5894
   }
5895 5895
   public function getStartIndex()
5896 5896
   {
5897
-    return $this->startIndex;
5897
+	return $this->startIndex;
5898 5898
   }
5899 5899
   public function setTotalResults($totalResults)
5900 5900
   {
5901
-    $this->totalResults = $totalResults;
5901
+	$this->totalResults = $totalResults;
5902 5902
   }
5903 5903
   public function getTotalResults()
5904 5904
   {
5905
-    return $this->totalResults;
5905
+	return $this->totalResults;
5906 5906
   }
5907 5907
   public function setUsername($username)
5908 5908
   {
5909
-    $this->username = $username;
5909
+	$this->username = $username;
5910 5910
   }
5911 5911
   public function getUsername()
5912 5912
   {
5913
-    return $this->username;
5913
+	return $this->username;
5914 5914
   }
5915 5915
 }
5916 5916
 
@@ -5944,123 +5944,123 @@  discard block
 block discarded – undo
5944 5944
 
5945 5945
   public function setAccountId($accountId)
5946 5946
   {
5947
-    $this->accountId = $accountId;
5947
+	$this->accountId = $accountId;
5948 5948
   }
5949 5949
   public function getAccountId()
5950 5950
   {
5951
-    return $this->accountId;
5951
+	return $this->accountId;
5952 5952
   }
5953 5953
   public function setAdvancedDetails(Google_Service_Analytics_FilterAdvancedDetails $advancedDetails)
5954 5954
   {
5955
-    $this->advancedDetails = $advancedDetails;
5955
+	$this->advancedDetails = $advancedDetails;
5956 5956
   }
5957 5957
   public function getAdvancedDetails()
5958 5958
   {
5959
-    return $this->advancedDetails;
5959
+	return $this->advancedDetails;
5960 5960
   }
5961 5961
   public function setCreated($created)
5962 5962
   {
5963
-    $this->created = $created;
5963
+	$this->created = $created;
5964 5964
   }
5965 5965
   public function getCreated()
5966 5966
   {
5967
-    return $this->created;
5967
+	return $this->created;
5968 5968
   }
5969 5969
   public function setExcludeDetails(Google_Service_Analytics_FilterExpression $excludeDetails)
5970 5970
   {
5971
-    $this->excludeDetails = $excludeDetails;
5971
+	$this->excludeDetails = $excludeDetails;
5972 5972
   }
5973 5973
   public function getExcludeDetails()
5974 5974
   {
5975
-    return $this->excludeDetails;
5975
+	return $this->excludeDetails;
5976 5976
   }
5977 5977
   public function setId($id)
5978 5978
   {
5979
-    $this->id = $id;
5979
+	$this->id = $id;
5980 5980
   }
5981 5981
   public function getId()
5982 5982
   {
5983
-    return $this->id;
5983
+	return $this->id;
5984 5984
   }
5985 5985
   public function setIncludeDetails(Google_Service_Analytics_FilterExpression $includeDetails)
5986 5986
   {
5987
-    $this->includeDetails = $includeDetails;
5987
+	$this->includeDetails = $includeDetails;
5988 5988
   }
5989 5989
   public function getIncludeDetails()
5990 5990
   {
5991
-    return $this->includeDetails;
5991
+	return $this->includeDetails;
5992 5992
   }
5993 5993
   public function setKind($kind)
5994 5994
   {
5995
-    $this->kind = $kind;
5995
+	$this->kind = $kind;
5996 5996
   }
5997 5997
   public function getKind()
5998 5998
   {
5999
-    return $this->kind;
5999
+	return $this->kind;
6000 6000
   }
6001 6001
   public function setLowercaseDetails(Google_Service_Analytics_FilterLowercaseDetails $lowercaseDetails)
6002 6002
   {
6003
-    $this->lowercaseDetails = $lowercaseDetails;
6003
+	$this->lowercaseDetails = $lowercaseDetails;
6004 6004
   }
6005 6005
   public function getLowercaseDetails()
6006 6006
   {
6007
-    return $this->lowercaseDetails;
6007
+	return $this->lowercaseDetails;
6008 6008
   }
6009 6009
   public function setName($name)
6010 6010
   {
6011
-    $this->name = $name;
6011
+	$this->name = $name;
6012 6012
   }
6013 6013
   public function getName()
6014 6014
   {
6015
-    return $this->name;
6015
+	return $this->name;
6016 6016
   }
6017 6017
   public function setParentLink(Google_Service_Analytics_FilterParentLink $parentLink)
6018 6018
   {
6019
-    $this->parentLink = $parentLink;
6019
+	$this->parentLink = $parentLink;
6020 6020
   }
6021 6021
   public function getParentLink()
6022 6022
   {
6023
-    return $this->parentLink;
6023
+	return $this->parentLink;
6024 6024
   }
6025 6025
   public function setSearchAndReplaceDetails(Google_Service_Analytics_FilterSearchAndReplaceDetails $searchAndReplaceDetails)
6026 6026
   {
6027
-    $this->searchAndReplaceDetails = $searchAndReplaceDetails;
6027
+	$this->searchAndReplaceDetails = $searchAndReplaceDetails;
6028 6028
   }
6029 6029
   public function getSearchAndReplaceDetails()
6030 6030
   {
6031
-    return $this->searchAndReplaceDetails;
6031
+	return $this->searchAndReplaceDetails;
6032 6032
   }
6033 6033
   public function setSelfLink($selfLink)
6034 6034
   {
6035
-    $this->selfLink = $selfLink;
6035
+	$this->selfLink = $selfLink;
6036 6036
   }
6037 6037
   public function getSelfLink()
6038 6038
   {
6039
-    return $this->selfLink;
6039
+	return $this->selfLink;
6040 6040
   }
6041 6041
   public function setType($type)
6042 6042
   {
6043
-    $this->type = $type;
6043
+	$this->type = $type;
6044 6044
   }
6045 6045
   public function getType()
6046 6046
   {
6047
-    return $this->type;
6047
+	return $this->type;
6048 6048
   }
6049 6049
   public function setUpdated($updated)
6050 6050
   {
6051
-    $this->updated = $updated;
6051
+	$this->updated = $updated;
6052 6052
   }
6053 6053
   public function getUpdated()
6054 6054
   {
6055
-    return $this->updated;
6055
+	return $this->updated;
6056 6056
   }
6057 6057
   public function setUppercaseDetails(Google_Service_Analytics_FilterUppercaseDetails $uppercaseDetails)
6058 6058
   {
6059
-    $this->uppercaseDetails = $uppercaseDetails;
6059
+	$this->uppercaseDetails = $uppercaseDetails;
6060 6060
   }
6061 6061
   public function getUppercaseDetails()
6062 6062
   {
6063
-    return $this->uppercaseDetails;
6063
+	return $this->uppercaseDetails;
6064 6064
   }
6065 6065
 }
6066 6066
 
@@ -6085,107 +6085,107 @@  discard block
 block discarded – undo
6085 6085
 
6086 6086
   public function setCaseSensitive($caseSensitive)
6087 6087
   {
6088
-    $this->caseSensitive = $caseSensitive;
6088
+	$this->caseSensitive = $caseSensitive;
6089 6089
   }
6090 6090
   public function getCaseSensitive()
6091 6091
   {
6092
-    return $this->caseSensitive;
6092
+	return $this->caseSensitive;
6093 6093
   }
6094 6094
   public function setExtractA($extractA)
6095 6095
   {
6096
-    $this->extractA = $extractA;
6096
+	$this->extractA = $extractA;
6097 6097
   }
6098 6098
   public function getExtractA()
6099 6099
   {
6100
-    return $this->extractA;
6100
+	return $this->extractA;
6101 6101
   }
6102 6102
   public function setExtractB($extractB)
6103 6103
   {
6104
-    $this->extractB = $extractB;
6104
+	$this->extractB = $extractB;
6105 6105
   }
6106 6106
   public function getExtractB()
6107 6107
   {
6108
-    return $this->extractB;
6108
+	return $this->extractB;
6109 6109
   }
6110 6110
   public function setFieldA($fieldA)
6111 6111
   {
6112
-    $this->fieldA = $fieldA;
6112
+	$this->fieldA = $fieldA;
6113 6113
   }
6114 6114
   public function getFieldA()
6115 6115
   {
6116
-    return $this->fieldA;
6116
+	return $this->fieldA;
6117 6117
   }
6118 6118
   public function setFieldAIndex($fieldAIndex)
6119 6119
   {
6120
-    $this->fieldAIndex = $fieldAIndex;
6120
+	$this->fieldAIndex = $fieldAIndex;
6121 6121
   }
6122 6122
   public function getFieldAIndex()
6123 6123
   {
6124
-    return $this->fieldAIndex;
6124
+	return $this->fieldAIndex;
6125 6125
   }
6126 6126
   public function setFieldARequired($fieldARequired)
6127 6127
   {
6128
-    $this->fieldARequired = $fieldARequired;
6128
+	$this->fieldARequired = $fieldARequired;
6129 6129
   }
6130 6130
   public function getFieldARequired()
6131 6131
   {
6132
-    return $this->fieldARequired;
6132
+	return $this->fieldARequired;
6133 6133
   }
6134 6134
   public function setFieldB($fieldB)
6135 6135
   {
6136
-    $this->fieldB = $fieldB;
6136
+	$this->fieldB = $fieldB;
6137 6137
   }
6138 6138
   public function getFieldB()
6139 6139
   {
6140
-    return $this->fieldB;
6140
+	return $this->fieldB;
6141 6141
   }
6142 6142
   public function setFieldBIndex($fieldBIndex)
6143 6143
   {
6144
-    $this->fieldBIndex = $fieldBIndex;
6144
+	$this->fieldBIndex = $fieldBIndex;
6145 6145
   }
6146 6146
   public function getFieldBIndex()
6147 6147
   {
6148
-    return $this->fieldBIndex;
6148
+	return $this->fieldBIndex;
6149 6149
   }
6150 6150
   public function setFieldBRequired($fieldBRequired)
6151 6151
   {
6152
-    $this->fieldBRequired = $fieldBRequired;
6152
+	$this->fieldBRequired = $fieldBRequired;
6153 6153
   }
6154 6154
   public function getFieldBRequired()
6155 6155
   {
6156
-    return $this->fieldBRequired;
6156
+	return $this->fieldBRequired;
6157 6157
   }
6158 6158
   public function setOutputConstructor($outputConstructor)
6159 6159
   {
6160
-    $this->outputConstructor = $outputConstructor;
6160
+	$this->outputConstructor = $outputConstructor;
6161 6161
   }
6162 6162
   public function getOutputConstructor()
6163 6163
   {
6164
-    return $this->outputConstructor;
6164
+	return $this->outputConstructor;
6165 6165
   }
6166 6166
   public function setOutputToField($outputToField)
6167 6167
   {
6168
-    $this->outputToField = $outputToField;
6168
+	$this->outputToField = $outputToField;
6169 6169
   }
6170 6170
   public function getOutputToField()
6171 6171
   {
6172
-    return $this->outputToField;
6172
+	return $this->outputToField;
6173 6173
   }
6174 6174
   public function setOutputToFieldIndex($outputToFieldIndex)
6175 6175
   {
6176
-    $this->outputToFieldIndex = $outputToFieldIndex;
6176
+	$this->outputToFieldIndex = $outputToFieldIndex;
6177 6177
   }
6178 6178
   public function getOutputToFieldIndex()
6179 6179
   {
6180
-    return $this->outputToFieldIndex;
6180
+	return $this->outputToFieldIndex;
6181 6181
   }
6182 6182
   public function setOverrideOutputField($overrideOutputField)
6183 6183
   {
6184
-    $this->overrideOutputField = $overrideOutputField;
6184
+	$this->overrideOutputField = $overrideOutputField;
6185 6185
   }
6186 6186
   public function getOverrideOutputField()
6187 6187
   {
6188
-    return $this->overrideOutputField;
6188
+	return $this->overrideOutputField;
6189 6189
   }
6190 6190
 }
6191 6191
 
@@ -6203,51 +6203,51 @@  discard block
 block discarded – undo
6203 6203
 
6204 6204
   public function setCaseSensitive($caseSensitive)
6205 6205
   {
6206
-    $this->caseSensitive = $caseSensitive;
6206
+	$this->caseSensitive = $caseSensitive;
6207 6207
   }
6208 6208
   public function getCaseSensitive()
6209 6209
   {
6210
-    return $this->caseSensitive;
6210
+	return $this->caseSensitive;
6211 6211
   }
6212 6212
   public function setExpressionValue($expressionValue)
6213 6213
   {
6214
-    $this->expressionValue = $expressionValue;
6214
+	$this->expressionValue = $expressionValue;
6215 6215
   }
6216 6216
   public function getExpressionValue()
6217 6217
   {
6218
-    return $this->expressionValue;
6218
+	return $this->expressionValue;
6219 6219
   }
6220 6220
   public function setField($field)
6221 6221
   {
6222
-    $this->field = $field;
6222
+	$this->field = $field;
6223 6223
   }
6224 6224
   public function getField()
6225 6225
   {
6226
-    return $this->field;
6226
+	return $this->field;
6227 6227
   }
6228 6228
   public function setFieldIndex($fieldIndex)
6229 6229
   {
6230
-    $this->fieldIndex = $fieldIndex;
6230
+	$this->fieldIndex = $fieldIndex;
6231 6231
   }
6232 6232
   public function getFieldIndex()
6233 6233
   {
6234
-    return $this->fieldIndex;
6234
+	return $this->fieldIndex;
6235 6235
   }
6236 6236
   public function setKind($kind)
6237 6237
   {
6238
-    $this->kind = $kind;
6238
+	$this->kind = $kind;
6239 6239
   }
6240 6240
   public function getKind()
6241 6241
   {
6242
-    return $this->kind;
6242
+	return $this->kind;
6243 6243
   }
6244 6244
   public function setMatchType($matchType)
6245 6245
   {
6246
-    $this->matchType = $matchType;
6246
+	$this->matchType = $matchType;
6247 6247
   }
6248 6248
   public function getMatchType()
6249 6249
   {
6250
-    return $this->matchType;
6250
+	return $this->matchType;
6251 6251
   }
6252 6252
 }
6253 6253
 
@@ -6261,19 +6261,19 @@  discard block
 block discarded – undo
6261 6261
 
6262 6262
   public function setField($field)
6263 6263
   {
6264
-    $this->field = $field;
6264
+	$this->field = $field;
6265 6265
   }
6266 6266
   public function getField()
6267 6267
   {
6268
-    return $this->field;
6268
+	return $this->field;
6269 6269
   }
6270 6270
   public function setFieldIndex($fieldIndex)
6271 6271
   {
6272
-    $this->fieldIndex = $fieldIndex;
6272
+	$this->fieldIndex = $fieldIndex;
6273 6273
   }
6274 6274
   public function getFieldIndex()
6275 6275
   {
6276
-    return $this->fieldIndex;
6276
+	return $this->fieldIndex;
6277 6277
   }
6278 6278
 }
6279 6279
 
@@ -6287,19 +6287,19 @@  discard block
 block discarded – undo
6287 6287
 
6288 6288
   public function setHref($href)
6289 6289
   {
6290
-    $this->href = $href;
6290
+	$this->href = $href;
6291 6291
   }
6292 6292
   public function getHref()
6293 6293
   {
6294
-    return $this->href;
6294
+	return $this->href;
6295 6295
   }
6296 6296
   public function setType($type)
6297 6297
   {
6298
-    $this->type = $type;
6298
+	$this->type = $type;
6299 6299
   }
6300 6300
   public function getType()
6301 6301
   {
6302
-    return $this->type;
6302
+	return $this->type;
6303 6303
   }
6304 6304
 }
6305 6305
 
@@ -6316,43 +6316,43 @@  discard block
 block discarded – undo
6316 6316
 
6317 6317
   public function setAccountId($accountId)
6318 6318
   {
6319
-    $this->accountId = $accountId;
6319
+	$this->accountId = $accountId;
6320 6320
   }
6321 6321
   public function getAccountId()
6322 6322
   {
6323
-    return $this->accountId;
6323
+	return $this->accountId;
6324 6324
   }
6325 6325
   public function setHref($href)
6326 6326
   {
6327
-    $this->href = $href;
6327
+	$this->href = $href;
6328 6328
   }
6329 6329
   public function getHref()
6330 6330
   {
6331
-    return $this->href;
6331
+	return $this->href;
6332 6332
   }
6333 6333
   public function setId($id)
6334 6334
   {
6335
-    $this->id = $id;
6335
+	$this->id = $id;
6336 6336
   }
6337 6337
   public function getId()
6338 6338
   {
6339
-    return $this->id;
6339
+	return $this->id;
6340 6340
   }
6341 6341
   public function setKind($kind)
6342 6342
   {
6343
-    $this->kind = $kind;
6343
+	$this->kind = $kind;
6344 6344
   }
6345 6345
   public function getKind()
6346 6346
   {
6347
-    return $this->kind;
6347
+	return $this->kind;
6348 6348
   }
6349 6349
   public function setName($name)
6350 6350
   {
6351
-    $this->name = $name;
6351
+	$this->name = $name;
6352 6352
   }
6353 6353
   public function getName()
6354 6354
   {
6355
-    return $this->name;
6355
+	return $this->name;
6356 6356
   }
6357 6357
 }
6358 6358
 
@@ -6369,43 +6369,43 @@  discard block
 block discarded – undo
6369 6369
 
6370 6370
   public function setCaseSensitive($caseSensitive)
6371 6371
   {
6372
-    $this->caseSensitive = $caseSensitive;
6372
+	$this->caseSensitive = $caseSensitive;
6373 6373
   }
6374 6374
   public function getCaseSensitive()
6375 6375
   {
6376
-    return $this->caseSensitive;
6376
+	return $this->caseSensitive;
6377 6377
   }
6378 6378
   public function setField($field)
6379 6379
   {
6380
-    $this->field = $field;
6380
+	$this->field = $field;
6381 6381
   }
6382 6382
   public function getField()
6383 6383
   {
6384
-    return $this->field;
6384
+	return $this->field;
6385 6385
   }
6386 6386
   public function setFieldIndex($fieldIndex)
6387 6387
   {
6388
-    $this->fieldIndex = $fieldIndex;
6388
+	$this->fieldIndex = $fieldIndex;
6389 6389
   }
6390 6390
   public function getFieldIndex()
6391 6391
   {
6392
-    return $this->fieldIndex;
6392
+	return $this->fieldIndex;
6393 6393
   }
6394 6394
   public function setReplaceString($replaceString)
6395 6395
   {
6396
-    $this->replaceString = $replaceString;
6396
+	$this->replaceString = $replaceString;
6397 6397
   }
6398 6398
   public function getReplaceString()
6399 6399
   {
6400
-    return $this->replaceString;
6400
+	return $this->replaceString;
6401 6401
   }
6402 6402
   public function setSearchString($searchString)
6403 6403
   {
6404
-    $this->searchString = $searchString;
6404
+	$this->searchString = $searchString;
6405 6405
   }
6406 6406
   public function getSearchString()
6407 6407
   {
6408
-    return $this->searchString;
6408
+	return $this->searchString;
6409 6409
   }
6410 6410
 }
6411 6411
 
@@ -6419,19 +6419,19 @@  discard block
 block discarded – undo
6419 6419
 
6420 6420
   public function setField($field)
6421 6421
   {
6422
-    $this->field = $field;
6422
+	$this->field = $field;
6423 6423
   }
6424 6424
   public function getField()
6425 6425
   {
6426
-    return $this->field;
6426
+	return $this->field;
6427 6427
   }
6428 6428
   public function setFieldIndex($fieldIndex)
6429 6429
   {
6430
-    $this->fieldIndex = $fieldIndex;
6430
+	$this->fieldIndex = $fieldIndex;
6431 6431
   }
6432 6432
   public function getFieldIndex()
6433 6433
   {
6434
-    return $this->fieldIndex;
6434
+	return $this->fieldIndex;
6435 6435
   }
6436 6436
 }
6437 6437
 
@@ -6453,67 +6453,67 @@  discard block
 block discarded – undo
6453 6453
 
6454 6454
   public function setItems($items)
6455 6455
   {
6456
-    $this->items = $items;
6456
+	$this->items = $items;
6457 6457
   }
6458 6458
   public function getItems()
6459 6459
   {
6460
-    return $this->items;
6460
+	return $this->items;
6461 6461
   }
6462 6462
   public function setItemsPerPage($itemsPerPage)
6463 6463
   {
6464
-    $this->itemsPerPage = $itemsPerPage;
6464
+	$this->itemsPerPage = $itemsPerPage;
6465 6465
   }
6466 6466
   public function getItemsPerPage()
6467 6467
   {
6468
-    return $this->itemsPerPage;
6468
+	return $this->itemsPerPage;
6469 6469
   }
6470 6470
   public function setKind($kind)
6471 6471
   {
6472
-    $this->kind = $kind;
6472
+	$this->kind = $kind;
6473 6473
   }
6474 6474
   public function getKind()
6475 6475
   {
6476
-    return $this->kind;
6476
+	return $this->kind;
6477 6477
   }
6478 6478
   public function setNextLink($nextLink)
6479 6479
   {
6480
-    $this->nextLink = $nextLink;
6480
+	$this->nextLink = $nextLink;
6481 6481
   }
6482 6482
   public function getNextLink()
6483 6483
   {
6484
-    return $this->nextLink;
6484
+	return $this->nextLink;
6485 6485
   }
6486 6486
   public function setPreviousLink($previousLink)
6487 6487
   {
6488
-    $this->previousLink = $previousLink;
6488
+	$this->previousLink = $previousLink;
6489 6489
   }
6490 6490
   public function getPreviousLink()
6491 6491
   {
6492
-    return $this->previousLink;
6492
+	return $this->previousLink;
6493 6493
   }
6494 6494
   public function setStartIndex($startIndex)
6495 6495
   {
6496
-    $this->startIndex = $startIndex;
6496
+	$this->startIndex = $startIndex;
6497 6497
   }
6498 6498
   public function getStartIndex()
6499 6499
   {
6500
-    return $this->startIndex;
6500
+	return $this->startIndex;
6501 6501
   }
6502 6502
   public function setTotalResults($totalResults)
6503 6503
   {
6504
-    $this->totalResults = $totalResults;
6504
+	$this->totalResults = $totalResults;
6505 6505
   }
6506 6506
   public function getTotalResults()
6507 6507
   {
6508
-    return $this->totalResults;
6508
+	return $this->totalResults;
6509 6509
   }
6510 6510
   public function setUsername($username)
6511 6511
   {
6512
-    $this->username = $username;
6512
+	$this->username = $username;
6513 6513
   }
6514 6514
   public function getUsername()
6515 6515
   {
6516
-    return $this->username;
6516
+	return $this->username;
6517 6517
   }
6518 6518
 }
6519 6519
 
@@ -6546,131 +6546,131 @@  discard block
 block discarded – undo
6546 6546
 
6547 6547
   public function setColumnHeaders($columnHeaders)
6548 6548
   {
6549
-    $this->columnHeaders = $columnHeaders;
6549
+	$this->columnHeaders = $columnHeaders;
6550 6550
   }
6551 6551
   public function getColumnHeaders()
6552 6552
   {
6553
-    return $this->columnHeaders;
6553
+	return $this->columnHeaders;
6554 6554
   }
6555 6555
   public function setContainsSampledData($containsSampledData)
6556 6556
   {
6557
-    $this->containsSampledData = $containsSampledData;
6557
+	$this->containsSampledData = $containsSampledData;
6558 6558
   }
6559 6559
   public function getContainsSampledData()
6560 6560
   {
6561
-    return $this->containsSampledData;
6561
+	return $this->containsSampledData;
6562 6562
   }
6563 6563
   public function setDataTable(Google_Service_Analytics_GaDataDataTable $dataTable)
6564 6564
   {
6565
-    $this->dataTable = $dataTable;
6565
+	$this->dataTable = $dataTable;
6566 6566
   }
6567 6567
   public function getDataTable()
6568 6568
   {
6569
-    return $this->dataTable;
6569
+	return $this->dataTable;
6570 6570
   }
6571 6571
   public function setId($id)
6572 6572
   {
6573
-    $this->id = $id;
6573
+	$this->id = $id;
6574 6574
   }
6575 6575
   public function getId()
6576 6576
   {
6577
-    return $this->id;
6577
+	return $this->id;
6578 6578
   }
6579 6579
   public function setItemsPerPage($itemsPerPage)
6580 6580
   {
6581
-    $this->itemsPerPage = $itemsPerPage;
6581
+	$this->itemsPerPage = $itemsPerPage;
6582 6582
   }
6583 6583
   public function getItemsPerPage()
6584 6584
   {
6585
-    return $this->itemsPerPage;
6585
+	return $this->itemsPerPage;
6586 6586
   }
6587 6587
   public function setKind($kind)
6588 6588
   {
6589
-    $this->kind = $kind;
6589
+	$this->kind = $kind;
6590 6590
   }
6591 6591
   public function getKind()
6592 6592
   {
6593
-    return $this->kind;
6593
+	return $this->kind;
6594 6594
   }
6595 6595
   public function setNextLink($nextLink)
6596 6596
   {
6597
-    $this->nextLink = $nextLink;
6597
+	$this->nextLink = $nextLink;
6598 6598
   }
6599 6599
   public function getNextLink()
6600 6600
   {
6601
-    return $this->nextLink;
6601
+	return $this->nextLink;
6602 6602
   }
6603 6603
   public function setPreviousLink($previousLink)
6604 6604
   {
6605
-    $this->previousLink = $previousLink;
6605
+	$this->previousLink = $previousLink;
6606 6606
   }
6607 6607
   public function getPreviousLink()
6608 6608
   {
6609
-    return $this->previousLink;
6609
+	return $this->previousLink;
6610 6610
   }
6611 6611
   public function setProfileInfo(Google_Service_Analytics_GaDataProfileInfo $profileInfo)
6612 6612
   {
6613
-    $this->profileInfo = $profileInfo;
6613
+	$this->profileInfo = $profileInfo;
6614 6614
   }
6615 6615
   public function getProfileInfo()
6616 6616
   {
6617
-    return $this->profileInfo;
6617
+	return $this->profileInfo;
6618 6618
   }
6619 6619
   public function setQuery(Google_Service_Analytics_GaDataQuery $query)
6620 6620
   {
6621
-    $this->query = $query;
6621
+	$this->query = $query;
6622 6622
   }
6623 6623
   public function getQuery()
6624 6624
   {
6625
-    return $this->query;
6625
+	return $this->query;
6626 6626
   }
6627 6627
   public function setRows($rows)
6628 6628
   {
6629
-    $this->rows = $rows;
6629
+	$this->rows = $rows;
6630 6630
   }
6631 6631
   public function getRows()
6632 6632
   {
6633
-    return $this->rows;
6633
+	return $this->rows;
6634 6634
   }
6635 6635
   public function setSampleSize($sampleSize)
6636 6636
   {
6637
-    $this->sampleSize = $sampleSize;
6637
+	$this->sampleSize = $sampleSize;
6638 6638
   }
6639 6639
   public function getSampleSize()
6640 6640
   {
6641
-    return $this->sampleSize;
6641
+	return $this->sampleSize;
6642 6642
   }
6643 6643
   public function setSampleSpace($sampleSpace)
6644 6644
   {
6645
-    $this->sampleSpace = $sampleSpace;
6645
+	$this->sampleSpace = $sampleSpace;
6646 6646
   }
6647 6647
   public function getSampleSpace()
6648 6648
   {
6649
-    return $this->sampleSpace;
6649
+	return $this->sampleSpace;
6650 6650
   }
6651 6651
   public function setSelfLink($selfLink)
6652 6652
   {
6653
-    $this->selfLink = $selfLink;
6653
+	$this->selfLink = $selfLink;
6654 6654
   }
6655 6655
   public function getSelfLink()
6656 6656
   {
6657
-    return $this->selfLink;
6657
+	return $this->selfLink;
6658 6658
   }
6659 6659
   public function setTotalResults($totalResults)
6660 6660
   {
6661
-    $this->totalResults = $totalResults;
6661
+	$this->totalResults = $totalResults;
6662 6662
   }
6663 6663
   public function getTotalResults()
6664 6664
   {
6665
-    return $this->totalResults;
6665
+	return $this->totalResults;
6666 6666
   }
6667 6667
   public function setTotalsForAllResults($totalsForAllResults)
6668 6668
   {
6669
-    $this->totalsForAllResults = $totalsForAllResults;
6669
+	$this->totalsForAllResults = $totalsForAllResults;
6670 6670
   }
6671 6671
   public function getTotalsForAllResults()
6672 6672
   {
6673
-    return $this->totalsForAllResults;
6673
+	return $this->totalsForAllResults;
6674 6674
   }
6675 6675
 }
6676 6676
 
@@ -6685,27 +6685,27 @@  discard block
 block discarded – undo
6685 6685
 
6686 6686
   public function setColumnType($columnType)
6687 6687
   {
6688
-    $this->columnType = $columnType;
6688
+	$this->columnType = $columnType;
6689 6689
   }
6690 6690
   public function getColumnType()
6691 6691
   {
6692
-    return $this->columnType;
6692
+	return $this->columnType;
6693 6693
   }
6694 6694
   public function setDataType($dataType)
6695 6695
   {
6696
-    $this->dataType = $dataType;
6696
+	$this->dataType = $dataType;
6697 6697
   }
6698 6698
   public function getDataType()
6699 6699
   {
6700
-    return $this->dataType;
6700
+	return $this->dataType;
6701 6701
   }
6702 6702
   public function setName($name)
6703 6703
   {
6704
-    $this->name = $name;
6704
+	$this->name = $name;
6705 6705
   }
6706 6706
   public function getName()
6707 6707
   {
6708
-    return $this->name;
6708
+	return $this->name;
6709 6709
   }
6710 6710
 }
6711 6711
 
@@ -6722,19 +6722,19 @@  discard block
 block discarded – undo
6722 6722
 
6723 6723
   public function setCols($cols)
6724 6724
   {
6725
-    $this->cols = $cols;
6725
+	$this->cols = $cols;
6726 6726
   }
6727 6727
   public function getCols()
6728 6728
   {
6729
-    return $this->cols;
6729
+	return $this->cols;
6730 6730
   }
6731 6731
   public function setRows($rows)
6732 6732
   {
6733
-    $this->rows = $rows;
6733
+	$this->rows = $rows;
6734 6734
   }
6735 6735
   public function getRows()
6736 6736
   {
6737
-    return $this->rows;
6737
+	return $this->rows;
6738 6738
   }
6739 6739
 }
6740 6740
 
@@ -6749,27 +6749,27 @@  discard block
 block discarded – undo
6749 6749
 
6750 6750
   public function setId($id)
6751 6751
   {
6752
-    $this->id = $id;
6752
+	$this->id = $id;
6753 6753
   }
6754 6754
   public function getId()
6755 6755
   {
6756
-    return $this->id;
6756
+	return $this->id;
6757 6757
   }
6758 6758
   public function setLabel($label)
6759 6759
   {
6760
-    $this->label = $label;
6760
+	$this->label = $label;
6761 6761
   }
6762 6762
   public function getLabel()
6763 6763
   {
6764
-    return $this->label;
6764
+	return $this->label;
6765 6765
   }
6766 6766
   public function setType($type)
6767 6767
   {
6768
-    $this->type = $type;
6768
+	$this->type = $type;
6769 6769
   }
6770 6770
   public function getType()
6771 6771
   {
6772
-    return $this->type;
6772
+	return $this->type;
6773 6773
   }
6774 6774
 }
6775 6775
 
@@ -6784,11 +6784,11 @@  discard block
 block discarded – undo
6784 6784
 
6785 6785
   public function setC($c)
6786 6786
   {
6787
-    $this->c = $c;
6787
+	$this->c = $c;
6788 6788
   }
6789 6789
   public function getC()
6790 6790
   {
6791
-    return $this->c;
6791
+	return $this->c;
6792 6792
   }
6793 6793
 }
6794 6794
 
@@ -6801,11 +6801,11 @@  discard block
 block discarded – undo
6801 6801
 
6802 6802
   public function setV($v)
6803 6803
   {
6804
-    $this->v = $v;
6804
+	$this->v = $v;
6805 6805
   }
6806 6806
   public function getV()
6807 6807
   {
6808
-    return $this->v;
6808
+	return $this->v;
6809 6809
   }
6810 6810
 }
6811 6811
 
@@ -6823,51 +6823,51 @@  discard block
 block discarded – undo
6823 6823
 
6824 6824
   public function setAccountId($accountId)
6825 6825
   {
6826
-    $this->accountId = $accountId;
6826
+	$this->accountId = $accountId;
6827 6827
   }
6828 6828
   public function getAccountId()
6829 6829
   {
6830
-    return $this->accountId;
6830
+	return $this->accountId;
6831 6831
   }
6832 6832
   public function setInternalWebPropertyId($internalWebPropertyId)
6833 6833
   {
6834
-    $this->internalWebPropertyId = $internalWebPropertyId;
6834
+	$this->internalWebPropertyId = $internalWebPropertyId;
6835 6835
   }
6836 6836
   public function getInternalWebPropertyId()
6837 6837
   {
6838
-    return $this->internalWebPropertyId;
6838
+	return $this->internalWebPropertyId;
6839 6839
   }
6840 6840
   public function setProfileId($profileId)
6841 6841
   {
6842
-    $this->profileId = $profileId;
6842
+	$this->profileId = $profileId;
6843 6843
   }
6844 6844
   public function getProfileId()
6845 6845
   {
6846
-    return $this->profileId;
6846
+	return $this->profileId;
6847 6847
   }
6848 6848
   public function setProfileName($profileName)
6849 6849
   {
6850
-    $this->profileName = $profileName;
6850
+	$this->profileName = $profileName;
6851 6851
   }
6852 6852
   public function getProfileName()
6853 6853
   {
6854
-    return $this->profileName;
6854
+	return $this->profileName;
6855 6855
   }
6856 6856
   public function setTableId($tableId)
6857 6857
   {
6858
-    $this->tableId = $tableId;
6858
+	$this->tableId = $tableId;
6859 6859
   }
6860 6860
   public function getTableId()
6861 6861
   {
6862
-    return $this->tableId;
6862
+	return $this->tableId;
6863 6863
   }
6864 6864
   public function setWebPropertyId($webPropertyId)
6865 6865
   {
6866
-    $this->webPropertyId = $webPropertyId;
6866
+	$this->webPropertyId = $webPropertyId;
6867 6867
   }
6868 6868
   public function getWebPropertyId()
6869 6869
   {
6870
-    return $this->webPropertyId;
6870
+	return $this->webPropertyId;
6871 6871
   }
6872 6872
 }
6873 6873
 
@@ -6875,10 +6875,10 @@  discard block
 block discarded – undo
6875 6875
 {
6876 6876
   protected $collection_key = 'sort';
6877 6877
   protected $internal_gapi_mappings = array(
6878
-        "endDate" => "end-date",
6879
-        "maxResults" => "max-results",
6880
-        "startDate" => "start-date",
6881
-        "startIndex" => "start-index",
6878
+		"endDate" => "end-date",
6879
+		"maxResults" => "max-results",
6880
+		"startDate" => "start-date",
6881
+		"startIndex" => "start-index",
6882 6882
   );
6883 6883
   public $dimensions;
6884 6884
   public $endDate;
@@ -6895,91 +6895,91 @@  discard block
 block discarded – undo
6895 6895
 
6896 6896
   public function setDimensions($dimensions)
6897 6897
   {
6898
-    $this->dimensions = $dimensions;
6898
+	$this->dimensions = $dimensions;
6899 6899
   }
6900 6900
   public function getDimensions()
6901 6901
   {
6902
-    return $this->dimensions;
6902
+	return $this->dimensions;
6903 6903
   }
6904 6904
   public function setEndDate($endDate)
6905 6905
   {
6906
-    $this->endDate = $endDate;
6906
+	$this->endDate = $endDate;
6907 6907
   }
6908 6908
   public function getEndDate()
6909 6909
   {
6910
-    return $this->endDate;
6910
+	return $this->endDate;
6911 6911
   }
6912 6912
   public function setFilters($filters)
6913 6913
   {
6914
-    $this->filters = $filters;
6914
+	$this->filters = $filters;
6915 6915
   }
6916 6916
   public function getFilters()
6917 6917
   {
6918
-    return $this->filters;
6918
+	return $this->filters;
6919 6919
   }
6920 6920
   public function setIds($ids)
6921 6921
   {
6922
-    $this->ids = $ids;
6922
+	$this->ids = $ids;
6923 6923
   }
6924 6924
   public function getIds()
6925 6925
   {
6926
-    return $this->ids;
6926
+	return $this->ids;
6927 6927
   }
6928 6928
   public function setMaxResults($maxResults)
6929 6929
   {
6930
-    $this->maxResults = $maxResults;
6930
+	$this->maxResults = $maxResults;
6931 6931
   }
6932 6932
   public function getMaxResults()
6933 6933
   {
6934
-    return $this->maxResults;
6934
+	return $this->maxResults;
6935 6935
   }
6936 6936
   public function setMetrics($metrics)
6937 6937
   {
6938
-    $this->metrics = $metrics;
6938
+	$this->metrics = $metrics;
6939 6939
   }
6940 6940
   public function getMetrics()
6941 6941
   {
6942
-    return $this->metrics;
6942
+	return $this->metrics;
6943 6943
   }
6944 6944
   public function setSamplingLevel($samplingLevel)
6945 6945
   {
6946
-    $this->samplingLevel = $samplingLevel;
6946
+	$this->samplingLevel = $samplingLevel;
6947 6947
   }
6948 6948
   public function getSamplingLevel()
6949 6949
   {
6950
-    return $this->samplingLevel;
6950
+	return $this->samplingLevel;
6951 6951
   }
6952 6952
   public function setSegment($segment)
6953 6953
   {
6954
-    $this->segment = $segment;
6954
+	$this->segment = $segment;
6955 6955
   }
6956 6956
   public function getSegment()
6957 6957
   {
6958
-    return $this->segment;
6958
+	return $this->segment;
6959 6959
   }
6960 6960
   public function setSort($sort)
6961 6961
   {
6962
-    $this->sort = $sort;
6962
+	$this->sort = $sort;
6963 6963
   }
6964 6964
   public function getSort()
6965 6965
   {
6966
-    return $this->sort;
6966
+	return $this->sort;
6967 6967
   }
6968 6968
   public function setStartDate($startDate)
6969 6969
   {
6970
-    $this->startDate = $startDate;
6970
+	$this->startDate = $startDate;
6971 6971
   }
6972 6972
   public function getStartDate()
6973 6973
   {
6974
-    return $this->startDate;
6974
+	return $this->startDate;
6975 6975
   }
6976 6976
   public function setStartIndex($startIndex)
6977 6977
   {
6978
-    $this->startIndex = $startIndex;
6978
+	$this->startIndex = $startIndex;
6979 6979
   }
6980 6980
   public function getStartIndex()
6981 6981
   {
6982
-    return $this->startIndex;
6982
+	return $this->startIndex;
6983 6983
   }
6984 6984
 }
6985 6985
 
@@ -7018,147 +7018,147 @@  discard block
 block discarded – undo
7018 7018
 
7019 7019
   public function setAccountId($accountId)
7020 7020
   {
7021
-    $this->accountId = $accountId;
7021
+	$this->accountId = $accountId;
7022 7022
   }
7023 7023
   public function getAccountId()
7024 7024
   {
7025
-    return $this->accountId;
7025
+	return $this->accountId;
7026 7026
   }
7027 7027
   public function setActive($active)
7028 7028
   {
7029
-    $this->active = $active;
7029
+	$this->active = $active;
7030 7030
   }
7031 7031
   public function getActive()
7032 7032
   {
7033
-    return $this->active;
7033
+	return $this->active;
7034 7034
   }
7035 7035
   public function setCreated($created)
7036 7036
   {
7037
-    $this->created = $created;
7037
+	$this->created = $created;
7038 7038
   }
7039 7039
   public function getCreated()
7040 7040
   {
7041
-    return $this->created;
7041
+	return $this->created;
7042 7042
   }
7043 7043
   public function setEventDetails(Google_Service_Analytics_GoalEventDetails $eventDetails)
7044 7044
   {
7045
-    $this->eventDetails = $eventDetails;
7045
+	$this->eventDetails = $eventDetails;
7046 7046
   }
7047 7047
   public function getEventDetails()
7048 7048
   {
7049
-    return $this->eventDetails;
7049
+	return $this->eventDetails;
7050 7050
   }
7051 7051
   public function setId($id)
7052 7052
   {
7053
-    $this->id = $id;
7053
+	$this->id = $id;
7054 7054
   }
7055 7055
   public function getId()
7056 7056
   {
7057
-    return $this->id;
7057
+	return $this->id;
7058 7058
   }
7059 7059
   public function setInternalWebPropertyId($internalWebPropertyId)
7060 7060
   {
7061
-    $this->internalWebPropertyId = $internalWebPropertyId;
7061
+	$this->internalWebPropertyId = $internalWebPropertyId;
7062 7062
   }
7063 7063
   public function getInternalWebPropertyId()
7064 7064
   {
7065
-    return $this->internalWebPropertyId;
7065
+	return $this->internalWebPropertyId;
7066 7066
   }
7067 7067
   public function setKind($kind)
7068 7068
   {
7069
-    $this->kind = $kind;
7069
+	$this->kind = $kind;
7070 7070
   }
7071 7071
   public function getKind()
7072 7072
   {
7073
-    return $this->kind;
7073
+	return $this->kind;
7074 7074
   }
7075 7075
   public function setName($name)
7076 7076
   {
7077
-    $this->name = $name;
7077
+	$this->name = $name;
7078 7078
   }
7079 7079
   public function getName()
7080 7080
   {
7081
-    return $this->name;
7081
+	return $this->name;
7082 7082
   }
7083 7083
   public function setParentLink(Google_Service_Analytics_GoalParentLink $parentLink)
7084 7084
   {
7085
-    $this->parentLink = $parentLink;
7085
+	$this->parentLink = $parentLink;
7086 7086
   }
7087 7087
   public function getParentLink()
7088 7088
   {
7089
-    return $this->parentLink;
7089
+	return $this->parentLink;
7090 7090
   }
7091 7091
   public function setProfileId($profileId)
7092 7092
   {
7093
-    $this->profileId = $profileId;
7093
+	$this->profileId = $profileId;
7094 7094
   }
7095 7095
   public function getProfileId()
7096 7096
   {
7097
-    return $this->profileId;
7097
+	return $this->profileId;
7098 7098
   }
7099 7099
   public function setSelfLink($selfLink)
7100 7100
   {
7101
-    $this->selfLink = $selfLink;
7101
+	$this->selfLink = $selfLink;
7102 7102
   }
7103 7103
   public function getSelfLink()
7104 7104
   {
7105
-    return $this->selfLink;
7105
+	return $this->selfLink;
7106 7106
   }
7107 7107
   public function setType($type)
7108 7108
   {
7109
-    $this->type = $type;
7109
+	$this->type = $type;
7110 7110
   }
7111 7111
   public function getType()
7112 7112
   {
7113
-    return $this->type;
7113
+	return $this->type;
7114 7114
   }
7115 7115
   public function setUpdated($updated)
7116 7116
   {
7117
-    $this->updated = $updated;
7117
+	$this->updated = $updated;
7118 7118
   }
7119 7119
   public function getUpdated()
7120 7120
   {
7121
-    return $this->updated;
7121
+	return $this->updated;
7122 7122
   }
7123 7123
   public function setUrlDestinationDetails(Google_Service_Analytics_GoalUrlDestinationDetails $urlDestinationDetails)
7124 7124
   {
7125
-    $this->urlDestinationDetails = $urlDestinationDetails;
7125
+	$this->urlDestinationDetails = $urlDestinationDetails;
7126 7126
   }
7127 7127
   public function getUrlDestinationDetails()
7128 7128
   {
7129
-    return $this->urlDestinationDetails;
7129
+	return $this->urlDestinationDetails;
7130 7130
   }
7131 7131
   public function setValue($value)
7132 7132
   {
7133
-    $this->value = $value;
7133
+	$this->value = $value;
7134 7134
   }
7135 7135
   public function getValue()
7136 7136
   {
7137
-    return $this->value;
7137
+	return $this->value;
7138 7138
   }
7139 7139
   public function setVisitNumPagesDetails(Google_Service_Analytics_GoalVisitNumPagesDetails $visitNumPagesDetails)
7140 7140
   {
7141
-    $this->visitNumPagesDetails = $visitNumPagesDetails;
7141
+	$this->visitNumPagesDetails = $visitNumPagesDetails;
7142 7142
   }
7143 7143
   public function getVisitNumPagesDetails()
7144 7144
   {
7145
-    return $this->visitNumPagesDetails;
7145
+	return $this->visitNumPagesDetails;
7146 7146
   }
7147 7147
   public function setVisitTimeOnSiteDetails(Google_Service_Analytics_GoalVisitTimeOnSiteDetails $visitTimeOnSiteDetails)
7148 7148
   {
7149
-    $this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails;
7149
+	$this->visitTimeOnSiteDetails = $visitTimeOnSiteDetails;
7150 7150
   }
7151 7151
   public function getVisitTimeOnSiteDetails()
7152 7152
   {
7153
-    return $this->visitTimeOnSiteDetails;
7153
+	return $this->visitTimeOnSiteDetails;
7154 7154
   }
7155 7155
   public function setWebPropertyId($webPropertyId)
7156 7156
   {
7157
-    $this->webPropertyId = $webPropertyId;
7157
+	$this->webPropertyId = $webPropertyId;
7158 7158
   }
7159 7159
   public function getWebPropertyId()
7160 7160
   {
7161
-    return $this->webPropertyId;
7161
+	return $this->webPropertyId;
7162 7162
   }
7163 7163
 }
7164 7164
 
@@ -7174,19 +7174,19 @@  discard block
 block discarded – undo
7174 7174
 
7175 7175
   public function setEventConditions($eventConditions)
7176 7176
   {
7177
-    $this->eventConditions = $eventConditions;
7177
+	$this->eventConditions = $eventConditions;
7178 7178
   }
7179 7179
   public function getEventConditions()
7180 7180
   {
7181
-    return $this->eventConditions;
7181
+	return $this->eventConditions;
7182 7182
   }
7183 7183
   public function setUseEventValue($useEventValue)
7184 7184
   {
7185
-    $this->useEventValue = $useEventValue;
7185
+	$this->useEventValue = $useEventValue;
7186 7186
   }
7187 7187
   public function getUseEventValue()
7188 7188
   {
7189
-    return $this->useEventValue;
7189
+	return $this->useEventValue;
7190 7190
   }
7191 7191
 }
7192 7192
 
@@ -7203,43 +7203,43 @@  discard block
 block discarded – undo
7203 7203
 
7204 7204
   public function setComparisonType($comparisonType)
7205 7205
   {
7206
-    $this->comparisonType = $comparisonType;
7206
+	$this->comparisonType = $comparisonType;
7207 7207
   }
7208 7208
   public function getComparisonType()
7209 7209
   {
7210
-    return $this->comparisonType;
7210
+	return $this->comparisonType;
7211 7211
   }
7212 7212
   public function setComparisonValue($comparisonValue)
7213 7213
   {
7214
-    $this->comparisonValue = $comparisonValue;
7214
+	$this->comparisonValue = $comparisonValue;
7215 7215
   }
7216 7216
   public function getComparisonValue()
7217 7217
   {
7218
-    return $this->comparisonValue;
7218
+	return $this->comparisonValue;
7219 7219
   }
7220 7220
   public function setExpression($expression)
7221 7221
   {
7222
-    $this->expression = $expression;
7222
+	$this->expression = $expression;
7223 7223
   }
7224 7224
   public function getExpression()
7225 7225
   {
7226
-    return $this->expression;
7226
+	return $this->expression;
7227 7227
   }
7228 7228
   public function setMatchType($matchType)
7229 7229
   {
7230
-    $this->matchType = $matchType;
7230
+	$this->matchType = $matchType;
7231 7231
   }
7232 7232
   public function getMatchType()
7233 7233
   {
7234
-    return $this->matchType;
7234
+	return $this->matchType;
7235 7235
   }
7236 7236
   public function setType($type)
7237 7237
   {
7238
-    $this->type = $type;
7238
+	$this->type = $type;
7239 7239
   }
7240 7240
   public function getType()
7241 7241
   {
7242
-    return $this->type;
7242
+	return $this->type;
7243 7243
   }
7244 7244
 }
7245 7245
 
@@ -7253,19 +7253,19 @@  discard block
 block discarded – undo
7253 7253
 
7254 7254
   public function setHref($href)
7255 7255
   {
7256
-    $this->href = $href;
7256
+	$this->href = $href;
7257 7257
   }
7258 7258
   public function getHref()
7259 7259
   {
7260
-    return $this->href;
7260
+	return $this->href;
7261 7261
   }
7262 7262
   public function setType($type)
7263 7263
   {
7264
-    $this->type = $type;
7264
+	$this->type = $type;
7265 7265
   }
7266 7266
   public function getType()
7267 7267
   {
7268
-    return $this->type;
7268
+	return $this->type;
7269 7269
   }
7270 7270
 }
7271 7271
 
@@ -7284,43 +7284,43 @@  discard block
 block discarded – undo
7284 7284
 
7285 7285
   public function setCaseSensitive($caseSensitive)
7286 7286
   {
7287
-    $this->caseSensitive = $caseSensitive;
7287
+	$this->caseSensitive = $caseSensitive;
7288 7288
   }
7289 7289
   public function getCaseSensitive()
7290 7290
   {
7291
-    return $this->caseSensitive;
7291
+	return $this->caseSensitive;
7292 7292
   }
7293 7293
   public function setFirstStepRequired($firstStepRequired)
7294 7294
   {
7295
-    $this->firstStepRequired = $firstStepRequired;
7295
+	$this->firstStepRequired = $firstStepRequired;
7296 7296
   }
7297 7297
   public function getFirstStepRequired()
7298 7298
   {
7299
-    return $this->firstStepRequired;
7299
+	return $this->firstStepRequired;
7300 7300
   }
7301 7301
   public function setMatchType($matchType)
7302 7302
   {
7303
-    $this->matchType = $matchType;
7303
+	$this->matchType = $matchType;
7304 7304
   }
7305 7305
   public function getMatchType()
7306 7306
   {
7307
-    return $this->matchType;
7307
+	return $this->matchType;
7308 7308
   }
7309 7309
   public function setSteps($steps)
7310 7310
   {
7311
-    $this->steps = $steps;
7311
+	$this->steps = $steps;
7312 7312
   }
7313 7313
   public function getSteps()
7314 7314
   {
7315
-    return $this->steps;
7315
+	return $this->steps;
7316 7316
   }
7317 7317
   public function setUrl($url)
7318 7318
   {
7319
-    $this->url = $url;
7319
+	$this->url = $url;
7320 7320
   }
7321 7321
   public function getUrl()
7322 7322
   {
7323
-    return $this->url;
7323
+	return $this->url;
7324 7324
   }
7325 7325
 }
7326 7326
 
@@ -7335,27 +7335,27 @@  discard block
 block discarded – undo
7335 7335
 
7336 7336
   public function setName($name)
7337 7337
   {
7338
-    $this->name = $name;
7338
+	$this->name = $name;
7339 7339
   }
7340 7340
   public function getName()
7341 7341
   {
7342
-    return $this->name;
7342
+	return $this->name;
7343 7343
   }
7344 7344
   public function setNumber($number)
7345 7345
   {
7346
-    $this->number = $number;
7346
+	$this->number = $number;
7347 7347
   }
7348 7348
   public function getNumber()
7349 7349
   {
7350
-    return $this->number;
7350
+	return $this->number;
7351 7351
   }
7352 7352
   public function setUrl($url)
7353 7353
   {
7354
-    $this->url = $url;
7354
+	$this->url = $url;
7355 7355
   }
7356 7356
   public function getUrl()
7357 7357
   {
7358
-    return $this->url;
7358
+	return $this->url;
7359 7359
   }
7360 7360
 }
7361 7361
 
@@ -7369,19 +7369,19 @@  discard block
 block discarded – undo
7369 7369
 
7370 7370
   public function setComparisonType($comparisonType)
7371 7371
   {
7372
-    $this->comparisonType = $comparisonType;
7372
+	$this->comparisonType = $comparisonType;
7373 7373
   }
7374 7374
   public function getComparisonType()
7375 7375
   {
7376
-    return $this->comparisonType;
7376
+	return $this->comparisonType;
7377 7377
   }
7378 7378
   public function setComparisonValue($comparisonValue)
7379 7379
   {
7380
-    $this->comparisonValue = $comparisonValue;
7380
+	$this->comparisonValue = $comparisonValue;
7381 7381
   }
7382 7382
   public function getComparisonValue()
7383 7383
   {
7384
-    return $this->comparisonValue;
7384
+	return $this->comparisonValue;
7385 7385
   }
7386 7386
 }
7387 7387
 
@@ -7395,19 +7395,19 @@  discard block
 block discarded – undo
7395 7395
 
7396 7396
   public function setComparisonType($comparisonType)
7397 7397
   {
7398
-    $this->comparisonType = $comparisonType;
7398
+	$this->comparisonType = $comparisonType;
7399 7399
   }
7400 7400
   public function getComparisonType()
7401 7401
   {
7402
-    return $this->comparisonType;
7402
+	return $this->comparisonType;
7403 7403
   }
7404 7404
   public function setComparisonValue($comparisonValue)
7405 7405
   {
7406
-    $this->comparisonValue = $comparisonValue;
7406
+	$this->comparisonValue = $comparisonValue;
7407 7407
   }
7408 7408
   public function getComparisonValue()
7409 7409
   {
7410
-    return $this->comparisonValue;
7410
+	return $this->comparisonValue;
7411 7411
   }
7412 7412
 }
7413 7413
 
@@ -7429,67 +7429,67 @@  discard block
 block discarded – undo
7429 7429
 
7430 7430
   public function setItems($items)
7431 7431
   {
7432
-    $this->items = $items;
7432
+	$this->items = $items;
7433 7433
   }
7434 7434
   public function getItems()
7435 7435
   {
7436
-    return $this->items;
7436
+	return $this->items;
7437 7437
   }
7438 7438
   public function setItemsPerPage($itemsPerPage)
7439 7439
   {
7440
-    $this->itemsPerPage = $itemsPerPage;
7440
+	$this->itemsPerPage = $itemsPerPage;
7441 7441
   }
7442 7442
   public function getItemsPerPage()
7443 7443
   {
7444
-    return $this->itemsPerPage;
7444
+	return $this->itemsPerPage;
7445 7445
   }
7446 7446
   public function setKind($kind)
7447 7447
   {
7448
-    $this->kind = $kind;
7448
+	$this->kind = $kind;
7449 7449
   }
7450 7450
   public function getKind()
7451 7451
   {
7452
-    return $this->kind;
7452
+	return $this->kind;
7453 7453
   }
7454 7454
   public function setNextLink($nextLink)
7455 7455
   {
7456
-    $this->nextLink = $nextLink;
7456
+	$this->nextLink = $nextLink;
7457 7457
   }
7458 7458
   public function getNextLink()
7459 7459
   {
7460
-    return $this->nextLink;
7460
+	return $this->nextLink;
7461 7461
   }
7462 7462
   public function setPreviousLink($previousLink)
7463 7463
   {
7464
-    $this->previousLink = $previousLink;
7464
+	$this->previousLink = $previousLink;
7465 7465
   }
7466 7466
   public function getPreviousLink()
7467 7467
   {
7468
-    return $this->previousLink;
7468
+	return $this->previousLink;
7469 7469
   }
7470 7470
   public function setStartIndex($startIndex)
7471 7471
   {
7472
-    $this->startIndex = $startIndex;
7472
+	$this->startIndex = $startIndex;
7473 7473
   }
7474 7474
   public function getStartIndex()
7475 7475
   {
7476
-    return $this->startIndex;
7476
+	return $this->startIndex;
7477 7477
   }
7478 7478
   public function setTotalResults($totalResults)
7479 7479
   {
7480
-    $this->totalResults = $totalResults;
7480
+	$this->totalResults = $totalResults;
7481 7481
   }
7482 7482
   public function getTotalResults()
7483 7483
   {
7484
-    return $this->totalResults;
7484
+	return $this->totalResults;
7485 7485
   }
7486 7486
   public function setUsername($username)
7487 7487
   {
7488
-    $this->username = $username;
7488
+	$this->username = $username;
7489 7489
   }
7490 7490
   public function getUsername()
7491 7491
   {
7492
-    return $this->username;
7492
+	return $this->username;
7493 7493
   }
7494 7494
 }
7495 7495
 
@@ -7521,123 +7521,123 @@  discard block
 block discarded – undo
7521 7521
 
7522 7522
   public function setColumnHeaders($columnHeaders)
7523 7523
   {
7524
-    $this->columnHeaders = $columnHeaders;
7524
+	$this->columnHeaders = $columnHeaders;
7525 7525
   }
7526 7526
   public function getColumnHeaders()
7527 7527
   {
7528
-    return $this->columnHeaders;
7528
+	return $this->columnHeaders;
7529 7529
   }
7530 7530
   public function setContainsSampledData($containsSampledData)
7531 7531
   {
7532
-    $this->containsSampledData = $containsSampledData;
7532
+	$this->containsSampledData = $containsSampledData;
7533 7533
   }
7534 7534
   public function getContainsSampledData()
7535 7535
   {
7536
-    return $this->containsSampledData;
7536
+	return $this->containsSampledData;
7537 7537
   }
7538 7538
   public function setId($id)
7539 7539
   {
7540
-    $this->id = $id;
7540
+	$this->id = $id;
7541 7541
   }
7542 7542
   public function getId()
7543 7543
   {
7544
-    return $this->id;
7544
+	return $this->id;
7545 7545
   }
7546 7546
   public function setItemsPerPage($itemsPerPage)
7547 7547
   {
7548
-    $this->itemsPerPage = $itemsPerPage;
7548
+	$this->itemsPerPage = $itemsPerPage;
7549 7549
   }
7550 7550
   public function getItemsPerPage()
7551 7551
   {
7552
-    return $this->itemsPerPage;
7552
+	return $this->itemsPerPage;
7553 7553
   }
7554 7554
   public function setKind($kind)
7555 7555
   {
7556
-    $this->kind = $kind;
7556
+	$this->kind = $kind;
7557 7557
   }
7558 7558
   public function getKind()
7559 7559
   {
7560
-    return $this->kind;
7560
+	return $this->kind;
7561 7561
   }
7562 7562
   public function setNextLink($nextLink)
7563 7563
   {
7564
-    $this->nextLink = $nextLink;
7564
+	$this->nextLink = $nextLink;
7565 7565
   }
7566 7566
   public function getNextLink()
7567 7567
   {
7568
-    return $this->nextLink;
7568
+	return $this->nextLink;
7569 7569
   }
7570 7570
   public function setPreviousLink($previousLink)
7571 7571
   {
7572
-    $this->previousLink = $previousLink;
7572
+	$this->previousLink = $previousLink;
7573 7573
   }
7574 7574
   public function getPreviousLink()
7575 7575
   {
7576
-    return $this->previousLink;
7576
+	return $this->previousLink;
7577 7577
   }
7578 7578
   public function setProfileInfo(Google_Service_Analytics_McfDataProfileInfo $profileInfo)
7579 7579
   {
7580
-    $this->profileInfo = $profileInfo;
7580
+	$this->profileInfo = $profileInfo;
7581 7581
   }
7582 7582
   public function getProfileInfo()
7583 7583
   {
7584
-    return $this->profileInfo;
7584
+	return $this->profileInfo;
7585 7585
   }
7586 7586
   public function setQuery(Google_Service_Analytics_McfDataQuery $query)
7587 7587
   {
7588
-    $this->query = $query;
7588
+	$this->query = $query;
7589 7589
   }
7590 7590
   public function getQuery()
7591 7591
   {
7592
-    return $this->query;
7592
+	return $this->query;
7593 7593
   }
7594 7594
   public function setRows($rows)
7595 7595
   {
7596
-    $this->rows = $rows;
7596
+	$this->rows = $rows;
7597 7597
   }
7598 7598
   public function getRows()
7599 7599
   {
7600
-    return $this->rows;
7600
+	return $this->rows;
7601 7601
   }
7602 7602
   public function setSampleSize($sampleSize)
7603 7603
   {
7604
-    $this->sampleSize = $sampleSize;
7604
+	$this->sampleSize = $sampleSize;
7605 7605
   }
7606 7606
   public function getSampleSize()
7607 7607
   {
7608
-    return $this->sampleSize;
7608
+	return $this->sampleSize;
7609 7609
   }
7610 7610
   public function setSampleSpace($sampleSpace)
7611 7611
   {
7612
-    $this->sampleSpace = $sampleSpace;
7612
+	$this->sampleSpace = $sampleSpace;
7613 7613
   }
7614 7614
   public function getSampleSpace()
7615 7615
   {
7616
-    return $this->sampleSpace;
7616
+	return $this->sampleSpace;
7617 7617
   }
7618 7618
   public function setSelfLink($selfLink)
7619 7619
   {
7620
-    $this->selfLink = $selfLink;
7620
+	$this->selfLink = $selfLink;
7621 7621
   }
7622 7622
   public function getSelfLink()
7623 7623
   {
7624
-    return $this->selfLink;
7624
+	return $this->selfLink;
7625 7625
   }
7626 7626
   public function setTotalResults($totalResults)
7627 7627
   {
7628
-    $this->totalResults = $totalResults;
7628
+	$this->totalResults = $totalResults;
7629 7629
   }
7630 7630
   public function getTotalResults()
7631 7631
   {
7632
-    return $this->totalResults;
7632
+	return $this->totalResults;
7633 7633
   }
7634 7634
   public function setTotalsForAllResults($totalsForAllResults)
7635 7635
   {
7636
-    $this->totalsForAllResults = $totalsForAllResults;
7636
+	$this->totalsForAllResults = $totalsForAllResults;
7637 7637
   }
7638 7638
   public function getTotalsForAllResults()
7639 7639
   {
7640
-    return $this->totalsForAllResults;
7640
+	return $this->totalsForAllResults;
7641 7641
   }
7642 7642
 }
7643 7643
 
@@ -7652,27 +7652,27 @@  discard block
 block discarded – undo
7652 7652
 
7653 7653
   public function setColumnType($columnType)
7654 7654
   {
7655
-    $this->columnType = $columnType;
7655
+	$this->columnType = $columnType;
7656 7656
   }
7657 7657
   public function getColumnType()
7658 7658
   {
7659
-    return $this->columnType;
7659
+	return $this->columnType;
7660 7660
   }
7661 7661
   public function setDataType($dataType)
7662 7662
   {
7663
-    $this->dataType = $dataType;
7663
+	$this->dataType = $dataType;
7664 7664
   }
7665 7665
   public function getDataType()
7666 7666
   {
7667
-    return $this->dataType;
7667
+	return $this->dataType;
7668 7668
   }
7669 7669
   public function setName($name)
7670 7670
   {
7671
-    $this->name = $name;
7671
+	$this->name = $name;
7672 7672
   }
7673 7673
   public function getName()
7674 7674
   {
7675
-    return $this->name;
7675
+	return $this->name;
7676 7676
   }
7677 7677
 }
7678 7678
 
@@ -7690,51 +7690,51 @@  discard block
 block discarded – undo
7690 7690
 
7691 7691
   public function setAccountId($accountId)
7692 7692
   {
7693
-    $this->accountId = $accountId;
7693
+	$this->accountId = $accountId;
7694 7694
   }
7695 7695
   public function getAccountId()
7696 7696
   {
7697
-    return $this->accountId;
7697
+	return $this->accountId;
7698 7698
   }
7699 7699
   public function setInternalWebPropertyId($internalWebPropertyId)
7700 7700
   {
7701
-    $this->internalWebPropertyId = $internalWebPropertyId;
7701
+	$this->internalWebPropertyId = $internalWebPropertyId;
7702 7702
   }
7703 7703
   public function getInternalWebPropertyId()
7704 7704
   {
7705
-    return $this->internalWebPropertyId;
7705
+	return $this->internalWebPropertyId;
7706 7706
   }
7707 7707
   public function setProfileId($profileId)
7708 7708
   {
7709
-    $this->profileId = $profileId;
7709
+	$this->profileId = $profileId;
7710 7710
   }
7711 7711
   public function getProfileId()
7712 7712
   {
7713
-    return $this->profileId;
7713
+	return $this->profileId;
7714 7714
   }
7715 7715
   public function setProfileName($profileName)
7716 7716
   {
7717
-    $this->profileName = $profileName;
7717
+	$this->profileName = $profileName;
7718 7718
   }
7719 7719
   public function getProfileName()
7720 7720
   {
7721
-    return $this->profileName;
7721
+	return $this->profileName;
7722 7722
   }
7723 7723
   public function setTableId($tableId)
7724 7724
   {
7725
-    $this->tableId = $tableId;
7725
+	$this->tableId = $tableId;
7726 7726
   }
7727 7727
   public function getTableId()
7728 7728
   {
7729
-    return $this->tableId;
7729
+	return $this->tableId;
7730 7730
   }
7731 7731
   public function setWebPropertyId($webPropertyId)
7732 7732
   {
7733
-    $this->webPropertyId = $webPropertyId;
7733
+	$this->webPropertyId = $webPropertyId;
7734 7734
   }
7735 7735
   public function getWebPropertyId()
7736 7736
   {
7737
-    return $this->webPropertyId;
7737
+	return $this->webPropertyId;
7738 7738
   }
7739 7739
 }
7740 7740
 
@@ -7742,10 +7742,10 @@  discard block
 block discarded – undo
7742 7742
 {
7743 7743
   protected $collection_key = 'sort';
7744 7744
   protected $internal_gapi_mappings = array(
7745
-        "endDate" => "end-date",
7746
-        "maxResults" => "max-results",
7747
-        "startDate" => "start-date",
7748
-        "startIndex" => "start-index",
7745
+		"endDate" => "end-date",
7746
+		"maxResults" => "max-results",
7747
+		"startDate" => "start-date",
7748
+		"startIndex" => "start-index",
7749 7749
   );
7750 7750
   public $dimensions;
7751 7751
   public $endDate;
@@ -7762,91 +7762,91 @@  discard block
 block discarded – undo
7762 7762
 
7763 7763
   public function setDimensions($dimensions)
7764 7764
   {
7765
-    $this->dimensions = $dimensions;
7765
+	$this->dimensions = $dimensions;
7766 7766
   }
7767 7767
   public function getDimensions()
7768 7768
   {
7769
-    return $this->dimensions;
7769
+	return $this->dimensions;
7770 7770
   }
7771 7771
   public function setEndDate($endDate)
7772 7772
   {
7773
-    $this->endDate = $endDate;
7773
+	$this->endDate = $endDate;
7774 7774
   }
7775 7775
   public function getEndDate()
7776 7776
   {
7777
-    return $this->endDate;
7777
+	return $this->endDate;
7778 7778
   }
7779 7779
   public function setFilters($filters)
7780 7780
   {
7781
-    $this->filters = $filters;
7781
+	$this->filters = $filters;
7782 7782
   }
7783 7783
   public function getFilters()
7784 7784
   {
7785
-    return $this->filters;
7785
+	return $this->filters;
7786 7786
   }
7787 7787
   public function setIds($ids)
7788 7788
   {
7789
-    $this->ids = $ids;
7789
+	$this->ids = $ids;
7790 7790
   }
7791 7791
   public function getIds()
7792 7792
   {
7793
-    return $this->ids;
7793
+	return $this->ids;
7794 7794
   }
7795 7795
   public function setMaxResults($maxResults)
7796 7796
   {
7797
-    $this->maxResults = $maxResults;
7797
+	$this->maxResults = $maxResults;
7798 7798
   }
7799 7799
   public function getMaxResults()
7800 7800
   {
7801
-    return $this->maxResults;
7801
+	return $this->maxResults;
7802 7802
   }
7803 7803
   public function setMetrics($metrics)
7804 7804
   {
7805
-    $this->metrics = $metrics;
7805
+	$this->metrics = $metrics;
7806 7806
   }
7807 7807
   public function getMetrics()
7808 7808
   {
7809
-    return $this->metrics;
7809
+	return $this->metrics;
7810 7810
   }
7811 7811
   public function setSamplingLevel($samplingLevel)
7812 7812
   {
7813
-    $this->samplingLevel = $samplingLevel;
7813
+	$this->samplingLevel = $samplingLevel;
7814 7814
   }
7815 7815
   public function getSamplingLevel()
7816 7816
   {
7817
-    return $this->samplingLevel;
7817
+	return $this->samplingLevel;
7818 7818
   }
7819 7819
   public function setSegment($segment)
7820 7820
   {
7821
-    $this->segment = $segment;
7821
+	$this->segment = $segment;
7822 7822
   }
7823 7823
   public function getSegment()
7824 7824
   {
7825
-    return $this->segment;
7825
+	return $this->segment;
7826 7826
   }
7827 7827
   public function setSort($sort)
7828 7828
   {
7829
-    $this->sort = $sort;
7829
+	$this->sort = $sort;
7830 7830
   }
7831 7831
   public function getSort()
7832 7832
   {
7833
-    return $this->sort;
7833
+	return $this->sort;
7834 7834
   }
7835 7835
   public function setStartDate($startDate)
7836 7836
   {
7837
-    $this->startDate = $startDate;
7837
+	$this->startDate = $startDate;
7838 7838
   }
7839 7839
   public function getStartDate()
7840 7840
   {
7841
-    return $this->startDate;
7841
+	return $this->startDate;
7842 7842
   }
7843 7843
   public function setStartIndex($startIndex)
7844 7844
   {
7845
-    $this->startIndex = $startIndex;
7845
+	$this->startIndex = $startIndex;
7846 7846
   }
7847 7847
   public function getStartIndex()
7848 7848
   {
7849
-    return $this->startIndex;
7849
+	return $this->startIndex;
7850 7850
   }
7851 7851
 }
7852 7852
 
@@ -7862,19 +7862,19 @@  discard block
 block discarded – undo
7862 7862
 
7863 7863
   public function setConversionPathValue($conversionPathValue)
7864 7864
   {
7865
-    $this->conversionPathValue = $conversionPathValue;
7865
+	$this->conversionPathValue = $conversionPathValue;
7866 7866
   }
7867 7867
   public function getConversionPathValue()
7868 7868
   {
7869
-    return $this->conversionPathValue;
7869
+	return $this->conversionPathValue;
7870 7870
   }
7871 7871
   public function setPrimitiveValue($primitiveValue)
7872 7872
   {
7873
-    $this->primitiveValue = $primitiveValue;
7873
+	$this->primitiveValue = $primitiveValue;
7874 7874
   }
7875 7875
   public function getPrimitiveValue()
7876 7876
   {
7877
-    return $this->primitiveValue;
7877
+	return $this->primitiveValue;
7878 7878
   }
7879 7879
 }
7880 7880
 
@@ -7888,19 +7888,19 @@  discard block
 block discarded – undo
7888 7888
 
7889 7889
   public function setInteractionType($interactionType)
7890 7890
   {
7891
-    $this->interactionType = $interactionType;
7891
+	$this->interactionType = $interactionType;
7892 7892
   }
7893 7893
   public function getInteractionType()
7894 7894
   {
7895
-    return $this->interactionType;
7895
+	return $this->interactionType;
7896 7896
   }
7897 7897
   public function setNodeValue($nodeValue)
7898 7898
   {
7899
-    $this->nodeValue = $nodeValue;
7899
+	$this->nodeValue = $nodeValue;
7900 7900
   }
7901 7901
   public function getNodeValue()
7902 7902
   {
7903
-    return $this->nodeValue;
7903
+	return $this->nodeValue;
7904 7904
   }
7905 7905
 }
7906 7906
 
@@ -7943,195 +7943,195 @@  discard block
 block discarded – undo
7943 7943
 
7944 7944
   public function setAccountId($accountId)
7945 7945
   {
7946
-    $this->accountId = $accountId;
7946
+	$this->accountId = $accountId;
7947 7947
   }
7948 7948
   public function getAccountId()
7949 7949
   {
7950
-    return $this->accountId;
7950
+	return $this->accountId;
7951 7951
   }
7952 7952
   public function setChildLink(Google_Service_Analytics_ProfileChildLink $childLink)
7953 7953
   {
7954
-    $this->childLink = $childLink;
7954
+	$this->childLink = $childLink;
7955 7955
   }
7956 7956
   public function getChildLink()
7957 7957
   {
7958
-    return $this->childLink;
7958
+	return $this->childLink;
7959 7959
   }
7960 7960
   public function setCreated($created)
7961 7961
   {
7962
-    $this->created = $created;
7962
+	$this->created = $created;
7963 7963
   }
7964 7964
   public function getCreated()
7965 7965
   {
7966
-    return $this->created;
7966
+	return $this->created;
7967 7967
   }
7968 7968
   public function setCurrency($currency)
7969 7969
   {
7970
-    $this->currency = $currency;
7970
+	$this->currency = $currency;
7971 7971
   }
7972 7972
   public function getCurrency()
7973 7973
   {
7974
-    return $this->currency;
7974
+	return $this->currency;
7975 7975
   }
7976 7976
   public function setDefaultPage($defaultPage)
7977 7977
   {
7978
-    $this->defaultPage = $defaultPage;
7978
+	$this->defaultPage = $defaultPage;
7979 7979
   }
7980 7980
   public function getDefaultPage()
7981 7981
   {
7982
-    return $this->defaultPage;
7982
+	return $this->defaultPage;
7983 7983
   }
7984 7984
   public function setECommerceTracking($eCommerceTracking)
7985 7985
   {
7986
-    $this->eCommerceTracking = $eCommerceTracking;
7986
+	$this->eCommerceTracking = $eCommerceTracking;
7987 7987
   }
7988 7988
   public function getECommerceTracking()
7989 7989
   {
7990
-    return $this->eCommerceTracking;
7990
+	return $this->eCommerceTracking;
7991 7991
   }
7992 7992
   public function setEnhancedECommerceTracking($enhancedECommerceTracking)
7993 7993
   {
7994
-    $this->enhancedECommerceTracking = $enhancedECommerceTracking;
7994
+	$this->enhancedECommerceTracking = $enhancedECommerceTracking;
7995 7995
   }
7996 7996
   public function getEnhancedECommerceTracking()
7997 7997
   {
7998
-    return $this->enhancedECommerceTracking;
7998
+	return $this->enhancedECommerceTracking;
7999 7999
   }
8000 8000
   public function setExcludeQueryParameters($excludeQueryParameters)
8001 8001
   {
8002
-    $this->excludeQueryParameters = $excludeQueryParameters;
8002
+	$this->excludeQueryParameters = $excludeQueryParameters;
8003 8003
   }
8004 8004
   public function getExcludeQueryParameters()
8005 8005
   {
8006
-    return $this->excludeQueryParameters;
8006
+	return $this->excludeQueryParameters;
8007 8007
   }
8008 8008
   public function setId($id)
8009 8009
   {
8010
-    $this->id = $id;
8010
+	$this->id = $id;
8011 8011
   }
8012 8012
   public function getId()
8013 8013
   {
8014
-    return $this->id;
8014
+	return $this->id;
8015 8015
   }
8016 8016
   public function setInternalWebPropertyId($internalWebPropertyId)
8017 8017
   {
8018
-    $this->internalWebPropertyId = $internalWebPropertyId;
8018
+	$this->internalWebPropertyId = $internalWebPropertyId;
8019 8019
   }
8020 8020
   public function getInternalWebPropertyId()
8021 8021
   {
8022
-    return $this->internalWebPropertyId;
8022
+	return $this->internalWebPropertyId;
8023 8023
   }
8024 8024
   public function setKind($kind)
8025 8025
   {
8026
-    $this->kind = $kind;
8026
+	$this->kind = $kind;
8027 8027
   }
8028 8028
   public function getKind()
8029 8029
   {
8030
-    return $this->kind;
8030
+	return $this->kind;
8031 8031
   }
8032 8032
   public function setName($name)
8033 8033
   {
8034
-    $this->name = $name;
8034
+	$this->name = $name;
8035 8035
   }
8036 8036
   public function getName()
8037 8037
   {
8038
-    return $this->name;
8038
+	return $this->name;
8039 8039
   }
8040 8040
   public function setParentLink(Google_Service_Analytics_ProfileParentLink $parentLink)
8041 8041
   {
8042
-    $this->parentLink = $parentLink;
8042
+	$this->parentLink = $parentLink;
8043 8043
   }
8044 8044
   public function getParentLink()
8045 8045
   {
8046
-    return $this->parentLink;
8046
+	return $this->parentLink;
8047 8047
   }
8048 8048
   public function setPermissions(Google_Service_Analytics_ProfilePermissions $permissions)
8049 8049
   {
8050
-    $this->permissions = $permissions;
8050
+	$this->permissions = $permissions;
8051 8051
   }
8052 8052
   public function getPermissions()
8053 8053
   {
8054
-    return $this->permissions;
8054
+	return $this->permissions;
8055 8055
   }
8056 8056
   public function setSelfLink($selfLink)
8057 8057
   {
8058
-    $this->selfLink = $selfLink;
8058
+	$this->selfLink = $selfLink;
8059 8059
   }
8060 8060
   public function getSelfLink()
8061 8061
   {
8062
-    return $this->selfLink;
8062
+	return $this->selfLink;
8063 8063
   }
8064 8064
   public function setSiteSearchCategoryParameters($siteSearchCategoryParameters)
8065 8065
   {
8066
-    $this->siteSearchCategoryParameters = $siteSearchCategoryParameters;
8066
+	$this->siteSearchCategoryParameters = $siteSearchCategoryParameters;
8067 8067
   }
8068 8068
   public function getSiteSearchCategoryParameters()
8069 8069
   {
8070
-    return $this->siteSearchCategoryParameters;
8070
+	return $this->siteSearchCategoryParameters;
8071 8071
   }
8072 8072
   public function setSiteSearchQueryParameters($siteSearchQueryParameters)
8073 8073
   {
8074
-    $this->siteSearchQueryParameters = $siteSearchQueryParameters;
8074
+	$this->siteSearchQueryParameters = $siteSearchQueryParameters;
8075 8075
   }
8076 8076
   public function getSiteSearchQueryParameters()
8077 8077
   {
8078
-    return $this->siteSearchQueryParameters;
8078
+	return $this->siteSearchQueryParameters;
8079 8079
   }
8080 8080
   public function setStripSiteSearchCategoryParameters($stripSiteSearchCategoryParameters)
8081 8081
   {
8082
-    $this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters;
8082
+	$this->stripSiteSearchCategoryParameters = $stripSiteSearchCategoryParameters;
8083 8083
   }
8084 8084
   public function getStripSiteSearchCategoryParameters()
8085 8085
   {
8086
-    return $this->stripSiteSearchCategoryParameters;
8086
+	return $this->stripSiteSearchCategoryParameters;
8087 8087
   }
8088 8088
   public function setStripSiteSearchQueryParameters($stripSiteSearchQueryParameters)
8089 8089
   {
8090
-    $this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters;
8090
+	$this->stripSiteSearchQueryParameters = $stripSiteSearchQueryParameters;
8091 8091
   }
8092 8092
   public function getStripSiteSearchQueryParameters()
8093 8093
   {
8094
-    return $this->stripSiteSearchQueryParameters;
8094
+	return $this->stripSiteSearchQueryParameters;
8095 8095
   }
8096 8096
   public function setTimezone($timezone)
8097 8097
   {
8098
-    $this->timezone = $timezone;
8098
+	$this->timezone = $timezone;
8099 8099
   }
8100 8100
   public function getTimezone()
8101 8101
   {
8102
-    return $this->timezone;
8102
+	return $this->timezone;
8103 8103
   }
8104 8104
   public function setType($type)
8105 8105
   {
8106
-    $this->type = $type;
8106
+	$this->type = $type;
8107 8107
   }
8108 8108
   public function getType()
8109 8109
   {
8110
-    return $this->type;
8110
+	return $this->type;
8111 8111
   }
8112 8112
   public function setUpdated($updated)
8113 8113
   {
8114
-    $this->updated = $updated;
8114
+	$this->updated = $updated;
8115 8115
   }
8116 8116
   public function getUpdated()
8117 8117
   {
8118
-    return $this->updated;
8118
+	return $this->updated;
8119 8119
   }
8120 8120
   public function setWebPropertyId($webPropertyId)
8121 8121
   {
8122
-    $this->webPropertyId = $webPropertyId;
8122
+	$this->webPropertyId = $webPropertyId;
8123 8123
   }
8124 8124
   public function getWebPropertyId()
8125 8125
   {
8126
-    return $this->webPropertyId;
8126
+	return $this->webPropertyId;
8127 8127
   }
8128 8128
   public function setWebsiteUrl($websiteUrl)
8129 8129
   {
8130
-    $this->websiteUrl = $websiteUrl;
8130
+	$this->websiteUrl = $websiteUrl;
8131 8131
   }
8132 8132
   public function getWebsiteUrl()
8133 8133
   {
8134
-    return $this->websiteUrl;
8134
+	return $this->websiteUrl;
8135 8135
   }
8136 8136
 }
8137 8137
 
@@ -8145,19 +8145,19 @@  discard block
 block discarded – undo
8145 8145
 
8146 8146
   public function setHref($href)
8147 8147
   {
8148
-    $this->href = $href;
8148
+	$this->href = $href;
8149 8149
   }
8150 8150
   public function getHref()
8151 8151
   {
8152
-    return $this->href;
8152
+	return $this->href;
8153 8153
   }
8154 8154
   public function setType($type)
8155 8155
   {
8156
-    $this->type = $type;
8156
+	$this->type = $type;
8157 8157
   }
8158 8158
   public function getType()
8159 8159
   {
8160
-    return $this->type;
8160
+	return $this->type;
8161 8161
   }
8162 8162
 }
8163 8163
 
@@ -8177,51 +8177,51 @@  discard block
 block discarded – undo
8177 8177
 
8178 8178
   public function setFilterRef(Google_Service_Analytics_FilterRef $filterRef)
8179 8179
   {
8180
-    $this->filterRef = $filterRef;
8180
+	$this->filterRef = $filterRef;
8181 8181
   }
8182 8182
   public function getFilterRef()
8183 8183
   {
8184
-    return $this->filterRef;
8184
+	return $this->filterRef;
8185 8185
   }
8186 8186
   public function setId($id)
8187 8187
   {
8188
-    $this->id = $id;
8188
+	$this->id = $id;
8189 8189
   }
8190 8190
   public function getId()
8191 8191
   {
8192
-    return $this->id;
8192
+	return $this->id;
8193 8193
   }
8194 8194
   public function setKind($kind)
8195 8195
   {
8196
-    $this->kind = $kind;
8196
+	$this->kind = $kind;
8197 8197
   }
8198 8198
   public function getKind()
8199 8199
   {
8200
-    return $this->kind;
8200
+	return $this->kind;
8201 8201
   }
8202 8202
   public function setProfileRef(Google_Service_Analytics_ProfileRef $profileRef)
8203 8203
   {
8204
-    $this->profileRef = $profileRef;
8204
+	$this->profileRef = $profileRef;
8205 8205
   }
8206 8206
   public function getProfileRef()
8207 8207
   {
8208
-    return $this->profileRef;
8208
+	return $this->profileRef;
8209 8209
   }
8210 8210
   public function setRank($rank)
8211 8211
   {
8212
-    $this->rank = $rank;
8212
+	$this->rank = $rank;
8213 8213
   }
8214 8214
   public function getRank()
8215 8215
   {
8216
-    return $this->rank;
8216
+	return $this->rank;
8217 8217
   }
8218 8218
   public function setSelfLink($selfLink)
8219 8219
   {
8220
-    $this->selfLink = $selfLink;
8220
+	$this->selfLink = $selfLink;
8221 8221
   }
8222 8222
   public function getSelfLink()
8223 8223
   {
8224
-    return $this->selfLink;
8224
+	return $this->selfLink;
8225 8225
   }
8226 8226
 }
8227 8227
 
@@ -8243,67 +8243,67 @@  discard block
 block discarded – undo
8243 8243
 
8244 8244
   public function setItems($items)
8245 8245
   {
8246
-    $this->items = $items;
8246
+	$this->items = $items;
8247 8247
   }
8248 8248
   public function getItems()
8249 8249
   {
8250
-    return $this->items;
8250
+	return $this->items;
8251 8251
   }
8252 8252
   public function setItemsPerPage($itemsPerPage)
8253 8253
   {
8254
-    $this->itemsPerPage = $itemsPerPage;
8254
+	$this->itemsPerPage = $itemsPerPage;
8255 8255
   }
8256 8256
   public function getItemsPerPage()
8257 8257
   {
8258
-    return $this->itemsPerPage;
8258
+	return $this->itemsPerPage;
8259 8259
   }
8260 8260
   public function setKind($kind)
8261 8261
   {
8262
-    $this->kind = $kind;
8262
+	$this->kind = $kind;
8263 8263
   }
8264 8264
   public function getKind()
8265 8265
   {
8266
-    return $this->kind;
8266
+	return $this->kind;
8267 8267
   }
8268 8268
   public function setNextLink($nextLink)
8269 8269
   {
8270
-    $this->nextLink = $nextLink;
8270
+	$this->nextLink = $nextLink;
8271 8271
   }
8272 8272
   public function getNextLink()
8273 8273
   {
8274
-    return $this->nextLink;
8274
+	return $this->nextLink;
8275 8275
   }
8276 8276
   public function setPreviousLink($previousLink)
8277 8277
   {
8278
-    $this->previousLink = $previousLink;
8278
+	$this->previousLink = $previousLink;
8279 8279
   }
8280 8280
   public function getPreviousLink()
8281 8281
   {
8282
-    return $this->previousLink;
8282
+	return $this->previousLink;
8283 8283
   }
8284 8284
   public function setStartIndex($startIndex)
8285 8285
   {
8286
-    $this->startIndex = $startIndex;
8286
+	$this->startIndex = $startIndex;
8287 8287
   }
8288 8288
   public function getStartIndex()
8289 8289
   {
8290
-    return $this->startIndex;
8290
+	return $this->startIndex;
8291 8291
   }
8292 8292
   public function setTotalResults($totalResults)
8293 8293
   {
8294
-    $this->totalResults = $totalResults;
8294
+	$this->totalResults = $totalResults;
8295 8295
   }
8296 8296
   public function getTotalResults()
8297 8297
   {
8298
-    return $this->totalResults;
8298
+	return $this->totalResults;
8299 8299
   }
8300 8300
   public function setUsername($username)
8301 8301
   {
8302
-    $this->username = $username;
8302
+	$this->username = $username;
8303 8303
   }
8304 8304
   public function getUsername()
8305 8305
   {
8306
-    return $this->username;
8306
+	return $this->username;
8307 8307
   }
8308 8308
 }
8309 8309
 
@@ -8317,19 +8317,19 @@  discard block
 block discarded – undo
8317 8317
 
8318 8318
   public function setHref($href)
8319 8319
   {
8320
-    $this->href = $href;
8320
+	$this->href = $href;
8321 8321
   }
8322 8322
   public function getHref()
8323 8323
   {
8324
-    return $this->href;
8324
+	return $this->href;
8325 8325
   }
8326 8326
   public function setType($type)
8327 8327
   {
8328
-    $this->type = $type;
8328
+	$this->type = $type;
8329 8329
   }
8330 8330
   public function getType()
8331 8331
   {
8332
-    return $this->type;
8332
+	return $this->type;
8333 8333
   }
8334 8334
 }
8335 8335
 
@@ -8343,11 +8343,11 @@  discard block
 block discarded – undo
8343 8343
 
8344 8344
   public function setEffective($effective)
8345 8345
   {
8346
-    $this->effective = $effective;
8346
+	$this->effective = $effective;
8347 8347
   }
8348 8348
   public function getEffective()
8349 8349
   {
8350
-    return $this->effective;
8350
+	return $this->effective;
8351 8351
   }
8352 8352
 }
8353 8353
 
@@ -8366,59 +8366,59 @@  discard block
 block discarded – undo
8366 8366
 
8367 8367
   public function setAccountId($accountId)
8368 8368
   {
8369
-    $this->accountId = $accountId;
8369
+	$this->accountId = $accountId;
8370 8370
   }
8371 8371
   public function getAccountId()
8372 8372
   {
8373
-    return $this->accountId;
8373
+	return $this->accountId;
8374 8374
   }
8375 8375
   public function setHref($href)
8376 8376
   {
8377
-    $this->href = $href;
8377
+	$this->href = $href;
8378 8378
   }
8379 8379
   public function getHref()
8380 8380
   {
8381
-    return $this->href;
8381
+	return $this->href;
8382 8382
   }
8383 8383
   public function setId($id)
8384 8384
   {
8385
-    $this->id = $id;
8385
+	$this->id = $id;
8386 8386
   }
8387 8387
   public function getId()
8388 8388
   {
8389
-    return $this->id;
8389
+	return $this->id;
8390 8390
   }
8391 8391
   public function setInternalWebPropertyId($internalWebPropertyId)
8392 8392
   {
8393
-    $this->internalWebPropertyId = $internalWebPropertyId;
8393
+	$this->internalWebPropertyId = $internalWebPropertyId;
8394 8394
   }
8395 8395
   public function getInternalWebPropertyId()
8396 8396
   {
8397
-    return $this->internalWebPropertyId;
8397
+	return $this->internalWebPropertyId;
8398 8398
   }
8399 8399
   public function setKind($kind)
8400 8400
   {
8401
-    $this->kind = $kind;
8401
+	$this->kind = $kind;
8402 8402
   }
8403 8403
   public function getKind()
8404 8404
   {
8405
-    return $this->kind;
8405
+	return $this->kind;
8406 8406
   }
8407 8407
   public function setName($name)
8408 8408
   {
8409
-    $this->name = $name;
8409
+	$this->name = $name;
8410 8410
   }
8411 8411
   public function getName()
8412 8412
   {
8413
-    return $this->name;
8413
+	return $this->name;
8414 8414
   }
8415 8415
   public function setWebPropertyId($webPropertyId)
8416 8416
   {
8417
-    $this->webPropertyId = $webPropertyId;
8417
+	$this->webPropertyId = $webPropertyId;
8418 8418
   }
8419 8419
   public function getWebPropertyId()
8420 8420
   {
8421
-    return $this->webPropertyId;
8421
+	return $this->webPropertyId;
8422 8422
   }
8423 8423
 }
8424 8424
 
@@ -8434,35 +8434,35 @@  discard block
 block discarded – undo
8434 8434
 
8435 8435
   public function setId($id)
8436 8436
   {
8437
-    $this->id = $id;
8437
+	$this->id = $id;
8438 8438
   }
8439 8439
   public function getId()
8440 8440
   {
8441
-    return $this->id;
8441
+	return $this->id;
8442 8442
   }
8443 8443
   public function setKind($kind)
8444 8444
   {
8445
-    $this->kind = $kind;
8445
+	$this->kind = $kind;
8446 8446
   }
8447 8447
   public function getKind()
8448 8448
   {
8449
-    return $this->kind;
8449
+	return $this->kind;
8450 8450
   }
8451 8451
   public function setName($name)
8452 8452
   {
8453
-    $this->name = $name;
8453
+	$this->name = $name;
8454 8454
   }
8455 8455
   public function getName()
8456 8456
   {
8457
-    return $this->name;
8457
+	return $this->name;
8458 8458
   }
8459 8459
   public function setType($type)
8460 8460
   {
8461
-    $this->type = $type;
8461
+	$this->type = $type;
8462 8462
   }
8463 8463
   public function getType()
8464 8464
   {
8465
-    return $this->type;
8465
+	return $this->type;
8466 8466
   }
8467 8467
 }
8468 8468
 
@@ -8484,67 +8484,67 @@  discard block
 block discarded – undo
8484 8484
 
8485 8485
   public function setItems($items)
8486 8486
   {
8487
-    $this->items = $items;
8487
+	$this->items = $items;
8488 8488
   }
8489 8489
   public function getItems()
8490 8490
   {
8491
-    return $this->items;
8491
+	return $this->items;
8492 8492
   }
8493 8493
   public function setItemsPerPage($itemsPerPage)
8494 8494
   {
8495
-    $this->itemsPerPage = $itemsPerPage;
8495
+	$this->itemsPerPage = $itemsPerPage;
8496 8496
   }
8497 8497
   public function getItemsPerPage()
8498 8498
   {
8499
-    return $this->itemsPerPage;
8499
+	return $this->itemsPerPage;
8500 8500
   }
8501 8501
   public function setKind($kind)
8502 8502
   {
8503
-    $this->kind = $kind;
8503
+	$this->kind = $kind;
8504 8504
   }
8505 8505
   public function getKind()
8506 8506
   {
8507
-    return $this->kind;
8507
+	return $this->kind;
8508 8508
   }
8509 8509
   public function setNextLink($nextLink)
8510 8510
   {
8511
-    $this->nextLink = $nextLink;
8511
+	$this->nextLink = $nextLink;
8512 8512
   }
8513 8513
   public function getNextLink()
8514 8514
   {
8515
-    return $this->nextLink;
8515
+	return $this->nextLink;
8516 8516
   }
8517 8517
   public function setPreviousLink($previousLink)
8518 8518
   {
8519
-    $this->previousLink = $previousLink;
8519
+	$this->previousLink = $previousLink;
8520 8520
   }
8521 8521
   public function getPreviousLink()
8522 8522
   {
8523
-    return $this->previousLink;
8523
+	return $this->previousLink;
8524 8524
   }
8525 8525
   public function setStartIndex($startIndex)
8526 8526
   {
8527
-    $this->startIndex = $startIndex;
8527
+	$this->startIndex = $startIndex;
8528 8528
   }
8529 8529
   public function getStartIndex()
8530 8530
   {
8531
-    return $this->startIndex;
8531
+	return $this->startIndex;
8532 8532
   }
8533 8533
   public function setTotalResults($totalResults)
8534 8534
   {
8535
-    $this->totalResults = $totalResults;
8535
+	$this->totalResults = $totalResults;
8536 8536
   }
8537 8537
   public function getTotalResults()
8538 8538
   {
8539
-    return $this->totalResults;
8539
+	return $this->totalResults;
8540 8540
   }
8541 8541
   public function setUsername($username)
8542 8542
   {
8543
-    $this->username = $username;
8543
+	$this->username = $username;
8544 8544
   }
8545 8545
   public function getUsername()
8546 8546
   {
8547
-    return $this->username;
8547
+	return $this->username;
8548 8548
   }
8549 8549
 }
8550 8550
 
@@ -8569,75 +8569,75 @@  discard block
 block discarded – undo
8569 8569
 
8570 8570
   public function setColumnHeaders($columnHeaders)
8571 8571
   {
8572
-    $this->columnHeaders = $columnHeaders;
8572
+	$this->columnHeaders = $columnHeaders;
8573 8573
   }
8574 8574
   public function getColumnHeaders()
8575 8575
   {
8576
-    return $this->columnHeaders;
8576
+	return $this->columnHeaders;
8577 8577
   }
8578 8578
   public function setId($id)
8579 8579
   {
8580
-    $this->id = $id;
8580
+	$this->id = $id;
8581 8581
   }
8582 8582
   public function getId()
8583 8583
   {
8584
-    return $this->id;
8584
+	return $this->id;
8585 8585
   }
8586 8586
   public function setKind($kind)
8587 8587
   {
8588
-    $this->kind = $kind;
8588
+	$this->kind = $kind;
8589 8589
   }
8590 8590
   public function getKind()
8591 8591
   {
8592
-    return $this->kind;
8592
+	return $this->kind;
8593 8593
   }
8594 8594
   public function setProfileInfo(Google_Service_Analytics_RealtimeDataProfileInfo $profileInfo)
8595 8595
   {
8596
-    $this->profileInfo = $profileInfo;
8596
+	$this->profileInfo = $profileInfo;
8597 8597
   }
8598 8598
   public function getProfileInfo()
8599 8599
   {
8600
-    return $this->profileInfo;
8600
+	return $this->profileInfo;
8601 8601
   }
8602 8602
   public function setQuery(Google_Service_Analytics_RealtimeDataQuery $query)
8603 8603
   {
8604
-    $this->query = $query;
8604
+	$this->query = $query;
8605 8605
   }
8606 8606
   public function getQuery()
8607 8607
   {
8608
-    return $this->query;
8608
+	return $this->query;
8609 8609
   }
8610 8610
   public function setRows($rows)
8611 8611
   {
8612
-    $this->rows = $rows;
8612
+	$this->rows = $rows;
8613 8613
   }
8614 8614
   public function getRows()
8615 8615
   {
8616
-    return $this->rows;
8616
+	return $this->rows;
8617 8617
   }
8618 8618
   public function setSelfLink($selfLink)
8619 8619
   {
8620
-    $this->selfLink = $selfLink;
8620
+	$this->selfLink = $selfLink;
8621 8621
   }
8622 8622
   public function getSelfLink()
8623 8623
   {
8624
-    return $this->selfLink;
8624
+	return $this->selfLink;
8625 8625
   }
8626 8626
   public function setTotalResults($totalResults)
8627 8627
   {
8628
-    $this->totalResults = $totalResults;
8628
+	$this->totalResults = $totalResults;
8629 8629
   }
8630 8630
   public function getTotalResults()
8631 8631
   {
8632
-    return $this->totalResults;
8632
+	return $this->totalResults;
8633 8633
   }
8634 8634
   public function setTotalsForAllResults($totalsForAllResults)
8635 8635
   {
8636
-    $this->totalsForAllResults = $totalsForAllResults;
8636
+	$this->totalsForAllResults = $totalsForAllResults;
8637 8637
   }
8638 8638
   public function getTotalsForAllResults()
8639 8639
   {
8640
-    return $this->totalsForAllResults;
8640
+	return $this->totalsForAllResults;
8641 8641
   }
8642 8642
 }
8643 8643
 
@@ -8652,27 +8652,27 @@  discard block
 block discarded – undo
8652 8652
 
8653 8653
   public function setColumnType($columnType)
8654 8654
   {
8655
-    $this->columnType = $columnType;
8655
+	$this->columnType = $columnType;
8656 8656
   }
8657 8657
   public function getColumnType()
8658 8658
   {
8659
-    return $this->columnType;
8659
+	return $this->columnType;
8660 8660
   }
8661 8661
   public function setDataType($dataType)
8662 8662
   {
8663
-    $this->dataType = $dataType;
8663
+	$this->dataType = $dataType;
8664 8664
   }
8665 8665
   public function getDataType()
8666 8666
   {
8667
-    return $this->dataType;
8667
+	return $this->dataType;
8668 8668
   }
8669 8669
   public function setName($name)
8670 8670
   {
8671
-    $this->name = $name;
8671
+	$this->name = $name;
8672 8672
   }
8673 8673
   public function getName()
8674 8674
   {
8675
-    return $this->name;
8675
+	return $this->name;
8676 8676
   }
8677 8677
 }
8678 8678
 
@@ -8690,51 +8690,51 @@  discard block
 block discarded – undo
8690 8690
 
8691 8691
   public function setAccountId($accountId)
8692 8692
   {
8693
-    $this->accountId = $accountId;
8693
+	$this->accountId = $accountId;
8694 8694
   }
8695 8695
   public function getAccountId()
8696 8696
   {
8697
-    return $this->accountId;
8697
+	return $this->accountId;
8698 8698
   }
8699 8699
   public function setInternalWebPropertyId($internalWebPropertyId)
8700 8700
   {
8701
-    $this->internalWebPropertyId = $internalWebPropertyId;
8701
+	$this->internalWebPropertyId = $internalWebPropertyId;
8702 8702
   }
8703 8703
   public function getInternalWebPropertyId()
8704 8704
   {
8705
-    return $this->internalWebPropertyId;
8705
+	return $this->internalWebPropertyId;
8706 8706
   }
8707 8707
   public function setProfileId($profileId)
8708 8708
   {
8709
-    $this->profileId = $profileId;
8709
+	$this->profileId = $profileId;
8710 8710
   }
8711 8711
   public function getProfileId()
8712 8712
   {
8713
-    return $this->profileId;
8713
+	return $this->profileId;
8714 8714
   }
8715 8715
   public function setProfileName($profileName)
8716 8716
   {
8717
-    $this->profileName = $profileName;
8717
+	$this->profileName = $profileName;
8718 8718
   }
8719 8719
   public function getProfileName()
8720 8720
   {
8721
-    return $this->profileName;
8721
+	return $this->profileName;
8722 8722
   }
8723 8723
   public function setTableId($tableId)
8724 8724
   {
8725
-    $this->tableId = $tableId;
8725
+	$this->tableId = $tableId;
8726 8726
   }
8727 8727
   public function getTableId()
8728 8728
   {
8729
-    return $this->tableId;
8729
+	return $this->tableId;
8730 8730
   }
8731 8731
   public function setWebPropertyId($webPropertyId)
8732 8732
   {
8733
-    $this->webPropertyId = $webPropertyId;
8733
+	$this->webPropertyId = $webPropertyId;
8734 8734
   }
8735 8735
   public function getWebPropertyId()
8736 8736
   {
8737
-    return $this->webPropertyId;
8737
+	return $this->webPropertyId;
8738 8738
   }
8739 8739
 }
8740 8740
 
@@ -8742,7 +8742,7 @@  discard block
 block discarded – undo
8742 8742
 {
8743 8743
   protected $collection_key = 'sort';
8744 8744
   protected $internal_gapi_mappings = array(
8745
-        "maxResults" => "max-results",
8745
+		"maxResults" => "max-results",
8746 8746
   );
8747 8747
   public $dimensions;
8748 8748
   public $filters;
@@ -8754,51 +8754,51 @@  discard block
 block discarded – undo
8754 8754
 
8755 8755
   public function setDimensions($dimensions)
8756 8756
   {
8757
-    $this->dimensions = $dimensions;
8757
+	$this->dimensions = $dimensions;
8758 8758
   }
8759 8759
   public function getDimensions()
8760 8760
   {
8761
-    return $this->dimensions;
8761
+	return $this->dimensions;
8762 8762
   }
8763 8763
   public function setFilters($filters)
8764 8764
   {
8765
-    $this->filters = $filters;
8765
+	$this->filters = $filters;
8766 8766
   }
8767 8767
   public function getFilters()
8768 8768
   {
8769
-    return $this->filters;
8769
+	return $this->filters;
8770 8770
   }
8771 8771
   public function setIds($ids)
8772 8772
   {
8773
-    $this->ids = $ids;
8773
+	$this->ids = $ids;
8774 8774
   }
8775 8775
   public function getIds()
8776 8776
   {
8777
-    return $this->ids;
8777
+	return $this->ids;
8778 8778
   }
8779 8779
   public function setMaxResults($maxResults)
8780 8780
   {
8781
-    $this->maxResults = $maxResults;
8781
+	$this->maxResults = $maxResults;
8782 8782
   }
8783 8783
   public function getMaxResults()
8784 8784
   {
8785
-    return $this->maxResults;
8785
+	return $this->maxResults;
8786 8786
   }
8787 8787
   public function setMetrics($metrics)
8788 8788
   {
8789
-    $this->metrics = $metrics;
8789
+	$this->metrics = $metrics;
8790 8790
   }
8791 8791
   public function getMetrics()
8792 8792
   {
8793
-    return $this->metrics;
8793
+	return $this->metrics;
8794 8794
   }
8795 8795
   public function setSort($sort)
8796 8796
   {
8797
-    $this->sort = $sort;
8797
+	$this->sort = $sort;
8798 8798
   }
8799 8799
   public function getSort()
8800 8800
   {
8801
-    return $this->sort;
8801
+	return $this->sort;
8802 8802
   }
8803 8803
 }
8804 8804
 
@@ -8823,75 +8823,75 @@  discard block
 block discarded – undo
8823 8823
 
8824 8824
   public function setCreated($created)
8825 8825
   {
8826
-    $this->created = $created;
8826
+	$this->created = $created;
8827 8827
   }
8828 8828
   public function getCreated()
8829 8829
   {
8830
-    return $this->created;
8830
+	return $this->created;
8831 8831
   }
8832 8832
   public function setDefinition($definition)
8833 8833
   {
8834
-    $this->definition = $definition;
8834
+	$this->definition = $definition;
8835 8835
   }
8836 8836
   public function getDefinition()
8837 8837
   {
8838
-    return $this->definition;
8838
+	return $this->definition;
8839 8839
   }
8840 8840
   public function setId($id)
8841 8841
   {
8842
-    $this->id = $id;
8842
+	$this->id = $id;
8843 8843
   }
8844 8844
   public function getId()
8845 8845
   {
8846
-    return $this->id;
8846
+	return $this->id;
8847 8847
   }
8848 8848
   public function setKind($kind)
8849 8849
   {
8850
-    $this->kind = $kind;
8850
+	$this->kind = $kind;
8851 8851
   }
8852 8852
   public function getKind()
8853 8853
   {
8854
-    return $this->kind;
8854
+	return $this->kind;
8855 8855
   }
8856 8856
   public function setName($name)
8857 8857
   {
8858
-    $this->name = $name;
8858
+	$this->name = $name;
8859 8859
   }
8860 8860
   public function getName()
8861 8861
   {
8862
-    return $this->name;
8862
+	return $this->name;
8863 8863
   }
8864 8864
   public function setSegmentId($segmentId)
8865 8865
   {
8866
-    $this->segmentId = $segmentId;
8866
+	$this->segmentId = $segmentId;
8867 8867
   }
8868 8868
   public function getSegmentId()
8869 8869
   {
8870
-    return $this->segmentId;
8870
+	return $this->segmentId;
8871 8871
   }
8872 8872
   public function setSelfLink($selfLink)
8873 8873
   {
8874
-    $this->selfLink = $selfLink;
8874
+	$this->selfLink = $selfLink;
8875 8875
   }
8876 8876
   public function getSelfLink()
8877 8877
   {
8878
-    return $this->selfLink;
8878
+	return $this->selfLink;
8879 8879
   }
8880 8880
   public function setType($type)
8881 8881
   {
8882
-    $this->type = $type;
8882
+	$this->type = $type;
8883 8883
   }
8884 8884
   public function getType()
8885 8885
   {
8886
-    return $this->type;
8886
+	return $this->type;
8887 8887
   }
8888 8888
   public function setUpdated($updated)
8889 8889
   {
8890
-    $this->updated = $updated;
8890
+	$this->updated = $updated;
8891 8891
   }
8892 8892
   public function getUpdated()
8893 8893
   {
8894
-    return $this->updated;
8894
+	return $this->updated;
8895 8895
   }
8896 8896
 }
8897 8897
 
@@ -8913,75 +8913,75 @@  discard block
 block discarded – undo
8913 8913
 
8914 8914
   public function setItems($items)
8915 8915
   {
8916
-    $this->items = $items;
8916
+	$this->items = $items;
8917 8917
   }
8918 8918
   public function getItems()
8919 8919
   {
8920
-    return $this->items;
8920
+	return $this->items;
8921 8921
   }
8922 8922
   public function setItemsPerPage($itemsPerPage)
8923 8923
   {
8924
-    $this->itemsPerPage = $itemsPerPage;
8924
+	$this->itemsPerPage = $itemsPerPage;
8925 8925
   }
8926 8926
   public function getItemsPerPage()
8927 8927
   {
8928
-    return $this->itemsPerPage;
8928
+	return $this->itemsPerPage;
8929 8929
   }
8930 8930
   public function setKind($kind)
8931 8931
   {
8932
-    $this->kind = $kind;
8932
+	$this->kind = $kind;
8933 8933
   }
8934 8934
   public function getKind()
8935 8935
   {
8936
-    return $this->kind;
8936
+	return $this->kind;
8937 8937
   }
8938 8938
   public function setNextLink($nextLink)
8939 8939
   {
8940
-    $this->nextLink = $nextLink;
8940
+	$this->nextLink = $nextLink;
8941 8941
   }
8942 8942
   public function getNextLink()
8943 8943
   {
8944
-    return $this->nextLink;
8944
+	return $this->nextLink;
8945 8945
   }
8946 8946
   public function setPreviousLink($previousLink)
8947 8947
   {
8948
-    $this->previousLink = $previousLink;
8948
+	$this->previousLink = $previousLink;
8949 8949
   }
8950 8950
   public function getPreviousLink()
8951 8951
   {
8952
-    return $this->previousLink;
8952
+	return $this->previousLink;
8953 8953
   }
8954 8954
   public function setStartIndex($startIndex)
8955 8955
   {
8956
-    $this->startIndex = $startIndex;
8956
+	$this->startIndex = $startIndex;
8957 8957
   }
8958 8958
   public function getStartIndex()
8959 8959
   {
8960
-    return $this->startIndex;
8960
+	return $this->startIndex;
8961 8961
   }
8962 8962
   public function setTotalResults($totalResults)
8963 8963
   {
8964
-    $this->totalResults = $totalResults;
8964
+	$this->totalResults = $totalResults;
8965 8965
   }
8966 8966
   public function getTotalResults()
8967 8967
   {
8968
-    return $this->totalResults;
8968
+	return $this->totalResults;
8969 8969
   }
8970 8970
   public function setUsername($username)
8971 8971
   {
8972
-    $this->username = $username;
8972
+	$this->username = $username;
8973 8973
   }
8974 8974
   public function getUsername()
8975 8975
   {
8976
-    return $this->username;
8976
+	return $this->username;
8977 8977
   }
8978 8978
 }
8979 8979
 
8980 8980
 class Google_Service_Analytics_UnsampledReport extends Google_Model
8981 8981
 {
8982 8982
   protected $internal_gapi_mappings = array(
8983
-        "endDate" => "end-date",
8984
-        "startDate" => "start-date",
8983
+		"endDate" => "end-date",
8984
+		"startDate" => "start-date",
8985 8985
   );
8986 8986
   public $accountId;
8987 8987
   protected $cloudStorageDownloadDetailsType = 'Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails';
@@ -9008,155 +9008,155 @@  discard block
 block discarded – undo
9008 9008
 
9009 9009
   public function setAccountId($accountId)
9010 9010
   {
9011
-    $this->accountId = $accountId;
9011
+	$this->accountId = $accountId;
9012 9012
   }
9013 9013
   public function getAccountId()
9014 9014
   {
9015
-    return $this->accountId;
9015
+	return $this->accountId;
9016 9016
   }
9017 9017
   public function setCloudStorageDownloadDetails(Google_Service_Analytics_UnsampledReportCloudStorageDownloadDetails $cloudStorageDownloadDetails)
9018 9018
   {
9019
-    $this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails;
9019
+	$this->cloudStorageDownloadDetails = $cloudStorageDownloadDetails;
9020 9020
   }
9021 9021
   public function getCloudStorageDownloadDetails()
9022 9022
   {
9023
-    return $this->cloudStorageDownloadDetails;
9023
+	return $this->cloudStorageDownloadDetails;
9024 9024
   }
9025 9025
   public function setCreated($created)
9026 9026
   {
9027
-    $this->created = $created;
9027
+	$this->created = $created;
9028 9028
   }
9029 9029
   public function getCreated()
9030 9030
   {
9031
-    return $this->created;
9031
+	return $this->created;
9032 9032
   }
9033 9033
   public function setDimensions($dimensions)
9034 9034
   {
9035
-    $this->dimensions = $dimensions;
9035
+	$this->dimensions = $dimensions;
9036 9036
   }
9037 9037
   public function getDimensions()
9038 9038
   {
9039
-    return $this->dimensions;
9039
+	return $this->dimensions;
9040 9040
   }
9041 9041
   public function setDownloadType($downloadType)
9042 9042
   {
9043
-    $this->downloadType = $downloadType;
9043
+	$this->downloadType = $downloadType;
9044 9044
   }
9045 9045
   public function getDownloadType()
9046 9046
   {
9047
-    return $this->downloadType;
9047
+	return $this->downloadType;
9048 9048
   }
9049 9049
   public function setDriveDownloadDetails(Google_Service_Analytics_UnsampledReportDriveDownloadDetails $driveDownloadDetails)
9050 9050
   {
9051
-    $this->driveDownloadDetails = $driveDownloadDetails;
9051
+	$this->driveDownloadDetails = $driveDownloadDetails;
9052 9052
   }
9053 9053
   public function getDriveDownloadDetails()
9054 9054
   {
9055
-    return $this->driveDownloadDetails;
9055
+	return $this->driveDownloadDetails;
9056 9056
   }
9057 9057
   public function setEndDate($endDate)
9058 9058
   {
9059
-    $this->endDate = $endDate;
9059
+	$this->endDate = $endDate;
9060 9060
   }
9061 9061
   public function getEndDate()
9062 9062
   {
9063
-    return $this->endDate;
9063
+	return $this->endDate;
9064 9064
   }
9065 9065
   public function setFilters($filters)
9066 9066
   {
9067
-    $this->filters = $filters;
9067
+	$this->filters = $filters;
9068 9068
   }
9069 9069
   public function getFilters()
9070 9070
   {
9071
-    return $this->filters;
9071
+	return $this->filters;
9072 9072
   }
9073 9073
   public function setId($id)
9074 9074
   {
9075
-    $this->id = $id;
9075
+	$this->id = $id;
9076 9076
   }
9077 9077
   public function getId()
9078 9078
   {
9079
-    return $this->id;
9079
+	return $this->id;
9080 9080
   }
9081 9081
   public function setKind($kind)
9082 9082
   {
9083
-    $this->kind = $kind;
9083
+	$this->kind = $kind;
9084 9084
   }
9085 9085
   public function getKind()
9086 9086
   {
9087
-    return $this->kind;
9087
+	return $this->kind;
9088 9088
   }
9089 9089
   public function setMetrics($metrics)
9090 9090
   {
9091
-    $this->metrics = $metrics;
9091
+	$this->metrics = $metrics;
9092 9092
   }
9093 9093
   public function getMetrics()
9094 9094
   {
9095
-    return $this->metrics;
9095
+	return $this->metrics;
9096 9096
   }
9097 9097
   public function setProfileId($profileId)
9098 9098
   {
9099
-    $this->profileId = $profileId;
9099
+	$this->profileId = $profileId;
9100 9100
   }
9101 9101
   public function getProfileId()
9102 9102
   {
9103
-    return $this->profileId;
9103
+	return $this->profileId;
9104 9104
   }
9105 9105
   public function setSegment($segment)
9106 9106
   {
9107
-    $this->segment = $segment;
9107
+	$this->segment = $segment;
9108 9108
   }
9109 9109
   public function getSegment()
9110 9110
   {
9111
-    return $this->segment;
9111
+	return $this->segment;
9112 9112
   }
9113 9113
   public function setSelfLink($selfLink)
9114 9114
   {
9115
-    $this->selfLink = $selfLink;
9115
+	$this->selfLink = $selfLink;
9116 9116
   }
9117 9117
   public function getSelfLink()
9118 9118
   {
9119
-    return $this->selfLink;
9119
+	return $this->selfLink;
9120 9120
   }
9121 9121
   public function setStartDate($startDate)
9122 9122
   {
9123
-    $this->startDate = $startDate;
9123
+	$this->startDate = $startDate;
9124 9124
   }
9125 9125
   public function getStartDate()
9126 9126
   {
9127
-    return $this->startDate;
9127
+	return $this->startDate;
9128 9128
   }
9129 9129
   public function setStatus($status)
9130 9130
   {
9131
-    $this->status = $status;
9131
+	$this->status = $status;
9132 9132
   }
9133 9133
   public function getStatus()
9134 9134
   {
9135
-    return $this->status;
9135
+	return $this->status;
9136 9136
   }
9137 9137
   public function setTitle($title)
9138 9138
   {
9139
-    $this->title = $title;
9139
+	$this->title = $title;
9140 9140
   }
9141 9141
   public function getTitle()
9142 9142
   {
9143
-    return $this->title;
9143
+	return $this->title;
9144 9144
   }
9145 9145
   public function setUpdated($updated)
9146 9146
   {
9147
-    $this->updated = $updated;
9147
+	$this->updated = $updated;
9148 9148
   }
9149 9149
   public function getUpdated()
9150 9150
   {
9151
-    return $this->updated;
9151
+	return $this->updated;
9152 9152
   }
9153 9153
   public function setWebPropertyId($webPropertyId)
9154 9154
   {
9155
-    $this->webPropertyId = $webPropertyId;
9155
+	$this->webPropertyId = $webPropertyId;
9156 9156
   }
9157 9157
   public function getWebPropertyId()
9158 9158
   {
9159
-    return $this->webPropertyId;
9159
+	return $this->webPropertyId;
9160 9160
   }
9161 9161
 }
9162 9162
 
@@ -9170,19 +9170,19 @@  discard block
 block discarded – undo
9170 9170
 
9171 9171
   public function setBucketId($bucketId)
9172 9172
   {
9173
-    $this->bucketId = $bucketId;
9173
+	$this->bucketId = $bucketId;
9174 9174
   }
9175 9175
   public function getBucketId()
9176 9176
   {
9177
-    return $this->bucketId;
9177
+	return $this->bucketId;
9178 9178
   }
9179 9179
   public function setObjectId($objectId)
9180 9180
   {
9181
-    $this->objectId = $objectId;
9181
+	$this->objectId = $objectId;
9182 9182
   }
9183 9183
   public function getObjectId()
9184 9184
   {
9185
-    return $this->objectId;
9185
+	return $this->objectId;
9186 9186
   }
9187 9187
 }
9188 9188
 
@@ -9195,11 +9195,11 @@  discard block
 block discarded – undo
9195 9195
 
9196 9196
   public function setDocumentId($documentId)
9197 9197
   {
9198
-    $this->documentId = $documentId;
9198
+	$this->documentId = $documentId;
9199 9199
   }
9200 9200
   public function getDocumentId()
9201 9201
   {
9202
-    return $this->documentId;
9202
+	return $this->documentId;
9203 9203
   }
9204 9204
 }
9205 9205
 
@@ -9221,67 +9221,67 @@  discard block
 block discarded – undo
9221 9221
 
9222 9222
   public function setItems($items)
9223 9223
   {
9224
-    $this->items = $items;
9224
+	$this->items = $items;
9225 9225
   }
9226 9226
   public function getItems()
9227 9227
   {
9228
-    return $this->items;
9228
+	return $this->items;
9229 9229
   }
9230 9230
   public function setItemsPerPage($itemsPerPage)
9231 9231
   {
9232
-    $this->itemsPerPage = $itemsPerPage;
9232
+	$this->itemsPerPage = $itemsPerPage;
9233 9233
   }
9234 9234
   public function getItemsPerPage()
9235 9235
   {
9236
-    return $this->itemsPerPage;
9236
+	return $this->itemsPerPage;
9237 9237
   }
9238 9238
   public function setKind($kind)
9239 9239
   {
9240
-    $this->kind = $kind;
9240
+	$this->kind = $kind;
9241 9241
   }
9242 9242
   public function getKind()
9243 9243
   {
9244
-    return $this->kind;
9244
+	return $this->kind;
9245 9245
   }
9246 9246
   public function setNextLink($nextLink)
9247 9247
   {
9248
-    $this->nextLink = $nextLink;
9248
+	$this->nextLink = $nextLink;
9249 9249
   }
9250 9250
   public function getNextLink()
9251 9251
   {
9252
-    return $this->nextLink;
9252
+	return $this->nextLink;
9253 9253
   }
9254 9254
   public function setPreviousLink($previousLink)
9255 9255
   {
9256
-    $this->previousLink = $previousLink;
9256
+	$this->previousLink = $previousLink;
9257 9257
   }
9258 9258
   public function getPreviousLink()
9259 9259
   {
9260
-    return $this->previousLink;
9260
+	return $this->previousLink;
9261 9261
   }
9262 9262
   public function setStartIndex($startIndex)
9263 9263
   {
9264
-    $this->startIndex = $startIndex;
9264
+	$this->startIndex = $startIndex;
9265 9265
   }
9266 9266
   public function getStartIndex()
9267 9267
   {
9268
-    return $this->startIndex;
9268
+	return $this->startIndex;
9269 9269
   }
9270 9270
   public function setTotalResults($totalResults)
9271 9271
   {
9272
-    $this->totalResults = $totalResults;
9272
+	$this->totalResults = $totalResults;
9273 9273
   }
9274 9274
   public function getTotalResults()
9275 9275
   {
9276
-    return $this->totalResults;
9276
+	return $this->totalResults;
9277 9277
   }
9278 9278
   public function setUsername($username)
9279 9279
   {
9280
-    $this->username = $username;
9280
+	$this->username = $username;
9281 9281
   }
9282 9282
   public function getUsername()
9283 9283
   {
9284
-    return $this->username;
9284
+	return $this->username;
9285 9285
   }
9286 9286
 }
9287 9287
 
@@ -9300,51 +9300,51 @@  discard block
 block discarded – undo
9300 9300
 
9301 9301
   public function setAccountId($accountId)
9302 9302
   {
9303
-    $this->accountId = $accountId;
9303
+	$this->accountId = $accountId;
9304 9304
   }
9305 9305
   public function getAccountId()
9306 9306
   {
9307
-    return $this->accountId;
9307
+	return $this->accountId;
9308 9308
   }
9309 9309
   public function setCustomDataSourceId($customDataSourceId)
9310 9310
   {
9311
-    $this->customDataSourceId = $customDataSourceId;
9311
+	$this->customDataSourceId = $customDataSourceId;
9312 9312
   }
9313 9313
   public function getCustomDataSourceId()
9314 9314
   {
9315
-    return $this->customDataSourceId;
9315
+	return $this->customDataSourceId;
9316 9316
   }
9317 9317
   public function setErrors($errors)
9318 9318
   {
9319
-    $this->errors = $errors;
9319
+	$this->errors = $errors;
9320 9320
   }
9321 9321
   public function getErrors()
9322 9322
   {
9323
-    return $this->errors;
9323
+	return $this->errors;
9324 9324
   }
9325 9325
   public function setId($id)
9326 9326
   {
9327
-    $this->id = $id;
9327
+	$this->id = $id;
9328 9328
   }
9329 9329
   public function getId()
9330 9330
   {
9331
-    return $this->id;
9331
+	return $this->id;
9332 9332
   }
9333 9333
   public function setKind($kind)
9334 9334
   {
9335
-    $this->kind = $kind;
9335
+	$this->kind = $kind;
9336 9336
   }
9337 9337
   public function getKind()
9338 9338
   {
9339
-    return $this->kind;
9339
+	return $this->kind;
9340 9340
   }
9341 9341
   public function setStatus($status)
9342 9342
   {
9343
-    $this->status = $status;
9343
+	$this->status = $status;
9344 9344
   }
9345 9345
   public function getStatus()
9346 9346
   {
9347
-    return $this->status;
9347
+	return $this->status;
9348 9348
   }
9349 9349
 }
9350 9350
 
@@ -9365,59 +9365,59 @@  discard block
 block discarded – undo
9365 9365
 
9366 9366
   public function setItems($items)
9367 9367
   {
9368
-    $this->items = $items;
9368
+	$this->items = $items;
9369 9369
   }
9370 9370
   public function getItems()
9371 9371
   {
9372
-    return $this->items;
9372
+	return $this->items;
9373 9373
   }
9374 9374
   public function setItemsPerPage($itemsPerPage)
9375 9375
   {
9376
-    $this->itemsPerPage = $itemsPerPage;
9376
+	$this->itemsPerPage = $itemsPerPage;
9377 9377
   }
9378 9378
   public function getItemsPerPage()
9379 9379
   {
9380
-    return $this->itemsPerPage;
9380
+	return $this->itemsPerPage;
9381 9381
   }
9382 9382
   public function setKind($kind)
9383 9383
   {
9384
-    $this->kind = $kind;
9384
+	$this->kind = $kind;
9385 9385
   }
9386 9386
   public function getKind()
9387 9387
   {
9388
-    return $this->kind;
9388
+	return $this->kind;
9389 9389
   }
9390 9390
   public function setNextLink($nextLink)
9391 9391
   {
9392
-    $this->nextLink = $nextLink;
9392
+	$this->nextLink = $nextLink;
9393 9393
   }
9394 9394
   public function getNextLink()
9395 9395
   {
9396
-    return $this->nextLink;
9396
+	return $this->nextLink;
9397 9397
   }
9398 9398
   public function setPreviousLink($previousLink)
9399 9399
   {
9400
-    $this->previousLink = $previousLink;
9400
+	$this->previousLink = $previousLink;
9401 9401
   }
9402 9402
   public function getPreviousLink()
9403 9403
   {
9404
-    return $this->previousLink;
9404
+	return $this->previousLink;
9405 9405
   }
9406 9406
   public function setStartIndex($startIndex)
9407 9407
   {
9408
-    $this->startIndex = $startIndex;
9408
+	$this->startIndex = $startIndex;
9409 9409
   }
9410 9410
   public function getStartIndex()
9411 9411
   {
9412
-    return $this->startIndex;
9412
+	return $this->startIndex;
9413 9413
   }
9414 9414
   public function setTotalResults($totalResults)
9415 9415
   {
9416
-    $this->totalResults = $totalResults;
9416
+	$this->totalResults = $totalResults;
9417 9417
   }
9418 9418
   public function getTotalResults()
9419 9419
   {
9420
-    return $this->totalResults;
9420
+	return $this->totalResults;
9421 9421
   }
9422 9422
 }
9423 9423
 
@@ -9432,27 +9432,27 @@  discard block
 block discarded – undo
9432 9432
 
9433 9433
   public function setEmail($email)
9434 9434
   {
9435
-    $this->email = $email;
9435
+	$this->email = $email;
9436 9436
   }
9437 9437
   public function getEmail()
9438 9438
   {
9439
-    return $this->email;
9439
+	return $this->email;
9440 9440
   }
9441 9441
   public function setId($id)
9442 9442
   {
9443
-    $this->id = $id;
9443
+	$this->id = $id;
9444 9444
   }
9445 9445
   public function getId()
9446 9446
   {
9447
-    return $this->id;
9447
+	return $this->id;
9448 9448
   }
9449 9449
   public function setKind($kind)
9450 9450
   {
9451
-    $this->kind = $kind;
9451
+	$this->kind = $kind;
9452 9452
   }
9453 9453
   public function getKind()
9454 9454
   {
9455
-    return $this->kind;
9455
+	return $this->kind;
9456 9456
   }
9457 9457
 }
9458 9458
 
@@ -9470,51 +9470,51 @@  discard block
 block discarded – undo
9470 9470
 
9471 9471
   public function setAccountId($accountId)
9472 9472
   {
9473
-    $this->accountId = $accountId;
9473
+	$this->accountId = $accountId;
9474 9474
   }
9475 9475
   public function getAccountId()
9476 9476
   {
9477
-    return $this->accountId;
9477
+	return $this->accountId;
9478 9478
   }
9479 9479
   public function setHref($href)
9480 9480
   {
9481
-    $this->href = $href;
9481
+	$this->href = $href;
9482 9482
   }
9483 9483
   public function getHref()
9484 9484
   {
9485
-    return $this->href;
9485
+	return $this->href;
9486 9486
   }
9487 9487
   public function setId($id)
9488 9488
   {
9489
-    $this->id = $id;
9489
+	$this->id = $id;
9490 9490
   }
9491 9491
   public function getId()
9492 9492
   {
9493
-    return $this->id;
9493
+	return $this->id;
9494 9494
   }
9495 9495
   public function setInternalWebPropertyId($internalWebPropertyId)
9496 9496
   {
9497
-    $this->internalWebPropertyId = $internalWebPropertyId;
9497
+	$this->internalWebPropertyId = $internalWebPropertyId;
9498 9498
   }
9499 9499
   public function getInternalWebPropertyId()
9500 9500
   {
9501
-    return $this->internalWebPropertyId;
9501
+	return $this->internalWebPropertyId;
9502 9502
   }
9503 9503
   public function setKind($kind)
9504 9504
   {
9505
-    $this->kind = $kind;
9505
+	$this->kind = $kind;
9506 9506
   }
9507 9507
   public function getKind()
9508 9508
   {
9509
-    return $this->kind;
9509
+	return $this->kind;
9510 9510
   }
9511 9511
   public function setName($name)
9512 9512
   {
9513
-    $this->name = $name;
9513
+	$this->name = $name;
9514 9514
   }
9515 9515
   public function getName()
9516 9516
   {
9517
-    return $this->name;
9517
+	return $this->name;
9518 9518
   }
9519 9519
 }
9520 9520
 
@@ -9535,59 +9535,59 @@  discard block
 block discarded – undo
9535 9535
 
9536 9536
   public function setId($id)
9537 9537
   {
9538
-    $this->id = $id;
9538
+	$this->id = $id;
9539 9539
   }
9540 9540
   public function getId()
9541 9541
   {
9542
-    return $this->id;
9542
+	return $this->id;
9543 9543
   }
9544 9544
   public function setInternalWebPropertyId($internalWebPropertyId)
9545 9545
   {
9546
-    $this->internalWebPropertyId = $internalWebPropertyId;
9546
+	$this->internalWebPropertyId = $internalWebPropertyId;
9547 9547
   }
9548 9548
   public function getInternalWebPropertyId()
9549 9549
   {
9550
-    return $this->internalWebPropertyId;
9550
+	return $this->internalWebPropertyId;
9551 9551
   }
9552 9552
   public function setKind($kind)
9553 9553
   {
9554
-    $this->kind = $kind;
9554
+	$this->kind = $kind;
9555 9555
   }
9556 9556
   public function getKind()
9557 9557
   {
9558
-    return $this->kind;
9558
+	return $this->kind;
9559 9559
   }
9560 9560
   public function setLevel($level)
9561 9561
   {
9562
-    $this->level = $level;
9562
+	$this->level = $level;
9563 9563
   }
9564 9564
   public function getLevel()
9565 9565
   {
9566
-    return $this->level;
9566
+	return $this->level;
9567 9567
   }
9568 9568
   public function setName($name)
9569 9569
   {
9570
-    $this->name = $name;
9570
+	$this->name = $name;
9571 9571
   }
9572 9572
   public function getName()
9573 9573
   {
9574
-    return $this->name;
9574
+	return $this->name;
9575 9575
   }
9576 9576
   public function setProfiles($profiles)
9577 9577
   {
9578
-    $this->profiles = $profiles;
9578
+	$this->profiles = $profiles;
9579 9579
   }
9580 9580
   public function getProfiles()
9581 9581
   {
9582
-    return $this->profiles;
9582
+	return $this->profiles;
9583 9583
   }
9584 9584
   public function setWebsiteUrl($websiteUrl)
9585 9585
   {
9586
-    $this->websiteUrl = $websiteUrl;
9586
+	$this->websiteUrl = $websiteUrl;
9587 9587
   }
9588 9588
   public function getWebsiteUrl()
9589 9589
   {
9590
-    return $this->websiteUrl;
9590
+	return $this->websiteUrl;
9591 9591
   }
9592 9592
 }
9593 9593
 
@@ -9609,67 +9609,67 @@  discard block
 block discarded – undo
9609 9609
 
9610 9610
   public function setItems($items)
9611 9611
   {
9612
-    $this->items = $items;
9612
+	$this->items = $items;
9613 9613
   }
9614 9614
   public function getItems()
9615 9615
   {
9616
-    return $this->items;
9616
+	return $this->items;
9617 9617
   }
9618 9618
   public function setItemsPerPage($itemsPerPage)
9619 9619
   {
9620
-    $this->itemsPerPage = $itemsPerPage;
9620
+	$this->itemsPerPage = $itemsPerPage;
9621 9621
   }
9622 9622
   public function getItemsPerPage()
9623 9623
   {
9624
-    return $this->itemsPerPage;
9624
+	return $this->itemsPerPage;
9625 9625
   }
9626 9626
   public function setKind($kind)
9627 9627
   {
9628
-    $this->kind = $kind;
9628
+	$this->kind = $kind;
9629 9629
   }
9630 9630
   public function getKind()
9631 9631
   {
9632
-    return $this->kind;
9632
+	return $this->kind;
9633 9633
   }
9634 9634
   public function setNextLink($nextLink)
9635 9635
   {
9636
-    $this->nextLink = $nextLink;
9636
+	$this->nextLink = $nextLink;
9637 9637
   }
9638 9638
   public function getNextLink()
9639 9639
   {
9640
-    return $this->nextLink;
9640
+	return $this->nextLink;
9641 9641
   }
9642 9642
   public function setPreviousLink($previousLink)
9643 9643
   {
9644
-    $this->previousLink = $previousLink;
9644
+	$this->previousLink = $previousLink;
9645 9645
   }
9646 9646
   public function getPreviousLink()
9647 9647
   {
9648
-    return $this->previousLink;
9648
+	return $this->previousLink;
9649 9649
   }
9650 9650
   public function setStartIndex($startIndex)
9651 9651
   {
9652
-    $this->startIndex = $startIndex;
9652
+	$this->startIndex = $startIndex;
9653 9653
   }
9654 9654
   public function getStartIndex()
9655 9655
   {
9656
-    return $this->startIndex;
9656
+	return $this->startIndex;
9657 9657
   }
9658 9658
   public function setTotalResults($totalResults)
9659 9659
   {
9660
-    $this->totalResults = $totalResults;
9660
+	$this->totalResults = $totalResults;
9661 9661
   }
9662 9662
   public function getTotalResults()
9663 9663
   {
9664
-    return $this->totalResults;
9664
+	return $this->totalResults;
9665 9665
   }
9666 9666
   public function setUsername($username)
9667 9667
   {
9668
-    $this->username = $username;
9668
+	$this->username = $username;
9669 9669
   }
9670 9670
   public function getUsername()
9671 9671
   {
9672
-    return $this->username;
9672
+	return $this->username;
9673 9673
   }
9674 9674
 }
9675 9675
 
@@ -9700,131 +9700,131 @@  discard block
 block discarded – undo
9700 9700
 
9701 9701
   public function setAccountId($accountId)
9702 9702
   {
9703
-    $this->accountId = $accountId;
9703
+	$this->accountId = $accountId;
9704 9704
   }
9705 9705
   public function getAccountId()
9706 9706
   {
9707
-    return $this->accountId;
9707
+	return $this->accountId;
9708 9708
   }
9709 9709
   public function setChildLink(Google_Service_Analytics_WebpropertyChildLink $childLink)
9710 9710
   {
9711
-    $this->childLink = $childLink;
9711
+	$this->childLink = $childLink;
9712 9712
   }
9713 9713
   public function getChildLink()
9714 9714
   {
9715
-    return $this->childLink;
9715
+	return $this->childLink;
9716 9716
   }
9717 9717
   public function setCreated($created)
9718 9718
   {
9719
-    $this->created = $created;
9719
+	$this->created = $created;
9720 9720
   }
9721 9721
   public function getCreated()
9722 9722
   {
9723
-    return $this->created;
9723
+	return $this->created;
9724 9724
   }
9725 9725
   public function setDefaultProfileId($defaultProfileId)
9726 9726
   {
9727
-    $this->defaultProfileId = $defaultProfileId;
9727
+	$this->defaultProfileId = $defaultProfileId;
9728 9728
   }
9729 9729
   public function getDefaultProfileId()
9730 9730
   {
9731
-    return $this->defaultProfileId;
9731
+	return $this->defaultProfileId;
9732 9732
   }
9733 9733
   public function setId($id)
9734 9734
   {
9735
-    $this->id = $id;
9735
+	$this->id = $id;
9736 9736
   }
9737 9737
   public function getId()
9738 9738
   {
9739
-    return $this->id;
9739
+	return $this->id;
9740 9740
   }
9741 9741
   public function setIndustryVertical($industryVertical)
9742 9742
   {
9743
-    $this->industryVertical = $industryVertical;
9743
+	$this->industryVertical = $industryVertical;
9744 9744
   }
9745 9745
   public function getIndustryVertical()
9746 9746
   {
9747
-    return $this->industryVertical;
9747
+	return $this->industryVertical;
9748 9748
   }
9749 9749
   public function setInternalWebPropertyId($internalWebPropertyId)
9750 9750
   {
9751
-    $this->internalWebPropertyId = $internalWebPropertyId;
9751
+	$this->internalWebPropertyId = $internalWebPropertyId;
9752 9752
   }
9753 9753
   public function getInternalWebPropertyId()
9754 9754
   {
9755
-    return $this->internalWebPropertyId;
9755
+	return $this->internalWebPropertyId;
9756 9756
   }
9757 9757
   public function setKind($kind)
9758 9758
   {
9759
-    $this->kind = $kind;
9759
+	$this->kind = $kind;
9760 9760
   }
9761 9761
   public function getKind()
9762 9762
   {
9763
-    return $this->kind;
9763
+	return $this->kind;
9764 9764
   }
9765 9765
   public function setLevel($level)
9766 9766
   {
9767
-    $this->level = $level;
9767
+	$this->level = $level;
9768 9768
   }
9769 9769
   public function getLevel()
9770 9770
   {
9771
-    return $this->level;
9771
+	return $this->level;
9772 9772
   }
9773 9773
   public function setName($name)
9774 9774
   {
9775
-    $this->name = $name;
9775
+	$this->name = $name;
9776 9776
   }
9777 9777
   public function getName()
9778 9778
   {
9779
-    return $this->name;
9779
+	return $this->name;
9780 9780
   }
9781 9781
   public function setParentLink(Google_Service_Analytics_WebpropertyParentLink $parentLink)
9782 9782
   {
9783
-    $this->parentLink = $parentLink;
9783
+	$this->parentLink = $parentLink;
9784 9784
   }
9785 9785
   public function getParentLink()
9786 9786
   {
9787
-    return $this->parentLink;
9787
+	return $this->parentLink;
9788 9788
   }
9789 9789
   public function setPermissions(Google_Service_Analytics_WebpropertyPermissions $permissions)
9790 9790
   {
9791
-    $this->permissions = $permissions;
9791
+	$this->permissions = $permissions;
9792 9792
   }
9793 9793
   public function getPermissions()
9794 9794
   {
9795
-    return $this->permissions;
9795
+	return $this->permissions;
9796 9796
   }
9797 9797
   public function setProfileCount($profileCount)
9798 9798
   {
9799
-    $this->profileCount = $profileCount;
9799
+	$this->profileCount = $profileCount;
9800 9800
   }
9801 9801
   public function getProfileCount()
9802 9802
   {
9803
-    return $this->profileCount;
9803
+	return $this->profileCount;
9804 9804
   }
9805 9805
   public function setSelfLink($selfLink)
9806 9806
   {
9807
-    $this->selfLink = $selfLink;
9807
+	$this->selfLink = $selfLink;
9808 9808
   }
9809 9809
   public function getSelfLink()
9810 9810
   {
9811
-    return $this->selfLink;
9811
+	return $this->selfLink;
9812 9812
   }
9813 9813
   public function setUpdated($updated)
9814 9814
   {
9815
-    $this->updated = $updated;
9815
+	$this->updated = $updated;
9816 9816
   }
9817 9817
   public function getUpdated()
9818 9818
   {
9819
-    return $this->updated;
9819
+	return $this->updated;
9820 9820
   }
9821 9821
   public function setWebsiteUrl($websiteUrl)
9822 9822
   {
9823
-    $this->websiteUrl = $websiteUrl;
9823
+	$this->websiteUrl = $websiteUrl;
9824 9824
   }
9825 9825
   public function getWebsiteUrl()
9826 9826
   {
9827
-    return $this->websiteUrl;
9827
+	return $this->websiteUrl;
9828 9828
   }
9829 9829
 }
9830 9830
 
@@ -9838,19 +9838,19 @@  discard block
 block discarded – undo
9838 9838
 
9839 9839
   public function setHref($href)
9840 9840
   {
9841
-    $this->href = $href;
9841
+	$this->href = $href;
9842 9842
   }
9843 9843
   public function getHref()
9844 9844
   {
9845
-    return $this->href;
9845
+	return $this->href;
9846 9846
   }
9847 9847
   public function setType($type)
9848 9848
   {
9849
-    $this->type = $type;
9849
+	$this->type = $type;
9850 9850
   }
9851 9851
   public function getType()
9852 9852
   {
9853
-    return $this->type;
9853
+	return $this->type;
9854 9854
   }
9855 9855
 }
9856 9856
 
@@ -9864,19 +9864,19 @@  discard block
 block discarded – undo
9864 9864
 
9865 9865
   public function setHref($href)
9866 9866
   {
9867
-    $this->href = $href;
9867
+	$this->href = $href;
9868 9868
   }
9869 9869
   public function getHref()
9870 9870
   {
9871
-    return $this->href;
9871
+	return $this->href;
9872 9872
   }
9873 9873
   public function setType($type)
9874 9874
   {
9875
-    $this->type = $type;
9875
+	$this->type = $type;
9876 9876
   }
9877 9877
   public function getType()
9878 9878
   {
9879
-    return $this->type;
9879
+	return $this->type;
9880 9880
   }
9881 9881
 }
9882 9882
 
@@ -9890,10 +9890,10 @@  discard block
 block discarded – undo
9890 9890
 
9891 9891
   public function setEffective($effective)
9892 9892
   {
9893
-    $this->effective = $effective;
9893
+	$this->effective = $effective;
9894 9894
   }
9895 9895
   public function getEffective()
9896 9896
   {
9897
-    return $this->effective;
9897
+	return $this->effective;
9898 9898
   }
9899 9899
 }
Please login to merge, or discard this patch.
Spacing   +55 added lines, -55 removed lines patch added patch discarded remove patch
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
                   'required' => true,
299 299
                 ),
300 300
               ),
301
-            ),'insert' => array(
301
+            ), 'insert' => array(
302 302
               'path' => 'management/accounts/{accountId}/entityUserLinks',
303 303
               'httpMethod' => 'POST',
304 304
               'parameters' => array(
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
                   'required' => true,
309 309
                 ),
310 310
               ),
311
-            ),'list' => array(
311
+            ), 'list' => array(
312 312
               'path' => 'management/accounts/{accountId}/entityUserLinks',
313 313
               'httpMethod' => 'GET',
314 314
               'parameters' => array(
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
                   'type' => 'integer',
327 327
                 ),
328 328
               ),
329
-            ),'update' => array(
329
+            ), 'update' => array(
330 330
               'path' => 'management/accounts/{accountId}/entityUserLinks/{linkId}',
331 331
               'httpMethod' => 'PUT',
332 332
               'parameters' => array(
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
                   'required' => true,
428 428
                 ),
429 429
               ),
430
-            ),'insert' => array(
430
+            ), 'insert' => array(
431 431
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
432 432
               'httpMethod' => 'POST',
433 433
               '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' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions',
447 447
               'httpMethod' => 'GET',
448 448
               'parameters' => array(
@@ -465,7 +465,7 @@  discard block
 block discarded – undo
465 465
                   'type' => 'integer',
466 466
                 ),
467 467
               ),
468
-            ),'patch' => array(
468
+            ), 'patch' => array(
469 469
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
470 470
               'httpMethod' => 'PATCH',
471 471
               'parameters' => array(
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
                   'type' => 'boolean',
490 490
                 ),
491 491
               ),
492
-            ),'update' => array(
492
+            ), 'update' => array(
493 493
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDimensions/{customDimensionId}',
494 494
               'httpMethod' => 'PUT',
495 495
               'parameters' => array(
@@ -543,7 +543,7 @@  discard block
 block discarded – undo
543 543
                   'required' => true,
544 544
                 ),
545 545
               ),
546
-            ),'insert' => array(
546
+            ), 'insert' => array(
547 547
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
548 548
               'httpMethod' => 'POST',
549 549
               'parameters' => array(
@@ -558,7 +558,7 @@  discard block
 block discarded – undo
558 558
                   'required' => true,
559 559
                 ),
560 560
               ),
561
-            ),'list' => array(
561
+            ), 'list' => array(
562 562
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics',
563 563
               'httpMethod' => 'GET',
564 564
               'parameters' => array(
@@ -581,7 +581,7 @@  discard block
 block discarded – undo
581 581
                   'type' => 'integer',
582 582
                 ),
583 583
               ),
584
-            ),'patch' => array(
584
+            ), 'patch' => array(
585 585
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
586 586
               'httpMethod' => 'PATCH',
587 587
               'parameters' => array(
@@ -605,7 +605,7 @@  discard block
 block discarded – undo
605 605
                   'type' => 'boolean',
606 606
                 ),
607 607
               ),
608
-            ),'update' => array(
608
+            ), 'update' => array(
609 609
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customMetrics/{customMetricId}',
610 610
               'httpMethod' => 'PUT',
611 611
               'parameters' => array(
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
                   'required' => true,
665 665
                 ),
666 666
               ),
667
-            ),'get' => array(
667
+            ), 'get' => array(
668 668
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
669 669
               'httpMethod' => 'GET',
670 670
               'parameters' => array(
@@ -689,7 +689,7 @@  discard block
 block discarded – undo
689 689
                   'required' => true,
690 690
                 ),
691 691
               ),
692
-            ),'insert' => array(
692
+            ), 'insert' => array(
693 693
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
694 694
               'httpMethod' => 'POST',
695 695
               'parameters' => array(
@@ -709,7 +709,7 @@  discard block
 block discarded – undo
709 709
                   'required' => true,
710 710
                 ),
711 711
               ),
712
-            ),'list' => array(
712
+            ), 'list' => array(
713 713
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments',
714 714
               'httpMethod' => 'GET',
715 715
               'parameters' => array(
@@ -737,7 +737,7 @@  discard block
 block discarded – undo
737 737
                   'type' => 'integer',
738 738
                 ),
739 739
               ),
740
-            ),'patch' => array(
740
+            ), 'patch' => array(
741 741
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
742 742
               'httpMethod' => 'PATCH',
743 743
               'parameters' => array(
@@ -762,7 +762,7 @@  discard block
 block discarded – undo
762 762
                   'required' => true,
763 763
                 ),
764 764
               ),
765
-            ),'update' => array(
765
+            ), 'update' => array(
766 766
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/experiments/{experimentId}',
767 767
               'httpMethod' => 'PUT',
768 768
               'parameters' => array(
@@ -812,7 +812,7 @@  discard block
 block discarded – undo
812 812
                   'required' => true,
813 813
                 ),
814 814
               ),
815
-            ),'get' => array(
815
+            ), 'get' => array(
816 816
               'path' => 'management/accounts/{accountId}/filters/{filterId}',
817 817
               'httpMethod' => 'GET',
818 818
               'parameters' => array(
@@ -827,7 +827,7 @@  discard block
 block discarded – undo
827 827
                   'required' => true,
828 828
                 ),
829 829
               ),
830
-            ),'insert' => array(
830
+            ), 'insert' => array(
831 831
               'path' => 'management/accounts/{accountId}/filters',
832 832
               'httpMethod' => 'POST',
833 833
               'parameters' => array(
@@ -837,7 +837,7 @@  discard block
 block discarded – undo
837 837
                   'required' => true,
838 838
                 ),
839 839
               ),
840
-            ),'list' => array(
840
+            ), 'list' => array(
841 841
               'path' => 'management/accounts/{accountId}/filters',
842 842
               'httpMethod' => 'GET',
843 843
               'parameters' => array(
@@ -855,7 +855,7 @@  discard block
 block discarded – undo
855 855
                   'type' => 'integer',
856 856
                 ),
857 857
               ),
858
-            ),'patch' => array(
858
+            ), 'patch' => array(
859 859
               'path' => 'management/accounts/{accountId}/filters/{filterId}',
860 860
               'httpMethod' => 'PATCH',
861 861
               'parameters' => array(
@@ -870,7 +870,7 @@  discard block
 block discarded – undo
870 870
                   'required' => true,
871 871
                 ),
872 872
               ),
873
-            ),'update' => array(
873
+            ), 'update' => array(
874 874
               'path' => 'management/accounts/{accountId}/filters/{filterId}',
875 875
               'httpMethod' => 'PUT',
876 876
               'parameters' => array(
@@ -920,7 +920,7 @@  discard block
 block discarded – undo
920 920
                   'required' => true,
921 921
                 ),
922 922
               ),
923
-            ),'insert' => array(
923
+            ), 'insert' => array(
924 924
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
925 925
               'httpMethod' => 'POST',
926 926
               'parameters' => array(
@@ -940,7 +940,7 @@  discard block
 block discarded – undo
940 940
                   'required' => true,
941 941
                 ),
942 942
               ),
943
-            ),'list' => array(
943
+            ), 'list' => array(
944 944
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals',
945 945
               'httpMethod' => 'GET',
946 946
               'parameters' => array(
@@ -968,7 +968,7 @@  discard block
 block discarded – undo
968 968
                   'type' => 'integer',
969 969
                 ),
970 970
               ),
971
-            ),'patch' => array(
971
+            ), 'patch' => array(
972 972
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
973 973
               'httpMethod' => 'PATCH',
974 974
               'parameters' => array(
@@ -993,7 +993,7 @@  discard block
 block discarded – undo
993 993
                   'required' => true,
994 994
                 ),
995 995
               ),
996
-            ),'update' => array(
996
+            ), 'update' => array(
997 997
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/goals/{goalId}',
998 998
               'httpMethod' => 'PUT',
999 999
               'parameters' => array(
@@ -1053,7 +1053,7 @@  discard block
 block discarded – undo
1053 1053
                   'required' => true,
1054 1054
                 ),
1055 1055
               ),
1056
-            ),'get' => array(
1056
+            ), 'get' => array(
1057 1057
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1058 1058
               'httpMethod' => 'GET',
1059 1059
               'parameters' => array(
@@ -1078,7 +1078,7 @@  discard block
 block discarded – undo
1078 1078
                   'required' => true,
1079 1079
                 ),
1080 1080
               ),
1081
-            ),'insert' => array(
1081
+            ), 'insert' => array(
1082 1082
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1083 1083
               'httpMethod' => 'POST',
1084 1084
               'parameters' => array(
@@ -1098,7 +1098,7 @@  discard block
 block discarded – undo
1098 1098
                   'required' => true,
1099 1099
                 ),
1100 1100
               ),
1101
-            ),'list' => array(
1101
+            ), 'list' => array(
1102 1102
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks',
1103 1103
               'httpMethod' => 'GET',
1104 1104
               'parameters' => array(
@@ -1126,7 +1126,7 @@  discard block
 block discarded – undo
1126 1126
                   'type' => 'integer',
1127 1127
                 ),
1128 1128
               ),
1129
-            ),'patch' => array(
1129
+            ), 'patch' => array(
1130 1130
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1131 1131
               'httpMethod' => 'PATCH',
1132 1132
               'parameters' => array(
@@ -1151,7 +1151,7 @@  discard block
 block discarded – undo
1151 1151
                   'required' => true,
1152 1152
                 ),
1153 1153
               ),
1154
-            ),'update' => array(
1154
+            ), 'update' => array(
1155 1155
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/profileFilterLinks/{linkId}',
1156 1156
               'httpMethod' => 'PUT',
1157 1157
               'parameters' => array(
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
                   'required' => true,
1212 1212
                 ),
1213 1213
               ),
1214
-            ),'insert' => array(
1214
+            ), 'insert' => array(
1215 1215
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1216 1216
               'httpMethod' => 'POST',
1217 1217
               'parameters' => array(
@@ -1231,7 +1231,7 @@  discard block
 block discarded – undo
1231 1231
                   'required' => true,
1232 1232
                 ),
1233 1233
               ),
1234
-            ),'list' => array(
1234
+            ), 'list' => array(
1235 1235
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks',
1236 1236
               'httpMethod' => 'GET',
1237 1237
               'parameters' => array(
@@ -1259,7 +1259,7 @@  discard block
 block discarded – undo
1259 1259
                   'type' => 'integer',
1260 1260
                 ),
1261 1261
               ),
1262
-            ),'update' => array(
1262
+            ), 'update' => array(
1263 1263
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/entityUserLinks/{linkId}',
1264 1264
               'httpMethod' => 'PUT',
1265 1265
               'parameters' => array(
@@ -1314,7 +1314,7 @@  discard block
 block discarded – undo
1314 1314
                   'required' => true,
1315 1315
                 ),
1316 1316
               ),
1317
-            ),'get' => array(
1317
+            ), 'get' => array(
1318 1318
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1319 1319
               'httpMethod' => 'GET',
1320 1320
               'parameters' => array(
@@ -1334,7 +1334,7 @@  discard block
 block discarded – undo
1334 1334
                   'required' => true,
1335 1335
                 ),
1336 1336
               ),
1337
-            ),'insert' => array(
1337
+            ), 'insert' => array(
1338 1338
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1339 1339
               'httpMethod' => 'POST',
1340 1340
               'parameters' => array(
@@ -1349,7 +1349,7 @@  discard block
 block discarded – undo
1349 1349
                   'required' => true,
1350 1350
                 ),
1351 1351
               ),
1352
-            ),'list' => array(
1352
+            ), 'list' => array(
1353 1353
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles',
1354 1354
               'httpMethod' => 'GET',
1355 1355
               'parameters' => array(
@@ -1372,7 +1372,7 @@  discard block
 block discarded – undo
1372 1372
                   'type' => 'integer',
1373 1373
                 ),
1374 1374
               ),
1375
-            ),'patch' => array(
1375
+            ), 'patch' => array(
1376 1376
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1377 1377
               'httpMethod' => 'PATCH',
1378 1378
               'parameters' => array(
@@ -1392,7 +1392,7 @@  discard block
 block discarded – undo
1392 1392
                   'required' => true,
1393 1393
                 ),
1394 1394
               ),
1395
-            ),'update' => array(
1395
+            ), 'update' => array(
1396 1396
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}',
1397 1397
               'httpMethod' => 'PUT',
1398 1398
               'parameters' => array(
@@ -1470,7 +1470,7 @@  discard block
 block discarded – undo
1470 1470
                   'required' => true,
1471 1471
                 ),
1472 1472
               ),
1473
-            ),'insert' => array(
1473
+            ), 'insert' => array(
1474 1474
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1475 1475
               'httpMethod' => 'POST',
1476 1476
               'parameters' => array(
@@ -1490,7 +1490,7 @@  discard block
 block discarded – undo
1490 1490
                   'required' => true,
1491 1491
                 ),
1492 1492
               ),
1493
-            ),'list' => array(
1493
+            ), 'list' => array(
1494 1494
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/profiles/{profileId}/unsampledReports',
1495 1495
               'httpMethod' => 'GET',
1496 1496
               'parameters' => array(
@@ -1548,7 +1548,7 @@  discard block
 block discarded – undo
1548 1548
                   'required' => true,
1549 1549
                 ),
1550 1550
               ),
1551
-            ),'get' => array(
1551
+            ), 'get' => array(
1552 1552
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads/{uploadId}',
1553 1553
               'httpMethod' => 'GET',
1554 1554
               'parameters' => array(
@@ -1573,7 +1573,7 @@  discard block
 block discarded – undo
1573 1573
                   'required' => true,
1574 1574
                 ),
1575 1575
               ),
1576
-            ),'list' => array(
1576
+            ), 'list' => array(
1577 1577
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1578 1578
               'httpMethod' => 'GET',
1579 1579
               'parameters' => array(
@@ -1601,7 +1601,7 @@  discard block
 block discarded – undo
1601 1601
                   'type' => 'integer',
1602 1602
                 ),
1603 1603
               ),
1604
-            ),'uploadData' => array(
1604
+            ), 'uploadData' => array(
1605 1605
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/customDataSources/{customDataSourceId}/uploads',
1606 1606
               'httpMethod' => 'POST',
1607 1607
               'parameters' => array(
@@ -1651,7 +1651,7 @@  discard block
 block discarded – undo
1651 1651
                   'required' => true,
1652 1652
                 ),
1653 1653
               ),
1654
-            ),'get' => array(
1654
+            ), 'get' => array(
1655 1655
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1656 1656
               'httpMethod' => 'GET',
1657 1657
               'parameters' => array(
@@ -1671,7 +1671,7 @@  discard block
 block discarded – undo
1671 1671
                   'required' => true,
1672 1672
                 ),
1673 1673
               ),
1674
-            ),'insert' => array(
1674
+            ), 'insert' => array(
1675 1675
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1676 1676
               'httpMethod' => 'POST',
1677 1677
               'parameters' => array(
@@ -1686,7 +1686,7 @@  discard block
 block discarded – undo
1686 1686
                   'required' => true,
1687 1687
                 ),
1688 1688
               ),
1689
-            ),'list' => array(
1689
+            ), 'list' => array(
1690 1690
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks',
1691 1691
               'httpMethod' => 'GET',
1692 1692
               'parameters' => array(
@@ -1709,7 +1709,7 @@  discard block
 block discarded – undo
1709 1709
                   'type' => 'integer',
1710 1710
                 ),
1711 1711
               ),
1712
-            ),'patch' => array(
1712
+            ), 'patch' => array(
1713 1713
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1714 1714
               'httpMethod' => 'PATCH',
1715 1715
               'parameters' => array(
@@ -1729,7 +1729,7 @@  discard block
 block discarded – undo
1729 1729
                   'required' => true,
1730 1730
                 ),
1731 1731
               ),
1732
-            ),'update' => array(
1732
+            ), 'update' => array(
1733 1733
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityAdWordsLinks/{webPropertyAdWordsLinkId}',
1734 1734
               'httpMethod' => 'PUT',
1735 1735
               'parameters' => array(
@@ -1774,7 +1774,7 @@  discard block
 block discarded – undo
1774 1774
                   'required' => true,
1775 1775
                 ),
1776 1776
               ),
1777
-            ),'insert' => array(
1777
+            ), 'insert' => array(
1778 1778
               'path' => 'management/accounts/{accountId}/webproperties',
1779 1779
               'httpMethod' => 'POST',
1780 1780
               'parameters' => array(
@@ -1784,7 +1784,7 @@  discard block
 block discarded – undo
1784 1784
                   'required' => true,
1785 1785
                 ),
1786 1786
               ),
1787
-            ),'list' => array(
1787
+            ), 'list' => array(
1788 1788
               'path' => 'management/accounts/{accountId}/webproperties',
1789 1789
               'httpMethod' => 'GET',
1790 1790
               'parameters' => array(
@@ -1802,7 +1802,7 @@  discard block
 block discarded – undo
1802 1802
                   'type' => 'integer',
1803 1803
                 ),
1804 1804
               ),
1805
-            ),'patch' => array(
1805
+            ), 'patch' => array(
1806 1806
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1807 1807
               'httpMethod' => 'PATCH',
1808 1808
               'parameters' => array(
@@ -1817,7 +1817,7 @@  discard block
 block discarded – undo
1817 1817
                   'required' => true,
1818 1818
                 ),
1819 1819
               ),
1820
-            ),'update' => array(
1820
+            ), 'update' => array(
1821 1821
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}',
1822 1822
               'httpMethod' => 'PUT',
1823 1823
               'parameters' => array(
@@ -1862,7 +1862,7 @@  discard block
 block discarded – undo
1862 1862
                   'required' => true,
1863 1863
                 ),
1864 1864
               ),
1865
-            ),'insert' => array(
1865
+            ), 'insert' => array(
1866 1866
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1867 1867
               'httpMethod' => 'POST',
1868 1868
               'parameters' => array(
@@ -1877,7 +1877,7 @@  discard block
 block discarded – undo
1877 1877
                   'required' => true,
1878 1878
                 ),
1879 1879
               ),
1880
-            ),'list' => array(
1880
+            ), 'list' => array(
1881 1881
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks',
1882 1882
               'httpMethod' => 'GET',
1883 1883
               'parameters' => array(
@@ -1900,7 +1900,7 @@  discard block
 block discarded – undo
1900 1900
                   'type' => 'integer',
1901 1901
                 ),
1902 1902
               ),
1903
-            ),'update' => array(
1903
+            ), 'update' => array(
1904 1904
               'path' => 'management/accounts/{accountId}/webproperties/{webPropertyId}/entityUserLinks/{linkId}',
1905 1905
               'httpMethod' => 'PUT',
1906 1906
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/AndroidEnterprise.php 3 patches
Doc Comments   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -1111,7 +1111,7 @@  discard block
 block discarded – undo
1111 1111
    * @param string $enterpriseId The ID of the enterprise.
1112 1112
    * @param string $collectionId The ID of the collection.
1113 1113
    * @param string $userId The ID of the user.
1114
-   * @param Google_User $postBody
1114
+   * @param Google_Service_AndroidEnterprise_User $postBody
1115 1115
    * @param array $optParams Optional parameters.
1116 1116
    * @return Google_Service_AndroidEnterprise_User
1117 1117
    */
@@ -1130,7 +1130,7 @@  discard block
 block discarded – undo
1130 1130
    * @param string $enterpriseId The ID of the enterprise.
1131 1131
    * @param string $collectionId The ID of the collection.
1132 1132
    * @param string $userId The ID of the user.
1133
-   * @param Google_User $postBody
1133
+   * @param Google_Service_AndroidEnterprise_User $postBody
1134 1134
    * @param array $optParams Optional parameters.
1135 1135
    * @return Google_Service_AndroidEnterprise_User
1136 1136
    */
@@ -1214,7 +1214,7 @@  discard block
 block discarded – undo
1214 1214
    * @param string $enterpriseId The ID of the enterprise.
1215 1215
    * @param string $userId The ID of the user.
1216 1216
    * @param string $deviceId The ID of the device.
1217
-   * @param Google_DeviceState $postBody
1217
+   * @param Google_Service_AndroidEnterprise_DeviceState $postBody
1218 1218
    * @param array $optParams Optional parameters.
1219 1219
    * @return Google_Service_AndroidEnterprise_DeviceState
1220 1220
    */
@@ -1258,7 +1258,7 @@  discard block
 block discarded – undo
1258 1258
    *
1259 1259
    * @param string $token The token provided by the enterprise to register the
1260 1260
    * MDM.
1261
-   * @param Google_Enterprise $postBody
1261
+   * @param Google_Service_AndroidEnterprise_Enterprise $postBody
1262 1262
    * @param array $optParams Optional parameters.
1263 1263
    * @return Google_Service_AndroidEnterprise_Enterprise
1264 1264
    */
@@ -1289,7 +1289,7 @@  discard block
 block discarded – undo
1289 1289
    *
1290 1290
    * @param string $token The token provided by the enterprise to register the
1291 1291
    * MDM.
1292
-   * @param Google_Enterprise $postBody
1292
+   * @param Google_Service_AndroidEnterprise_Enterprise $postBody
1293 1293
    * @param array $optParams Optional parameters.
1294 1294
    * @return Google_Service_AndroidEnterprise_Enterprise
1295 1295
    */
@@ -1320,7 +1320,7 @@  discard block
 block discarded – undo
1320 1320
    * enterprise. (enterprises.setAccount)
1321 1321
    *
1322 1322
    * @param string $enterpriseId The ID of the enterprise.
1323
-   * @param Google_EnterpriseAccount $postBody
1323
+   * @param Google_Service_AndroidEnterprise_EnterpriseAccount $postBody
1324 1324
    * @param array $optParams Optional parameters.
1325 1325
    * @return Google_Service_AndroidEnterprise_EnterpriseAccount
1326 1326
    */
@@ -1414,7 +1414,7 @@  discard block
 block discarded – undo
1414 1414
    * @param string $userId The ID of the user.
1415 1415
    * @param string $entitlementId The ID of the entitlement, e.g.
1416 1416
    * "app:com.google.android.gm".
1417
-   * @param Google_Entitlement $postBody
1417
+   * @param Google_Service_AndroidEnterprise_Entitlement $postBody
1418 1418
    * @param array $optParams Optional parameters.
1419 1419
    *
1420 1420
    * @opt_param bool install Set to true to also install the product on all the
@@ -1437,7 +1437,7 @@  discard block
 block discarded – undo
1437 1437
    * @param string $userId The ID of the user.
1438 1438
    * @param string $entitlementId The ID of the entitlement, e.g.
1439 1439
    * "app:com.google.android.gm".
1440
-   * @param Google_Entitlement $postBody
1440
+   * @param Google_Service_AndroidEnterprise_Entitlement $postBody
1441 1441
    * @param array $optParams Optional parameters.
1442 1442
    *
1443 1443
    * @opt_param bool install Set to true to also install the product on all the
@@ -1602,7 +1602,7 @@  discard block
 block discarded – undo
1602 1602
    * @param string $deviceId The Android ID of the device.
1603 1603
    * @param string $installId The ID of the product represented by the install,
1604 1604
    * e.g. "app:com.google.android.gm".
1605
-   * @param Google_Install $postBody
1605
+   * @param Google_Service_AndroidEnterprise_Install $postBody
1606 1606
    * @param array $optParams Optional parameters.
1607 1607
    * @return Google_Service_AndroidEnterprise_Install
1608 1608
    */
@@ -1623,7 +1623,7 @@  discard block
 block discarded – undo
1623 1623
    * @param string $deviceId The Android ID of the device.
1624 1624
    * @param string $installId The ID of the product represented by the install,
1625 1625
    * e.g. "app:com.google.android.gm".
1626
-   * @param Google_Install $postBody
1626
+   * @param Google_Service_AndroidEnterprise_Install $postBody
1627 1627
    * @param array $optParams Optional parameters.
1628 1628
    * @return Google_Service_AndroidEnterprise_Install
1629 1629
    */
@@ -1682,7 +1682,7 @@  discard block
 block discarded – undo
1682 1682
    *
1683 1683
    * @param string $enterpriseId The ID of the enterprise.
1684 1684
    * @param string $productId The ID of the product.
1685
-   * @param Google_ProductsApproveRequest $postBody
1685
+   * @param Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody
1686 1686
    * @param array $optParams Optional parameters.
1687 1687
    */
1688 1688
   public function approve($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody, $optParams = array())
@@ -1775,7 +1775,7 @@  discard block
 block discarded – undo
1775 1775
    *
1776 1776
    * @param string $enterpriseId The ID of the enterprise.
1777 1777
    * @param string $productId The ID of the product.
1778
-   * @param Google_ProductPermissions $postBody
1778
+   * @param Google_Service_AndroidEnterprise_ProductPermissions $postBody
1779 1779
    * @param array $optParams Optional parameters.
1780 1780
    * @return Google_Service_AndroidEnterprise_ProductPermissions
1781 1781
    */
Please login to merge, or discard this patch.
Indentation   +1196 added lines, -1196 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** Manage corporate Android devices. */
35 35
   const ANDROIDENTERPRISE =
36
-      "https://www.googleapis.com/auth/androidenterprise";
36
+	  "https://www.googleapis.com/auth/androidenterprise";
37 37
 
38 38
   public $collections;
39 39
   public $collectionviewers;
@@ -55,881 +55,881 @@  discard block
 block discarded – undo
55 55
    */
56 56
   public function __construct(Google_Client $client)
57 57
   {
58
-    parent::__construct($client);
59
-    $this->rootUrl = 'https://www.googleapis.com/';
60
-    $this->servicePath = 'androidenterprise/v1/';
61
-    $this->version = 'v1';
62
-    $this->serviceName = 'androidenterprise';
63
-
64
-    $this->collections = new Google_Service_AndroidEnterprise_Collections_Resource(
65
-        $this,
66
-        $this->serviceName,
67
-        'collections',
68
-        array(
69
-          'methods' => array(
70
-            'delete' => array(
71
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
72
-              'httpMethod' => 'DELETE',
73
-              'parameters' => array(
74
-                'enterpriseId' => array(
75
-                  'location' => 'path',
76
-                  'type' => 'string',
77
-                  'required' => true,
78
-                ),
79
-                'collectionId' => array(
80
-                  'location' => 'path',
81
-                  'type' => 'string',
82
-                  'required' => true,
83
-                ),
84
-              ),
85
-            ),'get' => array(
86
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'enterpriseId' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-                'collectionId' => array(
95
-                  'location' => 'path',
96
-                  'type' => 'string',
97
-                  'required' => true,
98
-                ),
99
-              ),
100
-            ),'insert' => array(
101
-              'path' => 'enterprises/{enterpriseId}/collections',
102
-              'httpMethod' => 'POST',
103
-              'parameters' => array(
104
-                'enterpriseId' => array(
105
-                  'location' => 'path',
106
-                  'type' => 'string',
107
-                  'required' => true,
108
-                ),
109
-              ),
110
-            ),'list' => array(
111
-              'path' => 'enterprises/{enterpriseId}/collections',
112
-              'httpMethod' => 'GET',
113
-              'parameters' => array(
114
-                'enterpriseId' => array(
115
-                  'location' => 'path',
116
-                  'type' => 'string',
117
-                  'required' => true,
118
-                ),
119
-              ),
120
-            ),'patch' => array(
121
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
122
-              'httpMethod' => 'PATCH',
123
-              'parameters' => array(
124
-                'enterpriseId' => array(
125
-                  'location' => 'path',
126
-                  'type' => 'string',
127
-                  'required' => true,
128
-                ),
129
-                'collectionId' => array(
130
-                  'location' => 'path',
131
-                  'type' => 'string',
132
-                  'required' => true,
133
-                ),
134
-              ),
135
-            ),'update' => array(
136
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
137
-              'httpMethod' => 'PUT',
138
-              'parameters' => array(
139
-                'enterpriseId' => array(
140
-                  'location' => 'path',
141
-                  'type' => 'string',
142
-                  'required' => true,
143
-                ),
144
-                'collectionId' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-              ),
150
-            ),
151
-          )
152
-        )
153
-    );
154
-    $this->collectionviewers = new Google_Service_AndroidEnterprise_Collectionviewers_Resource(
155
-        $this,
156
-        $this->serviceName,
157
-        'collectionviewers',
158
-        array(
159
-          'methods' => array(
160
-            'delete' => array(
161
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
162
-              'httpMethod' => 'DELETE',
163
-              'parameters' => array(
164
-                'enterpriseId' => array(
165
-                  'location' => 'path',
166
-                  'type' => 'string',
167
-                  'required' => true,
168
-                ),
169
-                'collectionId' => array(
170
-                  'location' => 'path',
171
-                  'type' => 'string',
172
-                  'required' => true,
173
-                ),
174
-                'userId' => array(
175
-                  'location' => 'path',
176
-                  'type' => 'string',
177
-                  'required' => true,
178
-                ),
179
-              ),
180
-            ),'get' => array(
181
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
182
-              'httpMethod' => 'GET',
183
-              'parameters' => array(
184
-                'enterpriseId' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-                'collectionId' => array(
190
-                  'location' => 'path',
191
-                  'type' => 'string',
192
-                  'required' => true,
193
-                ),
194
-                'userId' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-              ),
200
-            ),'list' => array(
201
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users',
202
-              'httpMethod' => 'GET',
203
-              'parameters' => array(
204
-                'enterpriseId' => array(
205
-                  'location' => 'path',
206
-                  'type' => 'string',
207
-                  'required' => true,
208
-                ),
209
-                'collectionId' => array(
210
-                  'location' => 'path',
211
-                  'type' => 'string',
212
-                  'required' => true,
213
-                ),
214
-              ),
215
-            ),'patch' => array(
216
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
217
-              'httpMethod' => 'PATCH',
218
-              'parameters' => array(
219
-                'enterpriseId' => array(
220
-                  'location' => 'path',
221
-                  'type' => 'string',
222
-                  'required' => true,
223
-                ),
224
-                'collectionId' => array(
225
-                  'location' => 'path',
226
-                  'type' => 'string',
227
-                  'required' => true,
228
-                ),
229
-                'userId' => array(
230
-                  'location' => 'path',
231
-                  'type' => 'string',
232
-                  'required' => true,
233
-                ),
234
-              ),
235
-            ),'update' => array(
236
-              'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
237
-              'httpMethod' => 'PUT',
238
-              'parameters' => array(
239
-                'enterpriseId' => array(
240
-                  'location' => 'path',
241
-                  'type' => 'string',
242
-                  'required' => true,
243
-                ),
244
-                'collectionId' => array(
245
-                  'location' => 'path',
246
-                  'type' => 'string',
247
-                  'required' => true,
248
-                ),
249
-                'userId' => array(
250
-                  'location' => 'path',
251
-                  'type' => 'string',
252
-                  'required' => true,
253
-                ),
254
-              ),
255
-            ),
256
-          )
257
-        )
258
-    );
259
-    $this->devices = new Google_Service_AndroidEnterprise_Devices_Resource(
260
-        $this,
261
-        $this->serviceName,
262
-        'devices',
263
-        array(
264
-          'methods' => array(
265
-            'get' => array(
266
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}',
267
-              'httpMethod' => 'GET',
268
-              'parameters' => array(
269
-                'enterpriseId' => array(
270
-                  'location' => 'path',
271
-                  'type' => 'string',
272
-                  'required' => true,
273
-                ),
274
-                'userId' => array(
275
-                  'location' => 'path',
276
-                  'type' => 'string',
277
-                  'required' => true,
278
-                ),
279
-                'deviceId' => array(
280
-                  'location' => 'path',
281
-                  'type' => 'string',
282
-                  'required' => true,
283
-                ),
284
-              ),
285
-            ),'getState' => array(
286
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
287
-              'httpMethod' => 'GET',
288
-              'parameters' => array(
289
-                'enterpriseId' => array(
290
-                  'location' => 'path',
291
-                  'type' => 'string',
292
-                  'required' => true,
293
-                ),
294
-                'userId' => array(
295
-                  'location' => 'path',
296
-                  'type' => 'string',
297
-                  'required' => true,
298
-                ),
299
-                'deviceId' => array(
300
-                  'location' => 'path',
301
-                  'type' => 'string',
302
-                  'required' => true,
303
-                ),
304
-              ),
305
-            ),'list' => array(
306
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices',
307
-              'httpMethod' => 'GET',
308
-              'parameters' => array(
309
-                'enterpriseId' => array(
310
-                  'location' => 'path',
311
-                  'type' => 'string',
312
-                  'required' => true,
313
-                ),
314
-                'userId' => array(
315
-                  'location' => 'path',
316
-                  'type' => 'string',
317
-                  'required' => true,
318
-                ),
319
-              ),
320
-            ),'setState' => array(
321
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
322
-              'httpMethod' => 'PUT',
323
-              'parameters' => array(
324
-                'enterpriseId' => array(
325
-                  'location' => 'path',
326
-                  'type' => 'string',
327
-                  'required' => true,
328
-                ),
329
-                'userId' => array(
330
-                  'location' => 'path',
331
-                  'type' => 'string',
332
-                  'required' => true,
333
-                ),
334
-                'deviceId' => array(
335
-                  'location' => 'path',
336
-                  'type' => 'string',
337
-                  'required' => true,
338
-                ),
339
-              ),
340
-            ),
341
-          )
342
-        )
343
-    );
344
-    $this->enterprises = new Google_Service_AndroidEnterprise_Enterprises_Resource(
345
-        $this,
346
-        $this->serviceName,
347
-        'enterprises',
348
-        array(
349
-          'methods' => array(
350
-            'delete' => array(
351
-              'path' => 'enterprises/{enterpriseId}',
352
-              'httpMethod' => 'DELETE',
353
-              'parameters' => array(
354
-                'enterpriseId' => array(
355
-                  'location' => 'path',
356
-                  'type' => 'string',
357
-                  'required' => true,
358
-                ),
359
-              ),
360
-            ),'enroll' => array(
361
-              'path' => 'enterprises/enroll',
362
-              'httpMethod' => 'POST',
363
-              'parameters' => array(
364
-                'token' => array(
365
-                  'location' => 'query',
366
-                  'type' => 'string',
367
-                  'required' => true,
368
-                ),
369
-              ),
370
-            ),'get' => array(
371
-              'path' => 'enterprises/{enterpriseId}',
372
-              'httpMethod' => 'GET',
373
-              'parameters' => array(
374
-                'enterpriseId' => array(
375
-                  'location' => 'path',
376
-                  'type' => 'string',
377
-                  'required' => true,
378
-                ),
379
-              ),
380
-            ),'insert' => array(
381
-              'path' => 'enterprises',
382
-              'httpMethod' => 'POST',
383
-              'parameters' => array(
384
-                'token' => array(
385
-                  'location' => 'query',
386
-                  'type' => 'string',
387
-                  'required' => true,
388
-                ),
389
-              ),
390
-            ),'list' => array(
391
-              'path' => 'enterprises',
392
-              'httpMethod' => 'GET',
393
-              'parameters' => array(
394
-                'domain' => array(
395
-                  'location' => 'query',
396
-                  'type' => 'string',
397
-                  'required' => true,
398
-                ),
399
-              ),
400
-            ),'setAccount' => array(
401
-              'path' => 'enterprises/{enterpriseId}/account',
402
-              'httpMethod' => 'PUT',
403
-              'parameters' => array(
404
-                'enterpriseId' => array(
405
-                  'location' => 'path',
406
-                  'type' => 'string',
407
-                  'required' => true,
408
-                ),
409
-              ),
410
-            ),'unenroll' => array(
411
-              'path' => 'enterprises/{enterpriseId}/unenroll',
412
-              'httpMethod' => 'POST',
413
-              'parameters' => array(
414
-                'enterpriseId' => array(
415
-                  'location' => 'path',
416
-                  'type' => 'string',
417
-                  'required' => true,
418
-                ),
419
-              ),
420
-            ),
421
-          )
422
-        )
423
-    );
424
-    $this->entitlements = new Google_Service_AndroidEnterprise_Entitlements_Resource(
425
-        $this,
426
-        $this->serviceName,
427
-        'entitlements',
428
-        array(
429
-          'methods' => array(
430
-            'delete' => array(
431
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
432
-              'httpMethod' => 'DELETE',
433
-              'parameters' => array(
434
-                'enterpriseId' => array(
435
-                  'location' => 'path',
436
-                  'type' => 'string',
437
-                  'required' => true,
438
-                ),
439
-                'userId' => array(
440
-                  'location' => 'path',
441
-                  'type' => 'string',
442
-                  'required' => true,
443
-                ),
444
-                'entitlementId' => array(
445
-                  'location' => 'path',
446
-                  'type' => 'string',
447
-                  'required' => true,
448
-                ),
449
-              ),
450
-            ),'get' => array(
451
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
452
-              'httpMethod' => 'GET',
453
-              'parameters' => array(
454
-                'enterpriseId' => array(
455
-                  'location' => 'path',
456
-                  'type' => 'string',
457
-                  'required' => true,
458
-                ),
459
-                'userId' => array(
460
-                  'location' => 'path',
461
-                  'type' => 'string',
462
-                  'required' => true,
463
-                ),
464
-                'entitlementId' => array(
465
-                  'location' => 'path',
466
-                  'type' => 'string',
467
-                  'required' => true,
468
-                ),
469
-              ),
470
-            ),'list' => array(
471
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements',
472
-              'httpMethod' => 'GET',
473
-              'parameters' => array(
474
-                'enterpriseId' => array(
475
-                  'location' => 'path',
476
-                  'type' => 'string',
477
-                  'required' => true,
478
-                ),
479
-                'userId' => array(
480
-                  'location' => 'path',
481
-                  'type' => 'string',
482
-                  'required' => true,
483
-                ),
484
-              ),
485
-            ),'patch' => array(
486
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
487
-              'httpMethod' => 'PATCH',
488
-              'parameters' => array(
489
-                'enterpriseId' => array(
490
-                  'location' => 'path',
491
-                  'type' => 'string',
492
-                  'required' => true,
493
-                ),
494
-                'userId' => array(
495
-                  'location' => 'path',
496
-                  'type' => 'string',
497
-                  'required' => true,
498
-                ),
499
-                'entitlementId' => array(
500
-                  'location' => 'path',
501
-                  'type' => 'string',
502
-                  'required' => true,
503
-                ),
504
-                'install' => array(
505
-                  'location' => 'query',
506
-                  'type' => 'boolean',
507
-                ),
508
-              ),
509
-            ),'update' => array(
510
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
511
-              'httpMethod' => 'PUT',
512
-              'parameters' => array(
513
-                'enterpriseId' => array(
514
-                  'location' => 'path',
515
-                  'type' => 'string',
516
-                  'required' => true,
517
-                ),
518
-                'userId' => array(
519
-                  'location' => 'path',
520
-                  'type' => 'string',
521
-                  'required' => true,
522
-                ),
523
-                'entitlementId' => array(
524
-                  'location' => 'path',
525
-                  'type' => 'string',
526
-                  'required' => true,
527
-                ),
528
-                'install' => array(
529
-                  'location' => 'query',
530
-                  'type' => 'boolean',
531
-                ),
532
-              ),
533
-            ),
534
-          )
535
-        )
536
-    );
537
-    $this->grouplicenses = new Google_Service_AndroidEnterprise_Grouplicenses_Resource(
538
-        $this,
539
-        $this->serviceName,
540
-        'grouplicenses',
541
-        array(
542
-          'methods' => array(
543
-            'get' => array(
544
-              'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}',
545
-              'httpMethod' => 'GET',
546
-              'parameters' => array(
547
-                'enterpriseId' => array(
548
-                  'location' => 'path',
549
-                  'type' => 'string',
550
-                  'required' => true,
551
-                ),
552
-                'groupLicenseId' => array(
553
-                  'location' => 'path',
554
-                  'type' => 'string',
555
-                  'required' => true,
556
-                ),
557
-              ),
558
-            ),'list' => array(
559
-              'path' => 'enterprises/{enterpriseId}/groupLicenses',
560
-              'httpMethod' => 'GET',
561
-              'parameters' => array(
562
-                'enterpriseId' => array(
563
-                  'location' => 'path',
564
-                  'type' => 'string',
565
-                  'required' => true,
566
-                ),
567
-              ),
568
-            ),
569
-          )
570
-        )
571
-    );
572
-    $this->grouplicenseusers = new Google_Service_AndroidEnterprise_Grouplicenseusers_Resource(
573
-        $this,
574
-        $this->serviceName,
575
-        'grouplicenseusers',
576
-        array(
577
-          'methods' => array(
578
-            'list' => array(
579
-              'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users',
580
-              'httpMethod' => 'GET',
581
-              'parameters' => array(
582
-                'enterpriseId' => array(
583
-                  'location' => 'path',
584
-                  'type' => 'string',
585
-                  'required' => true,
586
-                ),
587
-                'groupLicenseId' => array(
588
-                  'location' => 'path',
589
-                  'type' => 'string',
590
-                  'required' => true,
591
-                ),
592
-              ),
593
-            ),
594
-          )
595
-        )
596
-    );
597
-    $this->installs = new Google_Service_AndroidEnterprise_Installs_Resource(
598
-        $this,
599
-        $this->serviceName,
600
-        'installs',
601
-        array(
602
-          'methods' => array(
603
-            'delete' => array(
604
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
605
-              'httpMethod' => 'DELETE',
606
-              'parameters' => array(
607
-                'enterpriseId' => array(
608
-                  'location' => 'path',
609
-                  'type' => 'string',
610
-                  'required' => true,
611
-                ),
612
-                'userId' => array(
613
-                  'location' => 'path',
614
-                  'type' => 'string',
615
-                  'required' => true,
616
-                ),
617
-                'deviceId' => array(
618
-                  'location' => 'path',
619
-                  'type' => 'string',
620
-                  'required' => true,
621
-                ),
622
-                'installId' => array(
623
-                  'location' => 'path',
624
-                  'type' => 'string',
625
-                  'required' => true,
626
-                ),
627
-              ),
628
-            ),'get' => array(
629
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
630
-              'httpMethod' => 'GET',
631
-              'parameters' => array(
632
-                'enterpriseId' => array(
633
-                  'location' => 'path',
634
-                  'type' => 'string',
635
-                  'required' => true,
636
-                ),
637
-                'userId' => array(
638
-                  'location' => 'path',
639
-                  'type' => 'string',
640
-                  'required' => true,
641
-                ),
642
-                'deviceId' => array(
643
-                  'location' => 'path',
644
-                  'type' => 'string',
645
-                  'required' => true,
646
-                ),
647
-                'installId' => array(
648
-                  'location' => 'path',
649
-                  'type' => 'string',
650
-                  'required' => true,
651
-                ),
652
-              ),
653
-            ),'list' => array(
654
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs',
655
-              'httpMethod' => 'GET',
656
-              'parameters' => array(
657
-                'enterpriseId' => array(
658
-                  'location' => 'path',
659
-                  'type' => 'string',
660
-                  'required' => true,
661
-                ),
662
-                'userId' => array(
663
-                  'location' => 'path',
664
-                  'type' => 'string',
665
-                  'required' => true,
666
-                ),
667
-                'deviceId' => array(
668
-                  'location' => 'path',
669
-                  'type' => 'string',
670
-                  'required' => true,
671
-                ),
672
-              ),
673
-            ),'patch' => array(
674
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
675
-              'httpMethod' => 'PATCH',
676
-              'parameters' => array(
677
-                'enterpriseId' => array(
678
-                  'location' => 'path',
679
-                  'type' => 'string',
680
-                  'required' => true,
681
-                ),
682
-                'userId' => array(
683
-                  'location' => 'path',
684
-                  'type' => 'string',
685
-                  'required' => true,
686
-                ),
687
-                'deviceId' => array(
688
-                  'location' => 'path',
689
-                  'type' => 'string',
690
-                  'required' => true,
691
-                ),
692
-                'installId' => array(
693
-                  'location' => 'path',
694
-                  'type' => 'string',
695
-                  'required' => true,
696
-                ),
697
-              ),
698
-            ),'update' => array(
699
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
700
-              'httpMethod' => 'PUT',
701
-              'parameters' => array(
702
-                'enterpriseId' => array(
703
-                  'location' => 'path',
704
-                  'type' => 'string',
705
-                  'required' => true,
706
-                ),
707
-                'userId' => array(
708
-                  'location' => 'path',
709
-                  'type' => 'string',
710
-                  'required' => true,
711
-                ),
712
-                'deviceId' => array(
713
-                  'location' => 'path',
714
-                  'type' => 'string',
715
-                  'required' => true,
716
-                ),
717
-                'installId' => array(
718
-                  'location' => 'path',
719
-                  'type' => 'string',
720
-                  'required' => true,
721
-                ),
722
-              ),
723
-            ),
724
-          )
725
-        )
726
-    );
727
-    $this->permissions = new Google_Service_AndroidEnterprise_Permissions_Resource(
728
-        $this,
729
-        $this->serviceName,
730
-        'permissions',
731
-        array(
732
-          'methods' => array(
733
-            'get' => array(
734
-              'path' => 'permissions/{permissionId}',
735
-              'httpMethod' => 'GET',
736
-              'parameters' => array(
737
-                'permissionId' => array(
738
-                  'location' => 'path',
739
-                  'type' => 'string',
740
-                  'required' => true,
741
-                ),
742
-                'language' => array(
743
-                  'location' => 'query',
744
-                  'type' => 'string',
745
-                ),
746
-              ),
747
-            ),
748
-          )
749
-        )
750
-    );
751
-    $this->products = new Google_Service_AndroidEnterprise_Products_Resource(
752
-        $this,
753
-        $this->serviceName,
754
-        'products',
755
-        array(
756
-          'methods' => array(
757
-            'approve' => array(
758
-              'path' => 'enterprises/{enterpriseId}/products/{productId}/approve',
759
-              'httpMethod' => 'POST',
760
-              'parameters' => array(
761
-                'enterpriseId' => array(
762
-                  'location' => 'path',
763
-                  'type' => 'string',
764
-                  'required' => true,
765
-                ),
766
-                'productId' => array(
767
-                  'location' => 'path',
768
-                  'type' => 'string',
769
-                  'required' => true,
770
-                ),
771
-              ),
772
-            ),'generateApprovalUrl' => array(
773
-              'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl',
774
-              'httpMethod' => 'POST',
775
-              'parameters' => array(
776
-                'enterpriseId' => array(
777
-                  'location' => 'path',
778
-                  'type' => 'string',
779
-                  'required' => true,
780
-                ),
781
-                'productId' => array(
782
-                  'location' => 'path',
783
-                  'type' => 'string',
784
-                  'required' => true,
785
-                ),
786
-                'languageCode' => array(
787
-                  'location' => 'query',
788
-                  'type' => 'string',
789
-                ),
790
-              ),
791
-            ),'get' => array(
792
-              'path' => 'enterprises/{enterpriseId}/products/{productId}',
793
-              'httpMethod' => 'GET',
794
-              'parameters' => array(
795
-                'enterpriseId' => array(
796
-                  'location' => 'path',
797
-                  'type' => 'string',
798
-                  'required' => true,
799
-                ),
800
-                'productId' => array(
801
-                  'location' => 'path',
802
-                  'type' => 'string',
803
-                  'required' => true,
804
-                ),
805
-                'language' => array(
806
-                  'location' => 'query',
807
-                  'type' => 'string',
808
-                ),
809
-              ),
810
-            ),'getAppRestrictionsSchema' => array(
811
-              'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema',
812
-              'httpMethod' => 'GET',
813
-              'parameters' => array(
814
-                'enterpriseId' => array(
815
-                  'location' => 'path',
816
-                  'type' => 'string',
817
-                  'required' => true,
818
-                ),
819
-                'productId' => array(
820
-                  'location' => 'path',
821
-                  'type' => 'string',
822
-                  'required' => true,
823
-                ),
824
-                'language' => array(
825
-                  'location' => 'query',
826
-                  'type' => 'string',
827
-                ),
828
-              ),
829
-            ),'getPermissions' => array(
830
-              'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
831
-              'httpMethod' => 'GET',
832
-              'parameters' => array(
833
-                'enterpriseId' => array(
834
-                  'location' => 'path',
835
-                  'type' => 'string',
836
-                  'required' => true,
837
-                ),
838
-                'productId' => array(
839
-                  'location' => 'path',
840
-                  'type' => 'string',
841
-                  'required' => true,
842
-                ),
843
-              ),
844
-            ),'updatePermissions' => array(
845
-              'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
846
-              'httpMethod' => 'PUT',
847
-              'parameters' => array(
848
-                'enterpriseId' => array(
849
-                  'location' => 'path',
850
-                  'type' => 'string',
851
-                  'required' => true,
852
-                ),
853
-                'productId' => array(
854
-                  'location' => 'path',
855
-                  'type' => 'string',
856
-                  'required' => true,
857
-                ),
858
-              ),
859
-            ),
860
-          )
861
-        )
862
-    );
863
-    $this->users = new Google_Service_AndroidEnterprise_Users_Resource(
864
-        $this,
865
-        $this->serviceName,
866
-        'users',
867
-        array(
868
-          'methods' => array(
869
-            'generateToken' => array(
870
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/token',
871
-              'httpMethod' => 'POST',
872
-              'parameters' => array(
873
-                'enterpriseId' => array(
874
-                  'location' => 'path',
875
-                  'type' => 'string',
876
-                  'required' => true,
877
-                ),
878
-                'userId' => array(
879
-                  'location' => 'path',
880
-                  'type' => 'string',
881
-                  'required' => true,
882
-                ),
883
-              ),
884
-            ),'get' => array(
885
-              'path' => 'enterprises/{enterpriseId}/users/{userId}',
886
-              'httpMethod' => 'GET',
887
-              'parameters' => array(
888
-                'enterpriseId' => array(
889
-                  'location' => 'path',
890
-                  'type' => 'string',
891
-                  'required' => true,
892
-                ),
893
-                'userId' => array(
894
-                  'location' => 'path',
895
-                  'type' => 'string',
896
-                  'required' => true,
897
-                ),
898
-              ),
899
-            ),'list' => array(
900
-              'path' => 'enterprises/{enterpriseId}/users',
901
-              'httpMethod' => 'GET',
902
-              'parameters' => array(
903
-                'enterpriseId' => array(
904
-                  'location' => 'path',
905
-                  'type' => 'string',
906
-                  'required' => true,
907
-                ),
908
-                'email' => array(
909
-                  'location' => 'query',
910
-                  'type' => 'string',
911
-                  'required' => true,
912
-                ),
913
-              ),
914
-            ),'revokeToken' => array(
915
-              'path' => 'enterprises/{enterpriseId}/users/{userId}/token',
916
-              'httpMethod' => 'DELETE',
917
-              'parameters' => array(
918
-                'enterpriseId' => array(
919
-                  'location' => 'path',
920
-                  'type' => 'string',
921
-                  'required' => true,
922
-                ),
923
-                'userId' => array(
924
-                  'location' => 'path',
925
-                  'type' => 'string',
926
-                  'required' => true,
927
-                ),
928
-              ),
929
-            ),
930
-          )
931
-        )
932
-    );
58
+	parent::__construct($client);
59
+	$this->rootUrl = 'https://www.googleapis.com/';
60
+	$this->servicePath = 'androidenterprise/v1/';
61
+	$this->version = 'v1';
62
+	$this->serviceName = 'androidenterprise';
63
+
64
+	$this->collections = new Google_Service_AndroidEnterprise_Collections_Resource(
65
+		$this,
66
+		$this->serviceName,
67
+		'collections',
68
+		array(
69
+		  'methods' => array(
70
+			'delete' => array(
71
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
72
+			  'httpMethod' => 'DELETE',
73
+			  'parameters' => array(
74
+				'enterpriseId' => array(
75
+				  'location' => 'path',
76
+				  'type' => 'string',
77
+				  'required' => true,
78
+				),
79
+				'collectionId' => array(
80
+				  'location' => 'path',
81
+				  'type' => 'string',
82
+				  'required' => true,
83
+				),
84
+			  ),
85
+			),'get' => array(
86
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'enterpriseId' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+				'collectionId' => array(
95
+				  'location' => 'path',
96
+				  'type' => 'string',
97
+				  'required' => true,
98
+				),
99
+			  ),
100
+			),'insert' => array(
101
+			  'path' => 'enterprises/{enterpriseId}/collections',
102
+			  'httpMethod' => 'POST',
103
+			  'parameters' => array(
104
+				'enterpriseId' => array(
105
+				  'location' => 'path',
106
+				  'type' => 'string',
107
+				  'required' => true,
108
+				),
109
+			  ),
110
+			),'list' => array(
111
+			  'path' => 'enterprises/{enterpriseId}/collections',
112
+			  'httpMethod' => 'GET',
113
+			  'parameters' => array(
114
+				'enterpriseId' => array(
115
+				  'location' => 'path',
116
+				  'type' => 'string',
117
+				  'required' => true,
118
+				),
119
+			  ),
120
+			),'patch' => array(
121
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
122
+			  'httpMethod' => 'PATCH',
123
+			  'parameters' => array(
124
+				'enterpriseId' => array(
125
+				  'location' => 'path',
126
+				  'type' => 'string',
127
+				  'required' => true,
128
+				),
129
+				'collectionId' => array(
130
+				  'location' => 'path',
131
+				  'type' => 'string',
132
+				  'required' => true,
133
+				),
134
+			  ),
135
+			),'update' => array(
136
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
137
+			  'httpMethod' => 'PUT',
138
+			  'parameters' => array(
139
+				'enterpriseId' => array(
140
+				  'location' => 'path',
141
+				  'type' => 'string',
142
+				  'required' => true,
143
+				),
144
+				'collectionId' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+			  ),
150
+			),
151
+		  )
152
+		)
153
+	);
154
+	$this->collectionviewers = new Google_Service_AndroidEnterprise_Collectionviewers_Resource(
155
+		$this,
156
+		$this->serviceName,
157
+		'collectionviewers',
158
+		array(
159
+		  'methods' => array(
160
+			'delete' => array(
161
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
162
+			  'httpMethod' => 'DELETE',
163
+			  'parameters' => array(
164
+				'enterpriseId' => array(
165
+				  'location' => 'path',
166
+				  'type' => 'string',
167
+				  'required' => true,
168
+				),
169
+				'collectionId' => array(
170
+				  'location' => 'path',
171
+				  'type' => 'string',
172
+				  'required' => true,
173
+				),
174
+				'userId' => array(
175
+				  'location' => 'path',
176
+				  'type' => 'string',
177
+				  'required' => true,
178
+				),
179
+			  ),
180
+			),'get' => array(
181
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
182
+			  'httpMethod' => 'GET',
183
+			  'parameters' => array(
184
+				'enterpriseId' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+				'collectionId' => array(
190
+				  'location' => 'path',
191
+				  'type' => 'string',
192
+				  'required' => true,
193
+				),
194
+				'userId' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+			  ),
200
+			),'list' => array(
201
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users',
202
+			  'httpMethod' => 'GET',
203
+			  'parameters' => array(
204
+				'enterpriseId' => array(
205
+				  'location' => 'path',
206
+				  'type' => 'string',
207
+				  'required' => true,
208
+				),
209
+				'collectionId' => array(
210
+				  'location' => 'path',
211
+				  'type' => 'string',
212
+				  'required' => true,
213
+				),
214
+			  ),
215
+			),'patch' => array(
216
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
217
+			  'httpMethod' => 'PATCH',
218
+			  'parameters' => array(
219
+				'enterpriseId' => array(
220
+				  'location' => 'path',
221
+				  'type' => 'string',
222
+				  'required' => true,
223
+				),
224
+				'collectionId' => array(
225
+				  'location' => 'path',
226
+				  'type' => 'string',
227
+				  'required' => true,
228
+				),
229
+				'userId' => array(
230
+				  'location' => 'path',
231
+				  'type' => 'string',
232
+				  'required' => true,
233
+				),
234
+			  ),
235
+			),'update' => array(
236
+			  'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
237
+			  'httpMethod' => 'PUT',
238
+			  'parameters' => array(
239
+				'enterpriseId' => array(
240
+				  'location' => 'path',
241
+				  'type' => 'string',
242
+				  'required' => true,
243
+				),
244
+				'collectionId' => array(
245
+				  'location' => 'path',
246
+				  'type' => 'string',
247
+				  'required' => true,
248
+				),
249
+				'userId' => array(
250
+				  'location' => 'path',
251
+				  'type' => 'string',
252
+				  'required' => true,
253
+				),
254
+			  ),
255
+			),
256
+		  )
257
+		)
258
+	);
259
+	$this->devices = new Google_Service_AndroidEnterprise_Devices_Resource(
260
+		$this,
261
+		$this->serviceName,
262
+		'devices',
263
+		array(
264
+		  'methods' => array(
265
+			'get' => array(
266
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}',
267
+			  'httpMethod' => 'GET',
268
+			  'parameters' => array(
269
+				'enterpriseId' => array(
270
+				  'location' => 'path',
271
+				  'type' => 'string',
272
+				  'required' => true,
273
+				),
274
+				'userId' => array(
275
+				  'location' => 'path',
276
+				  'type' => 'string',
277
+				  'required' => true,
278
+				),
279
+				'deviceId' => array(
280
+				  'location' => 'path',
281
+				  'type' => 'string',
282
+				  'required' => true,
283
+				),
284
+			  ),
285
+			),'getState' => array(
286
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
287
+			  'httpMethod' => 'GET',
288
+			  'parameters' => array(
289
+				'enterpriseId' => array(
290
+				  'location' => 'path',
291
+				  'type' => 'string',
292
+				  'required' => true,
293
+				),
294
+				'userId' => array(
295
+				  'location' => 'path',
296
+				  'type' => 'string',
297
+				  'required' => true,
298
+				),
299
+				'deviceId' => array(
300
+				  'location' => 'path',
301
+				  'type' => 'string',
302
+				  'required' => true,
303
+				),
304
+			  ),
305
+			),'list' => array(
306
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices',
307
+			  'httpMethod' => 'GET',
308
+			  'parameters' => array(
309
+				'enterpriseId' => array(
310
+				  'location' => 'path',
311
+				  'type' => 'string',
312
+				  'required' => true,
313
+				),
314
+				'userId' => array(
315
+				  'location' => 'path',
316
+				  'type' => 'string',
317
+				  'required' => true,
318
+				),
319
+			  ),
320
+			),'setState' => array(
321
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
322
+			  'httpMethod' => 'PUT',
323
+			  'parameters' => array(
324
+				'enterpriseId' => array(
325
+				  'location' => 'path',
326
+				  'type' => 'string',
327
+				  'required' => true,
328
+				),
329
+				'userId' => array(
330
+				  'location' => 'path',
331
+				  'type' => 'string',
332
+				  'required' => true,
333
+				),
334
+				'deviceId' => array(
335
+				  'location' => 'path',
336
+				  'type' => 'string',
337
+				  'required' => true,
338
+				),
339
+			  ),
340
+			),
341
+		  )
342
+		)
343
+	);
344
+	$this->enterprises = new Google_Service_AndroidEnterprise_Enterprises_Resource(
345
+		$this,
346
+		$this->serviceName,
347
+		'enterprises',
348
+		array(
349
+		  'methods' => array(
350
+			'delete' => array(
351
+			  'path' => 'enterprises/{enterpriseId}',
352
+			  'httpMethod' => 'DELETE',
353
+			  'parameters' => array(
354
+				'enterpriseId' => array(
355
+				  'location' => 'path',
356
+				  'type' => 'string',
357
+				  'required' => true,
358
+				),
359
+			  ),
360
+			),'enroll' => array(
361
+			  'path' => 'enterprises/enroll',
362
+			  'httpMethod' => 'POST',
363
+			  'parameters' => array(
364
+				'token' => array(
365
+				  'location' => 'query',
366
+				  'type' => 'string',
367
+				  'required' => true,
368
+				),
369
+			  ),
370
+			),'get' => array(
371
+			  'path' => 'enterprises/{enterpriseId}',
372
+			  'httpMethod' => 'GET',
373
+			  'parameters' => array(
374
+				'enterpriseId' => array(
375
+				  'location' => 'path',
376
+				  'type' => 'string',
377
+				  'required' => true,
378
+				),
379
+			  ),
380
+			),'insert' => array(
381
+			  'path' => 'enterprises',
382
+			  'httpMethod' => 'POST',
383
+			  'parameters' => array(
384
+				'token' => array(
385
+				  'location' => 'query',
386
+				  'type' => 'string',
387
+				  'required' => true,
388
+				),
389
+			  ),
390
+			),'list' => array(
391
+			  'path' => 'enterprises',
392
+			  'httpMethod' => 'GET',
393
+			  'parameters' => array(
394
+				'domain' => array(
395
+				  'location' => 'query',
396
+				  'type' => 'string',
397
+				  'required' => true,
398
+				),
399
+			  ),
400
+			),'setAccount' => array(
401
+			  'path' => 'enterprises/{enterpriseId}/account',
402
+			  'httpMethod' => 'PUT',
403
+			  'parameters' => array(
404
+				'enterpriseId' => array(
405
+				  'location' => 'path',
406
+				  'type' => 'string',
407
+				  'required' => true,
408
+				),
409
+			  ),
410
+			),'unenroll' => array(
411
+			  'path' => 'enterprises/{enterpriseId}/unenroll',
412
+			  'httpMethod' => 'POST',
413
+			  'parameters' => array(
414
+				'enterpriseId' => array(
415
+				  'location' => 'path',
416
+				  'type' => 'string',
417
+				  'required' => true,
418
+				),
419
+			  ),
420
+			),
421
+		  )
422
+		)
423
+	);
424
+	$this->entitlements = new Google_Service_AndroidEnterprise_Entitlements_Resource(
425
+		$this,
426
+		$this->serviceName,
427
+		'entitlements',
428
+		array(
429
+		  'methods' => array(
430
+			'delete' => array(
431
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
432
+			  'httpMethod' => 'DELETE',
433
+			  'parameters' => array(
434
+				'enterpriseId' => array(
435
+				  'location' => 'path',
436
+				  'type' => 'string',
437
+				  'required' => true,
438
+				),
439
+				'userId' => array(
440
+				  'location' => 'path',
441
+				  'type' => 'string',
442
+				  'required' => true,
443
+				),
444
+				'entitlementId' => array(
445
+				  'location' => 'path',
446
+				  'type' => 'string',
447
+				  'required' => true,
448
+				),
449
+			  ),
450
+			),'get' => array(
451
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
452
+			  'httpMethod' => 'GET',
453
+			  'parameters' => array(
454
+				'enterpriseId' => array(
455
+				  'location' => 'path',
456
+				  'type' => 'string',
457
+				  'required' => true,
458
+				),
459
+				'userId' => array(
460
+				  'location' => 'path',
461
+				  'type' => 'string',
462
+				  'required' => true,
463
+				),
464
+				'entitlementId' => array(
465
+				  'location' => 'path',
466
+				  'type' => 'string',
467
+				  'required' => true,
468
+				),
469
+			  ),
470
+			),'list' => array(
471
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements',
472
+			  'httpMethod' => 'GET',
473
+			  'parameters' => array(
474
+				'enterpriseId' => array(
475
+				  'location' => 'path',
476
+				  'type' => 'string',
477
+				  'required' => true,
478
+				),
479
+				'userId' => array(
480
+				  'location' => 'path',
481
+				  'type' => 'string',
482
+				  'required' => true,
483
+				),
484
+			  ),
485
+			),'patch' => array(
486
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
487
+			  'httpMethod' => 'PATCH',
488
+			  'parameters' => array(
489
+				'enterpriseId' => array(
490
+				  'location' => 'path',
491
+				  'type' => 'string',
492
+				  'required' => true,
493
+				),
494
+				'userId' => array(
495
+				  'location' => 'path',
496
+				  'type' => 'string',
497
+				  'required' => true,
498
+				),
499
+				'entitlementId' => array(
500
+				  'location' => 'path',
501
+				  'type' => 'string',
502
+				  'required' => true,
503
+				),
504
+				'install' => array(
505
+				  'location' => 'query',
506
+				  'type' => 'boolean',
507
+				),
508
+			  ),
509
+			),'update' => array(
510
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
511
+			  'httpMethod' => 'PUT',
512
+			  'parameters' => array(
513
+				'enterpriseId' => array(
514
+				  'location' => 'path',
515
+				  'type' => 'string',
516
+				  'required' => true,
517
+				),
518
+				'userId' => array(
519
+				  'location' => 'path',
520
+				  'type' => 'string',
521
+				  'required' => true,
522
+				),
523
+				'entitlementId' => array(
524
+				  'location' => 'path',
525
+				  'type' => 'string',
526
+				  'required' => true,
527
+				),
528
+				'install' => array(
529
+				  'location' => 'query',
530
+				  'type' => 'boolean',
531
+				),
532
+			  ),
533
+			),
534
+		  )
535
+		)
536
+	);
537
+	$this->grouplicenses = new Google_Service_AndroidEnterprise_Grouplicenses_Resource(
538
+		$this,
539
+		$this->serviceName,
540
+		'grouplicenses',
541
+		array(
542
+		  'methods' => array(
543
+			'get' => array(
544
+			  'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}',
545
+			  'httpMethod' => 'GET',
546
+			  'parameters' => array(
547
+				'enterpriseId' => array(
548
+				  'location' => 'path',
549
+				  'type' => 'string',
550
+				  'required' => true,
551
+				),
552
+				'groupLicenseId' => array(
553
+				  'location' => 'path',
554
+				  'type' => 'string',
555
+				  'required' => true,
556
+				),
557
+			  ),
558
+			),'list' => array(
559
+			  'path' => 'enterprises/{enterpriseId}/groupLicenses',
560
+			  'httpMethod' => 'GET',
561
+			  'parameters' => array(
562
+				'enterpriseId' => array(
563
+				  'location' => 'path',
564
+				  'type' => 'string',
565
+				  'required' => true,
566
+				),
567
+			  ),
568
+			),
569
+		  )
570
+		)
571
+	);
572
+	$this->grouplicenseusers = new Google_Service_AndroidEnterprise_Grouplicenseusers_Resource(
573
+		$this,
574
+		$this->serviceName,
575
+		'grouplicenseusers',
576
+		array(
577
+		  'methods' => array(
578
+			'list' => array(
579
+			  'path' => 'enterprises/{enterpriseId}/groupLicenses/{groupLicenseId}/users',
580
+			  'httpMethod' => 'GET',
581
+			  'parameters' => array(
582
+				'enterpriseId' => array(
583
+				  'location' => 'path',
584
+				  'type' => 'string',
585
+				  'required' => true,
586
+				),
587
+				'groupLicenseId' => array(
588
+				  'location' => 'path',
589
+				  'type' => 'string',
590
+				  'required' => true,
591
+				),
592
+			  ),
593
+			),
594
+		  )
595
+		)
596
+	);
597
+	$this->installs = new Google_Service_AndroidEnterprise_Installs_Resource(
598
+		$this,
599
+		$this->serviceName,
600
+		'installs',
601
+		array(
602
+		  'methods' => array(
603
+			'delete' => array(
604
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
605
+			  'httpMethod' => 'DELETE',
606
+			  'parameters' => array(
607
+				'enterpriseId' => array(
608
+				  'location' => 'path',
609
+				  'type' => 'string',
610
+				  'required' => true,
611
+				),
612
+				'userId' => array(
613
+				  'location' => 'path',
614
+				  'type' => 'string',
615
+				  'required' => true,
616
+				),
617
+				'deviceId' => array(
618
+				  'location' => 'path',
619
+				  'type' => 'string',
620
+				  'required' => true,
621
+				),
622
+				'installId' => array(
623
+				  'location' => 'path',
624
+				  'type' => 'string',
625
+				  'required' => true,
626
+				),
627
+			  ),
628
+			),'get' => array(
629
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
630
+			  'httpMethod' => 'GET',
631
+			  'parameters' => array(
632
+				'enterpriseId' => array(
633
+				  'location' => 'path',
634
+				  'type' => 'string',
635
+				  'required' => true,
636
+				),
637
+				'userId' => array(
638
+				  'location' => 'path',
639
+				  'type' => 'string',
640
+				  'required' => true,
641
+				),
642
+				'deviceId' => array(
643
+				  'location' => 'path',
644
+				  'type' => 'string',
645
+				  'required' => true,
646
+				),
647
+				'installId' => array(
648
+				  'location' => 'path',
649
+				  'type' => 'string',
650
+				  'required' => true,
651
+				),
652
+			  ),
653
+			),'list' => array(
654
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs',
655
+			  'httpMethod' => 'GET',
656
+			  'parameters' => array(
657
+				'enterpriseId' => array(
658
+				  'location' => 'path',
659
+				  'type' => 'string',
660
+				  'required' => true,
661
+				),
662
+				'userId' => array(
663
+				  'location' => 'path',
664
+				  'type' => 'string',
665
+				  'required' => true,
666
+				),
667
+				'deviceId' => array(
668
+				  'location' => 'path',
669
+				  'type' => 'string',
670
+				  'required' => true,
671
+				),
672
+			  ),
673
+			),'patch' => array(
674
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
675
+			  'httpMethod' => 'PATCH',
676
+			  'parameters' => array(
677
+				'enterpriseId' => array(
678
+				  'location' => 'path',
679
+				  'type' => 'string',
680
+				  'required' => true,
681
+				),
682
+				'userId' => array(
683
+				  'location' => 'path',
684
+				  'type' => 'string',
685
+				  'required' => true,
686
+				),
687
+				'deviceId' => array(
688
+				  'location' => 'path',
689
+				  'type' => 'string',
690
+				  'required' => true,
691
+				),
692
+				'installId' => array(
693
+				  'location' => 'path',
694
+				  'type' => 'string',
695
+				  'required' => true,
696
+				),
697
+			  ),
698
+			),'update' => array(
699
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
700
+			  'httpMethod' => 'PUT',
701
+			  'parameters' => array(
702
+				'enterpriseId' => array(
703
+				  'location' => 'path',
704
+				  'type' => 'string',
705
+				  'required' => true,
706
+				),
707
+				'userId' => array(
708
+				  'location' => 'path',
709
+				  'type' => 'string',
710
+				  'required' => true,
711
+				),
712
+				'deviceId' => array(
713
+				  'location' => 'path',
714
+				  'type' => 'string',
715
+				  'required' => true,
716
+				),
717
+				'installId' => array(
718
+				  'location' => 'path',
719
+				  'type' => 'string',
720
+				  'required' => true,
721
+				),
722
+			  ),
723
+			),
724
+		  )
725
+		)
726
+	);
727
+	$this->permissions = new Google_Service_AndroidEnterprise_Permissions_Resource(
728
+		$this,
729
+		$this->serviceName,
730
+		'permissions',
731
+		array(
732
+		  'methods' => array(
733
+			'get' => array(
734
+			  'path' => 'permissions/{permissionId}',
735
+			  'httpMethod' => 'GET',
736
+			  'parameters' => array(
737
+				'permissionId' => array(
738
+				  'location' => 'path',
739
+				  'type' => 'string',
740
+				  'required' => true,
741
+				),
742
+				'language' => array(
743
+				  'location' => 'query',
744
+				  'type' => 'string',
745
+				),
746
+			  ),
747
+			),
748
+		  )
749
+		)
750
+	);
751
+	$this->products = new Google_Service_AndroidEnterprise_Products_Resource(
752
+		$this,
753
+		$this->serviceName,
754
+		'products',
755
+		array(
756
+		  'methods' => array(
757
+			'approve' => array(
758
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}/approve',
759
+			  'httpMethod' => 'POST',
760
+			  'parameters' => array(
761
+				'enterpriseId' => array(
762
+				  'location' => 'path',
763
+				  'type' => 'string',
764
+				  'required' => true,
765
+				),
766
+				'productId' => array(
767
+				  'location' => 'path',
768
+				  'type' => 'string',
769
+				  'required' => true,
770
+				),
771
+			  ),
772
+			),'generateApprovalUrl' => array(
773
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl',
774
+			  'httpMethod' => 'POST',
775
+			  'parameters' => array(
776
+				'enterpriseId' => array(
777
+				  'location' => 'path',
778
+				  'type' => 'string',
779
+				  'required' => true,
780
+				),
781
+				'productId' => array(
782
+				  'location' => 'path',
783
+				  'type' => 'string',
784
+				  'required' => true,
785
+				),
786
+				'languageCode' => array(
787
+				  'location' => 'query',
788
+				  'type' => 'string',
789
+				),
790
+			  ),
791
+			),'get' => array(
792
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}',
793
+			  'httpMethod' => 'GET',
794
+			  'parameters' => array(
795
+				'enterpriseId' => array(
796
+				  'location' => 'path',
797
+				  'type' => 'string',
798
+				  'required' => true,
799
+				),
800
+				'productId' => array(
801
+				  'location' => 'path',
802
+				  'type' => 'string',
803
+				  'required' => true,
804
+				),
805
+				'language' => array(
806
+				  'location' => 'query',
807
+				  'type' => 'string',
808
+				),
809
+			  ),
810
+			),'getAppRestrictionsSchema' => array(
811
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema',
812
+			  'httpMethod' => 'GET',
813
+			  'parameters' => array(
814
+				'enterpriseId' => array(
815
+				  'location' => 'path',
816
+				  'type' => 'string',
817
+				  'required' => true,
818
+				),
819
+				'productId' => array(
820
+				  'location' => 'path',
821
+				  'type' => 'string',
822
+				  'required' => true,
823
+				),
824
+				'language' => array(
825
+				  'location' => 'query',
826
+				  'type' => 'string',
827
+				),
828
+			  ),
829
+			),'getPermissions' => array(
830
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
831
+			  'httpMethod' => 'GET',
832
+			  'parameters' => array(
833
+				'enterpriseId' => array(
834
+				  'location' => 'path',
835
+				  'type' => 'string',
836
+				  'required' => true,
837
+				),
838
+				'productId' => array(
839
+				  'location' => 'path',
840
+				  'type' => 'string',
841
+				  'required' => true,
842
+				),
843
+			  ),
844
+			),'updatePermissions' => array(
845
+			  'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
846
+			  'httpMethod' => 'PUT',
847
+			  'parameters' => array(
848
+				'enterpriseId' => array(
849
+				  'location' => 'path',
850
+				  'type' => 'string',
851
+				  'required' => true,
852
+				),
853
+				'productId' => array(
854
+				  'location' => 'path',
855
+				  'type' => 'string',
856
+				  'required' => true,
857
+				),
858
+			  ),
859
+			),
860
+		  )
861
+		)
862
+	);
863
+	$this->users = new Google_Service_AndroidEnterprise_Users_Resource(
864
+		$this,
865
+		$this->serviceName,
866
+		'users',
867
+		array(
868
+		  'methods' => array(
869
+			'generateToken' => array(
870
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/token',
871
+			  'httpMethod' => 'POST',
872
+			  'parameters' => array(
873
+				'enterpriseId' => array(
874
+				  'location' => 'path',
875
+				  'type' => 'string',
876
+				  'required' => true,
877
+				),
878
+				'userId' => array(
879
+				  'location' => 'path',
880
+				  'type' => 'string',
881
+				  'required' => true,
882
+				),
883
+			  ),
884
+			),'get' => array(
885
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}',
886
+			  'httpMethod' => 'GET',
887
+			  'parameters' => array(
888
+				'enterpriseId' => array(
889
+				  'location' => 'path',
890
+				  'type' => 'string',
891
+				  'required' => true,
892
+				),
893
+				'userId' => array(
894
+				  'location' => 'path',
895
+				  'type' => 'string',
896
+				  'required' => true,
897
+				),
898
+			  ),
899
+			),'list' => array(
900
+			  'path' => 'enterprises/{enterpriseId}/users',
901
+			  'httpMethod' => 'GET',
902
+			  'parameters' => array(
903
+				'enterpriseId' => array(
904
+				  'location' => 'path',
905
+				  'type' => 'string',
906
+				  'required' => true,
907
+				),
908
+				'email' => array(
909
+				  'location' => 'query',
910
+				  'type' => 'string',
911
+				  'required' => true,
912
+				),
913
+			  ),
914
+			),'revokeToken' => array(
915
+			  'path' => 'enterprises/{enterpriseId}/users/{userId}/token',
916
+			  'httpMethod' => 'DELETE',
917
+			  'parameters' => array(
918
+				'enterpriseId' => array(
919
+				  'location' => 'path',
920
+				  'type' => 'string',
921
+				  'required' => true,
922
+				),
923
+				'userId' => array(
924
+				  'location' => 'path',
925
+				  'type' => 'string',
926
+				  'required' => true,
927
+				),
928
+			  ),
929
+			),
930
+		  )
931
+		)
932
+	);
933 933
   }
934 934
 }
935 935
 
@@ -954,9 +954,9 @@  discard block
 block discarded – undo
954 954
    */
955 955
   public function delete($enterpriseId, $collectionId, $optParams = array())
956 956
   {
957
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
958
-    $params = array_merge($params, $optParams);
959
-    return $this->call('delete', array($params));
957
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
958
+	$params = array_merge($params, $optParams);
959
+	return $this->call('delete', array($params));
960 960
   }
961 961
 
962 962
   /**
@@ -969,9 +969,9 @@  discard block
 block discarded – undo
969 969
    */
970 970
   public function get($enterpriseId, $collectionId, $optParams = array())
971 971
   {
972
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
973
-    $params = array_merge($params, $optParams);
974
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Collection");
972
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
973
+	$params = array_merge($params, $optParams);
974
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Collection");
975 975
   }
976 976
 
977 977
   /**
@@ -984,9 +984,9 @@  discard block
 block discarded – undo
984 984
    */
985 985
   public function insert($enterpriseId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array())
986 986
   {
987
-    $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody);
988
-    $params = array_merge($params, $optParams);
989
-    return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Collection");
987
+	$params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody);
988
+	$params = array_merge($params, $optParams);
989
+	return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Collection");
990 990
   }
991 991
 
992 992
   /**
@@ -999,9 +999,9 @@  discard block
 block discarded – undo
999 999
    */
1000 1000
   public function listCollections($enterpriseId, $optParams = array())
1001 1001
   {
1002
-    $params = array('enterpriseId' => $enterpriseId);
1003
-    $params = array_merge($params, $optParams);
1004
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionsListResponse");
1002
+	$params = array('enterpriseId' => $enterpriseId);
1003
+	$params = array_merge($params, $optParams);
1004
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionsListResponse");
1005 1005
   }
1006 1006
 
1007 1007
   /**
@@ -1016,9 +1016,9 @@  discard block
 block discarded – undo
1016 1016
    */
1017 1017
   public function patch($enterpriseId, $collectionId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array())
1018 1018
   {
1019
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody);
1020
-    $params = array_merge($params, $optParams);
1021
-    return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Collection");
1019
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody);
1020
+	$params = array_merge($params, $optParams);
1021
+	return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Collection");
1022 1022
   }
1023 1023
 
1024 1024
   /**
@@ -1032,9 +1032,9 @@  discard block
 block discarded – undo
1032 1032
    */
1033 1033
   public function update($enterpriseId, $collectionId, Google_Service_AndroidEnterprise_Collection $postBody, $optParams = array())
1034 1034
   {
1035
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody);
1036
-    $params = array_merge($params, $optParams);
1037
-    return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Collection");
1035
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'postBody' => $postBody);
1036
+	$params = array_merge($params, $optParams);
1037
+	return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Collection");
1038 1038
   }
1039 1039
 }
1040 1040
 
@@ -1061,9 +1061,9 @@  discard block
 block discarded – undo
1061 1061
    */
1062 1062
   public function delete($enterpriseId, $collectionId, $userId, $optParams = array())
1063 1063
   {
1064
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId);
1065
-    $params = array_merge($params, $optParams);
1066
-    return $this->call('delete', array($params));
1064
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId);
1065
+	$params = array_merge($params, $optParams);
1066
+	return $this->call('delete', array($params));
1067 1067
   }
1068 1068
 
1069 1069
   /**
@@ -1079,9 +1079,9 @@  discard block
 block discarded – undo
1079 1079
    */
1080 1080
   public function get($enterpriseId, $collectionId, $userId, $optParams = array())
1081 1081
   {
1082
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId);
1083
-    $params = array_merge($params, $optParams);
1084
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User");
1082
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId);
1083
+	$params = array_merge($params, $optParams);
1084
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User");
1085 1085
   }
1086 1086
 
1087 1087
   /**
@@ -1097,9 +1097,9 @@  discard block
 block discarded – undo
1097 1097
    */
1098 1098
   public function listCollectionviewers($enterpriseId, $collectionId, $optParams = array())
1099 1099
   {
1100
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
1101
-    $params = array_merge($params, $optParams);
1102
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionViewersListResponse");
1100
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId);
1101
+	$params = array_merge($params, $optParams);
1102
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_CollectionViewersListResponse");
1103 1103
   }
1104 1104
 
1105 1105
   /**
@@ -1117,9 +1117,9 @@  discard block
 block discarded – undo
1117 1117
    */
1118 1118
   public function patch($enterpriseId, $collectionId, $userId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array())
1119 1119
   {
1120
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody);
1121
-    $params = array_merge($params, $optParams);
1122
-    return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_User");
1120
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody);
1121
+	$params = array_merge($params, $optParams);
1122
+	return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_User");
1123 1123
   }
1124 1124
 
1125 1125
   /**
@@ -1136,9 +1136,9 @@  discard block
 block discarded – undo
1136 1136
    */
1137 1137
   public function update($enterpriseId, $collectionId, $userId, Google_Service_AndroidEnterprise_User $postBody, $optParams = array())
1138 1138
   {
1139
-    $params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody);
1140
-    $params = array_merge($params, $optParams);
1141
-    return $this->call('update', array($params), "Google_Service_AndroidEnterprise_User");
1139
+	$params = array('enterpriseId' => $enterpriseId, 'collectionId' => $collectionId, 'userId' => $userId, 'postBody' => $postBody);
1140
+	$params = array_merge($params, $optParams);
1141
+	return $this->call('update', array($params), "Google_Service_AndroidEnterprise_User");
1142 1142
   }
1143 1143
 }
1144 1144
 
@@ -1164,9 +1164,9 @@  discard block
 block discarded – undo
1164 1164
    */
1165 1165
   public function get($enterpriseId, $userId, $deviceId, $optParams = array())
1166 1166
   {
1167
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1168
-    $params = array_merge($params, $optParams);
1169
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Device");
1167
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1168
+	$params = array_merge($params, $optParams);
1169
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Device");
1170 1170
   }
1171 1171
 
1172 1172
   /**
@@ -1184,9 +1184,9 @@  discard block
 block discarded – undo
1184 1184
    */
1185 1185
   public function getState($enterpriseId, $userId, $deviceId, $optParams = array())
1186 1186
   {
1187
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1188
-    $params = array_merge($params, $optParams);
1189
-    return $this->call('getState', array($params), "Google_Service_AndroidEnterprise_DeviceState");
1187
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1188
+	$params = array_merge($params, $optParams);
1189
+	return $this->call('getState', array($params), "Google_Service_AndroidEnterprise_DeviceState");
1190 1190
   }
1191 1191
 
1192 1192
   /**
@@ -1199,9 +1199,9 @@  discard block
 block discarded – undo
1199 1199
    */
1200 1200
   public function listDevices($enterpriseId, $userId, $optParams = array())
1201 1201
   {
1202
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1203
-    $params = array_merge($params, $optParams);
1204
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_DevicesListResponse");
1202
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1203
+	$params = array_merge($params, $optParams);
1204
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_DevicesListResponse");
1205 1205
   }
1206 1206
 
1207 1207
   /**
@@ -1220,9 +1220,9 @@  discard block
 block discarded – undo
1220 1220
    */
1221 1221
   public function setState($enterpriseId, $userId, $deviceId, Google_Service_AndroidEnterprise_DeviceState $postBody, $optParams = array())
1222 1222
   {
1223
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody);
1224
-    $params = array_merge($params, $optParams);
1225
-    return $this->call('setState', array($params), "Google_Service_AndroidEnterprise_DeviceState");
1223
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'postBody' => $postBody);
1224
+	$params = array_merge($params, $optParams);
1225
+	return $this->call('setState', array($params), "Google_Service_AndroidEnterprise_DeviceState");
1226 1226
   }
1227 1227
 }
1228 1228
 
@@ -1248,9 +1248,9 @@  discard block
 block discarded – undo
1248 1248
    */
1249 1249
   public function delete($enterpriseId, $optParams = array())
1250 1250
   {
1251
-    $params = array('enterpriseId' => $enterpriseId);
1252
-    $params = array_merge($params, $optParams);
1253
-    return $this->call('delete', array($params));
1251
+	$params = array('enterpriseId' => $enterpriseId);
1252
+	$params = array_merge($params, $optParams);
1253
+	return $this->call('delete', array($params));
1254 1254
   }
1255 1255
 
1256 1256
   /**
@@ -1264,9 +1264,9 @@  discard block
 block discarded – undo
1264 1264
    */
1265 1265
   public function enroll($token, Google_Service_AndroidEnterprise_Enterprise $postBody, $optParams = array())
1266 1266
   {
1267
-    $params = array('token' => $token, 'postBody' => $postBody);
1268
-    $params = array_merge($params, $optParams);
1269
-    return $this->call('enroll', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1267
+	$params = array('token' => $token, 'postBody' => $postBody);
1268
+	$params = array_merge($params, $optParams);
1269
+	return $this->call('enroll', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1270 1270
   }
1271 1271
 
1272 1272
   /**
@@ -1278,9 +1278,9 @@  discard block
 block discarded – undo
1278 1278
    */
1279 1279
   public function get($enterpriseId, $optParams = array())
1280 1280
   {
1281
-    $params = array('enterpriseId' => $enterpriseId);
1282
-    $params = array_merge($params, $optParams);
1283
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1281
+	$params = array('enterpriseId' => $enterpriseId);
1282
+	$params = array_merge($params, $optParams);
1283
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1284 1284
   }
1285 1285
 
1286 1286
   /**
@@ -1295,9 +1295,9 @@  discard block
 block discarded – undo
1295 1295
    */
1296 1296
   public function insert($token, Google_Service_AndroidEnterprise_Enterprise $postBody, $optParams = array())
1297 1297
   {
1298
-    $params = array('token' => $token, 'postBody' => $postBody);
1299
-    $params = array_merge($params, $optParams);
1300
-    return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1298
+	$params = array('token' => $token, 'postBody' => $postBody);
1299
+	$params = array_merge($params, $optParams);
1300
+	return $this->call('insert', array($params), "Google_Service_AndroidEnterprise_Enterprise");
1301 1301
   }
1302 1302
 
1303 1303
   /**
@@ -1310,9 +1310,9 @@  discard block
 block discarded – undo
1310 1310
    */
1311 1311
   public function listEnterprises($domain, $optParams = array())
1312 1312
   {
1313
-    $params = array('domain' => $domain);
1314
-    $params = array_merge($params, $optParams);
1315
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EnterprisesListResponse");
1313
+	$params = array('domain' => $domain);
1314
+	$params = array_merge($params, $optParams);
1315
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EnterprisesListResponse");
1316 1316
   }
1317 1317
 
1318 1318
   /**
@@ -1326,9 +1326,9 @@  discard block
 block discarded – undo
1326 1326
    */
1327 1327
   public function setAccount($enterpriseId, Google_Service_AndroidEnterprise_EnterpriseAccount $postBody, $optParams = array())
1328 1328
   {
1329
-    $params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody);
1330
-    $params = array_merge($params, $optParams);
1331
-    return $this->call('setAccount', array($params), "Google_Service_AndroidEnterprise_EnterpriseAccount");
1329
+	$params = array('enterpriseId' => $enterpriseId, 'postBody' => $postBody);
1330
+	$params = array_merge($params, $optParams);
1331
+	return $this->call('setAccount', array($params), "Google_Service_AndroidEnterprise_EnterpriseAccount");
1332 1332
   }
1333 1333
 
1334 1334
   /**
@@ -1339,9 +1339,9 @@  discard block
 block discarded – undo
1339 1339
    */
1340 1340
   public function unenroll($enterpriseId, $optParams = array())
1341 1341
   {
1342
-    $params = array('enterpriseId' => $enterpriseId);
1343
-    $params = array_merge($params, $optParams);
1344
-    return $this->call('unenroll', array($params));
1342
+	$params = array('enterpriseId' => $enterpriseId);
1343
+	$params = array_merge($params, $optParams);
1344
+	return $this->call('unenroll', array($params));
1345 1345
   }
1346 1346
 }
1347 1347
 
@@ -1368,9 +1368,9 @@  discard block
 block discarded – undo
1368 1368
    */
1369 1369
   public function delete($enterpriseId, $userId, $entitlementId, $optParams = array())
1370 1370
   {
1371
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId);
1372
-    $params = array_merge($params, $optParams);
1373
-    return $this->call('delete', array($params));
1371
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId);
1372
+	$params = array_merge($params, $optParams);
1373
+	return $this->call('delete', array($params));
1374 1374
   }
1375 1375
 
1376 1376
   /**
@@ -1385,9 +1385,9 @@  discard block
 block discarded – undo
1385 1385
    */
1386 1386
   public function get($enterpriseId, $userId, $entitlementId, $optParams = array())
1387 1387
   {
1388
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId);
1389
-    $params = array_merge($params, $optParams);
1390
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1388
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId);
1389
+	$params = array_merge($params, $optParams);
1390
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1391 1391
   }
1392 1392
 
1393 1393
   /**
@@ -1401,9 +1401,9 @@  discard block
 block discarded – undo
1401 1401
    */
1402 1402
   public function listEntitlements($enterpriseId, $userId, $optParams = array())
1403 1403
   {
1404
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1405
-    $params = array_merge($params, $optParams);
1406
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EntitlementsListResponse");
1404
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1405
+	$params = array_merge($params, $optParams);
1406
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_EntitlementsListResponse");
1407 1407
   }
1408 1408
 
1409 1409
   /**
@@ -1425,9 +1425,9 @@  discard block
 block discarded – undo
1425 1425
    */
1426 1426
   public function patch($enterpriseId, $userId, $entitlementId, Google_Service_AndroidEnterprise_Entitlement $postBody, $optParams = array())
1427 1427
   {
1428
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody);
1429
-    $params = array_merge($params, $optParams);
1430
-    return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1428
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody);
1429
+	$params = array_merge($params, $optParams);
1430
+	return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1431 1431
   }
1432 1432
 
1433 1433
   /**
@@ -1448,9 +1448,9 @@  discard block
 block discarded – undo
1448 1448
    */
1449 1449
   public function update($enterpriseId, $userId, $entitlementId, Google_Service_AndroidEnterprise_Entitlement $postBody, $optParams = array())
1450 1450
   {
1451
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody);
1452
-    $params = array_merge($params, $optParams);
1453
-    return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1451
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'entitlementId' => $entitlementId, 'postBody' => $postBody);
1452
+	$params = array_merge($params, $optParams);
1453
+	return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Entitlement");
1454 1454
   }
1455 1455
 }
1456 1456
 
@@ -1477,9 +1477,9 @@  discard block
 block discarded – undo
1477 1477
    */
1478 1478
   public function get($enterpriseId, $groupLicenseId, $optParams = array())
1479 1479
   {
1480
-    $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId);
1481
-    $params = array_merge($params, $optParams);
1482
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_GroupLicense");
1480
+	$params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId);
1481
+	$params = array_merge($params, $optParams);
1482
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_GroupLicense");
1483 1483
   }
1484 1484
 
1485 1485
   /**
@@ -1492,9 +1492,9 @@  discard block
 block discarded – undo
1492 1492
    */
1493 1493
   public function listGrouplicenses($enterpriseId, $optParams = array())
1494 1494
   {
1495
-    $params = array('enterpriseId' => $enterpriseId);
1496
-    $params = array_merge($params, $optParams);
1497
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicensesListResponse");
1495
+	$params = array('enterpriseId' => $enterpriseId);
1496
+	$params = array_merge($params, $optParams);
1497
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicensesListResponse");
1498 1498
   }
1499 1499
 }
1500 1500
 
@@ -1521,9 +1521,9 @@  discard block
 block discarded – undo
1521 1521
    */
1522 1522
   public function listGrouplicenseusers($enterpriseId, $groupLicenseId, $optParams = array())
1523 1523
   {
1524
-    $params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId);
1525
-    $params = array_merge($params, $optParams);
1526
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse");
1524
+	$params = array('enterpriseId' => $enterpriseId, 'groupLicenseId' => $groupLicenseId);
1525
+	$params = array_merge($params, $optParams);
1526
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_GroupLicenseUsersListResponse");
1527 1527
   }
1528 1528
 }
1529 1529
 
@@ -1552,9 +1552,9 @@  discard block
 block discarded – undo
1552 1552
    */
1553 1553
   public function delete($enterpriseId, $userId, $deviceId, $installId, $optParams = array())
1554 1554
   {
1555
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId);
1556
-    $params = array_merge($params, $optParams);
1557
-    return $this->call('delete', array($params));
1555
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId);
1556
+	$params = array_merge($params, $optParams);
1557
+	return $this->call('delete', array($params));
1558 1558
   }
1559 1559
 
1560 1560
   /**
@@ -1570,9 +1570,9 @@  discard block
 block discarded – undo
1570 1570
    */
1571 1571
   public function get($enterpriseId, $userId, $deviceId, $installId, $optParams = array())
1572 1572
   {
1573
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId);
1574
-    $params = array_merge($params, $optParams);
1575
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Install");
1573
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId);
1574
+	$params = array_merge($params, $optParams);
1575
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Install");
1576 1576
   }
1577 1577
 
1578 1578
   /**
@@ -1587,9 +1587,9 @@  discard block
 block discarded – undo
1587 1587
    */
1588 1588
   public function listInstalls($enterpriseId, $userId, $deviceId, $optParams = array())
1589 1589
   {
1590
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1591
-    $params = array_merge($params, $optParams);
1592
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_InstallsListResponse");
1590
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId);
1591
+	$params = array_merge($params, $optParams);
1592
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_InstallsListResponse");
1593 1593
   }
1594 1594
 
1595 1595
   /**
@@ -1608,9 +1608,9 @@  discard block
 block discarded – undo
1608 1608
    */
1609 1609
   public function patch($enterpriseId, $userId, $deviceId, $installId, Google_Service_AndroidEnterprise_Install $postBody, $optParams = array())
1610 1610
   {
1611
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody);
1612
-    $params = array_merge($params, $optParams);
1613
-    return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Install");
1611
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody);
1612
+	$params = array_merge($params, $optParams);
1613
+	return $this->call('patch', array($params), "Google_Service_AndroidEnterprise_Install");
1614 1614
   }
1615 1615
 
1616 1616
   /**
@@ -1629,9 +1629,9 @@  discard block
 block discarded – undo
1629 1629
    */
1630 1630
   public function update($enterpriseId, $userId, $deviceId, $installId, Google_Service_AndroidEnterprise_Install $postBody, $optParams = array())
1631 1631
   {
1632
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody);
1633
-    $params = array_merge($params, $optParams);
1634
-    return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Install");
1632
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId, 'deviceId' => $deviceId, 'installId' => $installId, 'postBody' => $postBody);
1633
+	$params = array_merge($params, $optParams);
1634
+	return $this->call('update', array($params), "Google_Service_AndroidEnterprise_Install");
1635 1635
   }
1636 1636
 }
1637 1637
 
@@ -1659,9 +1659,9 @@  discard block
 block discarded – undo
1659 1659
    */
1660 1660
   public function get($permissionId, $optParams = array())
1661 1661
   {
1662
-    $params = array('permissionId' => $permissionId);
1663
-    $params = array_merge($params, $optParams);
1664
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Permission");
1662
+	$params = array('permissionId' => $permissionId);
1663
+	$params = array_merge($params, $optParams);
1664
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Permission");
1665 1665
   }
1666 1666
 }
1667 1667
 
@@ -1687,9 +1687,9 @@  discard block
 block discarded – undo
1687 1687
    */
1688 1688
   public function approve($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductsApproveRequest $postBody, $optParams = array())
1689 1689
   {
1690
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody);
1691
-    $params = array_merge($params, $optParams);
1692
-    return $this->call('approve', array($params));
1690
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody);
1691
+	$params = array_merge($params, $optParams);
1692
+	return $this->call('approve', array($params));
1693 1693
   }
1694 1694
 
1695 1695
   /**
@@ -1708,9 +1708,9 @@  discard block
 block discarded – undo
1708 1708
    */
1709 1709
   public function generateApprovalUrl($enterpriseId, $productId, $optParams = array())
1710 1710
   {
1711
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1712
-    $params = array_merge($params, $optParams);
1713
-    return $this->call('generateApprovalUrl', array($params), "Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse");
1711
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1712
+	$params = array_merge($params, $optParams);
1713
+	return $this->call('generateApprovalUrl', array($params), "Google_Service_AndroidEnterprise_ProductsGenerateApprovalUrlResponse");
1714 1714
   }
1715 1715
 
1716 1716
   /**
@@ -1728,9 +1728,9 @@  discard block
 block discarded – undo
1728 1728
    */
1729 1729
   public function get($enterpriseId, $productId, $optParams = array())
1730 1730
   {
1731
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1732
-    $params = array_merge($params, $optParams);
1733
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Product");
1731
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1732
+	$params = array_merge($params, $optParams);
1733
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_Product");
1734 1734
   }
1735 1735
 
1736 1736
   /**
@@ -1748,9 +1748,9 @@  discard block
 block discarded – undo
1748 1748
    */
1749 1749
   public function getAppRestrictionsSchema($enterpriseId, $productId, $optParams = array())
1750 1750
   {
1751
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1752
-    $params = array_merge($params, $optParams);
1753
-    return $this->call('getAppRestrictionsSchema', array($params), "Google_Service_AndroidEnterprise_AppRestrictionsSchema");
1751
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1752
+	$params = array_merge($params, $optParams);
1753
+	return $this->call('getAppRestrictionsSchema', array($params), "Google_Service_AndroidEnterprise_AppRestrictionsSchema");
1754 1754
   }
1755 1755
 
1756 1756
   /**
@@ -1764,9 +1764,9 @@  discard block
 block discarded – undo
1764 1764
    */
1765 1765
   public function getPermissions($enterpriseId, $productId, $optParams = array())
1766 1766
   {
1767
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1768
-    $params = array_merge($params, $optParams);
1769
-    return $this->call('getPermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions");
1767
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId);
1768
+	$params = array_merge($params, $optParams);
1769
+	return $this->call('getPermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions");
1770 1770
   }
1771 1771
 
1772 1772
   /**
@@ -1781,9 +1781,9 @@  discard block
 block discarded – undo
1781 1781
    */
1782 1782
   public function updatePermissions($enterpriseId, $productId, Google_Service_AndroidEnterprise_ProductPermissions $postBody, $optParams = array())
1783 1783
   {
1784
-    $params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody);
1785
-    $params = array_merge($params, $optParams);
1786
-    return $this->call('updatePermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions");
1784
+	$params = array('enterpriseId' => $enterpriseId, 'productId' => $productId, 'postBody' => $postBody);
1785
+	$params = array_merge($params, $optParams);
1786
+	return $this->call('updatePermissions', array($params), "Google_Service_AndroidEnterprise_ProductPermissions");
1787 1787
   }
1788 1788
 }
1789 1789
 
@@ -1810,9 +1810,9 @@  discard block
 block discarded – undo
1810 1810
    */
1811 1811
   public function generateToken($enterpriseId, $userId, $optParams = array())
1812 1812
   {
1813
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1814
-    $params = array_merge($params, $optParams);
1815
-    return $this->call('generateToken', array($params), "Google_Service_AndroidEnterprise_UserToken");
1813
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1814
+	$params = array_merge($params, $optParams);
1815
+	return $this->call('generateToken', array($params), "Google_Service_AndroidEnterprise_UserToken");
1816 1816
   }
1817 1817
 
1818 1818
   /**
@@ -1825,9 +1825,9 @@  discard block
 block discarded – undo
1825 1825
    */
1826 1826
   public function get($enterpriseId, $userId, $optParams = array())
1827 1827
   {
1828
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1829
-    $params = array_merge($params, $optParams);
1830
-    return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User");
1828
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1829
+	$params = array_merge($params, $optParams);
1830
+	return $this->call('get', array($params), "Google_Service_AndroidEnterprise_User");
1831 1831
   }
1832 1832
 
1833 1833
   /**
@@ -1840,9 +1840,9 @@  discard block
 block discarded – undo
1840 1840
    */
1841 1841
   public function listUsers($enterpriseId, $email, $optParams = array())
1842 1842
   {
1843
-    $params = array('enterpriseId' => $enterpriseId, 'email' => $email);
1844
-    $params = array_merge($params, $optParams);
1845
-    return $this->call('list', array($params), "Google_Service_AndroidEnterprise_UsersListResponse");
1843
+	$params = array('enterpriseId' => $enterpriseId, 'email' => $email);
1844
+	$params = array_merge($params, $optParams);
1845
+	return $this->call('list', array($params), "Google_Service_AndroidEnterprise_UsersListResponse");
1846 1846
   }
1847 1847
 
1848 1848
   /**
@@ -1855,9 +1855,9 @@  discard block
 block discarded – undo
1855 1855
    */
1856 1856
   public function revokeToken($enterpriseId, $userId, $optParams = array())
1857 1857
   {
1858
-    $params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1859
-    $params = array_merge($params, $optParams);
1860
-    return $this->call('revokeToken', array($params));
1858
+	$params = array('enterpriseId' => $enterpriseId, 'userId' => $userId);
1859
+	$params = array_merge($params, $optParams);
1860
+	return $this->call('revokeToken', array($params));
1861 1861
   }
1862 1862
 }
1863 1863
 
@@ -1875,11 +1875,11 @@  discard block
 block discarded – undo
1875 1875
 
1876 1876
   public function setRestrictions($restrictions)
1877 1877
   {
1878
-    $this->restrictions = $restrictions;
1878
+	$this->restrictions = $restrictions;
1879 1879
   }
1880 1880
   public function getRestrictions()
1881 1881
   {
1882
-    return $this->restrictions;
1882
+	return $this->restrictions;
1883 1883
   }
1884 1884
 }
1885 1885
 
@@ -1900,59 +1900,59 @@  discard block
 block discarded – undo
1900 1900
 
1901 1901
   public function setDefaultValue(Google_Service_AndroidEnterprise_AppRestrictionsSchemaRestrictionRestrictionValue $defaultValue)
1902 1902
   {
1903
-    $this->defaultValue = $defaultValue;
1903
+	$this->defaultValue = $defaultValue;
1904 1904
   }
1905 1905
   public function getDefaultValue()
1906 1906
   {
1907
-    return $this->defaultValue;
1907
+	return $this->defaultValue;
1908 1908
   }
1909 1909
   public function setDescription($description)
1910 1910
   {
1911
-    $this->description = $description;
1911
+	$this->description = $description;
1912 1912
   }
1913 1913
   public function getDescription()
1914 1914
   {
1915
-    return $this->description;
1915
+	return $this->description;
1916 1916
   }
1917 1917
   public function setEntry($entry)
1918 1918
   {
1919
-    $this->entry = $entry;
1919
+	$this->entry = $entry;
1920 1920
   }
1921 1921
   public function getEntry()
1922 1922
   {
1923
-    return $this->entry;
1923
+	return $this->entry;
1924 1924
   }
1925 1925
   public function setEntryValue($entryValue)
1926 1926
   {
1927
-    $this->entryValue = $entryValue;
1927
+	$this->entryValue = $entryValue;
1928 1928
   }
1929 1929
   public function getEntryValue()
1930 1930
   {
1931
-    return $this->entryValue;
1931
+	return $this->entryValue;
1932 1932
   }
1933 1933
   public function setKey($key)
1934 1934
   {
1935
-    $this->key = $key;
1935
+	$this->key = $key;
1936 1936
   }
1937 1937
   public function getKey()
1938 1938
   {
1939
-    return $this->key;
1939
+	return $this->key;
1940 1940
   }
1941 1941
   public function setRestrictionType($restrictionType)
1942 1942
   {
1943
-    $this->restrictionType = $restrictionType;
1943
+	$this->restrictionType = $restrictionType;
1944 1944
   }
1945 1945
   public function getRestrictionType()
1946 1946
   {
1947
-    return $this->restrictionType;
1947
+	return $this->restrictionType;
1948 1948
   }
1949 1949
   public function setTitle($title)
1950 1950
   {
1951
-    $this->title = $title;
1951
+	$this->title = $title;
1952 1952
   }
1953 1953
   public function getTitle()
1954 1954
   {
1955
-    return $this->title;
1955
+	return $this->title;
1956 1956
   }
1957 1957
 }
1958 1958
 
@@ -1970,43 +1970,43 @@  discard block
 block discarded – undo
1970 1970
 
1971 1971
   public function setType($type)
1972 1972
   {
1973
-    $this->type = $type;
1973
+	$this->type = $type;
1974 1974
   }
1975 1975
   public function getType()
1976 1976
   {
1977
-    return $this->type;
1977
+	return $this->type;
1978 1978
   }
1979 1979
   public function setValueBool($valueBool)
1980 1980
   {
1981
-    $this->valueBool = $valueBool;
1981
+	$this->valueBool = $valueBool;
1982 1982
   }
1983 1983
   public function getValueBool()
1984 1984
   {
1985
-    return $this->valueBool;
1985
+	return $this->valueBool;
1986 1986
   }
1987 1987
   public function setValueInteger($valueInteger)
1988 1988
   {
1989
-    $this->valueInteger = $valueInteger;
1989
+	$this->valueInteger = $valueInteger;
1990 1990
   }
1991 1991
   public function getValueInteger()
1992 1992
   {
1993
-    return $this->valueInteger;
1993
+	return $this->valueInteger;
1994 1994
   }
1995 1995
   public function setValueMultiselect($valueMultiselect)
1996 1996
   {
1997
-    $this->valueMultiselect = $valueMultiselect;
1997
+	$this->valueMultiselect = $valueMultiselect;
1998 1998
   }
1999 1999
   public function getValueMultiselect()
2000 2000
   {
2001
-    return $this->valueMultiselect;
2001
+	return $this->valueMultiselect;
2002 2002
   }
2003 2003
   public function setValueString($valueString)
2004 2004
   {
2005
-    $this->valueString = $valueString;
2005
+	$this->valueString = $valueString;
2006 2006
   }
2007 2007
   public function getValueString()
2008 2008
   {
2009
-    return $this->valueString;
2009
+	return $this->valueString;
2010 2010
   }
2011 2011
 }
2012 2012
 
@@ -2020,19 +2020,19 @@  discard block
 block discarded – undo
2020 2020
 
2021 2021
   public function setVersionCode($versionCode)
2022 2022
   {
2023
-    $this->versionCode = $versionCode;
2023
+	$this->versionCode = $versionCode;
2024 2024
   }
2025 2025
   public function getVersionCode()
2026 2026
   {
2027
-    return $this->versionCode;
2027
+	return $this->versionCode;
2028 2028
   }
2029 2029
   public function setVersionString($versionString)
2030 2030
   {
2031
-    $this->versionString = $versionString;
2031
+	$this->versionString = $versionString;
2032 2032
   }
2033 2033
   public function getVersionString()
2034 2034
   {
2035
-    return $this->versionString;
2035
+	return $this->versionString;
2036 2036
   }
2037 2037
 }
2038 2038
 
@@ -2046,19 +2046,19 @@  discard block
 block discarded – undo
2046 2046
 
2047 2047
   public function setApprovalUrl($approvalUrl)
2048 2048
   {
2049
-    $this->approvalUrl = $approvalUrl;
2049
+	$this->approvalUrl = $approvalUrl;
2050 2050
   }
2051 2051
   public function getApprovalUrl()
2052 2052
   {
2053
-    return $this->approvalUrl;
2053
+	return $this->approvalUrl;
2054 2054
   }
2055 2055
   public function setKind($kind)
2056 2056
   {
2057
-    $this->kind = $kind;
2057
+	$this->kind = $kind;
2058 2058
   }
2059 2059
   public function getKind()
2060 2060
   {
2061
-    return $this->kind;
2061
+	return $this->kind;
2062 2062
   }
2063 2063
 }
2064 2064
 
@@ -2076,43 +2076,43 @@  discard block
 block discarded – undo
2076 2076
 
2077 2077
   public function setCollectionId($collectionId)
2078 2078
   {
2079
-    $this->collectionId = $collectionId;
2079
+	$this->collectionId = $collectionId;
2080 2080
   }
2081 2081
   public function getCollectionId()
2082 2082
   {
2083
-    return $this->collectionId;
2083
+	return $this->collectionId;
2084 2084
   }
2085 2085
   public function setKind($kind)
2086 2086
   {
2087
-    $this->kind = $kind;
2087
+	$this->kind = $kind;
2088 2088
   }
2089 2089
   public function getKind()
2090 2090
   {
2091
-    return $this->kind;
2091
+	return $this->kind;
2092 2092
   }
2093 2093
   public function setName($name)
2094 2094
   {
2095
-    $this->name = $name;
2095
+	$this->name = $name;
2096 2096
   }
2097 2097
   public function getName()
2098 2098
   {
2099
-    return $this->name;
2099
+	return $this->name;
2100 2100
   }
2101 2101
   public function setProductId($productId)
2102 2102
   {
2103
-    $this->productId = $productId;
2103
+	$this->productId = $productId;
2104 2104
   }
2105 2105
   public function getProductId()
2106 2106
   {
2107
-    return $this->productId;
2107
+	return $this->productId;
2108 2108
   }
2109 2109
   public function setVisibility($visibility)
2110 2110
   {
2111
-    $this->visibility = $visibility;
2111
+	$this->visibility = $visibility;
2112 2112
   }
2113 2113
   public function getVisibility()
2114 2114
   {
2115
-    return $this->visibility;
2115
+	return $this->visibility;
2116 2116
   }
2117 2117
 }
2118 2118
 
@@ -2128,19 +2128,19 @@  discard block
 block discarded – undo
2128 2128
 
2129 2129
   public function setKind($kind)
2130 2130
   {
2131
-    $this->kind = $kind;
2131
+	$this->kind = $kind;
2132 2132
   }
2133 2133
   public function getKind()
2134 2134
   {
2135
-    return $this->kind;
2135
+	return $this->kind;
2136 2136
   }
2137 2137
   public function setUser($user)
2138 2138
   {
2139
-    $this->user = $user;
2139
+	$this->user = $user;
2140 2140
   }
2141 2141
   public function getUser()
2142 2142
   {
2143
-    return $this->user;
2143
+	return $this->user;
2144 2144
   }
2145 2145
 }
2146 2146
 
@@ -2156,19 +2156,19 @@  discard block
 block discarded – undo
2156 2156
 
2157 2157
   public function setCollection($collection)
2158 2158
   {
2159
-    $this->collection = $collection;
2159
+	$this->collection = $collection;
2160 2160
   }
2161 2161
   public function getCollection()
2162 2162
   {
2163
-    return $this->collection;
2163
+	return $this->collection;
2164 2164
   }
2165 2165
   public function setKind($kind)
2166 2166
   {
2167
-    $this->kind = $kind;
2167
+	$this->kind = $kind;
2168 2168
   }
2169 2169
   public function getKind()
2170 2170
   {
2171
-    return $this->kind;
2171
+	return $this->kind;
2172 2172
   }
2173 2173
 }
2174 2174
 
@@ -2183,27 +2183,27 @@  discard block
 block discarded – undo
2183 2183
 
2184 2184
   public function setAndroidId($androidId)
2185 2185
   {
2186
-    $this->androidId = $androidId;
2186
+	$this->androidId = $androidId;
2187 2187
   }
2188 2188
   public function getAndroidId()
2189 2189
   {
2190
-    return $this->androidId;
2190
+	return $this->androidId;
2191 2191
   }
2192 2192
   public function setKind($kind)
2193 2193
   {
2194
-    $this->kind = $kind;
2194
+	$this->kind = $kind;
2195 2195
   }
2196 2196
   public function getKind()
2197 2197
   {
2198
-    return $this->kind;
2198
+	return $this->kind;
2199 2199
   }
2200 2200
   public function setManagementType($managementType)
2201 2201
   {
2202
-    $this->managementType = $managementType;
2202
+	$this->managementType = $managementType;
2203 2203
   }
2204 2204
   public function getManagementType()
2205 2205
   {
2206
-    return $this->managementType;
2206
+	return $this->managementType;
2207 2207
   }
2208 2208
 }
2209 2209
 
@@ -2217,19 +2217,19 @@  discard block
 block discarded – undo
2217 2217
 
2218 2218
   public function setAccountState($accountState)
2219 2219
   {
2220
-    $this->accountState = $accountState;
2220
+	$this->accountState = $accountState;
2221 2221
   }
2222 2222
   public function getAccountState()
2223 2223
   {
2224
-    return $this->accountState;
2224
+	return $this->accountState;
2225 2225
   }
2226 2226
   public function setKind($kind)
2227 2227
   {
2228
-    $this->kind = $kind;
2228
+	$this->kind = $kind;
2229 2229
   }
2230 2230
   public function getKind()
2231 2231
   {
2232
-    return $this->kind;
2232
+	return $this->kind;
2233 2233
   }
2234 2234
 }
2235 2235
 
@@ -2245,19 +2245,19 @@  discard block
 block discarded – undo
2245 2245
 
2246 2246
   public function setDevice($device)
2247 2247
   {
2248
-    $this->device = $device;
2248
+	$this->device = $device;
2249 2249
   }
2250 2250
   public function getDevice()
2251 2251
   {
2252
-    return $this->device;
2252
+	return $this->device;
2253 2253
   }
2254 2254
   public function setKind($kind)
2255 2255
   {
2256
-    $this->kind = $kind;
2256
+	$this->kind = $kind;
2257 2257
   }
2258 2258
   public function getKind()
2259 2259
   {
2260
-    return $this->kind;
2260
+	return $this->kind;
2261 2261
   }
2262 2262
 }
2263 2263
 
@@ -2273,35 +2273,35 @@  discard block
 block discarded – undo
2273 2273
 
2274 2274
   public function setId($id)
2275 2275
   {
2276
-    $this->id = $id;
2276
+	$this->id = $id;
2277 2277
   }
2278 2278
   public function getId()
2279 2279
   {
2280
-    return $this->id;
2280
+	return $this->id;
2281 2281
   }
2282 2282
   public function setKind($kind)
2283 2283
   {
2284
-    $this->kind = $kind;
2284
+	$this->kind = $kind;
2285 2285
   }
2286 2286
   public function getKind()
2287 2287
   {
2288
-    return $this->kind;
2288
+	return $this->kind;
2289 2289
   }
2290 2290
   public function setName($name)
2291 2291
   {
2292
-    $this->name = $name;
2292
+	$this->name = $name;
2293 2293
   }
2294 2294
   public function getName()
2295 2295
   {
2296
-    return $this->name;
2296
+	return $this->name;
2297 2297
   }
2298 2298
   public function setPrimaryDomain($primaryDomain)
2299 2299
   {
2300
-    $this->primaryDomain = $primaryDomain;
2300
+	$this->primaryDomain = $primaryDomain;
2301 2301
   }
2302 2302
   public function getPrimaryDomain()
2303 2303
   {
2304
-    return $this->primaryDomain;
2304
+	return $this->primaryDomain;
2305 2305
   }
2306 2306
 }
2307 2307
 
@@ -2315,19 +2315,19 @@  discard block
 block discarded – undo
2315 2315
 
2316 2316
   public function setAccountEmail($accountEmail)
2317 2317
   {
2318
-    $this->accountEmail = $accountEmail;
2318
+	$this->accountEmail = $accountEmail;
2319 2319
   }
2320 2320
   public function getAccountEmail()
2321 2321
   {
2322
-    return $this->accountEmail;
2322
+	return $this->accountEmail;
2323 2323
   }
2324 2324
   public function setKind($kind)
2325 2325
   {
2326
-    $this->kind = $kind;
2326
+	$this->kind = $kind;
2327 2327
   }
2328 2328
   public function getKind()
2329 2329
   {
2330
-    return $this->kind;
2330
+	return $this->kind;
2331 2331
   }
2332 2332
 }
2333 2333
 
@@ -2343,19 +2343,19 @@  discard block
 block discarded – undo
2343 2343
 
2344 2344
   public function setEnterprise($enterprise)
2345 2345
   {
2346
-    $this->enterprise = $enterprise;
2346
+	$this->enterprise = $enterprise;
2347 2347
   }
2348 2348
   public function getEnterprise()
2349 2349
   {
2350
-    return $this->enterprise;
2350
+	return $this->enterprise;
2351 2351
   }
2352 2352
   public function setKind($kind)
2353 2353
   {
2354
-    $this->kind = $kind;
2354
+	$this->kind = $kind;
2355 2355
   }
2356 2356
   public function getKind()
2357 2357
   {
2358
-    return $this->kind;
2358
+	return $this->kind;
2359 2359
   }
2360 2360
 }
2361 2361
 
@@ -2370,27 +2370,27 @@  discard block
 block discarded – undo
2370 2370
 
2371 2371
   public function setKind($kind)
2372 2372
   {
2373
-    $this->kind = $kind;
2373
+	$this->kind = $kind;
2374 2374
   }
2375 2375
   public function getKind()
2376 2376
   {
2377
-    return $this->kind;
2377
+	return $this->kind;
2378 2378
   }
2379 2379
   public function setProductId($productId)
2380 2380
   {
2381
-    $this->productId = $productId;
2381
+	$this->productId = $productId;
2382 2382
   }
2383 2383
   public function getProductId()
2384 2384
   {
2385
-    return $this->productId;
2385
+	return $this->productId;
2386 2386
   }
2387 2387
   public function setReason($reason)
2388 2388
   {
2389
-    $this->reason = $reason;
2389
+	$this->reason = $reason;
2390 2390
   }
2391 2391
   public function getReason()
2392 2392
   {
2393
-    return $this->reason;
2393
+	return $this->reason;
2394 2394
   }
2395 2395
 }
2396 2396
 
@@ -2406,19 +2406,19 @@  discard block
 block discarded – undo
2406 2406
 
2407 2407
   public function setEntitlement($entitlement)
2408 2408
   {
2409
-    $this->entitlement = $entitlement;
2409
+	$this->entitlement = $entitlement;
2410 2410
   }
2411 2411
   public function getEntitlement()
2412 2412
   {
2413
-    return $this->entitlement;
2413
+	return $this->entitlement;
2414 2414
   }
2415 2415
   public function setKind($kind)
2416 2416
   {
2417
-    $this->kind = $kind;
2417
+	$this->kind = $kind;
2418 2418
   }
2419 2419
   public function getKind()
2420 2420
   {
2421
-    return $this->kind;
2421
+	return $this->kind;
2422 2422
   }
2423 2423
 }
2424 2424
 
@@ -2436,51 +2436,51 @@  discard block
 block discarded – undo
2436 2436
 
2437 2437
   public function setAcquisitionKind($acquisitionKind)
2438 2438
   {
2439
-    $this->acquisitionKind = $acquisitionKind;
2439
+	$this->acquisitionKind = $acquisitionKind;
2440 2440
   }
2441 2441
   public function getAcquisitionKind()
2442 2442
   {
2443
-    return $this->acquisitionKind;
2443
+	return $this->acquisitionKind;
2444 2444
   }
2445 2445
   public function setApproval($approval)
2446 2446
   {
2447
-    $this->approval = $approval;
2447
+	$this->approval = $approval;
2448 2448
   }
2449 2449
   public function getApproval()
2450 2450
   {
2451
-    return $this->approval;
2451
+	return $this->approval;
2452 2452
   }
2453 2453
   public function setKind($kind)
2454 2454
   {
2455
-    $this->kind = $kind;
2455
+	$this->kind = $kind;
2456 2456
   }
2457 2457
   public function getKind()
2458 2458
   {
2459
-    return $this->kind;
2459
+	return $this->kind;
2460 2460
   }
2461 2461
   public function setNumProvisioned($numProvisioned)
2462 2462
   {
2463
-    $this->numProvisioned = $numProvisioned;
2463
+	$this->numProvisioned = $numProvisioned;
2464 2464
   }
2465 2465
   public function getNumProvisioned()
2466 2466
   {
2467
-    return $this->numProvisioned;
2467
+	return $this->numProvisioned;
2468 2468
   }
2469 2469
   public function setNumPurchased($numPurchased)
2470 2470
   {
2471
-    $this->numPurchased = $numPurchased;
2471
+	$this->numPurchased = $numPurchased;
2472 2472
   }
2473 2473
   public function getNumPurchased()
2474 2474
   {
2475
-    return $this->numPurchased;
2475
+	return $this->numPurchased;
2476 2476
   }
2477 2477
   public function setProductId($productId)
2478 2478
   {
2479
-    $this->productId = $productId;
2479
+	$this->productId = $productId;
2480 2480
   }
2481 2481
   public function getProductId()
2482 2482
   {
2483
-    return $this->productId;
2483
+	return $this->productId;
2484 2484
   }
2485 2485
 }
2486 2486
 
@@ -2496,19 +2496,19 @@  discard block
 block discarded – undo
2496 2496
 
2497 2497
   public function setKind($kind)
2498 2498
   {
2499
-    $this->kind = $kind;
2499
+	$this->kind = $kind;
2500 2500
   }
2501 2501
   public function getKind()
2502 2502
   {
2503
-    return $this->kind;
2503
+	return $this->kind;
2504 2504
   }
2505 2505
   public function setUser($user)
2506 2506
   {
2507
-    $this->user = $user;
2507
+	$this->user = $user;
2508 2508
   }
2509 2509
   public function getUser()
2510 2510
   {
2511
-    return $this->user;
2511
+	return $this->user;
2512 2512
   }
2513 2513
 }
2514 2514
 
@@ -2524,19 +2524,19 @@  discard block
 block discarded – undo
2524 2524
 
2525 2525
   public function setGroupLicense($groupLicense)
2526 2526
   {
2527
-    $this->groupLicense = $groupLicense;
2527
+	$this->groupLicense = $groupLicense;
2528 2528
   }
2529 2529
   public function getGroupLicense()
2530 2530
   {
2531
-    return $this->groupLicense;
2531
+	return $this->groupLicense;
2532 2532
   }
2533 2533
   public function setKind($kind)
2534 2534
   {
2535
-    $this->kind = $kind;
2535
+	$this->kind = $kind;
2536 2536
   }
2537 2537
   public function getKind()
2538 2538
   {
2539
-    return $this->kind;
2539
+	return $this->kind;
2540 2540
   }
2541 2541
 }
2542 2542
 
@@ -2552,35 +2552,35 @@  discard block
 block discarded – undo
2552 2552
 
2553 2553
   public function setInstallState($installState)
2554 2554
   {
2555
-    $this->installState = $installState;
2555
+	$this->installState = $installState;
2556 2556
   }
2557 2557
   public function getInstallState()
2558 2558
   {
2559
-    return $this->installState;
2559
+	return $this->installState;
2560 2560
   }
2561 2561
   public function setKind($kind)
2562 2562
   {
2563
-    $this->kind = $kind;
2563
+	$this->kind = $kind;
2564 2564
   }
2565 2565
   public function getKind()
2566 2566
   {
2567
-    return $this->kind;
2567
+	return $this->kind;
2568 2568
   }
2569 2569
   public function setProductId($productId)
2570 2570
   {
2571
-    $this->productId = $productId;
2571
+	$this->productId = $productId;
2572 2572
   }
2573 2573
   public function getProductId()
2574 2574
   {
2575
-    return $this->productId;
2575
+	return $this->productId;
2576 2576
   }
2577 2577
   public function setVersionCode($versionCode)
2578 2578
   {
2579
-    $this->versionCode = $versionCode;
2579
+	$this->versionCode = $versionCode;
2580 2580
   }
2581 2581
   public function getVersionCode()
2582 2582
   {
2583
-    return $this->versionCode;
2583
+	return $this->versionCode;
2584 2584
   }
2585 2585
 }
2586 2586
 
@@ -2596,19 +2596,19 @@  discard block
 block discarded – undo
2596 2596
 
2597 2597
   public function setInstall($install)
2598 2598
   {
2599
-    $this->install = $install;
2599
+	$this->install = $install;
2600 2600
   }
2601 2601
   public function getInstall()
2602 2602
   {
2603
-    return $this->install;
2603
+	return $this->install;
2604 2604
   }
2605 2605
   public function setKind($kind)
2606 2606
   {
2607
-    $this->kind = $kind;
2607
+	$this->kind = $kind;
2608 2608
   }
2609 2609
   public function getKind()
2610 2610
   {
2611
-    return $this->kind;
2611
+	return $this->kind;
2612 2612
   }
2613 2613
 }
2614 2614
 
@@ -2624,35 +2624,35 @@  discard block
 block discarded – undo
2624 2624
 
2625 2625
   public function setDescription($description)
2626 2626
   {
2627
-    $this->description = $description;
2627
+	$this->description = $description;
2628 2628
   }
2629 2629
   public function getDescription()
2630 2630
   {
2631
-    return $this->description;
2631
+	return $this->description;
2632 2632
   }
2633 2633
   public function setKind($kind)
2634 2634
   {
2635
-    $this->kind = $kind;
2635
+	$this->kind = $kind;
2636 2636
   }
2637 2637
   public function getKind()
2638 2638
   {
2639
-    return $this->kind;
2639
+	return $this->kind;
2640 2640
   }
2641 2641
   public function setName($name)
2642 2642
   {
2643
-    $this->name = $name;
2643
+	$this->name = $name;
2644 2644
   }
2645 2645
   public function getName()
2646 2646
   {
2647
-    return $this->name;
2647
+	return $this->name;
2648 2648
   }
2649 2649
   public function setPermissionId($permissionId)
2650 2650
   {
2651
-    $this->permissionId = $permissionId;
2651
+	$this->permissionId = $permissionId;
2652 2652
   }
2653 2653
   public function getPermissionId()
2654 2654
   {
2655
-    return $this->permissionId;
2655
+	return $this->permissionId;
2656 2656
   }
2657 2657
 }
2658 2658
 
@@ -2676,83 +2676,83 @@  discard block
 block discarded – undo
2676 2676
 
2677 2677
   public function setAppVersion($appVersion)
2678 2678
   {
2679
-    $this->appVersion = $appVersion;
2679
+	$this->appVersion = $appVersion;
2680 2680
   }
2681 2681
   public function getAppVersion()
2682 2682
   {
2683
-    return $this->appVersion;
2683
+	return $this->appVersion;
2684 2684
   }
2685 2685
   public function setAuthorName($authorName)
2686 2686
   {
2687
-    $this->authorName = $authorName;
2687
+	$this->authorName = $authorName;
2688 2688
   }
2689 2689
   public function getAuthorName()
2690 2690
   {
2691
-    return $this->authorName;
2691
+	return $this->authorName;
2692 2692
   }
2693 2693
   public function setDetailsUrl($detailsUrl)
2694 2694
   {
2695
-    $this->detailsUrl = $detailsUrl;
2695
+	$this->detailsUrl = $detailsUrl;
2696 2696
   }
2697 2697
   public function getDetailsUrl()
2698 2698
   {
2699
-    return $this->detailsUrl;
2699
+	return $this->detailsUrl;
2700 2700
   }
2701 2701
   public function setDistributionChannel($distributionChannel)
2702 2702
   {
2703
-    $this->distributionChannel = $distributionChannel;
2703
+	$this->distributionChannel = $distributionChannel;
2704 2704
   }
2705 2705
   public function getDistributionChannel()
2706 2706
   {
2707
-    return $this->distributionChannel;
2707
+	return $this->distributionChannel;
2708 2708
   }
2709 2709
   public function setIconUrl($iconUrl)
2710 2710
   {
2711
-    $this->iconUrl = $iconUrl;
2711
+	$this->iconUrl = $iconUrl;
2712 2712
   }
2713 2713
   public function getIconUrl()
2714 2714
   {
2715
-    return $this->iconUrl;
2715
+	return $this->iconUrl;
2716 2716
   }
2717 2717
   public function setKind($kind)
2718 2718
   {
2719
-    $this->kind = $kind;
2719
+	$this->kind = $kind;
2720 2720
   }
2721 2721
   public function getKind()
2722 2722
   {
2723
-    return $this->kind;
2723
+	return $this->kind;
2724 2724
   }
2725 2725
   public function setProductId($productId)
2726 2726
   {
2727
-    $this->productId = $productId;
2727
+	$this->productId = $productId;
2728 2728
   }
2729 2729
   public function getProductId()
2730 2730
   {
2731
-    return $this->productId;
2731
+	return $this->productId;
2732 2732
   }
2733 2733
   public function setRequiresContainerApp($requiresContainerApp)
2734 2734
   {
2735
-    $this->requiresContainerApp = $requiresContainerApp;
2735
+	$this->requiresContainerApp = $requiresContainerApp;
2736 2736
   }
2737 2737
   public function getRequiresContainerApp()
2738 2738
   {
2739
-    return $this->requiresContainerApp;
2739
+	return $this->requiresContainerApp;
2740 2740
   }
2741 2741
   public function setTitle($title)
2742 2742
   {
2743
-    $this->title = $title;
2743
+	$this->title = $title;
2744 2744
   }
2745 2745
   public function getTitle()
2746 2746
   {
2747
-    return $this->title;
2747
+	return $this->title;
2748 2748
   }
2749 2749
   public function setWorkDetailsUrl($workDetailsUrl)
2750 2750
   {
2751
-    $this->workDetailsUrl = $workDetailsUrl;
2751
+	$this->workDetailsUrl = $workDetailsUrl;
2752 2752
   }
2753 2753
   public function getWorkDetailsUrl()
2754 2754
   {
2755
-    return $this->workDetailsUrl;
2755
+	return $this->workDetailsUrl;
2756 2756
   }
2757 2757
 }
2758 2758
 
@@ -2766,19 +2766,19 @@  discard block
 block discarded – undo
2766 2766
 
2767 2767
   public function setPermissionId($permissionId)
2768 2768
   {
2769
-    $this->permissionId = $permissionId;
2769
+	$this->permissionId = $permissionId;
2770 2770
   }
2771 2771
   public function getPermissionId()
2772 2772
   {
2773
-    return $this->permissionId;
2773
+	return $this->permissionId;
2774 2774
   }
2775 2775
   public function setState($state)
2776 2776
   {
2777
-    $this->state = $state;
2777
+	$this->state = $state;
2778 2778
   }
2779 2779
   public function getState()
2780 2780
   {
2781
-    return $this->state;
2781
+	return $this->state;
2782 2782
   }
2783 2783
 }
2784 2784
 
@@ -2795,27 +2795,27 @@  discard block
 block discarded – undo
2795 2795
 
2796 2796
   public function setKind($kind)
2797 2797
   {
2798
-    $this->kind = $kind;
2798
+	$this->kind = $kind;
2799 2799
   }
2800 2800
   public function getKind()
2801 2801
   {
2802
-    return $this->kind;
2802
+	return $this->kind;
2803 2803
   }
2804 2804
   public function setPermission($permission)
2805 2805
   {
2806
-    $this->permission = $permission;
2806
+	$this->permission = $permission;
2807 2807
   }
2808 2808
   public function getPermission()
2809 2809
   {
2810
-    return $this->permission;
2810
+	return $this->permission;
2811 2811
   }
2812 2812
   public function setProductId($productId)
2813 2813
   {
2814
-    $this->productId = $productId;
2814
+	$this->productId = $productId;
2815 2815
   }
2816 2816
   public function getProductId()
2817 2817
   {
2818
-    return $this->productId;
2818
+	return $this->productId;
2819 2819
   }
2820 2820
 }
2821 2821
 
@@ -2829,11 +2829,11 @@  discard block
 block discarded – undo
2829 2829
 
2830 2830
   public function setApprovalUrlInfo(Google_Service_AndroidEnterprise_ApprovalUrlInfo $approvalUrlInfo)
2831 2831
   {
2832
-    $this->approvalUrlInfo = $approvalUrlInfo;
2832
+	$this->approvalUrlInfo = $approvalUrlInfo;
2833 2833
   }
2834 2834
   public function getApprovalUrlInfo()
2835 2835
   {
2836
-    return $this->approvalUrlInfo;
2836
+	return $this->approvalUrlInfo;
2837 2837
   }
2838 2838
 }
2839 2839
 
@@ -2846,11 +2846,11 @@  discard block
 block discarded – undo
2846 2846
 
2847 2847
   public function setUrl($url)
2848 2848
   {
2849
-    $this->url = $url;
2849
+	$this->url = $url;
2850 2850
   }
2851 2851
   public function getUrl()
2852 2852
   {
2853
-    return $this->url;
2853
+	return $this->url;
2854 2854
   }
2855 2855
 }
2856 2856
 
@@ -2865,27 +2865,27 @@  discard block
 block discarded – undo
2865 2865
 
2866 2866
   public function setId($id)
2867 2867
   {
2868
-    $this->id = $id;
2868
+	$this->id = $id;
2869 2869
   }
2870 2870
   public function getId()
2871 2871
   {
2872
-    return $this->id;
2872
+	return $this->id;
2873 2873
   }
2874 2874
   public function setKind($kind)
2875 2875
   {
2876
-    $this->kind = $kind;
2876
+	$this->kind = $kind;
2877 2877
   }
2878 2878
   public function getKind()
2879 2879
   {
2880
-    return $this->kind;
2880
+	return $this->kind;
2881 2881
   }
2882 2882
   public function setPrimaryEmail($primaryEmail)
2883 2883
   {
2884
-    $this->primaryEmail = $primaryEmail;
2884
+	$this->primaryEmail = $primaryEmail;
2885 2885
   }
2886 2886
   public function getPrimaryEmail()
2887 2887
   {
2888
-    return $this->primaryEmail;
2888
+	return $this->primaryEmail;
2889 2889
   }
2890 2890
 }
2891 2891
 
@@ -2900,27 +2900,27 @@  discard block
 block discarded – undo
2900 2900
 
2901 2901
   public function setKind($kind)
2902 2902
   {
2903
-    $this->kind = $kind;
2903
+	$this->kind = $kind;
2904 2904
   }
2905 2905
   public function getKind()
2906 2906
   {
2907
-    return $this->kind;
2907
+	return $this->kind;
2908 2908
   }
2909 2909
   public function setToken($token)
2910 2910
   {
2911
-    $this->token = $token;
2911
+	$this->token = $token;
2912 2912
   }
2913 2913
   public function getToken()
2914 2914
   {
2915
-    return $this->token;
2915
+	return $this->token;
2916 2916
   }
2917 2917
   public function setUserId($userId)
2918 2918
   {
2919
-    $this->userId = $userId;
2919
+	$this->userId = $userId;
2920 2920
   }
2921 2921
   public function getUserId()
2922 2922
   {
2923
-    return $this->userId;
2923
+	return $this->userId;
2924 2924
   }
2925 2925
 }
2926 2926
 
@@ -2936,18 +2936,18 @@  discard block
 block discarded – undo
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
   public function setUser($user)
2946 2946
   {
2947
-    $this->user = $user;
2947
+	$this->user = $user;
2948 2948
   }
2949 2949
   public function getUser()
2950 2950
   {
2951
-    return $this->user;
2951
+	return $this->user;
2952 2952
   }
2953 2953
 }
Please login to merge, or discard this patch.
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                   'required' => true,
83 83
                 ),
84 84
               ),
85
-            ),'get' => array(
85
+            ), 'get' => array(
86 86
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
87 87
               'httpMethod' => 'GET',
88 88
               'parameters' => array(
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                   'required' => true,
98 98
                 ),
99 99
               ),
100
-            ),'insert' => array(
100
+            ), 'insert' => array(
101 101
               'path' => 'enterprises/{enterpriseId}/collections',
102 102
               'httpMethod' => 'POST',
103 103
               'parameters' => array(
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                   'required' => true,
108 108
                 ),
109 109
               ),
110
-            ),'list' => array(
110
+            ), 'list' => array(
111 111
               'path' => 'enterprises/{enterpriseId}/collections',
112 112
               'httpMethod' => 'GET',
113 113
               'parameters' => array(
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                   'required' => true,
118 118
                 ),
119 119
               ),
120
-            ),'patch' => array(
120
+            ), 'patch' => array(
121 121
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
122 122
               'httpMethod' => 'PATCH',
123 123
               'parameters' => array(
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
                   'required' => true,
133 133
                 ),
134 134
               ),
135
-            ),'update' => array(
135
+            ), 'update' => array(
136 136
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}',
137 137
               'httpMethod' => 'PUT',
138 138
               'parameters' => array(
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
                   'required' => true,
178 178
                 ),
179 179
               ),
180
-            ),'get' => array(
180
+            ), 'get' => array(
181 181
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
182 182
               'httpMethod' => 'GET',
183 183
               'parameters' => array(
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
                   'required' => true,
198 198
                 ),
199 199
               ),
200
-            ),'list' => array(
200
+            ), 'list' => array(
201 201
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users',
202 202
               'httpMethod' => 'GET',
203 203
               'parameters' => array(
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
                   'required' => true,
213 213
                 ),
214 214
               ),
215
-            ),'patch' => array(
215
+            ), 'patch' => array(
216 216
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
217 217
               'httpMethod' => 'PATCH',
218 218
               'parameters' => array(
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
                   'required' => true,
233 233
                 ),
234 234
               ),
235
-            ),'update' => array(
235
+            ), 'update' => array(
236 236
               'path' => 'enterprises/{enterpriseId}/collections/{collectionId}/users/{userId}',
237 237
               'httpMethod' => 'PUT',
238 238
               'parameters' => array(
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
                   'required' => true,
283 283
                 ),
284 284
               ),
285
-            ),'getState' => array(
285
+            ), 'getState' => array(
286 286
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
287 287
               'httpMethod' => 'GET',
288 288
               'parameters' => array(
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
                   'required' => true,
303 303
                 ),
304 304
               ),
305
-            ),'list' => array(
305
+            ), 'list' => array(
306 306
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices',
307 307
               'httpMethod' => 'GET',
308 308
               'parameters' => array(
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
                   'required' => true,
318 318
                 ),
319 319
               ),
320
-            ),'setState' => array(
320
+            ), 'setState' => array(
321 321
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/state',
322 322
               'httpMethod' => 'PUT',
323 323
               'parameters' => array(
@@ -357,7 +357,7 @@  discard block
 block discarded – undo
357 357
                   'required' => true,
358 358
                 ),
359 359
               ),
360
-            ),'enroll' => array(
360
+            ), 'enroll' => array(
361 361
               'path' => 'enterprises/enroll',
362 362
               'httpMethod' => 'POST',
363 363
               'parameters' => array(
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                   'required' => true,
368 368
                 ),
369 369
               ),
370
-            ),'get' => array(
370
+            ), 'get' => array(
371 371
               'path' => 'enterprises/{enterpriseId}',
372 372
               'httpMethod' => 'GET',
373 373
               'parameters' => array(
@@ -377,7 +377,7 @@  discard block
 block discarded – undo
377 377
                   'required' => true,
378 378
                 ),
379 379
               ),
380
-            ),'insert' => array(
380
+            ), 'insert' => array(
381 381
               'path' => 'enterprises',
382 382
               'httpMethod' => 'POST',
383 383
               'parameters' => array(
@@ -387,7 +387,7 @@  discard block
 block discarded – undo
387 387
                   'required' => true,
388 388
                 ),
389 389
               ),
390
-            ),'list' => array(
390
+            ), 'list' => array(
391 391
               'path' => 'enterprises',
392 392
               'httpMethod' => 'GET',
393 393
               'parameters' => array(
@@ -397,7 +397,7 @@  discard block
 block discarded – undo
397 397
                   'required' => true,
398 398
                 ),
399 399
               ),
400
-            ),'setAccount' => array(
400
+            ), 'setAccount' => array(
401 401
               'path' => 'enterprises/{enterpriseId}/account',
402 402
               'httpMethod' => 'PUT',
403 403
               'parameters' => array(
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
                   'required' => true,
408 408
                 ),
409 409
               ),
410
-            ),'unenroll' => array(
410
+            ), 'unenroll' => array(
411 411
               'path' => 'enterprises/{enterpriseId}/unenroll',
412 412
               'httpMethod' => 'POST',
413 413
               'parameters' => array(
@@ -447,7 +447,7 @@  discard block
 block discarded – undo
447 447
                   'required' => true,
448 448
                 ),
449 449
               ),
450
-            ),'get' => array(
450
+            ), 'get' => array(
451 451
               'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
452 452
               'httpMethod' => 'GET',
453 453
               'parameters' => array(
@@ -467,7 +467,7 @@  discard block
 block discarded – undo
467 467
                   'required' => true,
468 468
                 ),
469 469
               ),
470
-            ),'list' => array(
470
+            ), 'list' => array(
471 471
               'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements',
472 472
               'httpMethod' => 'GET',
473 473
               'parameters' => array(
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
                   'required' => true,
483 483
                 ),
484 484
               ),
485
-            ),'patch' => array(
485
+            ), 'patch' => array(
486 486
               'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
487 487
               'httpMethod' => 'PATCH',
488 488
               'parameters' => array(
@@ -506,7 +506,7 @@  discard block
 block discarded – undo
506 506
                   'type' => 'boolean',
507 507
                 ),
508 508
               ),
509
-            ),'update' => array(
509
+            ), 'update' => array(
510 510
               'path' => 'enterprises/{enterpriseId}/users/{userId}/entitlements/{entitlementId}',
511 511
               'httpMethod' => 'PUT',
512 512
               'parameters' => array(
@@ -555,7 +555,7 @@  discard block
 block discarded – undo
555 555
                   'required' => true,
556 556
                 ),
557 557
               ),
558
-            ),'list' => array(
558
+            ), 'list' => array(
559 559
               'path' => 'enterprises/{enterpriseId}/groupLicenses',
560 560
               'httpMethod' => 'GET',
561 561
               'parameters' => array(
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
                   'required' => true,
626 626
                 ),
627 627
               ),
628
-            ),'get' => array(
628
+            ), 'get' => array(
629 629
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
630 630
               'httpMethod' => 'GET',
631 631
               'parameters' => array(
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
                   'required' => true,
651 651
                 ),
652 652
               ),
653
-            ),'list' => array(
653
+            ), 'list' => array(
654 654
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs',
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
-            ),'patch' => array(
673
+            ), 'patch' => array(
674 674
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
675 675
               'httpMethod' => 'PATCH',
676 676
               'parameters' => array(
@@ -695,7 +695,7 @@  discard block
 block discarded – undo
695 695
                   'required' => true,
696 696
                 ),
697 697
               ),
698
-            ),'update' => array(
698
+            ), 'update' => array(
699 699
               'path' => 'enterprises/{enterpriseId}/users/{userId}/devices/{deviceId}/installs/{installId}',
700 700
               'httpMethod' => 'PUT',
701 701
               'parameters' => array(
@@ -769,7 +769,7 @@  discard block
 block discarded – undo
769 769
                   'required' => true,
770 770
                 ),
771 771
               ),
772
-            ),'generateApprovalUrl' => array(
772
+            ), 'generateApprovalUrl' => array(
773 773
               'path' => 'enterprises/{enterpriseId}/products/{productId}/generateApprovalUrl',
774 774
               'httpMethod' => 'POST',
775 775
               'parameters' => array(
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
                   'type' => 'string',
789 789
                 ),
790 790
               ),
791
-            ),'get' => array(
791
+            ), 'get' => array(
792 792
               'path' => 'enterprises/{enterpriseId}/products/{productId}',
793 793
               'httpMethod' => 'GET',
794 794
               'parameters' => array(
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
                   'type' => 'string',
808 808
                 ),
809 809
               ),
810
-            ),'getAppRestrictionsSchema' => array(
810
+            ), 'getAppRestrictionsSchema' => array(
811 811
               'path' => 'enterprises/{enterpriseId}/products/{productId}/appRestrictionsSchema',
812 812
               'httpMethod' => 'GET',
813 813
               'parameters' => array(
@@ -826,7 +826,7 @@  discard block
 block discarded – undo
826 826
                   'type' => 'string',
827 827
                 ),
828 828
               ),
829
-            ),'getPermissions' => array(
829
+            ), 'getPermissions' => array(
830 830
               'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
831 831
               'httpMethod' => 'GET',
832 832
               'parameters' => array(
@@ -841,7 +841,7 @@  discard block
 block discarded – undo
841 841
                   'required' => true,
842 842
                 ),
843 843
               ),
844
-            ),'updatePermissions' => array(
844
+            ), 'updatePermissions' => array(
845 845
               'path' => 'enterprises/{enterpriseId}/products/{productId}/permissions',
846 846
               'httpMethod' => 'PUT',
847 847
               'parameters' => array(
@@ -881,7 +881,7 @@  discard block
 block discarded – undo
881 881
                   'required' => true,
882 882
                 ),
883 883
               ),
884
-            ),'get' => array(
884
+            ), 'get' => array(
885 885
               'path' => 'enterprises/{enterpriseId}/users/{userId}',
886 886
               'httpMethod' => 'GET',
887 887
               'parameters' => array(
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
                   'required' => true,
897 897
                 ),
898 898
               ),
899
-            ),'list' => array(
899
+            ), 'list' => array(
900 900
               'path' => 'enterprises/{enterpriseId}/users',
901 901
               'httpMethod' => 'GET',
902 902
               'parameters' => array(
@@ -911,7 +911,7 @@  discard block
 block discarded – undo
911 911
                   'required' => true,
912 912
                 ),
913 913
               ),
914
-            ),'revokeToken' => array(
914
+            ), 'revokeToken' => array(
915 915
               'path' => 'enterprises/{enterpriseId}/users/{userId}/token',
916 916
               'httpMethod' => 'DELETE',
917 917
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/AndroidPublisher.php 3 patches
Doc Comments   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -1267,7 +1267,7 @@  discard block
 block discarded – undo
1267 1267
    *
1268 1268
    * @param string $packageName Unique identifier for the Android app that is
1269 1269
    * being updated; for example, "com.spiffygame".
1270
-   * @param Google_AppEdit $postBody
1270
+   * @param Google_Service_AndroidPublisher_AppEdit $postBody
1271 1271
    * @param array $optParams Optional parameters.
1272 1272
    * @return Google_Service_AndroidPublisher_AppEdit
1273 1273
    */
@@ -1399,7 +1399,7 @@  discard block
 block discarded – undo
1399 1399
    * @param string $language The language code (a BCP-47 language tag) of the APK-
1400 1400
    * specific localized listing to read or modify. For example, to select Austrian
1401 1401
    * German, pass "de-AT".
1402
-   * @param Google_ApkListing $postBody
1402
+   * @param Google_Service_AndroidPublisher_ApkListing $postBody
1403 1403
    * @param array $optParams Optional parameters.
1404 1404
    * @return Google_Service_AndroidPublisher_ApkListing
1405 1405
    */
@@ -1422,7 +1422,7 @@  discard block
 block discarded – undo
1422 1422
    * @param string $language The language code (a BCP-47 language tag) of the APK-
1423 1423
    * specific localized listing to read or modify. For example, to select Austrian
1424 1424
    * German, pass "de-AT".
1425
-   * @param Google_ApkListing $postBody
1425
+   * @param Google_Service_AndroidPublisher_ApkListing $postBody
1426 1426
    * @param array $optParams Optional parameters.
1427 1427
    * @return Google_Service_AndroidPublisher_ApkListing
1428 1428
    */
@@ -1453,7 +1453,7 @@  discard block
 block discarded – undo
1453 1453
    * @param string $packageName Unique identifier for the Android app that is
1454 1454
    * being updated; for example, "com.spiffygame".
1455 1455
    * @param string $editId Unique identifier for this edit.
1456
-   * @param Google_ApksAddExternallyHostedRequest $postBody
1456
+   * @param Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest $postBody
1457 1457
    * @param array $optParams Optional parameters.
1458 1458
    * @return Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse
1459 1459
    */
@@ -1531,7 +1531,7 @@  discard block
 block discarded – undo
1531 1531
    * @param string $packageName Unique identifier for the Android app that is
1532 1532
    * being updated; for example, "com.spiffygame".
1533 1533
    * @param string $editId Unique identifier for this edit.
1534
-   * @param Google_AppDetails $postBody
1534
+   * @param Google_Service_AndroidPublisher_AppDetails $postBody
1535 1535
    * @param array $optParams Optional parameters.
1536 1536
    * @return Google_Service_AndroidPublisher_AppDetails
1537 1537
    */
@@ -1548,7 +1548,7 @@  discard block
 block discarded – undo
1548 1548
    * @param string $packageName Unique identifier for the Android app that is
1549 1549
    * being updated; for example, "com.spiffygame".
1550 1550
    * @param string $editId Unique identifier for this edit.
1551
-   * @param Google_AppDetails $postBody
1551
+   * @param Google_Service_AndroidPublisher_AppDetails $postBody
1552 1552
    * @param array $optParams Optional parameters.
1553 1553
    * @return Google_Service_AndroidPublisher_AppDetails
1554 1554
    */
@@ -1601,7 +1601,7 @@  discard block
 block discarded – undo
1601 1601
    * @param int $apkVersionCode The version code of the APK whose Expansion File
1602 1602
    * configuration is being read or modified.
1603 1603
    * @param string $expansionFileType
1604
-   * @param Google_ExpansionFile $postBody
1604
+   * @param Google_Service_AndroidPublisher_ExpansionFile $postBody
1605 1605
    * @param array $optParams Optional parameters.
1606 1606
    * @return Google_Service_AndroidPublisher_ExpansionFile
1607 1607
    */
@@ -1623,7 +1623,7 @@  discard block
 block discarded – undo
1623 1623
    * @param int $apkVersionCode The version code of the APK whose Expansion File
1624 1624
    * configuration is being read or modified.
1625 1625
    * @param string $expansionFileType
1626
-   * @param Google_ExpansionFile $postBody
1626
+   * @param Google_Service_AndroidPublisher_ExpansionFile $postBody
1627 1627
    * @param array $optParams Optional parameters.
1628 1628
    * @return Google_Service_AndroidPublisher_ExpansionFile
1629 1629
    */
@@ -1839,7 +1839,7 @@  discard block
 block discarded – undo
1839 1839
    * @param string $language The language code (a BCP-47 language tag) of the
1840 1840
    * localized listing to read or modify. For example, to select Austrian German,
1841 1841
    * pass "de-AT".
1842
-   * @param Google_Listing $postBody
1842
+   * @param Google_Service_AndroidPublisher_Listing $postBody
1843 1843
    * @param array $optParams Optional parameters.
1844 1844
    * @return Google_Service_AndroidPublisher_Listing
1845 1845
    */
@@ -1859,7 +1859,7 @@  discard block
 block discarded – undo
1859 1859
    * @param string $language The language code (a BCP-47 language tag) of the
1860 1860
    * localized listing to read or modify. For example, to select Austrian German,
1861 1861
    * pass "de-AT".
1862
-   * @param Google_Listing $postBody
1862
+   * @param Google_Service_AndroidPublisher_Listing $postBody
1863 1863
    * @param array $optParams Optional parameters.
1864 1864
    * @return Google_Service_AndroidPublisher_Listing
1865 1865
    */
@@ -1905,7 +1905,7 @@  discard block
 block discarded – undo
1905 1905
    * being updated; for example, "com.spiffygame".
1906 1906
    * @param string $editId Unique identifier for this edit.
1907 1907
    * @param string $track
1908
-   * @param Google_Testers $postBody
1908
+   * @param Google_Service_AndroidPublisher_Testers $postBody
1909 1909
    * @param array $optParams Optional parameters.
1910 1910
    * @return Google_Service_AndroidPublisher_Testers
1911 1911
    */
@@ -1923,7 +1923,7 @@  discard block
 block discarded – undo
1923 1923
    * being updated; for example, "com.spiffygame".
1924 1924
    * @param string $editId Unique identifier for this edit.
1925 1925
    * @param string $track
1926
-   * @param Google_Testers $postBody
1926
+   * @param Google_Service_AndroidPublisher_Testers $postBody
1927 1927
    * @param array $optParams Optional parameters.
1928 1928
    * @return Google_Service_AndroidPublisher_Testers
1929 1929
    */
@@ -1989,7 +1989,7 @@  discard block
 block discarded – undo
1989 1989
    * being updated; for example, "com.spiffygame".
1990 1990
    * @param string $editId Unique identifier for this edit.
1991 1991
    * @param string $track The track type to read or modify.
1992
-   * @param Google_Track $postBody
1992
+   * @param Google_Service_AndroidPublisher_Track $postBody
1993 1993
    * @param array $optParams Optional parameters.
1994 1994
    * @return Google_Service_AndroidPublisher_Track
1995 1995
    */
@@ -2009,7 +2009,7 @@  discard block
 block discarded – undo
2009 2009
    * being updated; for example, "com.spiffygame".
2010 2010
    * @param string $editId Unique identifier for this edit.
2011 2011
    * @param string $track The track type to read or modify.
2012
-   * @param Google_Track $postBody
2012
+   * @param Google_Service_AndroidPublisher_Track $postBody
2013 2013
    * @param array $optParams Optional parameters.
2014 2014
    * @return Google_Service_AndroidPublisher_Track
2015 2015
    */
@@ -2069,7 +2069,7 @@  discard block
 block discarded – undo
2069 2069
   /**
2070 2070
    * (inappproducts.batch)
2071 2071
    *
2072
-   * @param Google_InappproductsBatchRequest $postBody
2072
+   * @param Google_Service_AndroidPublisher_InappproductsBatchRequest $postBody
2073 2073
    * @param array $optParams Optional parameters.
2074 2074
    * @return Google_Service_AndroidPublisher_InappproductsBatchResponse
2075 2075
    */
@@ -2115,7 +2115,7 @@  discard block
 block discarded – undo
2115 2115
    *
2116 2116
    * @param string $packageName Unique identifier for the Android app; for
2117 2117
    * example, "com.spiffygame".
2118
-   * @param Google_InAppProduct $postBody
2118
+   * @param Google_Service_AndroidPublisher_InAppProduct $postBody
2119 2119
    * @param array $optParams Optional parameters.
2120 2120
    *
2121 2121
    * @opt_param bool autoConvertMissingPrices If true the prices for all regions
@@ -2158,7 +2158,7 @@  discard block
 block discarded – undo
2158 2158
    * @param string $packageName Unique identifier for the Android app with the in-
2159 2159
    * app product; for example, "com.spiffygame".
2160 2160
    * @param string $sku Unique identifier for the in-app product.
2161
-   * @param Google_InAppProduct $postBody
2161
+   * @param Google_Service_AndroidPublisher_InAppProduct $postBody
2162 2162
    * @param array $optParams Optional parameters.
2163 2163
    *
2164 2164
    * @opt_param bool autoConvertMissingPrices If true the prices for all regions
@@ -2180,7 +2180,7 @@  discard block
 block discarded – undo
2180 2180
    * @param string $packageName Unique identifier for the Android app with the in-
2181 2181
    * app product; for example, "com.spiffygame".
2182 2182
    * @param string $sku Unique identifier for the in-app product.
2183
-   * @param Google_InAppProduct $postBody
2183
+   * @param Google_Service_AndroidPublisher_InAppProduct $postBody
2184 2184
    * @param array $optParams Optional parameters.
2185 2185
    *
2186 2186
    * @opt_param bool autoConvertMissingPrices If true the prices for all regions
@@ -2279,7 +2279,7 @@  discard block
 block discarded – undo
2279 2279
    * 'monthly001').
2280 2280
    * @param string $token The token provided to the user's device when the
2281 2281
    * subscription was purchased.
2282
-   * @param Google_SubscriptionPurchasesDeferRequest $postBody
2282
+   * @param Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest $postBody
2283 2283
    * @param array $optParams Optional parameters.
2284 2284
    * @return Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse
2285 2285
    */
Please login to merge, or discard this patch.
Indentation   +1535 added lines, -1535 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your Google Play Developer account. */
34 34
   const ANDROIDPUBLISHER =
35
-      "https://www.googleapis.com/auth/androidpublisher";
35
+	  "https://www.googleapis.com/auth/androidpublisher";
36 36
 
37 37
   public $edits;
38 38
   public $edits_apklistings;
@@ -56,1146 +56,1146 @@  discard block
 block discarded – undo
56 56
    */
57 57
   public function __construct(Google_Client $client)
58 58
   {
59
-    parent::__construct($client);
60
-    $this->rootUrl = 'https://www.googleapis.com/';
61
-    $this->servicePath = 'androidpublisher/v2/applications/';
62
-    $this->version = 'v2';
63
-    $this->serviceName = 'androidpublisher';
64
-
65
-    $this->edits = new Google_Service_AndroidPublisher_Edits_Resource(
66
-        $this,
67
-        $this->serviceName,
68
-        'edits',
69
-        array(
70
-          'methods' => array(
71
-            'commit' => array(
72
-              'path' => '{packageName}/edits/{editId}:commit',
73
-              'httpMethod' => 'POST',
74
-              'parameters' => array(
75
-                'packageName' => array(
76
-                  'location' => 'path',
77
-                  'type' => 'string',
78
-                  'required' => true,
79
-                ),
80
-                'editId' => array(
81
-                  'location' => 'path',
82
-                  'type' => 'string',
83
-                  'required' => true,
84
-                ),
85
-              ),
86
-            ),'delete' => array(
87
-              'path' => '{packageName}/edits/{editId}',
88
-              'httpMethod' => 'DELETE',
89
-              'parameters' => array(
90
-                'packageName' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-                'editId' => array(
96
-                  'location' => 'path',
97
-                  'type' => 'string',
98
-                  'required' => true,
99
-                ),
100
-              ),
101
-            ),'get' => array(
102
-              'path' => '{packageName}/edits/{editId}',
103
-              'httpMethod' => 'GET',
104
-              'parameters' => array(
105
-                'packageName' => array(
106
-                  'location' => 'path',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'editId' => array(
111
-                  'location' => 'path',
112
-                  'type' => 'string',
113
-                  'required' => true,
114
-                ),
115
-              ),
116
-            ),'insert' => array(
117
-              'path' => '{packageName}/edits',
118
-              'httpMethod' => 'POST',
119
-              'parameters' => array(
120
-                'packageName' => array(
121
-                  'location' => 'path',
122
-                  'type' => 'string',
123
-                  'required' => true,
124
-                ),
125
-              ),
126
-            ),'validate' => array(
127
-              'path' => '{packageName}/edits/{editId}:validate',
128
-              'httpMethod' => 'POST',
129
-              'parameters' => array(
130
-                'packageName' => array(
131
-                  'location' => 'path',
132
-                  'type' => 'string',
133
-                  'required' => true,
134
-                ),
135
-                'editId' => array(
136
-                  'location' => 'path',
137
-                  'type' => 'string',
138
-                  'required' => true,
139
-                ),
140
-              ),
141
-            ),
142
-          )
143
-        )
144
-    );
145
-    $this->edits_apklistings = new Google_Service_AndroidPublisher_EditsApklistings_Resource(
146
-        $this,
147
-        $this->serviceName,
148
-        'apklistings',
149
-        array(
150
-          'methods' => array(
151
-            'delete' => array(
152
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
153
-              'httpMethod' => 'DELETE',
154
-              'parameters' => array(
155
-                'packageName' => array(
156
-                  'location' => 'path',
157
-                  'type' => 'string',
158
-                  'required' => true,
159
-                ),
160
-                'editId' => array(
161
-                  'location' => 'path',
162
-                  'type' => 'string',
163
-                  'required' => true,
164
-                ),
165
-                'apkVersionCode' => array(
166
-                  'location' => 'path',
167
-                  'type' => 'integer',
168
-                  'required' => true,
169
-                ),
170
-                'language' => array(
171
-                  'location' => 'path',
172
-                  'type' => 'string',
173
-                  'required' => true,
174
-                ),
175
-              ),
176
-            ),'deleteall' => array(
177
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
178
-              'httpMethod' => 'DELETE',
179
-              'parameters' => array(
180
-                'packageName' => array(
181
-                  'location' => 'path',
182
-                  'type' => 'string',
183
-                  'required' => true,
184
-                ),
185
-                'editId' => array(
186
-                  'location' => 'path',
187
-                  'type' => 'string',
188
-                  'required' => true,
189
-                ),
190
-                'apkVersionCode' => array(
191
-                  'location' => 'path',
192
-                  'type' => 'integer',
193
-                  'required' => true,
194
-                ),
195
-              ),
196
-            ),'get' => array(
197
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
198
-              'httpMethod' => 'GET',
199
-              'parameters' => array(
200
-                'packageName' => array(
201
-                  'location' => 'path',
202
-                  'type' => 'string',
203
-                  'required' => true,
204
-                ),
205
-                'editId' => array(
206
-                  'location' => 'path',
207
-                  'type' => 'string',
208
-                  'required' => true,
209
-                ),
210
-                'apkVersionCode' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'integer',
213
-                  'required' => true,
214
-                ),
215
-                'language' => array(
216
-                  'location' => 'path',
217
-                  'type' => 'string',
218
-                  'required' => true,
219
-                ),
220
-              ),
221
-            ),'list' => array(
222
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
223
-              'httpMethod' => 'GET',
224
-              'parameters' => array(
225
-                'packageName' => array(
226
-                  'location' => 'path',
227
-                  'type' => 'string',
228
-                  'required' => true,
229
-                ),
230
-                'editId' => array(
231
-                  'location' => 'path',
232
-                  'type' => 'string',
233
-                  'required' => true,
234
-                ),
235
-                'apkVersionCode' => array(
236
-                  'location' => 'path',
237
-                  'type' => 'integer',
238
-                  'required' => true,
239
-                ),
240
-              ),
241
-            ),'patch' => array(
242
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
243
-              'httpMethod' => 'PATCH',
244
-              'parameters' => array(
245
-                'packageName' => array(
246
-                  'location' => 'path',
247
-                  'type' => 'string',
248
-                  'required' => true,
249
-                ),
250
-                'editId' => array(
251
-                  'location' => 'path',
252
-                  'type' => 'string',
253
-                  'required' => true,
254
-                ),
255
-                'apkVersionCode' => array(
256
-                  'location' => 'path',
257
-                  'type' => 'integer',
258
-                  'required' => true,
259
-                ),
260
-                'language' => array(
261
-                  'location' => 'path',
262
-                  'type' => 'string',
263
-                  'required' => true,
264
-                ),
265
-              ),
266
-            ),'update' => array(
267
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
268
-              'httpMethod' => 'PUT',
269
-              'parameters' => array(
270
-                'packageName' => array(
271
-                  'location' => 'path',
272
-                  'type' => 'string',
273
-                  'required' => true,
274
-                ),
275
-                'editId' => array(
276
-                  'location' => 'path',
277
-                  'type' => 'string',
278
-                  'required' => true,
279
-                ),
280
-                'apkVersionCode' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'integer',
283
-                  'required' => true,
284
-                ),
285
-                'language' => array(
286
-                  'location' => 'path',
287
-                  'type' => 'string',
288
-                  'required' => true,
289
-                ),
290
-              ),
291
-            ),
292
-          )
293
-        )
294
-    );
295
-    $this->edits_apks = new Google_Service_AndroidPublisher_EditsApks_Resource(
296
-        $this,
297
-        $this->serviceName,
298
-        'apks',
299
-        array(
300
-          'methods' => array(
301
-            'addexternallyhosted' => array(
302
-              'path' => '{packageName}/edits/{editId}/apks/externallyHosted',
303
-              'httpMethod' => 'POST',
304
-              'parameters' => array(
305
-                'packageName' => array(
306
-                  'location' => 'path',
307
-                  'type' => 'string',
308
-                  'required' => true,
309
-                ),
310
-                'editId' => array(
311
-                  'location' => 'path',
312
-                  'type' => 'string',
313
-                  'required' => true,
314
-                ),
315
-              ),
316
-            ),'list' => array(
317
-              'path' => '{packageName}/edits/{editId}/apks',
318
-              'httpMethod' => 'GET',
319
-              'parameters' => array(
320
-                'packageName' => array(
321
-                  'location' => 'path',
322
-                  'type' => 'string',
323
-                  'required' => true,
324
-                ),
325
-                'editId' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-              ),
331
-            ),'upload' => array(
332
-              'path' => '{packageName}/edits/{editId}/apks',
333
-              'httpMethod' => 'POST',
334
-              'parameters' => array(
335
-                'packageName' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-                'editId' => array(
341
-                  'location' => 'path',
342
-                  'type' => 'string',
343
-                  'required' => true,
344
-                ),
345
-              ),
346
-            ),
347
-          )
348
-        )
349
-    );
350
-    $this->edits_details = new Google_Service_AndroidPublisher_EditsDetails_Resource(
351
-        $this,
352
-        $this->serviceName,
353
-        'details',
354
-        array(
355
-          'methods' => array(
356
-            'get' => array(
357
-              'path' => '{packageName}/edits/{editId}/details',
358
-              'httpMethod' => 'GET',
359
-              'parameters' => array(
360
-                'packageName' => array(
361
-                  'location' => 'path',
362
-                  'type' => 'string',
363
-                  'required' => true,
364
-                ),
365
-                'editId' => array(
366
-                  'location' => 'path',
367
-                  'type' => 'string',
368
-                  'required' => true,
369
-                ),
370
-              ),
371
-            ),'patch' => array(
372
-              'path' => '{packageName}/edits/{editId}/details',
373
-              'httpMethod' => 'PATCH',
374
-              'parameters' => array(
375
-                'packageName' => array(
376
-                  'location' => 'path',
377
-                  'type' => 'string',
378
-                  'required' => true,
379
-                ),
380
-                'editId' => array(
381
-                  'location' => 'path',
382
-                  'type' => 'string',
383
-                  'required' => true,
384
-                ),
385
-              ),
386
-            ),'update' => array(
387
-              'path' => '{packageName}/edits/{editId}/details',
388
-              'httpMethod' => 'PUT',
389
-              'parameters' => array(
390
-                'packageName' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'editId' => array(
396
-                  'location' => 'path',
397
-                  'type' => 'string',
398
-                  'required' => true,
399
-                ),
400
-              ),
401
-            ),
402
-          )
403
-        )
404
-    );
405
-    $this->edits_expansionfiles = new Google_Service_AndroidPublisher_EditsExpansionfiles_Resource(
406
-        $this,
407
-        $this->serviceName,
408
-        'expansionfiles',
409
-        array(
410
-          'methods' => array(
411
-            'get' => array(
412
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
413
-              'httpMethod' => 'GET',
414
-              'parameters' => array(
415
-                'packageName' => array(
416
-                  'location' => 'path',
417
-                  'type' => 'string',
418
-                  'required' => true,
419
-                ),
420
-                'editId' => array(
421
-                  'location' => 'path',
422
-                  'type' => 'string',
423
-                  'required' => true,
424
-                ),
425
-                'apkVersionCode' => array(
426
-                  'location' => 'path',
427
-                  'type' => 'integer',
428
-                  'required' => true,
429
-                ),
430
-                'expansionFileType' => array(
431
-                  'location' => 'path',
432
-                  'type' => 'string',
433
-                  'required' => true,
434
-                ),
435
-              ),
436
-            ),'patch' => array(
437
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
438
-              'httpMethod' => 'PATCH',
439
-              'parameters' => array(
440
-                'packageName' => array(
441
-                  'location' => 'path',
442
-                  'type' => 'string',
443
-                  'required' => true,
444
-                ),
445
-                'editId' => array(
446
-                  'location' => 'path',
447
-                  'type' => 'string',
448
-                  'required' => true,
449
-                ),
450
-                'apkVersionCode' => array(
451
-                  'location' => 'path',
452
-                  'type' => 'integer',
453
-                  'required' => true,
454
-                ),
455
-                'expansionFileType' => array(
456
-                  'location' => 'path',
457
-                  'type' => 'string',
458
-                  'required' => true,
459
-                ),
460
-              ),
461
-            ),'update' => array(
462
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
463
-              'httpMethod' => 'PUT',
464
-              'parameters' => array(
465
-                'packageName' => array(
466
-                  'location' => 'path',
467
-                  'type' => 'string',
468
-                  'required' => true,
469
-                ),
470
-                'editId' => array(
471
-                  'location' => 'path',
472
-                  'type' => 'string',
473
-                  'required' => true,
474
-                ),
475
-                'apkVersionCode' => array(
476
-                  'location' => 'path',
477
-                  'type' => 'integer',
478
-                  'required' => true,
479
-                ),
480
-                'expansionFileType' => array(
481
-                  'location' => 'path',
482
-                  'type' => 'string',
483
-                  'required' => true,
484
-                ),
485
-              ),
486
-            ),'upload' => array(
487
-              'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
488
-              'httpMethod' => 'POST',
489
-              'parameters' => array(
490
-                'packageName' => array(
491
-                  'location' => 'path',
492
-                  'type' => 'string',
493
-                  'required' => true,
494
-                ),
495
-                'editId' => array(
496
-                  'location' => 'path',
497
-                  'type' => 'string',
498
-                  'required' => true,
499
-                ),
500
-                'apkVersionCode' => array(
501
-                  'location' => 'path',
502
-                  'type' => 'integer',
503
-                  'required' => true,
504
-                ),
505
-                'expansionFileType' => array(
506
-                  'location' => 'path',
507
-                  'type' => 'string',
508
-                  'required' => true,
509
-                ),
510
-              ),
511
-            ),
512
-          )
513
-        )
514
-    );
515
-    $this->edits_images = new Google_Service_AndroidPublisher_EditsImages_Resource(
516
-        $this,
517
-        $this->serviceName,
518
-        'images',
519
-        array(
520
-          'methods' => array(
521
-            'delete' => array(
522
-              'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}',
523
-              'httpMethod' => 'DELETE',
524
-              'parameters' => array(
525
-                'packageName' => array(
526
-                  'location' => 'path',
527
-                  'type' => 'string',
528
-                  'required' => true,
529
-                ),
530
-                'editId' => array(
531
-                  'location' => 'path',
532
-                  'type' => 'string',
533
-                  'required' => true,
534
-                ),
535
-                'language' => array(
536
-                  'location' => 'path',
537
-                  'type' => 'string',
538
-                  'required' => true,
539
-                ),
540
-                'imageType' => array(
541
-                  'location' => 'path',
542
-                  'type' => 'string',
543
-                  'required' => true,
544
-                ),
545
-                'imageId' => array(
546
-                  'location' => 'path',
547
-                  'type' => 'string',
548
-                  'required' => true,
549
-                ),
550
-              ),
551
-            ),'deleteall' => array(
552
-              'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
553
-              'httpMethod' => 'DELETE',
554
-              'parameters' => array(
555
-                'packageName' => array(
556
-                  'location' => 'path',
557
-                  'type' => 'string',
558
-                  'required' => true,
559
-                ),
560
-                'editId' => array(
561
-                  'location' => 'path',
562
-                  'type' => 'string',
563
-                  'required' => true,
564
-                ),
565
-                'language' => array(
566
-                  'location' => 'path',
567
-                  'type' => 'string',
568
-                  'required' => true,
569
-                ),
570
-                'imageType' => array(
571
-                  'location' => 'path',
572
-                  'type' => 'string',
573
-                  'required' => true,
574
-                ),
575
-              ),
576
-            ),'list' => array(
577
-              'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
578
-              'httpMethod' => 'GET',
579
-              'parameters' => array(
580
-                'packageName' => array(
581
-                  'location' => 'path',
582
-                  'type' => 'string',
583
-                  'required' => true,
584
-                ),
585
-                'editId' => array(
586
-                  'location' => 'path',
587
-                  'type' => 'string',
588
-                  'required' => true,
589
-                ),
590
-                'language' => array(
591
-                  'location' => 'path',
592
-                  'type' => 'string',
593
-                  'required' => true,
594
-                ),
595
-                'imageType' => array(
596
-                  'location' => 'path',
597
-                  'type' => 'string',
598
-                  'required' => true,
599
-                ),
600
-              ),
601
-            ),'upload' => array(
602
-              'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
603
-              'httpMethod' => 'POST',
604
-              'parameters' => array(
605
-                'packageName' => array(
606
-                  'location' => 'path',
607
-                  'type' => 'string',
608
-                  'required' => true,
609
-                ),
610
-                'editId' => array(
611
-                  'location' => 'path',
612
-                  'type' => 'string',
613
-                  'required' => true,
614
-                ),
615
-                'language' => array(
616
-                  'location' => 'path',
617
-                  'type' => 'string',
618
-                  'required' => true,
619
-                ),
620
-                'imageType' => array(
621
-                  'location' => 'path',
622
-                  'type' => 'string',
623
-                  'required' => true,
624
-                ),
625
-              ),
626
-            ),
627
-          )
628
-        )
629
-    );
630
-    $this->edits_listings = new Google_Service_AndroidPublisher_EditsListings_Resource(
631
-        $this,
632
-        $this->serviceName,
633
-        'listings',
634
-        array(
635
-          'methods' => array(
636
-            'delete' => array(
637
-              'path' => '{packageName}/edits/{editId}/listings/{language}',
638
-              'httpMethod' => 'DELETE',
639
-              'parameters' => array(
640
-                'packageName' => array(
641
-                  'location' => 'path',
642
-                  'type' => 'string',
643
-                  'required' => true,
644
-                ),
645
-                'editId' => array(
646
-                  'location' => 'path',
647
-                  'type' => 'string',
648
-                  'required' => true,
649
-                ),
650
-                'language' => array(
651
-                  'location' => 'path',
652
-                  'type' => 'string',
653
-                  'required' => true,
654
-                ),
655
-              ),
656
-            ),'deleteall' => array(
657
-              'path' => '{packageName}/edits/{editId}/listings',
658
-              'httpMethod' => 'DELETE',
659
-              'parameters' => array(
660
-                'packageName' => array(
661
-                  'location' => 'path',
662
-                  'type' => 'string',
663
-                  'required' => true,
664
-                ),
665
-                'editId' => array(
666
-                  'location' => 'path',
667
-                  'type' => 'string',
668
-                  'required' => true,
669
-                ),
670
-              ),
671
-            ),'get' => array(
672
-              'path' => '{packageName}/edits/{editId}/listings/{language}',
673
-              'httpMethod' => 'GET',
674
-              'parameters' => array(
675
-                'packageName' => array(
676
-                  'location' => 'path',
677
-                  'type' => 'string',
678
-                  'required' => true,
679
-                ),
680
-                'editId' => array(
681
-                  'location' => 'path',
682
-                  'type' => 'string',
683
-                  'required' => true,
684
-                ),
685
-                'language' => array(
686
-                  'location' => 'path',
687
-                  'type' => 'string',
688
-                  'required' => true,
689
-                ),
690
-              ),
691
-            ),'list' => array(
692
-              'path' => '{packageName}/edits/{editId}/listings',
693
-              'httpMethod' => 'GET',
694
-              'parameters' => array(
695
-                'packageName' => array(
696
-                  'location' => 'path',
697
-                  'type' => 'string',
698
-                  'required' => true,
699
-                ),
700
-                'editId' => array(
701
-                  'location' => 'path',
702
-                  'type' => 'string',
703
-                  'required' => true,
704
-                ),
705
-              ),
706
-            ),'patch' => array(
707
-              'path' => '{packageName}/edits/{editId}/listings/{language}',
708
-              'httpMethod' => 'PATCH',
709
-              'parameters' => array(
710
-                'packageName' => array(
711
-                  'location' => 'path',
712
-                  'type' => 'string',
713
-                  'required' => true,
714
-                ),
715
-                'editId' => array(
716
-                  'location' => 'path',
717
-                  'type' => 'string',
718
-                  'required' => true,
719
-                ),
720
-                'language' => array(
721
-                  'location' => 'path',
722
-                  'type' => 'string',
723
-                  'required' => true,
724
-                ),
725
-              ),
726
-            ),'update' => array(
727
-              'path' => '{packageName}/edits/{editId}/listings/{language}',
728
-              'httpMethod' => 'PUT',
729
-              'parameters' => array(
730
-                'packageName' => array(
731
-                  'location' => 'path',
732
-                  'type' => 'string',
733
-                  'required' => true,
734
-                ),
735
-                'editId' => array(
736
-                  'location' => 'path',
737
-                  'type' => 'string',
738
-                  'required' => true,
739
-                ),
740
-                'language' => array(
741
-                  'location' => 'path',
742
-                  'type' => 'string',
743
-                  'required' => true,
744
-                ),
745
-              ),
746
-            ),
747
-          )
748
-        )
749
-    );
750
-    $this->edits_testers = new Google_Service_AndroidPublisher_EditsTesters_Resource(
751
-        $this,
752
-        $this->serviceName,
753
-        'testers',
754
-        array(
755
-          'methods' => array(
756
-            'get' => array(
757
-              'path' => '{packageName}/edits/{editId}/testers/{track}',
758
-              'httpMethod' => 'GET',
759
-              'parameters' => array(
760
-                'packageName' => array(
761
-                  'location' => 'path',
762
-                  'type' => 'string',
763
-                  'required' => true,
764
-                ),
765
-                'editId' => array(
766
-                  'location' => 'path',
767
-                  'type' => 'string',
768
-                  'required' => true,
769
-                ),
770
-                'track' => array(
771
-                  'location' => 'path',
772
-                  'type' => 'string',
773
-                  'required' => true,
774
-                ),
775
-              ),
776
-            ),'patch' => array(
777
-              'path' => '{packageName}/edits/{editId}/testers/{track}',
778
-              'httpMethod' => 'PATCH',
779
-              'parameters' => array(
780
-                'packageName' => array(
781
-                  'location' => 'path',
782
-                  'type' => 'string',
783
-                  'required' => true,
784
-                ),
785
-                'editId' => array(
786
-                  'location' => 'path',
787
-                  'type' => 'string',
788
-                  'required' => true,
789
-                ),
790
-                'track' => array(
791
-                  'location' => 'path',
792
-                  'type' => 'string',
793
-                  'required' => true,
794
-                ),
795
-              ),
796
-            ),'update' => array(
797
-              'path' => '{packageName}/edits/{editId}/testers/{track}',
798
-              'httpMethod' => 'PUT',
799
-              'parameters' => array(
800
-                'packageName' => array(
801
-                  'location' => 'path',
802
-                  'type' => 'string',
803
-                  'required' => true,
804
-                ),
805
-                'editId' => array(
806
-                  'location' => 'path',
807
-                  'type' => 'string',
808
-                  'required' => true,
809
-                ),
810
-                'track' => array(
811
-                  'location' => 'path',
812
-                  'type' => 'string',
813
-                  'required' => true,
814
-                ),
815
-              ),
816
-            ),
817
-          )
818
-        )
819
-    );
820
-    $this->edits_tracks = new Google_Service_AndroidPublisher_EditsTracks_Resource(
821
-        $this,
822
-        $this->serviceName,
823
-        'tracks',
824
-        array(
825
-          'methods' => array(
826
-            'get' => array(
827
-              'path' => '{packageName}/edits/{editId}/tracks/{track}',
828
-              'httpMethod' => 'GET',
829
-              'parameters' => array(
830
-                'packageName' => array(
831
-                  'location' => 'path',
832
-                  'type' => 'string',
833
-                  'required' => true,
834
-                ),
835
-                'editId' => array(
836
-                  'location' => 'path',
837
-                  'type' => 'string',
838
-                  'required' => true,
839
-                ),
840
-                'track' => array(
841
-                  'location' => 'path',
842
-                  'type' => 'string',
843
-                  'required' => true,
844
-                ),
845
-              ),
846
-            ),'list' => array(
847
-              'path' => '{packageName}/edits/{editId}/tracks',
848
-              'httpMethod' => 'GET',
849
-              'parameters' => array(
850
-                'packageName' => array(
851
-                  'location' => 'path',
852
-                  'type' => 'string',
853
-                  'required' => true,
854
-                ),
855
-                'editId' => array(
856
-                  'location' => 'path',
857
-                  'type' => 'string',
858
-                  'required' => true,
859
-                ),
860
-              ),
861
-            ),'patch' => array(
862
-              'path' => '{packageName}/edits/{editId}/tracks/{track}',
863
-              'httpMethod' => 'PATCH',
864
-              'parameters' => array(
865
-                'packageName' => array(
866
-                  'location' => 'path',
867
-                  'type' => 'string',
868
-                  'required' => true,
869
-                ),
870
-                'editId' => array(
871
-                  'location' => 'path',
872
-                  'type' => 'string',
873
-                  'required' => true,
874
-                ),
875
-                'track' => array(
876
-                  'location' => 'path',
877
-                  'type' => 'string',
878
-                  'required' => true,
879
-                ),
880
-              ),
881
-            ),'update' => array(
882
-              'path' => '{packageName}/edits/{editId}/tracks/{track}',
883
-              'httpMethod' => 'PUT',
884
-              'parameters' => array(
885
-                'packageName' => array(
886
-                  'location' => 'path',
887
-                  'type' => 'string',
888
-                  'required' => true,
889
-                ),
890
-                'editId' => array(
891
-                  'location' => 'path',
892
-                  'type' => 'string',
893
-                  'required' => true,
894
-                ),
895
-                'track' => array(
896
-                  'location' => 'path',
897
-                  'type' => 'string',
898
-                  'required' => true,
899
-                ),
900
-              ),
901
-            ),
902
-          )
903
-        )
904
-    );
905
-    $this->entitlements = new Google_Service_AndroidPublisher_Entitlements_Resource(
906
-        $this,
907
-        $this->serviceName,
908
-        'entitlements',
909
-        array(
910
-          'methods' => array(
911
-            'list' => array(
912
-              'path' => '{packageName}/entitlements',
913
-              'httpMethod' => 'GET',
914
-              'parameters' => array(
915
-                'packageName' => array(
916
-                  'location' => 'path',
917
-                  'type' => 'string',
918
-                  'required' => true,
919
-                ),
920
-                'token' => array(
921
-                  'location' => 'query',
922
-                  'type' => 'string',
923
-                ),
924
-                'startIndex' => array(
925
-                  'location' => 'query',
926
-                  'type' => 'integer',
927
-                ),
928
-                'maxResults' => array(
929
-                  'location' => 'query',
930
-                  'type' => 'integer',
931
-                ),
932
-                'productId' => array(
933
-                  'location' => 'query',
934
-                  'type' => 'string',
935
-                ),
936
-              ),
937
-            ),
938
-          )
939
-        )
940
-    );
941
-    $this->inappproducts = new Google_Service_AndroidPublisher_Inappproducts_Resource(
942
-        $this,
943
-        $this->serviceName,
944
-        'inappproducts',
945
-        array(
946
-          'methods' => array(
947
-            'batch' => array(
948
-              'path' => 'inappproducts/batch',
949
-              'httpMethod' => 'POST',
950
-              'parameters' => array(),
951
-            ),'delete' => array(
952
-              'path' => '{packageName}/inappproducts/{sku}',
953
-              'httpMethod' => 'DELETE',
954
-              'parameters' => array(
955
-                'packageName' => array(
956
-                  'location' => 'path',
957
-                  'type' => 'string',
958
-                  'required' => true,
959
-                ),
960
-                'sku' => array(
961
-                  'location' => 'path',
962
-                  'type' => 'string',
963
-                  'required' => true,
964
-                ),
965
-              ),
966
-            ),'get' => array(
967
-              'path' => '{packageName}/inappproducts/{sku}',
968
-              'httpMethod' => 'GET',
969
-              'parameters' => array(
970
-                'packageName' => array(
971
-                  'location' => 'path',
972
-                  'type' => 'string',
973
-                  'required' => true,
974
-                ),
975
-                'sku' => array(
976
-                  'location' => 'path',
977
-                  'type' => 'string',
978
-                  'required' => true,
979
-                ),
980
-              ),
981
-            ),'insert' => array(
982
-              'path' => '{packageName}/inappproducts',
983
-              'httpMethod' => 'POST',
984
-              'parameters' => array(
985
-                'packageName' => array(
986
-                  'location' => 'path',
987
-                  'type' => 'string',
988
-                  'required' => true,
989
-                ),
990
-                'autoConvertMissingPrices' => array(
991
-                  'location' => 'query',
992
-                  'type' => 'boolean',
993
-                ),
994
-              ),
995
-            ),'list' => array(
996
-              'path' => '{packageName}/inappproducts',
997
-              'httpMethod' => 'GET',
998
-              'parameters' => array(
999
-                'packageName' => array(
1000
-                  'location' => 'path',
1001
-                  'type' => 'string',
1002
-                  'required' => true,
1003
-                ),
1004
-                'token' => array(
1005
-                  'location' => 'query',
1006
-                  'type' => 'string',
1007
-                ),
1008
-                'startIndex' => array(
1009
-                  'location' => 'query',
1010
-                  'type' => 'integer',
1011
-                ),
1012
-                'maxResults' => array(
1013
-                  'location' => 'query',
1014
-                  'type' => 'integer',
1015
-                ),
1016
-              ),
1017
-            ),'patch' => array(
1018
-              'path' => '{packageName}/inappproducts/{sku}',
1019
-              'httpMethod' => 'PATCH',
1020
-              'parameters' => array(
1021
-                'packageName' => array(
1022
-                  'location' => 'path',
1023
-                  'type' => 'string',
1024
-                  'required' => true,
1025
-                ),
1026
-                'sku' => array(
1027
-                  'location' => 'path',
1028
-                  'type' => 'string',
1029
-                  'required' => true,
1030
-                ),
1031
-                'autoConvertMissingPrices' => array(
1032
-                  'location' => 'query',
1033
-                  'type' => 'boolean',
1034
-                ),
1035
-              ),
1036
-            ),'update' => array(
1037
-              'path' => '{packageName}/inappproducts/{sku}',
1038
-              'httpMethod' => 'PUT',
1039
-              'parameters' => array(
1040
-                'packageName' => array(
1041
-                  'location' => 'path',
1042
-                  'type' => 'string',
1043
-                  'required' => true,
1044
-                ),
1045
-                'sku' => array(
1046
-                  'location' => 'path',
1047
-                  'type' => 'string',
1048
-                  'required' => true,
1049
-                ),
1050
-                'autoConvertMissingPrices' => array(
1051
-                  'location' => 'query',
1052
-                  'type' => 'boolean',
1053
-                ),
1054
-              ),
1055
-            ),
1056
-          )
1057
-        )
1058
-    );
1059
-    $this->purchases_products = new Google_Service_AndroidPublisher_PurchasesProducts_Resource(
1060
-        $this,
1061
-        $this->serviceName,
1062
-        'products',
1063
-        array(
1064
-          'methods' => array(
1065
-            'get' => array(
1066
-              'path' => '{packageName}/purchases/products/{productId}/tokens/{token}',
1067
-              'httpMethod' => 'GET',
1068
-              'parameters' => array(
1069
-                'packageName' => array(
1070
-                  'location' => 'path',
1071
-                  'type' => 'string',
1072
-                  'required' => true,
1073
-                ),
1074
-                'productId' => array(
1075
-                  'location' => 'path',
1076
-                  'type' => 'string',
1077
-                  'required' => true,
1078
-                ),
1079
-                'token' => array(
1080
-                  'location' => 'path',
1081
-                  'type' => 'string',
1082
-                  'required' => true,
1083
-                ),
1084
-              ),
1085
-            ),
1086
-          )
1087
-        )
1088
-    );
1089
-    $this->purchases_subscriptions = new Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource(
1090
-        $this,
1091
-        $this->serviceName,
1092
-        'subscriptions',
1093
-        array(
1094
-          'methods' => array(
1095
-            'cancel' => array(
1096
-              'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel',
1097
-              'httpMethod' => 'POST',
1098
-              'parameters' => array(
1099
-                'packageName' => array(
1100
-                  'location' => 'path',
1101
-                  'type' => 'string',
1102
-                  'required' => true,
1103
-                ),
1104
-                'subscriptionId' => array(
1105
-                  'location' => 'path',
1106
-                  'type' => 'string',
1107
-                  'required' => true,
1108
-                ),
1109
-                'token' => array(
1110
-                  'location' => 'path',
1111
-                  'type' => 'string',
1112
-                  'required' => true,
1113
-                ),
1114
-              ),
1115
-            ),'defer' => array(
1116
-              'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer',
1117
-              'httpMethod' => 'POST',
1118
-              'parameters' => array(
1119
-                'packageName' => array(
1120
-                  'location' => 'path',
1121
-                  'type' => 'string',
1122
-                  'required' => true,
1123
-                ),
1124
-                'subscriptionId' => array(
1125
-                  'location' => 'path',
1126
-                  'type' => 'string',
1127
-                  'required' => true,
1128
-                ),
1129
-                'token' => array(
1130
-                  'location' => 'path',
1131
-                  'type' => 'string',
1132
-                  'required' => true,
1133
-                ),
1134
-              ),
1135
-            ),'get' => array(
1136
-              'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}',
1137
-              'httpMethod' => 'GET',
1138
-              'parameters' => array(
1139
-                'packageName' => array(
1140
-                  'location' => 'path',
1141
-                  'type' => 'string',
1142
-                  'required' => true,
1143
-                ),
1144
-                'subscriptionId' => array(
1145
-                  'location' => 'path',
1146
-                  'type' => 'string',
1147
-                  'required' => true,
1148
-                ),
1149
-                'token' => array(
1150
-                  'location' => 'path',
1151
-                  'type' => 'string',
1152
-                  'required' => true,
1153
-                ),
1154
-              ),
1155
-            ),'refund' => array(
1156
-              'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund',
1157
-              'httpMethod' => 'POST',
1158
-              'parameters' => array(
1159
-                'packageName' => array(
1160
-                  'location' => 'path',
1161
-                  'type' => 'string',
1162
-                  'required' => true,
1163
-                ),
1164
-                'subscriptionId' => array(
1165
-                  'location' => 'path',
1166
-                  'type' => 'string',
1167
-                  'required' => true,
1168
-                ),
1169
-                'token' => array(
1170
-                  'location' => 'path',
1171
-                  'type' => 'string',
1172
-                  'required' => true,
1173
-                ),
1174
-              ),
1175
-            ),'revoke' => array(
1176
-              'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke',
1177
-              'httpMethod' => 'POST',
1178
-              'parameters' => array(
1179
-                'packageName' => array(
1180
-                  'location' => 'path',
1181
-                  'type' => 'string',
1182
-                  'required' => true,
1183
-                ),
1184
-                'subscriptionId' => array(
1185
-                  'location' => 'path',
1186
-                  'type' => 'string',
1187
-                  'required' => true,
1188
-                ),
1189
-                'token' => array(
1190
-                  'location' => 'path',
1191
-                  'type' => 'string',
1192
-                  'required' => true,
1193
-                ),
1194
-              ),
1195
-            ),
1196
-          )
1197
-        )
1198
-    );
59
+	parent::__construct($client);
60
+	$this->rootUrl = 'https://www.googleapis.com/';
61
+	$this->servicePath = 'androidpublisher/v2/applications/';
62
+	$this->version = 'v2';
63
+	$this->serviceName = 'androidpublisher';
64
+
65
+	$this->edits = new Google_Service_AndroidPublisher_Edits_Resource(
66
+		$this,
67
+		$this->serviceName,
68
+		'edits',
69
+		array(
70
+		  'methods' => array(
71
+			'commit' => array(
72
+			  'path' => '{packageName}/edits/{editId}:commit',
73
+			  'httpMethod' => 'POST',
74
+			  'parameters' => array(
75
+				'packageName' => array(
76
+				  'location' => 'path',
77
+				  'type' => 'string',
78
+				  'required' => true,
79
+				),
80
+				'editId' => array(
81
+				  'location' => 'path',
82
+				  'type' => 'string',
83
+				  'required' => true,
84
+				),
85
+			  ),
86
+			),'delete' => array(
87
+			  'path' => '{packageName}/edits/{editId}',
88
+			  'httpMethod' => 'DELETE',
89
+			  'parameters' => array(
90
+				'packageName' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+				'editId' => array(
96
+				  'location' => 'path',
97
+				  'type' => 'string',
98
+				  'required' => true,
99
+				),
100
+			  ),
101
+			),'get' => array(
102
+			  'path' => '{packageName}/edits/{editId}',
103
+			  'httpMethod' => 'GET',
104
+			  'parameters' => array(
105
+				'packageName' => array(
106
+				  'location' => 'path',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'editId' => array(
111
+				  'location' => 'path',
112
+				  'type' => 'string',
113
+				  'required' => true,
114
+				),
115
+			  ),
116
+			),'insert' => array(
117
+			  'path' => '{packageName}/edits',
118
+			  'httpMethod' => 'POST',
119
+			  'parameters' => array(
120
+				'packageName' => array(
121
+				  'location' => 'path',
122
+				  'type' => 'string',
123
+				  'required' => true,
124
+				),
125
+			  ),
126
+			),'validate' => array(
127
+			  'path' => '{packageName}/edits/{editId}:validate',
128
+			  'httpMethod' => 'POST',
129
+			  'parameters' => array(
130
+				'packageName' => array(
131
+				  'location' => 'path',
132
+				  'type' => 'string',
133
+				  'required' => true,
134
+				),
135
+				'editId' => array(
136
+				  'location' => 'path',
137
+				  'type' => 'string',
138
+				  'required' => true,
139
+				),
140
+			  ),
141
+			),
142
+		  )
143
+		)
144
+	);
145
+	$this->edits_apklistings = new Google_Service_AndroidPublisher_EditsApklistings_Resource(
146
+		$this,
147
+		$this->serviceName,
148
+		'apklistings',
149
+		array(
150
+		  'methods' => array(
151
+			'delete' => array(
152
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
153
+			  'httpMethod' => 'DELETE',
154
+			  'parameters' => array(
155
+				'packageName' => array(
156
+				  'location' => 'path',
157
+				  'type' => 'string',
158
+				  'required' => true,
159
+				),
160
+				'editId' => array(
161
+				  'location' => 'path',
162
+				  'type' => 'string',
163
+				  'required' => true,
164
+				),
165
+				'apkVersionCode' => array(
166
+				  'location' => 'path',
167
+				  'type' => 'integer',
168
+				  'required' => true,
169
+				),
170
+				'language' => array(
171
+				  'location' => 'path',
172
+				  'type' => 'string',
173
+				  'required' => true,
174
+				),
175
+			  ),
176
+			),'deleteall' => array(
177
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
178
+			  'httpMethod' => 'DELETE',
179
+			  'parameters' => array(
180
+				'packageName' => array(
181
+				  'location' => 'path',
182
+				  'type' => 'string',
183
+				  'required' => true,
184
+				),
185
+				'editId' => array(
186
+				  'location' => 'path',
187
+				  'type' => 'string',
188
+				  'required' => true,
189
+				),
190
+				'apkVersionCode' => array(
191
+				  'location' => 'path',
192
+				  'type' => 'integer',
193
+				  'required' => true,
194
+				),
195
+			  ),
196
+			),'get' => array(
197
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
198
+			  'httpMethod' => 'GET',
199
+			  'parameters' => array(
200
+				'packageName' => array(
201
+				  'location' => 'path',
202
+				  'type' => 'string',
203
+				  'required' => true,
204
+				),
205
+				'editId' => array(
206
+				  'location' => 'path',
207
+				  'type' => 'string',
208
+				  'required' => true,
209
+				),
210
+				'apkVersionCode' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'integer',
213
+				  'required' => true,
214
+				),
215
+				'language' => array(
216
+				  'location' => 'path',
217
+				  'type' => 'string',
218
+				  'required' => true,
219
+				),
220
+			  ),
221
+			),'list' => array(
222
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
223
+			  'httpMethod' => 'GET',
224
+			  'parameters' => array(
225
+				'packageName' => array(
226
+				  'location' => 'path',
227
+				  'type' => 'string',
228
+				  'required' => true,
229
+				),
230
+				'editId' => array(
231
+				  'location' => 'path',
232
+				  'type' => 'string',
233
+				  'required' => true,
234
+				),
235
+				'apkVersionCode' => array(
236
+				  'location' => 'path',
237
+				  'type' => 'integer',
238
+				  'required' => true,
239
+				),
240
+			  ),
241
+			),'patch' => array(
242
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
243
+			  'httpMethod' => 'PATCH',
244
+			  'parameters' => array(
245
+				'packageName' => array(
246
+				  'location' => 'path',
247
+				  'type' => 'string',
248
+				  'required' => true,
249
+				),
250
+				'editId' => array(
251
+				  'location' => 'path',
252
+				  'type' => 'string',
253
+				  'required' => true,
254
+				),
255
+				'apkVersionCode' => array(
256
+				  'location' => 'path',
257
+				  'type' => 'integer',
258
+				  'required' => true,
259
+				),
260
+				'language' => array(
261
+				  'location' => 'path',
262
+				  'type' => 'string',
263
+				  'required' => true,
264
+				),
265
+			  ),
266
+			),'update' => array(
267
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
268
+			  'httpMethod' => 'PUT',
269
+			  'parameters' => array(
270
+				'packageName' => array(
271
+				  'location' => 'path',
272
+				  'type' => 'string',
273
+				  'required' => true,
274
+				),
275
+				'editId' => array(
276
+				  'location' => 'path',
277
+				  'type' => 'string',
278
+				  'required' => true,
279
+				),
280
+				'apkVersionCode' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'integer',
283
+				  'required' => true,
284
+				),
285
+				'language' => array(
286
+				  'location' => 'path',
287
+				  'type' => 'string',
288
+				  'required' => true,
289
+				),
290
+			  ),
291
+			),
292
+		  )
293
+		)
294
+	);
295
+	$this->edits_apks = new Google_Service_AndroidPublisher_EditsApks_Resource(
296
+		$this,
297
+		$this->serviceName,
298
+		'apks',
299
+		array(
300
+		  'methods' => array(
301
+			'addexternallyhosted' => array(
302
+			  'path' => '{packageName}/edits/{editId}/apks/externallyHosted',
303
+			  'httpMethod' => 'POST',
304
+			  'parameters' => array(
305
+				'packageName' => array(
306
+				  'location' => 'path',
307
+				  'type' => 'string',
308
+				  'required' => true,
309
+				),
310
+				'editId' => array(
311
+				  'location' => 'path',
312
+				  'type' => 'string',
313
+				  'required' => true,
314
+				),
315
+			  ),
316
+			),'list' => array(
317
+			  'path' => '{packageName}/edits/{editId}/apks',
318
+			  'httpMethod' => 'GET',
319
+			  'parameters' => array(
320
+				'packageName' => array(
321
+				  'location' => 'path',
322
+				  'type' => 'string',
323
+				  'required' => true,
324
+				),
325
+				'editId' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+			  ),
331
+			),'upload' => array(
332
+			  'path' => '{packageName}/edits/{editId}/apks',
333
+			  'httpMethod' => 'POST',
334
+			  'parameters' => array(
335
+				'packageName' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+				'editId' => array(
341
+				  'location' => 'path',
342
+				  'type' => 'string',
343
+				  'required' => true,
344
+				),
345
+			  ),
346
+			),
347
+		  )
348
+		)
349
+	);
350
+	$this->edits_details = new Google_Service_AndroidPublisher_EditsDetails_Resource(
351
+		$this,
352
+		$this->serviceName,
353
+		'details',
354
+		array(
355
+		  'methods' => array(
356
+			'get' => array(
357
+			  'path' => '{packageName}/edits/{editId}/details',
358
+			  'httpMethod' => 'GET',
359
+			  'parameters' => array(
360
+				'packageName' => array(
361
+				  'location' => 'path',
362
+				  'type' => 'string',
363
+				  'required' => true,
364
+				),
365
+				'editId' => array(
366
+				  'location' => 'path',
367
+				  'type' => 'string',
368
+				  'required' => true,
369
+				),
370
+			  ),
371
+			),'patch' => array(
372
+			  'path' => '{packageName}/edits/{editId}/details',
373
+			  'httpMethod' => 'PATCH',
374
+			  'parameters' => array(
375
+				'packageName' => array(
376
+				  'location' => 'path',
377
+				  'type' => 'string',
378
+				  'required' => true,
379
+				),
380
+				'editId' => array(
381
+				  'location' => 'path',
382
+				  'type' => 'string',
383
+				  'required' => true,
384
+				),
385
+			  ),
386
+			),'update' => array(
387
+			  'path' => '{packageName}/edits/{editId}/details',
388
+			  'httpMethod' => 'PUT',
389
+			  'parameters' => array(
390
+				'packageName' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'editId' => array(
396
+				  'location' => 'path',
397
+				  'type' => 'string',
398
+				  'required' => true,
399
+				),
400
+			  ),
401
+			),
402
+		  )
403
+		)
404
+	);
405
+	$this->edits_expansionfiles = new Google_Service_AndroidPublisher_EditsExpansionfiles_Resource(
406
+		$this,
407
+		$this->serviceName,
408
+		'expansionfiles',
409
+		array(
410
+		  'methods' => array(
411
+			'get' => array(
412
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
413
+			  'httpMethod' => 'GET',
414
+			  'parameters' => array(
415
+				'packageName' => array(
416
+				  'location' => 'path',
417
+				  'type' => 'string',
418
+				  'required' => true,
419
+				),
420
+				'editId' => array(
421
+				  'location' => 'path',
422
+				  'type' => 'string',
423
+				  'required' => true,
424
+				),
425
+				'apkVersionCode' => array(
426
+				  'location' => 'path',
427
+				  'type' => 'integer',
428
+				  'required' => true,
429
+				),
430
+				'expansionFileType' => array(
431
+				  'location' => 'path',
432
+				  'type' => 'string',
433
+				  'required' => true,
434
+				),
435
+			  ),
436
+			),'patch' => array(
437
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
438
+			  'httpMethod' => 'PATCH',
439
+			  'parameters' => array(
440
+				'packageName' => array(
441
+				  'location' => 'path',
442
+				  'type' => 'string',
443
+				  'required' => true,
444
+				),
445
+				'editId' => array(
446
+				  'location' => 'path',
447
+				  'type' => 'string',
448
+				  'required' => true,
449
+				),
450
+				'apkVersionCode' => array(
451
+				  'location' => 'path',
452
+				  'type' => 'integer',
453
+				  'required' => true,
454
+				),
455
+				'expansionFileType' => array(
456
+				  'location' => 'path',
457
+				  'type' => 'string',
458
+				  'required' => true,
459
+				),
460
+			  ),
461
+			),'update' => array(
462
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
463
+			  'httpMethod' => 'PUT',
464
+			  'parameters' => array(
465
+				'packageName' => array(
466
+				  'location' => 'path',
467
+				  'type' => 'string',
468
+				  'required' => true,
469
+				),
470
+				'editId' => array(
471
+				  'location' => 'path',
472
+				  'type' => 'string',
473
+				  'required' => true,
474
+				),
475
+				'apkVersionCode' => array(
476
+				  'location' => 'path',
477
+				  'type' => 'integer',
478
+				  'required' => true,
479
+				),
480
+				'expansionFileType' => array(
481
+				  'location' => 'path',
482
+				  'type' => 'string',
483
+				  'required' => true,
484
+				),
485
+			  ),
486
+			),'upload' => array(
487
+			  'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
488
+			  'httpMethod' => 'POST',
489
+			  'parameters' => array(
490
+				'packageName' => array(
491
+				  'location' => 'path',
492
+				  'type' => 'string',
493
+				  'required' => true,
494
+				),
495
+				'editId' => array(
496
+				  'location' => 'path',
497
+				  'type' => 'string',
498
+				  'required' => true,
499
+				),
500
+				'apkVersionCode' => array(
501
+				  'location' => 'path',
502
+				  'type' => 'integer',
503
+				  'required' => true,
504
+				),
505
+				'expansionFileType' => array(
506
+				  'location' => 'path',
507
+				  'type' => 'string',
508
+				  'required' => true,
509
+				),
510
+			  ),
511
+			),
512
+		  )
513
+		)
514
+	);
515
+	$this->edits_images = new Google_Service_AndroidPublisher_EditsImages_Resource(
516
+		$this,
517
+		$this->serviceName,
518
+		'images',
519
+		array(
520
+		  'methods' => array(
521
+			'delete' => array(
522
+			  'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}/{imageId}',
523
+			  'httpMethod' => 'DELETE',
524
+			  'parameters' => array(
525
+				'packageName' => array(
526
+				  'location' => 'path',
527
+				  'type' => 'string',
528
+				  'required' => true,
529
+				),
530
+				'editId' => array(
531
+				  'location' => 'path',
532
+				  'type' => 'string',
533
+				  'required' => true,
534
+				),
535
+				'language' => array(
536
+				  'location' => 'path',
537
+				  'type' => 'string',
538
+				  'required' => true,
539
+				),
540
+				'imageType' => array(
541
+				  'location' => 'path',
542
+				  'type' => 'string',
543
+				  'required' => true,
544
+				),
545
+				'imageId' => array(
546
+				  'location' => 'path',
547
+				  'type' => 'string',
548
+				  'required' => true,
549
+				),
550
+			  ),
551
+			),'deleteall' => array(
552
+			  'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
553
+			  'httpMethod' => 'DELETE',
554
+			  'parameters' => array(
555
+				'packageName' => array(
556
+				  'location' => 'path',
557
+				  'type' => 'string',
558
+				  'required' => true,
559
+				),
560
+				'editId' => array(
561
+				  'location' => 'path',
562
+				  'type' => 'string',
563
+				  'required' => true,
564
+				),
565
+				'language' => array(
566
+				  'location' => 'path',
567
+				  'type' => 'string',
568
+				  'required' => true,
569
+				),
570
+				'imageType' => array(
571
+				  'location' => 'path',
572
+				  'type' => 'string',
573
+				  'required' => true,
574
+				),
575
+			  ),
576
+			),'list' => array(
577
+			  'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
578
+			  'httpMethod' => 'GET',
579
+			  'parameters' => array(
580
+				'packageName' => array(
581
+				  'location' => 'path',
582
+				  'type' => 'string',
583
+				  'required' => true,
584
+				),
585
+				'editId' => array(
586
+				  'location' => 'path',
587
+				  'type' => 'string',
588
+				  'required' => true,
589
+				),
590
+				'language' => array(
591
+				  'location' => 'path',
592
+				  'type' => 'string',
593
+				  'required' => true,
594
+				),
595
+				'imageType' => array(
596
+				  'location' => 'path',
597
+				  'type' => 'string',
598
+				  'required' => true,
599
+				),
600
+			  ),
601
+			),'upload' => array(
602
+			  'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
603
+			  'httpMethod' => 'POST',
604
+			  'parameters' => array(
605
+				'packageName' => array(
606
+				  'location' => 'path',
607
+				  'type' => 'string',
608
+				  'required' => true,
609
+				),
610
+				'editId' => array(
611
+				  'location' => 'path',
612
+				  'type' => 'string',
613
+				  'required' => true,
614
+				),
615
+				'language' => array(
616
+				  'location' => 'path',
617
+				  'type' => 'string',
618
+				  'required' => true,
619
+				),
620
+				'imageType' => array(
621
+				  'location' => 'path',
622
+				  'type' => 'string',
623
+				  'required' => true,
624
+				),
625
+			  ),
626
+			),
627
+		  )
628
+		)
629
+	);
630
+	$this->edits_listings = new Google_Service_AndroidPublisher_EditsListings_Resource(
631
+		$this,
632
+		$this->serviceName,
633
+		'listings',
634
+		array(
635
+		  'methods' => array(
636
+			'delete' => array(
637
+			  'path' => '{packageName}/edits/{editId}/listings/{language}',
638
+			  'httpMethod' => 'DELETE',
639
+			  'parameters' => array(
640
+				'packageName' => array(
641
+				  'location' => 'path',
642
+				  'type' => 'string',
643
+				  'required' => true,
644
+				),
645
+				'editId' => array(
646
+				  'location' => 'path',
647
+				  'type' => 'string',
648
+				  'required' => true,
649
+				),
650
+				'language' => array(
651
+				  'location' => 'path',
652
+				  'type' => 'string',
653
+				  'required' => true,
654
+				),
655
+			  ),
656
+			),'deleteall' => array(
657
+			  'path' => '{packageName}/edits/{editId}/listings',
658
+			  'httpMethod' => 'DELETE',
659
+			  'parameters' => array(
660
+				'packageName' => array(
661
+				  'location' => 'path',
662
+				  'type' => 'string',
663
+				  'required' => true,
664
+				),
665
+				'editId' => array(
666
+				  'location' => 'path',
667
+				  'type' => 'string',
668
+				  'required' => true,
669
+				),
670
+			  ),
671
+			),'get' => array(
672
+			  'path' => '{packageName}/edits/{editId}/listings/{language}',
673
+			  'httpMethod' => 'GET',
674
+			  'parameters' => array(
675
+				'packageName' => array(
676
+				  'location' => 'path',
677
+				  'type' => 'string',
678
+				  'required' => true,
679
+				),
680
+				'editId' => array(
681
+				  'location' => 'path',
682
+				  'type' => 'string',
683
+				  'required' => true,
684
+				),
685
+				'language' => array(
686
+				  'location' => 'path',
687
+				  'type' => 'string',
688
+				  'required' => true,
689
+				),
690
+			  ),
691
+			),'list' => array(
692
+			  'path' => '{packageName}/edits/{editId}/listings',
693
+			  'httpMethod' => 'GET',
694
+			  'parameters' => array(
695
+				'packageName' => array(
696
+				  'location' => 'path',
697
+				  'type' => 'string',
698
+				  'required' => true,
699
+				),
700
+				'editId' => array(
701
+				  'location' => 'path',
702
+				  'type' => 'string',
703
+				  'required' => true,
704
+				),
705
+			  ),
706
+			),'patch' => array(
707
+			  'path' => '{packageName}/edits/{editId}/listings/{language}',
708
+			  'httpMethod' => 'PATCH',
709
+			  'parameters' => array(
710
+				'packageName' => array(
711
+				  'location' => 'path',
712
+				  'type' => 'string',
713
+				  'required' => true,
714
+				),
715
+				'editId' => array(
716
+				  'location' => 'path',
717
+				  'type' => 'string',
718
+				  'required' => true,
719
+				),
720
+				'language' => array(
721
+				  'location' => 'path',
722
+				  'type' => 'string',
723
+				  'required' => true,
724
+				),
725
+			  ),
726
+			),'update' => array(
727
+			  'path' => '{packageName}/edits/{editId}/listings/{language}',
728
+			  'httpMethod' => 'PUT',
729
+			  'parameters' => array(
730
+				'packageName' => array(
731
+				  'location' => 'path',
732
+				  'type' => 'string',
733
+				  'required' => true,
734
+				),
735
+				'editId' => array(
736
+				  'location' => 'path',
737
+				  'type' => 'string',
738
+				  'required' => true,
739
+				),
740
+				'language' => array(
741
+				  'location' => 'path',
742
+				  'type' => 'string',
743
+				  'required' => true,
744
+				),
745
+			  ),
746
+			),
747
+		  )
748
+		)
749
+	);
750
+	$this->edits_testers = new Google_Service_AndroidPublisher_EditsTesters_Resource(
751
+		$this,
752
+		$this->serviceName,
753
+		'testers',
754
+		array(
755
+		  'methods' => array(
756
+			'get' => array(
757
+			  'path' => '{packageName}/edits/{editId}/testers/{track}',
758
+			  'httpMethod' => 'GET',
759
+			  'parameters' => array(
760
+				'packageName' => array(
761
+				  'location' => 'path',
762
+				  'type' => 'string',
763
+				  'required' => true,
764
+				),
765
+				'editId' => array(
766
+				  'location' => 'path',
767
+				  'type' => 'string',
768
+				  'required' => true,
769
+				),
770
+				'track' => array(
771
+				  'location' => 'path',
772
+				  'type' => 'string',
773
+				  'required' => true,
774
+				),
775
+			  ),
776
+			),'patch' => array(
777
+			  'path' => '{packageName}/edits/{editId}/testers/{track}',
778
+			  'httpMethod' => 'PATCH',
779
+			  'parameters' => array(
780
+				'packageName' => array(
781
+				  'location' => 'path',
782
+				  'type' => 'string',
783
+				  'required' => true,
784
+				),
785
+				'editId' => array(
786
+				  'location' => 'path',
787
+				  'type' => 'string',
788
+				  'required' => true,
789
+				),
790
+				'track' => array(
791
+				  'location' => 'path',
792
+				  'type' => 'string',
793
+				  'required' => true,
794
+				),
795
+			  ),
796
+			),'update' => array(
797
+			  'path' => '{packageName}/edits/{editId}/testers/{track}',
798
+			  'httpMethod' => 'PUT',
799
+			  'parameters' => array(
800
+				'packageName' => array(
801
+				  'location' => 'path',
802
+				  'type' => 'string',
803
+				  'required' => true,
804
+				),
805
+				'editId' => array(
806
+				  'location' => 'path',
807
+				  'type' => 'string',
808
+				  'required' => true,
809
+				),
810
+				'track' => array(
811
+				  'location' => 'path',
812
+				  'type' => 'string',
813
+				  'required' => true,
814
+				),
815
+			  ),
816
+			),
817
+		  )
818
+		)
819
+	);
820
+	$this->edits_tracks = new Google_Service_AndroidPublisher_EditsTracks_Resource(
821
+		$this,
822
+		$this->serviceName,
823
+		'tracks',
824
+		array(
825
+		  'methods' => array(
826
+			'get' => array(
827
+			  'path' => '{packageName}/edits/{editId}/tracks/{track}',
828
+			  'httpMethod' => 'GET',
829
+			  'parameters' => array(
830
+				'packageName' => array(
831
+				  'location' => 'path',
832
+				  'type' => 'string',
833
+				  'required' => true,
834
+				),
835
+				'editId' => array(
836
+				  'location' => 'path',
837
+				  'type' => 'string',
838
+				  'required' => true,
839
+				),
840
+				'track' => array(
841
+				  'location' => 'path',
842
+				  'type' => 'string',
843
+				  'required' => true,
844
+				),
845
+			  ),
846
+			),'list' => array(
847
+			  'path' => '{packageName}/edits/{editId}/tracks',
848
+			  'httpMethod' => 'GET',
849
+			  'parameters' => array(
850
+				'packageName' => array(
851
+				  'location' => 'path',
852
+				  'type' => 'string',
853
+				  'required' => true,
854
+				),
855
+				'editId' => array(
856
+				  'location' => 'path',
857
+				  'type' => 'string',
858
+				  'required' => true,
859
+				),
860
+			  ),
861
+			),'patch' => array(
862
+			  'path' => '{packageName}/edits/{editId}/tracks/{track}',
863
+			  'httpMethod' => 'PATCH',
864
+			  'parameters' => array(
865
+				'packageName' => array(
866
+				  'location' => 'path',
867
+				  'type' => 'string',
868
+				  'required' => true,
869
+				),
870
+				'editId' => array(
871
+				  'location' => 'path',
872
+				  'type' => 'string',
873
+				  'required' => true,
874
+				),
875
+				'track' => array(
876
+				  'location' => 'path',
877
+				  'type' => 'string',
878
+				  'required' => true,
879
+				),
880
+			  ),
881
+			),'update' => array(
882
+			  'path' => '{packageName}/edits/{editId}/tracks/{track}',
883
+			  'httpMethod' => 'PUT',
884
+			  'parameters' => array(
885
+				'packageName' => array(
886
+				  'location' => 'path',
887
+				  'type' => 'string',
888
+				  'required' => true,
889
+				),
890
+				'editId' => array(
891
+				  'location' => 'path',
892
+				  'type' => 'string',
893
+				  'required' => true,
894
+				),
895
+				'track' => array(
896
+				  'location' => 'path',
897
+				  'type' => 'string',
898
+				  'required' => true,
899
+				),
900
+			  ),
901
+			),
902
+		  )
903
+		)
904
+	);
905
+	$this->entitlements = new Google_Service_AndroidPublisher_Entitlements_Resource(
906
+		$this,
907
+		$this->serviceName,
908
+		'entitlements',
909
+		array(
910
+		  'methods' => array(
911
+			'list' => array(
912
+			  'path' => '{packageName}/entitlements',
913
+			  'httpMethod' => 'GET',
914
+			  'parameters' => array(
915
+				'packageName' => array(
916
+				  'location' => 'path',
917
+				  'type' => 'string',
918
+				  'required' => true,
919
+				),
920
+				'token' => array(
921
+				  'location' => 'query',
922
+				  'type' => 'string',
923
+				),
924
+				'startIndex' => array(
925
+				  'location' => 'query',
926
+				  'type' => 'integer',
927
+				),
928
+				'maxResults' => array(
929
+				  'location' => 'query',
930
+				  'type' => 'integer',
931
+				),
932
+				'productId' => array(
933
+				  'location' => 'query',
934
+				  'type' => 'string',
935
+				),
936
+			  ),
937
+			),
938
+		  )
939
+		)
940
+	);
941
+	$this->inappproducts = new Google_Service_AndroidPublisher_Inappproducts_Resource(
942
+		$this,
943
+		$this->serviceName,
944
+		'inappproducts',
945
+		array(
946
+		  'methods' => array(
947
+			'batch' => array(
948
+			  'path' => 'inappproducts/batch',
949
+			  'httpMethod' => 'POST',
950
+			  'parameters' => array(),
951
+			),'delete' => array(
952
+			  'path' => '{packageName}/inappproducts/{sku}',
953
+			  'httpMethod' => 'DELETE',
954
+			  'parameters' => array(
955
+				'packageName' => array(
956
+				  'location' => 'path',
957
+				  'type' => 'string',
958
+				  'required' => true,
959
+				),
960
+				'sku' => array(
961
+				  'location' => 'path',
962
+				  'type' => 'string',
963
+				  'required' => true,
964
+				),
965
+			  ),
966
+			),'get' => array(
967
+			  'path' => '{packageName}/inappproducts/{sku}',
968
+			  'httpMethod' => 'GET',
969
+			  'parameters' => array(
970
+				'packageName' => array(
971
+				  'location' => 'path',
972
+				  'type' => 'string',
973
+				  'required' => true,
974
+				),
975
+				'sku' => array(
976
+				  'location' => 'path',
977
+				  'type' => 'string',
978
+				  'required' => true,
979
+				),
980
+			  ),
981
+			),'insert' => array(
982
+			  'path' => '{packageName}/inappproducts',
983
+			  'httpMethod' => 'POST',
984
+			  'parameters' => array(
985
+				'packageName' => array(
986
+				  'location' => 'path',
987
+				  'type' => 'string',
988
+				  'required' => true,
989
+				),
990
+				'autoConvertMissingPrices' => array(
991
+				  'location' => 'query',
992
+				  'type' => 'boolean',
993
+				),
994
+			  ),
995
+			),'list' => array(
996
+			  'path' => '{packageName}/inappproducts',
997
+			  'httpMethod' => 'GET',
998
+			  'parameters' => array(
999
+				'packageName' => array(
1000
+				  'location' => 'path',
1001
+				  'type' => 'string',
1002
+				  'required' => true,
1003
+				),
1004
+				'token' => array(
1005
+				  'location' => 'query',
1006
+				  'type' => 'string',
1007
+				),
1008
+				'startIndex' => array(
1009
+				  'location' => 'query',
1010
+				  'type' => 'integer',
1011
+				),
1012
+				'maxResults' => array(
1013
+				  'location' => 'query',
1014
+				  'type' => 'integer',
1015
+				),
1016
+			  ),
1017
+			),'patch' => array(
1018
+			  'path' => '{packageName}/inappproducts/{sku}',
1019
+			  'httpMethod' => 'PATCH',
1020
+			  'parameters' => array(
1021
+				'packageName' => array(
1022
+				  'location' => 'path',
1023
+				  'type' => 'string',
1024
+				  'required' => true,
1025
+				),
1026
+				'sku' => array(
1027
+				  'location' => 'path',
1028
+				  'type' => 'string',
1029
+				  'required' => true,
1030
+				),
1031
+				'autoConvertMissingPrices' => array(
1032
+				  'location' => 'query',
1033
+				  'type' => 'boolean',
1034
+				),
1035
+			  ),
1036
+			),'update' => array(
1037
+			  'path' => '{packageName}/inappproducts/{sku}',
1038
+			  'httpMethod' => 'PUT',
1039
+			  'parameters' => array(
1040
+				'packageName' => array(
1041
+				  'location' => 'path',
1042
+				  'type' => 'string',
1043
+				  'required' => true,
1044
+				),
1045
+				'sku' => array(
1046
+				  'location' => 'path',
1047
+				  'type' => 'string',
1048
+				  'required' => true,
1049
+				),
1050
+				'autoConvertMissingPrices' => array(
1051
+				  'location' => 'query',
1052
+				  'type' => 'boolean',
1053
+				),
1054
+			  ),
1055
+			),
1056
+		  )
1057
+		)
1058
+	);
1059
+	$this->purchases_products = new Google_Service_AndroidPublisher_PurchasesProducts_Resource(
1060
+		$this,
1061
+		$this->serviceName,
1062
+		'products',
1063
+		array(
1064
+		  'methods' => array(
1065
+			'get' => array(
1066
+			  'path' => '{packageName}/purchases/products/{productId}/tokens/{token}',
1067
+			  'httpMethod' => 'GET',
1068
+			  'parameters' => array(
1069
+				'packageName' => array(
1070
+				  'location' => 'path',
1071
+				  'type' => 'string',
1072
+				  'required' => true,
1073
+				),
1074
+				'productId' => array(
1075
+				  'location' => 'path',
1076
+				  'type' => 'string',
1077
+				  'required' => true,
1078
+				),
1079
+				'token' => array(
1080
+				  'location' => 'path',
1081
+				  'type' => 'string',
1082
+				  'required' => true,
1083
+				),
1084
+			  ),
1085
+			),
1086
+		  )
1087
+		)
1088
+	);
1089
+	$this->purchases_subscriptions = new Google_Service_AndroidPublisher_PurchasesSubscriptions_Resource(
1090
+		$this,
1091
+		$this->serviceName,
1092
+		'subscriptions',
1093
+		array(
1094
+		  'methods' => array(
1095
+			'cancel' => array(
1096
+			  'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:cancel',
1097
+			  'httpMethod' => 'POST',
1098
+			  'parameters' => array(
1099
+				'packageName' => array(
1100
+				  'location' => 'path',
1101
+				  'type' => 'string',
1102
+				  'required' => true,
1103
+				),
1104
+				'subscriptionId' => array(
1105
+				  'location' => 'path',
1106
+				  'type' => 'string',
1107
+				  'required' => true,
1108
+				),
1109
+				'token' => array(
1110
+				  'location' => 'path',
1111
+				  'type' => 'string',
1112
+				  'required' => true,
1113
+				),
1114
+			  ),
1115
+			),'defer' => array(
1116
+			  'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer',
1117
+			  'httpMethod' => 'POST',
1118
+			  'parameters' => array(
1119
+				'packageName' => array(
1120
+				  'location' => 'path',
1121
+				  'type' => 'string',
1122
+				  'required' => true,
1123
+				),
1124
+				'subscriptionId' => array(
1125
+				  'location' => 'path',
1126
+				  'type' => 'string',
1127
+				  'required' => true,
1128
+				),
1129
+				'token' => array(
1130
+				  'location' => 'path',
1131
+				  'type' => 'string',
1132
+				  'required' => true,
1133
+				),
1134
+			  ),
1135
+			),'get' => array(
1136
+			  'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}',
1137
+			  'httpMethod' => 'GET',
1138
+			  'parameters' => array(
1139
+				'packageName' => array(
1140
+				  'location' => 'path',
1141
+				  'type' => 'string',
1142
+				  'required' => true,
1143
+				),
1144
+				'subscriptionId' => array(
1145
+				  'location' => 'path',
1146
+				  'type' => 'string',
1147
+				  'required' => true,
1148
+				),
1149
+				'token' => array(
1150
+				  'location' => 'path',
1151
+				  'type' => 'string',
1152
+				  'required' => true,
1153
+				),
1154
+			  ),
1155
+			),'refund' => array(
1156
+			  'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund',
1157
+			  'httpMethod' => 'POST',
1158
+			  'parameters' => array(
1159
+				'packageName' => array(
1160
+				  'location' => 'path',
1161
+				  'type' => 'string',
1162
+				  'required' => true,
1163
+				),
1164
+				'subscriptionId' => array(
1165
+				  'location' => 'path',
1166
+				  'type' => 'string',
1167
+				  'required' => true,
1168
+				),
1169
+				'token' => array(
1170
+				  'location' => 'path',
1171
+				  'type' => 'string',
1172
+				  'required' => true,
1173
+				),
1174
+			  ),
1175
+			),'revoke' => array(
1176
+			  'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke',
1177
+			  'httpMethod' => 'POST',
1178
+			  'parameters' => array(
1179
+				'packageName' => array(
1180
+				  'location' => 'path',
1181
+				  'type' => 'string',
1182
+				  'required' => true,
1183
+				),
1184
+				'subscriptionId' => array(
1185
+				  'location' => 'path',
1186
+				  'type' => 'string',
1187
+				  'required' => true,
1188
+				),
1189
+				'token' => array(
1190
+				  'location' => 'path',
1191
+				  'type' => 'string',
1192
+				  'required' => true,
1193
+				),
1194
+			  ),
1195
+			),
1196
+		  )
1197
+		)
1198
+	);
1199 1199
   }
1200 1200
 }
1201 1201
 
@@ -1222,9 +1222,9 @@  discard block
 block discarded – undo
1222 1222
    */
1223 1223
   public function commit($packageName, $editId, $optParams = array())
1224 1224
   {
1225
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1226
-    $params = array_merge($params, $optParams);
1227
-    return $this->call('commit', array($params), "Google_Service_AndroidPublisher_AppEdit");
1225
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1226
+	$params = array_merge($params, $optParams);
1227
+	return $this->call('commit', array($params), "Google_Service_AndroidPublisher_AppEdit");
1228 1228
   }
1229 1229
 
1230 1230
   /**
@@ -1239,9 +1239,9 @@  discard block
 block discarded – undo
1239 1239
    */
1240 1240
   public function delete($packageName, $editId, $optParams = array())
1241 1241
   {
1242
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1243
-    $params = array_merge($params, $optParams);
1244
-    return $this->call('delete', array($params));
1242
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1243
+	$params = array_merge($params, $optParams);
1244
+	return $this->call('delete', array($params));
1245 1245
   }
1246 1246
 
1247 1247
   /**
@@ -1256,9 +1256,9 @@  discard block
 block discarded – undo
1256 1256
    */
1257 1257
   public function get($packageName, $editId, $optParams = array())
1258 1258
   {
1259
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1260
-    $params = array_merge($params, $optParams);
1261
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppEdit");
1259
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1260
+	$params = array_merge($params, $optParams);
1261
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppEdit");
1262 1262
   }
1263 1263
 
1264 1264
   /**
@@ -1273,9 +1273,9 @@  discard block
 block discarded – undo
1273 1273
    */
1274 1274
   public function insert($packageName, Google_Service_AndroidPublisher_AppEdit $postBody, $optParams = array())
1275 1275
   {
1276
-    $params = array('packageName' => $packageName, 'postBody' => $postBody);
1277
-    $params = array_merge($params, $optParams);
1278
-    return $this->call('insert', array($params), "Google_Service_AndroidPublisher_AppEdit");
1276
+	$params = array('packageName' => $packageName, 'postBody' => $postBody);
1277
+	$params = array_merge($params, $optParams);
1278
+	return $this->call('insert', array($params), "Google_Service_AndroidPublisher_AppEdit");
1279 1279
   }
1280 1280
 
1281 1281
   /**
@@ -1290,9 +1290,9 @@  discard block
 block discarded – undo
1290 1290
    */
1291 1291
   public function validate($packageName, $editId, $optParams = array())
1292 1292
   {
1293
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1294
-    $params = array_merge($params, $optParams);
1295
-    return $this->call('validate', array($params), "Google_Service_AndroidPublisher_AppEdit");
1293
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1294
+	$params = array_merge($params, $optParams);
1295
+	return $this->call('validate', array($params), "Google_Service_AndroidPublisher_AppEdit");
1296 1296
   }
1297 1297
 }
1298 1298
 
@@ -1323,9 +1323,9 @@  discard block
 block discarded – undo
1323 1323
    */
1324 1324
   public function delete($packageName, $editId, $apkVersionCode, $language, $optParams = array())
1325 1325
   {
1326
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
1327
-    $params = array_merge($params, $optParams);
1328
-    return $this->call('delete', array($params));
1326
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
1327
+	$params = array_merge($params, $optParams);
1328
+	return $this->call('delete', array($params));
1329 1329
   }
1330 1330
 
1331 1331
   /**
@@ -1341,9 +1341,9 @@  discard block
 block discarded – undo
1341 1341
    */
1342 1342
   public function deleteall($packageName, $editId, $apkVersionCode, $optParams = array())
1343 1343
   {
1344
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
1345
-    $params = array_merge($params, $optParams);
1346
-    return $this->call('deleteall', array($params));
1344
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
1345
+	$params = array_merge($params, $optParams);
1346
+	return $this->call('deleteall', array($params));
1347 1347
   }
1348 1348
 
1349 1349
   /**
@@ -1363,9 +1363,9 @@  discard block
 block discarded – undo
1363 1363
    */
1364 1364
   public function get($packageName, $editId, $apkVersionCode, $language, $optParams = array())
1365 1365
   {
1366
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
1367
-    $params = array_merge($params, $optParams);
1368
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_ApkListing");
1366
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language);
1367
+	$params = array_merge($params, $optParams);
1368
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_ApkListing");
1369 1369
   }
1370 1370
 
1371 1371
   /**
@@ -1382,9 +1382,9 @@  discard block
 block discarded – undo
1382 1382
    */
1383 1383
   public function listEditsApklistings($packageName, $editId, $apkVersionCode, $optParams = array())
1384 1384
   {
1385
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
1386
-    $params = array_merge($params, $optParams);
1387
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_ApkListingsListResponse");
1385
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode);
1386
+	$params = array_merge($params, $optParams);
1387
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_ApkListingsListResponse");
1388 1388
   }
1389 1389
 
1390 1390
   /**
@@ -1405,9 +1405,9 @@  discard block
 block discarded – undo
1405 1405
    */
1406 1406
   public function patch($packageName, $editId, $apkVersionCode, $language, Google_Service_AndroidPublisher_ApkListing $postBody, $optParams = array())
1407 1407
   {
1408
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
1409
-    $params = array_merge($params, $optParams);
1410
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ApkListing");
1408
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
1409
+	$params = array_merge($params, $optParams);
1410
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ApkListing");
1411 1411
   }
1412 1412
 
1413 1413
   /**
@@ -1428,9 +1428,9 @@  discard block
 block discarded – undo
1428 1428
    */
1429 1429
   public function update($packageName, $editId, $apkVersionCode, $language, Google_Service_AndroidPublisher_ApkListing $postBody, $optParams = array())
1430 1430
   {
1431
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
1432
-    $params = array_merge($params, $optParams);
1433
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_ApkListing");
1431
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'language' => $language, 'postBody' => $postBody);
1432
+	$params = array_merge($params, $optParams);
1433
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_ApkListing");
1434 1434
   }
1435 1435
 }
1436 1436
 /**
@@ -1459,9 +1459,9 @@  discard block
 block discarded – undo
1459 1459
    */
1460 1460
   public function addexternallyhosted($packageName, $editId, Google_Service_AndroidPublisher_ApksAddExternallyHostedRequest $postBody, $optParams = array())
1461 1461
   {
1462
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1463
-    $params = array_merge($params, $optParams);
1464
-    return $this->call('addexternallyhosted', array($params), "Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse");
1462
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1463
+	$params = array_merge($params, $optParams);
1464
+	return $this->call('addexternallyhosted', array($params), "Google_Service_AndroidPublisher_ApksAddExternallyHostedResponse");
1465 1465
   }
1466 1466
 
1467 1467
   /**
@@ -1475,9 +1475,9 @@  discard block
 block discarded – undo
1475 1475
    */
1476 1476
   public function listEditsApks($packageName, $editId, $optParams = array())
1477 1477
   {
1478
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1479
-    $params = array_merge($params, $optParams);
1480
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_ApksListResponse");
1478
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1479
+	$params = array_merge($params, $optParams);
1480
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_ApksListResponse");
1481 1481
   }
1482 1482
 
1483 1483
   /**
@@ -1491,9 +1491,9 @@  discard block
 block discarded – undo
1491 1491
    */
1492 1492
   public function upload($packageName, $editId, $optParams = array())
1493 1493
   {
1494
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1495
-    $params = array_merge($params, $optParams);
1496
-    return $this->call('upload', array($params), "Google_Service_AndroidPublisher_Apk");
1494
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1495
+	$params = array_merge($params, $optParams);
1496
+	return $this->call('upload', array($params), "Google_Service_AndroidPublisher_Apk");
1497 1497
   }
1498 1498
 }
1499 1499
 /**
@@ -1519,9 +1519,9 @@  discard block
 block discarded – undo
1519 1519
    */
1520 1520
   public function get($packageName, $editId, $optParams = array())
1521 1521
   {
1522
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1523
-    $params = array_merge($params, $optParams);
1524
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppDetails");
1522
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1523
+	$params = array_merge($params, $optParams);
1524
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_AppDetails");
1525 1525
   }
1526 1526
 
1527 1527
   /**
@@ -1537,9 +1537,9 @@  discard block
 block discarded – undo
1537 1537
    */
1538 1538
   public function patch($packageName, $editId, Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array())
1539 1539
   {
1540
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1541
-    $params = array_merge($params, $optParams);
1542
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_AppDetails");
1540
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1541
+	$params = array_merge($params, $optParams);
1542
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_AppDetails");
1543 1543
   }
1544 1544
 
1545 1545
   /**
@@ -1554,9 +1554,9 @@  discard block
 block discarded – undo
1554 1554
    */
1555 1555
   public function update($packageName, $editId, Google_Service_AndroidPublisher_AppDetails $postBody, $optParams = array())
1556 1556
   {
1557
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1558
-    $params = array_merge($params, $optParams);
1559
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_AppDetails");
1557
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'postBody' => $postBody);
1558
+	$params = array_merge($params, $optParams);
1559
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_AppDetails");
1560 1560
   }
1561 1561
 }
1562 1562
 /**
@@ -1585,9 +1585,9 @@  discard block
 block discarded – undo
1585 1585
    */
1586 1586
   public function get($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array())
1587 1587
   {
1588
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
1589
-    $params = array_merge($params, $optParams);
1590
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1588
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
1589
+	$params = array_merge($params, $optParams);
1590
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1591 1591
   }
1592 1592
 
1593 1593
   /**
@@ -1607,9 +1607,9 @@  discard block
 block discarded – undo
1607 1607
    */
1608 1608
   public function patch($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array())
1609 1609
   {
1610
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
1611
-    $params = array_merge($params, $optParams);
1612
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1610
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
1611
+	$params = array_merge($params, $optParams);
1612
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1613 1613
   }
1614 1614
 
1615 1615
   /**
@@ -1629,9 +1629,9 @@  discard block
 block discarded – undo
1629 1629
    */
1630 1630
   public function update($packageName, $editId, $apkVersionCode, $expansionFileType, Google_Service_AndroidPublisher_ExpansionFile $postBody, $optParams = array())
1631 1631
   {
1632
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
1633
-    $params = array_merge($params, $optParams);
1634
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1632
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType, 'postBody' => $postBody);
1633
+	$params = array_merge($params, $optParams);
1634
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_ExpansionFile");
1635 1635
   }
1636 1636
 
1637 1637
   /**
@@ -1649,9 +1649,9 @@  discard block
 block discarded – undo
1649 1649
    */
1650 1650
   public function upload($packageName, $editId, $apkVersionCode, $expansionFileType, $optParams = array())
1651 1651
   {
1652
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
1653
-    $params = array_merge($params, $optParams);
1654
-    return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ExpansionFilesUploadResponse");
1652
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'apkVersionCode' => $apkVersionCode, 'expansionFileType' => $expansionFileType);
1653
+	$params = array_merge($params, $optParams);
1654
+	return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ExpansionFilesUploadResponse");
1655 1655
   }
1656 1656
 }
1657 1657
 /**
@@ -1681,9 +1681,9 @@  discard block
 block discarded – undo
1681 1681
    */
1682 1682
   public function delete($packageName, $editId, $language, $imageType, $imageId, $optParams = array())
1683 1683
   {
1684
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType, 'imageId' => $imageId);
1685
-    $params = array_merge($params, $optParams);
1686
-    return $this->call('delete', array($params));
1684
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType, 'imageId' => $imageId);
1685
+	$params = array_merge($params, $optParams);
1686
+	return $this->call('delete', array($params));
1687 1687
   }
1688 1688
 
1689 1689
   /**
@@ -1702,9 +1702,9 @@  discard block
 block discarded – undo
1702 1702
    */
1703 1703
   public function deleteall($packageName, $editId, $language, $imageType, $optParams = array())
1704 1704
   {
1705
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1706
-    $params = array_merge($params, $optParams);
1707
-    return $this->call('deleteall', array($params), "Google_Service_AndroidPublisher_ImagesDeleteAllResponse");
1705
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1706
+	$params = array_merge($params, $optParams);
1707
+	return $this->call('deleteall', array($params), "Google_Service_AndroidPublisher_ImagesDeleteAllResponse");
1708 1708
   }
1709 1709
 
1710 1710
   /**
@@ -1723,9 +1723,9 @@  discard block
 block discarded – undo
1723 1723
    */
1724 1724
   public function listEditsImages($packageName, $editId, $language, $imageType, $optParams = array())
1725 1725
   {
1726
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1727
-    $params = array_merge($params, $optParams);
1728
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_ImagesListResponse");
1726
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1727
+	$params = array_merge($params, $optParams);
1728
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_ImagesListResponse");
1729 1729
   }
1730 1730
 
1731 1731
   /**
@@ -1744,9 +1744,9 @@  discard block
 block discarded – undo
1744 1744
    */
1745 1745
   public function upload($packageName, $editId, $language, $imageType, $optParams = array())
1746 1746
   {
1747
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1748
-    $params = array_merge($params, $optParams);
1749
-    return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ImagesUploadResponse");
1747
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'imageType' => $imageType);
1748
+	$params = array_merge($params, $optParams);
1749
+	return $this->call('upload', array($params), "Google_Service_AndroidPublisher_ImagesUploadResponse");
1750 1750
   }
1751 1751
 }
1752 1752
 /**
@@ -1773,9 +1773,9 @@  discard block
 block discarded – undo
1773 1773
    */
1774 1774
   public function delete($packageName, $editId, $language, $optParams = array())
1775 1775
   {
1776
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
1777
-    $params = array_merge($params, $optParams);
1778
-    return $this->call('delete', array($params));
1776
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
1777
+	$params = array_merge($params, $optParams);
1778
+	return $this->call('delete', array($params));
1779 1779
   }
1780 1780
 
1781 1781
   /**
@@ -1788,9 +1788,9 @@  discard block
 block discarded – undo
1788 1788
    */
1789 1789
   public function deleteall($packageName, $editId, $optParams = array())
1790 1790
   {
1791
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1792
-    $params = array_merge($params, $optParams);
1793
-    return $this->call('deleteall', array($params));
1791
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1792
+	$params = array_merge($params, $optParams);
1793
+	return $this->call('deleteall', array($params));
1794 1794
   }
1795 1795
 
1796 1796
   /**
@@ -1807,9 +1807,9 @@  discard block
 block discarded – undo
1807 1807
    */
1808 1808
   public function get($packageName, $editId, $language, $optParams = array())
1809 1809
   {
1810
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
1811
-    $params = array_merge($params, $optParams);
1812
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_Listing");
1810
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language);
1811
+	$params = array_merge($params, $optParams);
1812
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_Listing");
1813 1813
   }
1814 1814
 
1815 1815
   /**
@@ -1824,9 +1824,9 @@  discard block
 block discarded – undo
1824 1824
    */
1825 1825
   public function listEditsListings($packageName, $editId, $optParams = array())
1826 1826
   {
1827
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1828
-    $params = array_merge($params, $optParams);
1829
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_ListingsListResponse");
1827
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1828
+	$params = array_merge($params, $optParams);
1829
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_ListingsListResponse");
1830 1830
   }
1831 1831
 
1832 1832
   /**
@@ -1845,9 +1845,9 @@  discard block
 block discarded – undo
1845 1845
    */
1846 1846
   public function patch($packageName, $editId, $language, Google_Service_AndroidPublisher_Listing $postBody, $optParams = array())
1847 1847
   {
1848
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
1849
-    $params = array_merge($params, $optParams);
1850
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Listing");
1848
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
1849
+	$params = array_merge($params, $optParams);
1850
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Listing");
1851 1851
   }
1852 1852
 
1853 1853
   /**
@@ -1865,9 +1865,9 @@  discard block
 block discarded – undo
1865 1865
    */
1866 1866
   public function update($packageName, $editId, $language, Google_Service_AndroidPublisher_Listing $postBody, $optParams = array())
1867 1867
   {
1868
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
1869
-    $params = array_merge($params, $optParams);
1870
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_Listing");
1868
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'language' => $language, 'postBody' => $postBody);
1869
+	$params = array_merge($params, $optParams);
1870
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_Listing");
1871 1871
   }
1872 1872
 }
1873 1873
 /**
@@ -1893,9 +1893,9 @@  discard block
 block discarded – undo
1893 1893
    */
1894 1894
   public function get($packageName, $editId, $track, $optParams = array())
1895 1895
   {
1896
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
1897
-    $params = array_merge($params, $optParams);
1898
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_Testers");
1896
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
1897
+	$params = array_merge($params, $optParams);
1898
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_Testers");
1899 1899
   }
1900 1900
 
1901 1901
   /**
@@ -1911,9 +1911,9 @@  discard block
 block discarded – undo
1911 1911
    */
1912 1912
   public function patch($packageName, $editId, $track, Google_Service_AndroidPublisher_Testers $postBody, $optParams = array())
1913 1913
   {
1914
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1915
-    $params = array_merge($params, $optParams);
1916
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Testers");
1914
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1915
+	$params = array_merge($params, $optParams);
1916
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Testers");
1917 1917
   }
1918 1918
 
1919 1919
   /**
@@ -1929,9 +1929,9 @@  discard block
 block discarded – undo
1929 1929
    */
1930 1930
   public function update($packageName, $editId, $track, Google_Service_AndroidPublisher_Testers $postBody, $optParams = array())
1931 1931
   {
1932
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1933
-    $params = array_merge($params, $optParams);
1934
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_Testers");
1932
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1933
+	$params = array_merge($params, $optParams);
1934
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_Testers");
1935 1935
   }
1936 1936
 }
1937 1937
 /**
@@ -1958,9 +1958,9 @@  discard block
 block discarded – undo
1958 1958
    */
1959 1959
   public function get($packageName, $editId, $track, $optParams = array())
1960 1960
   {
1961
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
1962
-    $params = array_merge($params, $optParams);
1963
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_Track");
1961
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track);
1962
+	$params = array_merge($params, $optParams);
1963
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_Track");
1964 1964
   }
1965 1965
 
1966 1966
   /**
@@ -1974,9 +1974,9 @@  discard block
 block discarded – undo
1974 1974
    */
1975 1975
   public function listEditsTracks($packageName, $editId, $optParams = array())
1976 1976
   {
1977
-    $params = array('packageName' => $packageName, 'editId' => $editId);
1978
-    $params = array_merge($params, $optParams);
1979
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_TracksListResponse");
1977
+	$params = array('packageName' => $packageName, 'editId' => $editId);
1978
+	$params = array_merge($params, $optParams);
1979
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_TracksListResponse");
1980 1980
   }
1981 1981
 
1982 1982
   /**
@@ -1995,9 +1995,9 @@  discard block
 block discarded – undo
1995 1995
    */
1996 1996
   public function patch($packageName, $editId, $track, Google_Service_AndroidPublisher_Track $postBody, $optParams = array())
1997 1997
   {
1998
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1999
-    $params = array_merge($params, $optParams);
2000
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Track");
1998
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
1999
+	$params = array_merge($params, $optParams);
2000
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_Track");
2001 2001
   }
2002 2002
 
2003 2003
   /**
@@ -2015,9 +2015,9 @@  discard block
 block discarded – undo
2015 2015
    */
2016 2016
   public function update($packageName, $editId, $track, Google_Service_AndroidPublisher_Track $postBody, $optParams = array())
2017 2017
   {
2018
-    $params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
2019
-    $params = array_merge($params, $optParams);
2020
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_Track");
2018
+	$params = array('packageName' => $packageName, 'editId' => $editId, 'track' => $track, 'postBody' => $postBody);
2019
+	$params = array_merge($params, $optParams);
2020
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_Track");
2021 2021
   }
2022 2022
 }
2023 2023
 
@@ -2049,9 +2049,9 @@  discard block
 block discarded – undo
2049 2049
    */
2050 2050
   public function listEntitlements($packageName, $optParams = array())
2051 2051
   {
2052
-    $params = array('packageName' => $packageName);
2053
-    $params = array_merge($params, $optParams);
2054
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_EntitlementsListResponse");
2052
+	$params = array('packageName' => $packageName);
2053
+	$params = array_merge($params, $optParams);
2054
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_EntitlementsListResponse");
2055 2055
   }
2056 2056
 }
2057 2057
 
@@ -2075,9 +2075,9 @@  discard block
 block discarded – undo
2075 2075
    */
2076 2076
   public function batch(Google_Service_AndroidPublisher_InappproductsBatchRequest $postBody, $optParams = array())
2077 2077
   {
2078
-    $params = array('postBody' => $postBody);
2079
-    $params = array_merge($params, $optParams);
2080
-    return $this->call('batch', array($params), "Google_Service_AndroidPublisher_InappproductsBatchResponse");
2078
+	$params = array('postBody' => $postBody);
2079
+	$params = array_merge($params, $optParams);
2080
+	return $this->call('batch', array($params), "Google_Service_AndroidPublisher_InappproductsBatchResponse");
2081 2081
   }
2082 2082
 
2083 2083
   /**
@@ -2090,9 +2090,9 @@  discard block
 block discarded – undo
2090 2090
    */
2091 2091
   public function delete($packageName, $sku, $optParams = array())
2092 2092
   {
2093
-    $params = array('packageName' => $packageName, 'sku' => $sku);
2094
-    $params = array_merge($params, $optParams);
2095
-    return $this->call('delete', array($params));
2093
+	$params = array('packageName' => $packageName, 'sku' => $sku);
2094
+	$params = array_merge($params, $optParams);
2095
+	return $this->call('delete', array($params));
2096 2096
   }
2097 2097
 
2098 2098
   /**
@@ -2105,9 +2105,9 @@  discard block
 block discarded – undo
2105 2105
    */
2106 2106
   public function get($packageName, $sku, $optParams = array())
2107 2107
   {
2108
-    $params = array('packageName' => $packageName, 'sku' => $sku);
2109
-    $params = array_merge($params, $optParams);
2110
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2108
+	$params = array('packageName' => $packageName, 'sku' => $sku);
2109
+	$params = array_merge($params, $optParams);
2110
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2111 2111
   }
2112 2112
 
2113 2113
   /**
@@ -2126,9 +2126,9 @@  discard block
 block discarded – undo
2126 2126
    */
2127 2127
   public function insert($packageName, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
2128 2128
   {
2129
-    $params = array('packageName' => $packageName, 'postBody' => $postBody);
2130
-    $params = array_merge($params, $optParams);
2131
-    return $this->call('insert', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2129
+	$params = array('packageName' => $packageName, 'postBody' => $postBody);
2130
+	$params = array_merge($params, $optParams);
2131
+	return $this->call('insert', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2132 2132
   }
2133 2133
 
2134 2134
   /**
@@ -2146,9 +2146,9 @@  discard block
 block discarded – undo
2146 2146
    */
2147 2147
   public function listInappproducts($packageName, $optParams = array())
2148 2148
   {
2149
-    $params = array('packageName' => $packageName);
2150
-    $params = array_merge($params, $optParams);
2151
-    return $this->call('list', array($params), "Google_Service_AndroidPublisher_InappproductsListResponse");
2149
+	$params = array('packageName' => $packageName);
2150
+	$params = array_merge($params, $optParams);
2151
+	return $this->call('list', array($params), "Google_Service_AndroidPublisher_InappproductsListResponse");
2152 2152
   }
2153 2153
 
2154 2154
   /**
@@ -2169,9 +2169,9 @@  discard block
 block discarded – undo
2169 2169
    */
2170 2170
   public function patch($packageName, $sku, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
2171 2171
   {
2172
-    $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
2173
-    $params = array_merge($params, $optParams);
2174
-    return $this->call('patch', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2172
+	$params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
2173
+	$params = array_merge($params, $optParams);
2174
+	return $this->call('patch', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2175 2175
   }
2176 2176
 
2177 2177
   /**
@@ -2191,9 +2191,9 @@  discard block
 block discarded – undo
2191 2191
    */
2192 2192
   public function update($packageName, $sku, Google_Service_AndroidPublisher_InAppProduct $postBody, $optParams = array())
2193 2193
   {
2194
-    $params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
2195
-    $params = array_merge($params, $optParams);
2196
-    return $this->call('update', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2194
+	$params = array('packageName' => $packageName, 'sku' => $sku, 'postBody' => $postBody);
2195
+	$params = array_merge($params, $optParams);
2196
+	return $this->call('update', array($params), "Google_Service_AndroidPublisher_InAppProduct");
2197 2197
   }
2198 2198
 }
2199 2199
 
@@ -2234,9 +2234,9 @@  discard block
 block discarded – undo
2234 2234
    */
2235 2235
   public function get($packageName, $productId, $token, $optParams = array())
2236 2236
   {
2237
-    $params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token);
2238
-    $params = array_merge($params, $optParams);
2239
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_ProductPurchase");
2237
+	$params = array('packageName' => $packageName, 'productId' => $productId, 'token' => $token);
2238
+	$params = array_merge($params, $optParams);
2239
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_ProductPurchase");
2240 2240
   }
2241 2241
 }
2242 2242
 /**
@@ -2264,9 +2264,9 @@  discard block
 block discarded – undo
2264 2264
    */
2265 2265
   public function cancel($packageName, $subscriptionId, $token, $optParams = array())
2266 2266
   {
2267
-    $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2268
-    $params = array_merge($params, $optParams);
2269
-    return $this->call('cancel', array($params));
2267
+	$params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2268
+	$params = array_merge($params, $optParams);
2269
+	return $this->call('cancel', array($params));
2270 2270
   }
2271 2271
 
2272 2272
   /**
@@ -2285,9 +2285,9 @@  discard block
 block discarded – undo
2285 2285
    */
2286 2286
   public function defer($packageName, $subscriptionId, $token, Google_Service_AndroidPublisher_SubscriptionPurchasesDeferRequest $postBody, $optParams = array())
2287 2287
   {
2288
-    $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token, 'postBody' => $postBody);
2289
-    $params = array_merge($params, $optParams);
2290
-    return $this->call('defer', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse");
2288
+	$params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token, 'postBody' => $postBody);
2289
+	$params = array_merge($params, $optParams);
2290
+	return $this->call('defer', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchasesDeferResponse");
2291 2291
   }
2292 2292
 
2293 2293
   /**
@@ -2305,9 +2305,9 @@  discard block
 block discarded – undo
2305 2305
    */
2306 2306
   public function get($packageName, $subscriptionId, $token, $optParams = array())
2307 2307
   {
2308
-    $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2309
-    $params = array_merge($params, $optParams);
2310
-    return $this->call('get', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchase");
2308
+	$params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2309
+	$params = array_merge($params, $optParams);
2310
+	return $this->call('get', array($params), "Google_Service_AndroidPublisher_SubscriptionPurchase");
2311 2311
   }
2312 2312
 
2313 2313
   /**
@@ -2325,9 +2325,9 @@  discard block
 block discarded – undo
2325 2325
    */
2326 2326
   public function refund($packageName, $subscriptionId, $token, $optParams = array())
2327 2327
   {
2328
-    $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2329
-    $params = array_merge($params, $optParams);
2330
-    return $this->call('refund', array($params));
2328
+	$params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2329
+	$params = array_merge($params, $optParams);
2330
+	return $this->call('refund', array($params));
2331 2331
   }
2332 2332
 
2333 2333
   /**
@@ -2345,9 +2345,9 @@  discard block
 block discarded – undo
2345 2345
    */
2346 2346
   public function revoke($packageName, $subscriptionId, $token, $optParams = array())
2347 2347
   {
2348
-    $params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2349
-    $params = array_merge($params, $optParams);
2350
-    return $this->call('revoke', array($params));
2348
+	$params = array('packageName' => $packageName, 'subscriptionId' => $subscriptionId, 'token' => $token);
2349
+	$params = array_merge($params, $optParams);
2350
+	return $this->call('revoke', array($params));
2351 2351
   }
2352 2352
 }
2353 2353
 
@@ -2365,19 +2365,19 @@  discard block
 block discarded – undo
2365 2365
 
2366 2366
   public function setBinary(Google_Service_AndroidPublisher_ApkBinary $binary)
2367 2367
   {
2368
-    $this->binary = $binary;
2368
+	$this->binary = $binary;
2369 2369
   }
2370 2370
   public function getBinary()
2371 2371
   {
2372
-    return $this->binary;
2372
+	return $this->binary;
2373 2373
   }
2374 2374
   public function setVersionCode($versionCode)
2375 2375
   {
2376
-    $this->versionCode = $versionCode;
2376
+	$this->versionCode = $versionCode;
2377 2377
   }
2378 2378
   public function getVersionCode()
2379 2379
   {
2380
-    return $this->versionCode;
2380
+	return $this->versionCode;
2381 2381
   }
2382 2382
 }
2383 2383
 
@@ -2390,11 +2390,11 @@  discard block
 block discarded – undo
2390 2390
 
2391 2391
   public function setSha1($sha1)
2392 2392
   {
2393
-    $this->sha1 = $sha1;
2393
+	$this->sha1 = $sha1;
2394 2394
   }
2395 2395
   public function getSha1()
2396 2396
   {
2397
-    return $this->sha1;
2397
+	return $this->sha1;
2398 2398
   }
2399 2399
 }
2400 2400
 
@@ -2408,19 +2408,19 @@  discard block
 block discarded – undo
2408 2408
 
2409 2409
   public function setLanguage($language)
2410 2410
   {
2411
-    $this->language = $language;
2411
+	$this->language = $language;
2412 2412
   }
2413 2413
   public function getLanguage()
2414 2414
   {
2415
-    return $this->language;
2415
+	return $this->language;
2416 2416
   }
2417 2417
   public function setRecentChanges($recentChanges)
2418 2418
   {
2419
-    $this->recentChanges = $recentChanges;
2419
+	$this->recentChanges = $recentChanges;
2420 2420
   }
2421 2421
   public function getRecentChanges()
2422 2422
   {
2423
-    return $this->recentChanges;
2423
+	return $this->recentChanges;
2424 2424
   }
2425 2425
 }
2426 2426
 
@@ -2436,19 +2436,19 @@  discard block
 block discarded – undo
2436 2436
 
2437 2437
   public function setKind($kind)
2438 2438
   {
2439
-    $this->kind = $kind;
2439
+	$this->kind = $kind;
2440 2440
   }
2441 2441
   public function getKind()
2442 2442
   {
2443
-    return $this->kind;
2443
+	return $this->kind;
2444 2444
   }
2445 2445
   public function setListings($listings)
2446 2446
   {
2447
-    $this->listings = $listings;
2447
+	$this->listings = $listings;
2448 2448
   }
2449 2449
   public function getListings()
2450 2450
   {
2451
-    return $this->listings;
2451
+	return $this->listings;
2452 2452
   }
2453 2453
 }
2454 2454
 
@@ -2462,11 +2462,11 @@  discard block
 block discarded – undo
2462 2462
 
2463 2463
   public function setExternallyHostedApk(Google_Service_AndroidPublisher_ExternallyHostedApk $externallyHostedApk)
2464 2464
   {
2465
-    $this->externallyHostedApk = $externallyHostedApk;
2465
+	$this->externallyHostedApk = $externallyHostedApk;
2466 2466
   }
2467 2467
   public function getExternallyHostedApk()
2468 2468
   {
2469
-    return $this->externallyHostedApk;
2469
+	return $this->externallyHostedApk;
2470 2470
   }
2471 2471
 }
2472 2472
 
@@ -2480,11 +2480,11 @@  discard block
 block discarded – undo
2480 2480
 
2481 2481
   public function setExternallyHostedApk(Google_Service_AndroidPublisher_ExternallyHostedApk $externallyHostedApk)
2482 2482
   {
2483
-    $this->externallyHostedApk = $externallyHostedApk;
2483
+	$this->externallyHostedApk = $externallyHostedApk;
2484 2484
   }
2485 2485
   public function getExternallyHostedApk()
2486 2486
   {
2487
-    return $this->externallyHostedApk;
2487
+	return $this->externallyHostedApk;
2488 2488
   }
2489 2489
 }
2490 2490
 
@@ -2500,19 +2500,19 @@  discard block
 block discarded – undo
2500 2500
 
2501 2501
   public function setApks($apks)
2502 2502
   {
2503
-    $this->apks = $apks;
2503
+	$this->apks = $apks;
2504 2504
   }
2505 2505
   public function getApks()
2506 2506
   {
2507
-    return $this->apks;
2507
+	return $this->apks;
2508 2508
   }
2509 2509
   public function setKind($kind)
2510 2510
   {
2511
-    $this->kind = $kind;
2511
+	$this->kind = $kind;
2512 2512
   }
2513 2513
   public function getKind()
2514 2514
   {
2515
-    return $this->kind;
2515
+	return $this->kind;
2516 2516
   }
2517 2517
 }
2518 2518
 
@@ -2528,35 +2528,35 @@  discard block
 block discarded – undo
2528 2528
 
2529 2529
   public function setContactEmail($contactEmail)
2530 2530
   {
2531
-    $this->contactEmail = $contactEmail;
2531
+	$this->contactEmail = $contactEmail;
2532 2532
   }
2533 2533
   public function getContactEmail()
2534 2534
   {
2535
-    return $this->contactEmail;
2535
+	return $this->contactEmail;
2536 2536
   }
2537 2537
   public function setContactPhone($contactPhone)
2538 2538
   {
2539
-    $this->contactPhone = $contactPhone;
2539
+	$this->contactPhone = $contactPhone;
2540 2540
   }
2541 2541
   public function getContactPhone()
2542 2542
   {
2543
-    return $this->contactPhone;
2543
+	return $this->contactPhone;
2544 2544
   }
2545 2545
   public function setContactWebsite($contactWebsite)
2546 2546
   {
2547
-    $this->contactWebsite = $contactWebsite;
2547
+	$this->contactWebsite = $contactWebsite;
2548 2548
   }
2549 2549
   public function getContactWebsite()
2550 2550
   {
2551
-    return $this->contactWebsite;
2551
+	return $this->contactWebsite;
2552 2552
   }
2553 2553
   public function setDefaultLanguage($defaultLanguage)
2554 2554
   {
2555
-    $this->defaultLanguage = $defaultLanguage;
2555
+	$this->defaultLanguage = $defaultLanguage;
2556 2556
   }
2557 2557
   public function getDefaultLanguage()
2558 2558
   {
2559
-    return $this->defaultLanguage;
2559
+	return $this->defaultLanguage;
2560 2560
   }
2561 2561
 }
2562 2562
 
@@ -2570,19 +2570,19 @@  discard block
 block discarded – undo
2570 2570
 
2571 2571
   public function setExpiryTimeSeconds($expiryTimeSeconds)
2572 2572
   {
2573
-    $this->expiryTimeSeconds = $expiryTimeSeconds;
2573
+	$this->expiryTimeSeconds = $expiryTimeSeconds;
2574 2574
   }
2575 2575
   public function getExpiryTimeSeconds()
2576 2576
   {
2577
-    return $this->expiryTimeSeconds;
2577
+	return $this->expiryTimeSeconds;
2578 2578
   }
2579 2579
   public function setId($id)
2580 2580
   {
2581
-    $this->id = $id;
2581
+	$this->id = $id;
2582 2582
   }
2583 2583
   public function getId()
2584 2584
   {
2585
-    return $this->id;
2585
+	return $this->id;
2586 2586
   }
2587 2587
 }
2588 2588
 
@@ -2598,35 +2598,35 @@  discard block
 block discarded – undo
2598 2598
 
2599 2599
   public function setKind($kind)
2600 2600
   {
2601
-    $this->kind = $kind;
2601
+	$this->kind = $kind;
2602 2602
   }
2603 2603
   public function getKind()
2604 2604
   {
2605
-    return $this->kind;
2605
+	return $this->kind;
2606 2606
   }
2607 2607
   public function setProductId($productId)
2608 2608
   {
2609
-    $this->productId = $productId;
2609
+	$this->productId = $productId;
2610 2610
   }
2611 2611
   public function getProductId()
2612 2612
   {
2613
-    return $this->productId;
2613
+	return $this->productId;
2614 2614
   }
2615 2615
   public function setProductType($productType)
2616 2616
   {
2617
-    $this->productType = $productType;
2617
+	$this->productType = $productType;
2618 2618
   }
2619 2619
   public function getProductType()
2620 2620
   {
2621
-    return $this->productType;
2621
+	return $this->productType;
2622 2622
   }
2623 2623
   public function setToken($token)
2624 2624
   {
2625
-    $this->token = $token;
2625
+	$this->token = $token;
2626 2626
   }
2627 2627
   public function getToken()
2628 2628
   {
2629
-    return $this->token;
2629
+	return $this->token;
2630 2630
   }
2631 2631
 }
2632 2632
 
@@ -2645,27 +2645,27 @@  discard block
 block discarded – undo
2645 2645
 
2646 2646
   public function setPageInfo(Google_Service_AndroidPublisher_PageInfo $pageInfo)
2647 2647
   {
2648
-    $this->pageInfo = $pageInfo;
2648
+	$this->pageInfo = $pageInfo;
2649 2649
   }
2650 2650
   public function getPageInfo()
2651 2651
   {
2652
-    return $this->pageInfo;
2652
+	return $this->pageInfo;
2653 2653
   }
2654 2654
   public function setResources($resources)
2655 2655
   {
2656
-    $this->resources = $resources;
2656
+	$this->resources = $resources;
2657 2657
   }
2658 2658
   public function getResources()
2659 2659
   {
2660
-    return $this->resources;
2660
+	return $this->resources;
2661 2661
   }
2662 2662
   public function setTokenPagination(Google_Service_AndroidPublisher_TokenPagination $tokenPagination)
2663 2663
   {
2664
-    $this->tokenPagination = $tokenPagination;
2664
+	$this->tokenPagination = $tokenPagination;
2665 2665
   }
2666 2666
   public function getTokenPagination()
2667 2667
   {
2668
-    return $this->tokenPagination;
2668
+	return $this->tokenPagination;
2669 2669
   }
2670 2670
 }
2671 2671
 
@@ -2679,19 +2679,19 @@  discard block
 block discarded – undo
2679 2679
 
2680 2680
   public function setFileSize($fileSize)
2681 2681
   {
2682
-    $this->fileSize = $fileSize;
2682
+	$this->fileSize = $fileSize;
2683 2683
   }
2684 2684
   public function getFileSize()
2685 2685
   {
2686
-    return $this->fileSize;
2686
+	return $this->fileSize;
2687 2687
   }
2688 2688
   public function setReferencesVersion($referencesVersion)
2689 2689
   {
2690
-    $this->referencesVersion = $referencesVersion;
2690
+	$this->referencesVersion = $referencesVersion;
2691 2691
   }
2692 2692
   public function getReferencesVersion()
2693 2693
   {
2694
-    return $this->referencesVersion;
2694
+	return $this->referencesVersion;
2695 2695
   }
2696 2696
 }
2697 2697
 
@@ -2705,11 +2705,11 @@  discard block
 block discarded – undo
2705 2705
 
2706 2706
   public function setExpansionFile(Google_Service_AndroidPublisher_ExpansionFile $expansionFile)
2707 2707
   {
2708
-    $this->expansionFile = $expansionFile;
2708
+	$this->expansionFile = $expansionFile;
2709 2709
   }
2710 2710
   public function getExpansionFile()
2711 2711
   {
2712
-    return $this->expansionFile;
2712
+	return $this->expansionFile;
2713 2713
   }
2714 2714
 }
2715 2715
 
@@ -2738,123 +2738,123 @@  discard block
 block discarded – undo
2738 2738
 
2739 2739
   public function setApplicationLabel($applicationLabel)
2740 2740
   {
2741
-    $this->applicationLabel = $applicationLabel;
2741
+	$this->applicationLabel = $applicationLabel;
2742 2742
   }
2743 2743
   public function getApplicationLabel()
2744 2744
   {
2745
-    return $this->applicationLabel;
2745
+	return $this->applicationLabel;
2746 2746
   }
2747 2747
   public function setCertificateBase64s($certificateBase64s)
2748 2748
   {
2749
-    $this->certificateBase64s = $certificateBase64s;
2749
+	$this->certificateBase64s = $certificateBase64s;
2750 2750
   }
2751 2751
   public function getCertificateBase64s()
2752 2752
   {
2753
-    return $this->certificateBase64s;
2753
+	return $this->certificateBase64s;
2754 2754
   }
2755 2755
   public function setExternallyHostedUrl($externallyHostedUrl)
2756 2756
   {
2757
-    $this->externallyHostedUrl = $externallyHostedUrl;
2757
+	$this->externallyHostedUrl = $externallyHostedUrl;
2758 2758
   }
2759 2759
   public function getExternallyHostedUrl()
2760 2760
   {
2761
-    return $this->externallyHostedUrl;
2761
+	return $this->externallyHostedUrl;
2762 2762
   }
2763 2763
   public function setFileSha1Base64($fileSha1Base64)
2764 2764
   {
2765
-    $this->fileSha1Base64 = $fileSha1Base64;
2765
+	$this->fileSha1Base64 = $fileSha1Base64;
2766 2766
   }
2767 2767
   public function getFileSha1Base64()
2768 2768
   {
2769
-    return $this->fileSha1Base64;
2769
+	return $this->fileSha1Base64;
2770 2770
   }
2771 2771
   public function setFileSha256Base64($fileSha256Base64)
2772 2772
   {
2773
-    $this->fileSha256Base64 = $fileSha256Base64;
2773
+	$this->fileSha256Base64 = $fileSha256Base64;
2774 2774
   }
2775 2775
   public function getFileSha256Base64()
2776 2776
   {
2777
-    return $this->fileSha256Base64;
2777
+	return $this->fileSha256Base64;
2778 2778
   }
2779 2779
   public function setFileSize($fileSize)
2780 2780
   {
2781
-    $this->fileSize = $fileSize;
2781
+	$this->fileSize = $fileSize;
2782 2782
   }
2783 2783
   public function getFileSize()
2784 2784
   {
2785
-    return $this->fileSize;
2785
+	return $this->fileSize;
2786 2786
   }
2787 2787
   public function setIconBase64($iconBase64)
2788 2788
   {
2789
-    $this->iconBase64 = $iconBase64;
2789
+	$this->iconBase64 = $iconBase64;
2790 2790
   }
2791 2791
   public function getIconBase64()
2792 2792
   {
2793
-    return $this->iconBase64;
2793
+	return $this->iconBase64;
2794 2794
   }
2795 2795
   public function setMaximumSdk($maximumSdk)
2796 2796
   {
2797
-    $this->maximumSdk = $maximumSdk;
2797
+	$this->maximumSdk = $maximumSdk;
2798 2798
   }
2799 2799
   public function getMaximumSdk()
2800 2800
   {
2801
-    return $this->maximumSdk;
2801
+	return $this->maximumSdk;
2802 2802
   }
2803 2803
   public function setMinimumSdk($minimumSdk)
2804 2804
   {
2805
-    $this->minimumSdk = $minimumSdk;
2805
+	$this->minimumSdk = $minimumSdk;
2806 2806
   }
2807 2807
   public function getMinimumSdk()
2808 2808
   {
2809
-    return $this->minimumSdk;
2809
+	return $this->minimumSdk;
2810 2810
   }
2811 2811
   public function setNativeCodes($nativeCodes)
2812 2812
   {
2813
-    $this->nativeCodes = $nativeCodes;
2813
+	$this->nativeCodes = $nativeCodes;
2814 2814
   }
2815 2815
   public function getNativeCodes()
2816 2816
   {
2817
-    return $this->nativeCodes;
2817
+	return $this->nativeCodes;
2818 2818
   }
2819 2819
   public function setPackageName($packageName)
2820 2820
   {
2821
-    $this->packageName = $packageName;
2821
+	$this->packageName = $packageName;
2822 2822
   }
2823 2823
   public function getPackageName()
2824 2824
   {
2825
-    return $this->packageName;
2825
+	return $this->packageName;
2826 2826
   }
2827 2827
   public function setUsesFeatures($usesFeatures)
2828 2828
   {
2829
-    $this->usesFeatures = $usesFeatures;
2829
+	$this->usesFeatures = $usesFeatures;
2830 2830
   }
2831 2831
   public function getUsesFeatures()
2832 2832
   {
2833
-    return $this->usesFeatures;
2833
+	return $this->usesFeatures;
2834 2834
   }
2835 2835
   public function setUsesPermissions($usesPermissions)
2836 2836
   {
2837
-    $this->usesPermissions = $usesPermissions;
2837
+	$this->usesPermissions = $usesPermissions;
2838 2838
   }
2839 2839
   public function getUsesPermissions()
2840 2840
   {
2841
-    return $this->usesPermissions;
2841
+	return $this->usesPermissions;
2842 2842
   }
2843 2843
   public function setVersionCode($versionCode)
2844 2844
   {
2845
-    $this->versionCode = $versionCode;
2845
+	$this->versionCode = $versionCode;
2846 2846
   }
2847 2847
   public function getVersionCode()
2848 2848
   {
2849
-    return $this->versionCode;
2849
+	return $this->versionCode;
2850 2850
   }
2851 2851
   public function setVersionName($versionName)
2852 2852
   {
2853
-    $this->versionName = $versionName;
2853
+	$this->versionName = $versionName;
2854 2854
   }
2855 2855
   public function getVersionName()
2856 2856
   {
2857
-    return $this->versionName;
2857
+	return $this->versionName;
2858 2858
   }
2859 2859
 }
2860 2860
 
@@ -2868,19 +2868,19 @@  discard block
 block discarded – undo
2868 2868
 
2869 2869
   public function setMaxSdkVersion($maxSdkVersion)
2870 2870
   {
2871
-    $this->maxSdkVersion = $maxSdkVersion;
2871
+	$this->maxSdkVersion = $maxSdkVersion;
2872 2872
   }
2873 2873
   public function getMaxSdkVersion()
2874 2874
   {
2875
-    return $this->maxSdkVersion;
2875
+	return $this->maxSdkVersion;
2876 2876
   }
2877 2877
   public function setName($name)
2878 2878
   {
2879
-    $this->name = $name;
2879
+	$this->name = $name;
2880 2880
   }
2881 2881
   public function getName()
2882 2882
   {
2883
-    return $this->name;
2883
+	return $this->name;
2884 2884
   }
2885 2885
 }
2886 2886
 
@@ -2895,27 +2895,27 @@  discard block
 block discarded – undo
2895 2895
 
2896 2896
   public function setId($id)
2897 2897
   {
2898
-    $this->id = $id;
2898
+	$this->id = $id;
2899 2899
   }
2900 2900
   public function getId()
2901 2901
   {
2902
-    return $this->id;
2902
+	return $this->id;
2903 2903
   }
2904 2904
   public function setSha1($sha1)
2905 2905
   {
2906
-    $this->sha1 = $sha1;
2906
+	$this->sha1 = $sha1;
2907 2907
   }
2908 2908
   public function getSha1()
2909 2909
   {
2910
-    return $this->sha1;
2910
+	return $this->sha1;
2911 2911
   }
2912 2912
   public function setUrl($url)
2913 2913
   {
2914
-    $this->url = $url;
2914
+	$this->url = $url;
2915 2915
   }
2916 2916
   public function getUrl()
2917 2917
   {
2918
-    return $this->url;
2918
+	return $this->url;
2919 2919
   }
2920 2920
 }
2921 2921
 
@@ -2930,11 +2930,11 @@  discard block
 block discarded – undo
2930 2930
 
2931 2931
   public function setDeleted($deleted)
2932 2932
   {
2933
-    $this->deleted = $deleted;
2933
+	$this->deleted = $deleted;
2934 2934
   }
2935 2935
   public function getDeleted()
2936 2936
   {
2937
-    return $this->deleted;
2937
+	return $this->deleted;
2938 2938
   }
2939 2939
 }
2940 2940
 
@@ -2949,11 +2949,11 @@  discard block
 block discarded – undo
2949 2949
 
2950 2950
   public function setImages($images)
2951 2951
   {
2952
-    $this->images = $images;
2952
+	$this->images = $images;
2953 2953
   }
2954 2954
   public function getImages()
2955 2955
   {
2956
-    return $this->images;
2956
+	return $this->images;
2957 2957
   }
2958 2958
 }
2959 2959
 
@@ -2967,11 +2967,11 @@  discard block
 block discarded – undo
2967 2967
 
2968 2968
   public function setImage(Google_Service_AndroidPublisher_Image $image)
2969 2969
   {
2970
-    $this->image = $image;
2970
+	$this->image = $image;
2971 2971
   }
2972 2972
   public function getImage()
2973 2973
   {
2974
-    return $this->image;
2974
+	return $this->image;
2975 2975
   }
2976 2976
 }
2977 2977
 
@@ -2998,91 +2998,91 @@  discard block
 block discarded – undo
2998 2998
 
2999 2999
   public function setDefaultLanguage($defaultLanguage)
3000 3000
   {
3001
-    $this->defaultLanguage = $defaultLanguage;
3001
+	$this->defaultLanguage = $defaultLanguage;
3002 3002
   }
3003 3003
   public function getDefaultLanguage()
3004 3004
   {
3005
-    return $this->defaultLanguage;
3005
+	return $this->defaultLanguage;
3006 3006
   }
3007 3007
   public function setDefaultPrice(Google_Service_AndroidPublisher_Price $defaultPrice)
3008 3008
   {
3009
-    $this->defaultPrice = $defaultPrice;
3009
+	$this->defaultPrice = $defaultPrice;
3010 3010
   }
3011 3011
   public function getDefaultPrice()
3012 3012
   {
3013
-    return $this->defaultPrice;
3013
+	return $this->defaultPrice;
3014 3014
   }
3015 3015
   public function setListings($listings)
3016 3016
   {
3017
-    $this->listings = $listings;
3017
+	$this->listings = $listings;
3018 3018
   }
3019 3019
   public function getListings()
3020 3020
   {
3021
-    return $this->listings;
3021
+	return $this->listings;
3022 3022
   }
3023 3023
   public function setPackageName($packageName)
3024 3024
   {
3025
-    $this->packageName = $packageName;
3025
+	$this->packageName = $packageName;
3026 3026
   }
3027 3027
   public function getPackageName()
3028 3028
   {
3029
-    return $this->packageName;
3029
+	return $this->packageName;
3030 3030
   }
3031 3031
   public function setPrices($prices)
3032 3032
   {
3033
-    $this->prices = $prices;
3033
+	$this->prices = $prices;
3034 3034
   }
3035 3035
   public function getPrices()
3036 3036
   {
3037
-    return $this->prices;
3037
+	return $this->prices;
3038 3038
   }
3039 3039
   public function setPurchaseType($purchaseType)
3040 3040
   {
3041
-    $this->purchaseType = $purchaseType;
3041
+	$this->purchaseType = $purchaseType;
3042 3042
   }
3043 3043
   public function getPurchaseType()
3044 3044
   {
3045
-    return $this->purchaseType;
3045
+	return $this->purchaseType;
3046 3046
   }
3047 3047
   public function setSeason(Google_Service_AndroidPublisher_Season $season)
3048 3048
   {
3049
-    $this->season = $season;
3049
+	$this->season = $season;
3050 3050
   }
3051 3051
   public function getSeason()
3052 3052
   {
3053
-    return $this->season;
3053
+	return $this->season;
3054 3054
   }
3055 3055
   public function setSku($sku)
3056 3056
   {
3057
-    $this->sku = $sku;
3057
+	$this->sku = $sku;
3058 3058
   }
3059 3059
   public function getSku()
3060 3060
   {
3061
-    return $this->sku;
3061
+	return $this->sku;
3062 3062
   }
3063 3063
   public function setStatus($status)
3064 3064
   {
3065
-    $this->status = $status;
3065
+	$this->status = $status;
3066 3066
   }
3067 3067
   public function getStatus()
3068 3068
   {
3069
-    return $this->status;
3069
+	return $this->status;
3070 3070
   }
3071 3071
   public function setSubscriptionPeriod($subscriptionPeriod)
3072 3072
   {
3073
-    $this->subscriptionPeriod = $subscriptionPeriod;
3073
+	$this->subscriptionPeriod = $subscriptionPeriod;
3074 3074
   }
3075 3075
   public function getSubscriptionPeriod()
3076 3076
   {
3077
-    return $this->subscriptionPeriod;
3077
+	return $this->subscriptionPeriod;
3078 3078
   }
3079 3079
   public function setTrialPeriod($trialPeriod)
3080 3080
   {
3081
-    $this->trialPeriod = $trialPeriod;
3081
+	$this->trialPeriod = $trialPeriod;
3082 3082
   }
3083 3083
   public function getTrialPeriod()
3084 3084
   {
3085
-    return $this->trialPeriod;
3085
+	return $this->trialPeriod;
3086 3086
   }
3087 3087
 }
3088 3088
 
@@ -3096,19 +3096,19 @@  discard block
 block discarded – undo
3096 3096
 
3097 3097
   public function setDescription($description)
3098 3098
   {
3099
-    $this->description = $description;
3099
+	$this->description = $description;
3100 3100
   }
3101 3101
   public function getDescription()
3102 3102
   {
3103
-    return $this->description;
3103
+	return $this->description;
3104 3104
   }
3105 3105
   public function setTitle($title)
3106 3106
   {
3107
-    $this->title = $title;
3107
+	$this->title = $title;
3108 3108
   }
3109 3109
   public function getTitle()
3110 3110
   {
3111
-    return $this->title;
3111
+	return $this->title;
3112 3112
   }
3113 3113
 }
3114 3114
 
@@ -3131,11 +3131,11 @@  discard block
 block discarded – undo
3131 3131
 
3132 3132
   public function setEntrys($entrys)
3133 3133
   {
3134
-    $this->entrys = $entrys;
3134
+	$this->entrys = $entrys;
3135 3135
   }
3136 3136
   public function getEntrys()
3137 3137
   {
3138
-    return $this->entrys;
3138
+	return $this->entrys;
3139 3139
   }
3140 3140
 }
3141 3141
 
@@ -3153,35 +3153,35 @@  discard block
 block discarded – undo
3153 3153
 
3154 3154
   public function setBatchId($batchId)
3155 3155
   {
3156
-    $this->batchId = $batchId;
3156
+	$this->batchId = $batchId;
3157 3157
   }
3158 3158
   public function getBatchId()
3159 3159
   {
3160
-    return $this->batchId;
3160
+	return $this->batchId;
3161 3161
   }
3162 3162
   public function setInappproductsinsertrequest(Google_Service_AndroidPublisher_InappproductsInsertRequest $inappproductsinsertrequest)
3163 3163
   {
3164
-    $this->inappproductsinsertrequest = $inappproductsinsertrequest;
3164
+	$this->inappproductsinsertrequest = $inappproductsinsertrequest;
3165 3165
   }
3166 3166
   public function getInappproductsinsertrequest()
3167 3167
   {
3168
-    return $this->inappproductsinsertrequest;
3168
+	return $this->inappproductsinsertrequest;
3169 3169
   }
3170 3170
   public function setInappproductsupdaterequest(Google_Service_AndroidPublisher_InappproductsUpdateRequest $inappproductsupdaterequest)
3171 3171
   {
3172
-    $this->inappproductsupdaterequest = $inappproductsupdaterequest;
3172
+	$this->inappproductsupdaterequest = $inappproductsupdaterequest;
3173 3173
   }
3174 3174
   public function getInappproductsupdaterequest()
3175 3175
   {
3176
-    return $this->inappproductsupdaterequest;
3176
+	return $this->inappproductsupdaterequest;
3177 3177
   }
3178 3178
   public function setMethodName($methodName)
3179 3179
   {
3180
-    $this->methodName = $methodName;
3180
+	$this->methodName = $methodName;
3181 3181
   }
3182 3182
   public function getMethodName()
3183 3183
   {
3184
-    return $this->methodName;
3184
+	return $this->methodName;
3185 3185
   }
3186 3186
 }
3187 3187
 
@@ -3197,19 +3197,19 @@  discard block
 block discarded – undo
3197 3197
 
3198 3198
   public function setEntrys($entrys)
3199 3199
   {
3200
-    $this->entrys = $entrys;
3200
+	$this->entrys = $entrys;
3201 3201
   }
3202 3202
   public function getEntrys()
3203 3203
   {
3204
-    return $this->entrys;
3204
+	return $this->entrys;
3205 3205
   }
3206 3206
   public function setKind($kind)
3207 3207
   {
3208
-    $this->kind = $kind;
3208
+	$this->kind = $kind;
3209 3209
   }
3210 3210
   public function getKind()
3211 3211
   {
3212
-    return $this->kind;
3212
+	return $this->kind;
3213 3213
   }
3214 3214
 }
3215 3215
 
@@ -3226,27 +3226,27 @@  discard block
 block discarded – undo
3226 3226
 
3227 3227
   public function setBatchId($batchId)
3228 3228
   {
3229
-    $this->batchId = $batchId;
3229
+	$this->batchId = $batchId;
3230 3230
   }
3231 3231
   public function getBatchId()
3232 3232
   {
3233
-    return $this->batchId;
3233
+	return $this->batchId;
3234 3234
   }
3235 3235
   public function setInappproductsinsertresponse(Google_Service_AndroidPublisher_InappproductsInsertResponse $inappproductsinsertresponse)
3236 3236
   {
3237
-    $this->inappproductsinsertresponse = $inappproductsinsertresponse;
3237
+	$this->inappproductsinsertresponse = $inappproductsinsertresponse;
3238 3238
   }
3239 3239
   public function getInappproductsinsertresponse()
3240 3240
   {
3241
-    return $this->inappproductsinsertresponse;
3241
+	return $this->inappproductsinsertresponse;
3242 3242
   }
3243 3243
   public function setInappproductsupdateresponse(Google_Service_AndroidPublisher_InappproductsUpdateResponse $inappproductsupdateresponse)
3244 3244
   {
3245
-    $this->inappproductsupdateresponse = $inappproductsupdateresponse;
3245
+	$this->inappproductsupdateresponse = $inappproductsupdateresponse;
3246 3246
   }
3247 3247
   public function getInappproductsupdateresponse()
3248 3248
   {
3249
-    return $this->inappproductsupdateresponse;
3249
+	return $this->inappproductsupdateresponse;
3250 3250
   }
3251 3251
 }
3252 3252
 
@@ -3260,11 +3260,11 @@  discard block
 block discarded – undo
3260 3260
 
3261 3261
   public function setInappproduct(Google_Service_AndroidPublisher_InAppProduct $inappproduct)
3262 3262
   {
3263
-    $this->inappproduct = $inappproduct;
3263
+	$this->inappproduct = $inappproduct;
3264 3264
   }
3265 3265
   public function getInappproduct()
3266 3266
   {
3267
-    return $this->inappproduct;
3267
+	return $this->inappproduct;
3268 3268
   }
3269 3269
 }
3270 3270
 
@@ -3278,11 +3278,11 @@  discard block
 block discarded – undo
3278 3278
 
3279 3279
   public function setInappproduct(Google_Service_AndroidPublisher_InAppProduct $inappproduct)
3280 3280
   {
3281
-    $this->inappproduct = $inappproduct;
3281
+	$this->inappproduct = $inappproduct;
3282 3282
   }
3283 3283
   public function getInappproduct()
3284 3284
   {
3285
-    return $this->inappproduct;
3285
+	return $this->inappproduct;
3286 3286
   }
3287 3287
 }
3288 3288
 
@@ -3302,35 +3302,35 @@  discard block
 block discarded – undo
3302 3302
 
3303 3303
   public function setInappproduct($inappproduct)
3304 3304
   {
3305
-    $this->inappproduct = $inappproduct;
3305
+	$this->inappproduct = $inappproduct;
3306 3306
   }
3307 3307
   public function getInappproduct()
3308 3308
   {
3309
-    return $this->inappproduct;
3309
+	return $this->inappproduct;
3310 3310
   }
3311 3311
   public function setKind($kind)
3312 3312
   {
3313
-    $this->kind = $kind;
3313
+	$this->kind = $kind;
3314 3314
   }
3315 3315
   public function getKind()
3316 3316
   {
3317
-    return $this->kind;
3317
+	return $this->kind;
3318 3318
   }
3319 3319
   public function setPageInfo(Google_Service_AndroidPublisher_PageInfo $pageInfo)
3320 3320
   {
3321
-    $this->pageInfo = $pageInfo;
3321
+	$this->pageInfo = $pageInfo;
3322 3322
   }
3323 3323
   public function getPageInfo()
3324 3324
   {
3325
-    return $this->pageInfo;
3325
+	return $this->pageInfo;
3326 3326
   }
3327 3327
   public function setTokenPagination(Google_Service_AndroidPublisher_TokenPagination $tokenPagination)
3328 3328
   {
3329
-    $this->tokenPagination = $tokenPagination;
3329
+	$this->tokenPagination = $tokenPagination;
3330 3330
   }
3331 3331
   public function getTokenPagination()
3332 3332
   {
3333
-    return $this->tokenPagination;
3333
+	return $this->tokenPagination;
3334 3334
   }
3335 3335
 }
3336 3336
 
@@ -3344,11 +3344,11 @@  discard block
 block discarded – undo
3344 3344
 
3345 3345
   public function setInappproduct(Google_Service_AndroidPublisher_InAppProduct $inappproduct)
3346 3346
   {
3347
-    $this->inappproduct = $inappproduct;
3347
+	$this->inappproduct = $inappproduct;
3348 3348
   }
3349 3349
   public function getInappproduct()
3350 3350
   {
3351
-    return $this->inappproduct;
3351
+	return $this->inappproduct;
3352 3352
   }
3353 3353
 }
3354 3354
 
@@ -3362,11 +3362,11 @@  discard block
 block discarded – undo
3362 3362
 
3363 3363
   public function setInappproduct(Google_Service_AndroidPublisher_InAppProduct $inappproduct)
3364 3364
   {
3365
-    $this->inappproduct = $inappproduct;
3365
+	$this->inappproduct = $inappproduct;
3366 3366
   }
3367 3367
   public function getInappproduct()
3368 3368
   {
3369
-    return $this->inappproduct;
3369
+	return $this->inappproduct;
3370 3370
   }
3371 3371
 }
3372 3372
 
@@ -3383,43 +3383,43 @@  discard block
 block discarded – undo
3383 3383
 
3384 3384
   public function setFullDescription($fullDescription)
3385 3385
   {
3386
-    $this->fullDescription = $fullDescription;
3386
+	$this->fullDescription = $fullDescription;
3387 3387
   }
3388 3388
   public function getFullDescription()
3389 3389
   {
3390
-    return $this->fullDescription;
3390
+	return $this->fullDescription;
3391 3391
   }
3392 3392
   public function setLanguage($language)
3393 3393
   {
3394
-    $this->language = $language;
3394
+	$this->language = $language;
3395 3395
   }
3396 3396
   public function getLanguage()
3397 3397
   {
3398
-    return $this->language;
3398
+	return $this->language;
3399 3399
   }
3400 3400
   public function setShortDescription($shortDescription)
3401 3401
   {
3402
-    $this->shortDescription = $shortDescription;
3402
+	$this->shortDescription = $shortDescription;
3403 3403
   }
3404 3404
   public function getShortDescription()
3405 3405
   {
3406
-    return $this->shortDescription;
3406
+	return $this->shortDescription;
3407 3407
   }
3408 3408
   public function setTitle($title)
3409 3409
   {
3410
-    $this->title = $title;
3410
+	$this->title = $title;
3411 3411
   }
3412 3412
   public function getTitle()
3413 3413
   {
3414
-    return $this->title;
3414
+	return $this->title;
3415 3415
   }
3416 3416
   public function setVideo($video)
3417 3417
   {
3418
-    $this->video = $video;
3418
+	$this->video = $video;
3419 3419
   }
3420 3420
   public function getVideo()
3421 3421
   {
3422
-    return $this->video;
3422
+	return $this->video;
3423 3423
   }
3424 3424
 }
3425 3425
 
@@ -3435,19 +3435,19 @@  discard block
 block discarded – undo
3435 3435
 
3436 3436
   public function setKind($kind)
3437 3437
   {
3438
-    $this->kind = $kind;
3438
+	$this->kind = $kind;
3439 3439
   }
3440 3440
   public function getKind()
3441 3441
   {
3442
-    return $this->kind;
3442
+	return $this->kind;
3443 3443
   }
3444 3444
   public function setListings($listings)
3445 3445
   {
3446
-    $this->listings = $listings;
3446
+	$this->listings = $listings;
3447 3447
   }
3448 3448
   public function getListings()
3449 3449
   {
3450
-    return $this->listings;
3450
+	return $this->listings;
3451 3451
   }
3452 3452
 }
3453 3453
 
@@ -3461,19 +3461,19 @@  discard block
 block discarded – undo
3461 3461
 
3462 3462
   public function setDay($day)
3463 3463
   {
3464
-    $this->day = $day;
3464
+	$this->day = $day;
3465 3465
   }
3466 3466
   public function getDay()
3467 3467
   {
3468
-    return $this->day;
3468
+	return $this->day;
3469 3469
   }
3470 3470
   public function setMonth($month)
3471 3471
   {
3472
-    $this->month = $month;
3472
+	$this->month = $month;
3473 3473
   }
3474 3474
   public function getMonth()
3475 3475
   {
3476
-    return $this->month;
3476
+	return $this->month;
3477 3477
   }
3478 3478
 }
3479 3479
 
@@ -3488,27 +3488,27 @@  discard block
 block discarded – undo
3488 3488
 
3489 3489
   public function setResultPerPage($resultPerPage)
3490 3490
   {
3491
-    $this->resultPerPage = $resultPerPage;
3491
+	$this->resultPerPage = $resultPerPage;
3492 3492
   }
3493 3493
   public function getResultPerPage()
3494 3494
   {
3495
-    return $this->resultPerPage;
3495
+	return $this->resultPerPage;
3496 3496
   }
3497 3497
   public function setStartIndex($startIndex)
3498 3498
   {
3499
-    $this->startIndex = $startIndex;
3499
+	$this->startIndex = $startIndex;
3500 3500
   }
3501 3501
   public function getStartIndex()
3502 3502
   {
3503
-    return $this->startIndex;
3503
+	return $this->startIndex;
3504 3504
   }
3505 3505
   public function setTotalResults($totalResults)
3506 3506
   {
3507
-    $this->totalResults = $totalResults;
3507
+	$this->totalResults = $totalResults;
3508 3508
   }
3509 3509
   public function getTotalResults()
3510 3510
   {
3511
-    return $this->totalResults;
3511
+	return $this->totalResults;
3512 3512
   }
3513 3513
 }
3514 3514
 
@@ -3522,19 +3522,19 @@  discard block
 block discarded – undo
3522 3522
 
3523 3523
   public function setCurrency($currency)
3524 3524
   {
3525
-    $this->currency = $currency;
3525
+	$this->currency = $currency;
3526 3526
   }
3527 3527
   public function getCurrency()
3528 3528
   {
3529
-    return $this->currency;
3529
+	return $this->currency;
3530 3530
   }
3531 3531
   public function setPriceMicros($priceMicros)
3532 3532
   {
3533
-    $this->priceMicros = $priceMicros;
3533
+	$this->priceMicros = $priceMicros;
3534 3534
   }
3535 3535
   public function getPriceMicros()
3536 3536
   {
3537
-    return $this->priceMicros;
3537
+	return $this->priceMicros;
3538 3538
   }
3539 3539
 }
3540 3540
 
@@ -3551,43 +3551,43 @@  discard block
 block discarded – undo
3551 3551
 
3552 3552
   public function setConsumptionState($consumptionState)
3553 3553
   {
3554
-    $this->consumptionState = $consumptionState;
3554
+	$this->consumptionState = $consumptionState;
3555 3555
   }
3556 3556
   public function getConsumptionState()
3557 3557
   {
3558
-    return $this->consumptionState;
3558
+	return $this->consumptionState;
3559 3559
   }
3560 3560
   public function setDeveloperPayload($developerPayload)
3561 3561
   {
3562
-    $this->developerPayload = $developerPayload;
3562
+	$this->developerPayload = $developerPayload;
3563 3563
   }
3564 3564
   public function getDeveloperPayload()
3565 3565
   {
3566
-    return $this->developerPayload;
3566
+	return $this->developerPayload;
3567 3567
   }
3568 3568
   public function setKind($kind)
3569 3569
   {
3570
-    $this->kind = $kind;
3570
+	$this->kind = $kind;
3571 3571
   }
3572 3572
   public function getKind()
3573 3573
   {
3574
-    return $this->kind;
3574
+	return $this->kind;
3575 3575
   }
3576 3576
   public function setPurchaseState($purchaseState)
3577 3577
   {
3578
-    $this->purchaseState = $purchaseState;
3578
+	$this->purchaseState = $purchaseState;
3579 3579
   }
3580 3580
   public function getPurchaseState()
3581 3581
   {
3582
-    return $this->purchaseState;
3582
+	return $this->purchaseState;
3583 3583
   }
3584 3584
   public function setPurchaseTimeMillis($purchaseTimeMillis)
3585 3585
   {
3586
-    $this->purchaseTimeMillis = $purchaseTimeMillis;
3586
+	$this->purchaseTimeMillis = $purchaseTimeMillis;
3587 3587
   }
3588 3588
   public function getPurchaseTimeMillis()
3589 3589
   {
3590
-    return $this->purchaseTimeMillis;
3590
+	return $this->purchaseTimeMillis;
3591 3591
   }
3592 3592
 }
3593 3593
 
@@ -3603,19 +3603,19 @@  discard block
 block discarded – undo
3603 3603
 
3604 3604
   public function setEnd(Google_Service_AndroidPublisher_MonthDay $end)
3605 3605
   {
3606
-    $this->end = $end;
3606
+	$this->end = $end;
3607 3607
   }
3608 3608
   public function getEnd()
3609 3609
   {
3610
-    return $this->end;
3610
+	return $this->end;
3611 3611
   }
3612 3612
   public function setStart(Google_Service_AndroidPublisher_MonthDay $start)
3613 3613
   {
3614
-    $this->start = $start;
3614
+	$this->start = $start;
3615 3615
   }
3616 3616
   public function getStart()
3617 3617
   {
3618
-    return $this->start;
3618
+	return $this->start;
3619 3619
   }
3620 3620
 }
3621 3621
 
@@ -3629,19 +3629,19 @@  discard block
 block discarded – undo
3629 3629
 
3630 3630
   public function setDesiredExpiryTimeMillis($desiredExpiryTimeMillis)
3631 3631
   {
3632
-    $this->desiredExpiryTimeMillis = $desiredExpiryTimeMillis;
3632
+	$this->desiredExpiryTimeMillis = $desiredExpiryTimeMillis;
3633 3633
   }
3634 3634
   public function getDesiredExpiryTimeMillis()
3635 3635
   {
3636
-    return $this->desiredExpiryTimeMillis;
3636
+	return $this->desiredExpiryTimeMillis;
3637 3637
   }
3638 3638
   public function setExpectedExpiryTimeMillis($expectedExpiryTimeMillis)
3639 3639
   {
3640
-    $this->expectedExpiryTimeMillis = $expectedExpiryTimeMillis;
3640
+	$this->expectedExpiryTimeMillis = $expectedExpiryTimeMillis;
3641 3641
   }
3642 3642
   public function getExpectedExpiryTimeMillis()
3643 3643
   {
3644
-    return $this->expectedExpiryTimeMillis;
3644
+	return $this->expectedExpiryTimeMillis;
3645 3645
   }
3646 3646
 }
3647 3647
 
@@ -3657,35 +3657,35 @@  discard block
 block discarded – undo
3657 3657
 
3658 3658
   public function setAutoRenewing($autoRenewing)
3659 3659
   {
3660
-    $this->autoRenewing = $autoRenewing;
3660
+	$this->autoRenewing = $autoRenewing;
3661 3661
   }
3662 3662
   public function getAutoRenewing()
3663 3663
   {
3664
-    return $this->autoRenewing;
3664
+	return $this->autoRenewing;
3665 3665
   }
3666 3666
   public function setExpiryTimeMillis($expiryTimeMillis)
3667 3667
   {
3668
-    $this->expiryTimeMillis = $expiryTimeMillis;
3668
+	$this->expiryTimeMillis = $expiryTimeMillis;
3669 3669
   }
3670 3670
   public function getExpiryTimeMillis()
3671 3671
   {
3672
-    return $this->expiryTimeMillis;
3672
+	return $this->expiryTimeMillis;
3673 3673
   }
3674 3674
   public function setKind($kind)
3675 3675
   {
3676
-    $this->kind = $kind;
3676
+	$this->kind = $kind;
3677 3677
   }
3678 3678
   public function getKind()
3679 3679
   {
3680
-    return $this->kind;
3680
+	return $this->kind;
3681 3681
   }
3682 3682
   public function setStartTimeMillis($startTimeMillis)
3683 3683
   {
3684
-    $this->startTimeMillis = $startTimeMillis;
3684
+	$this->startTimeMillis = $startTimeMillis;
3685 3685
   }
3686 3686
   public function getStartTimeMillis()
3687 3687
   {
3688
-    return $this->startTimeMillis;
3688
+	return $this->startTimeMillis;
3689 3689
   }
3690 3690
 }
3691 3691
 
@@ -3699,11 +3699,11 @@  discard block
 block discarded – undo
3699 3699
 
3700 3700
   public function setDeferralInfo(Google_Service_AndroidPublisher_SubscriptionDeferralInfo $deferralInfo)
3701 3701
   {
3702
-    $this->deferralInfo = $deferralInfo;
3702
+	$this->deferralInfo = $deferralInfo;
3703 3703
   }
3704 3704
   public function getDeferralInfo()
3705 3705
   {
3706
-    return $this->deferralInfo;
3706
+	return $this->deferralInfo;
3707 3707
   }
3708 3708
 }
3709 3709
 
@@ -3716,11 +3716,11 @@  discard block
 block discarded – undo
3716 3716
 
3717 3717
   public function setNewExpiryTimeMillis($newExpiryTimeMillis)
3718 3718
   {
3719
-    $this->newExpiryTimeMillis = $newExpiryTimeMillis;
3719
+	$this->newExpiryTimeMillis = $newExpiryTimeMillis;
3720 3720
   }
3721 3721
   public function getNewExpiryTimeMillis()
3722 3722
   {
3723
-    return $this->newExpiryTimeMillis;
3723
+	return $this->newExpiryTimeMillis;
3724 3724
   }
3725 3725
 }
3726 3726
 
@@ -3735,19 +3735,19 @@  discard block
 block discarded – undo
3735 3735
 
3736 3736
   public function setGoogleGroups($googleGroups)
3737 3737
   {
3738
-    $this->googleGroups = $googleGroups;
3738
+	$this->googleGroups = $googleGroups;
3739 3739
   }
3740 3740
   public function getGoogleGroups()
3741 3741
   {
3742
-    return $this->googleGroups;
3742
+	return $this->googleGroups;
3743 3743
   }
3744 3744
   public function setGooglePlusCommunities($googlePlusCommunities)
3745 3745
   {
3746
-    $this->googlePlusCommunities = $googlePlusCommunities;
3746
+	$this->googlePlusCommunities = $googlePlusCommunities;
3747 3747
   }
3748 3748
   public function getGooglePlusCommunities()
3749 3749
   {
3750
-    return $this->googlePlusCommunities;
3750
+	return $this->googlePlusCommunities;
3751 3751
   }
3752 3752
 }
3753 3753
 
@@ -3761,19 +3761,19 @@  discard block
 block discarded – undo
3761 3761
 
3762 3762
   public function setNextPageToken($nextPageToken)
3763 3763
   {
3764
-    $this->nextPageToken = $nextPageToken;
3764
+	$this->nextPageToken = $nextPageToken;
3765 3765
   }
3766 3766
   public function getNextPageToken()
3767 3767
   {
3768
-    return $this->nextPageToken;
3768
+	return $this->nextPageToken;
3769 3769
   }
3770 3770
   public function setPreviousPageToken($previousPageToken)
3771 3771
   {
3772
-    $this->previousPageToken = $previousPageToken;
3772
+	$this->previousPageToken = $previousPageToken;
3773 3773
   }
3774 3774
   public function getPreviousPageToken()
3775 3775
   {
3776
-    return $this->previousPageToken;
3776
+	return $this->previousPageToken;
3777 3777
   }
3778 3778
 }
3779 3779
 
@@ -3789,27 +3789,27 @@  discard block
 block discarded – undo
3789 3789
 
3790 3790
   public function setTrack($track)
3791 3791
   {
3792
-    $this->track = $track;
3792
+	$this->track = $track;
3793 3793
   }
3794 3794
   public function getTrack()
3795 3795
   {
3796
-    return $this->track;
3796
+	return $this->track;
3797 3797
   }
3798 3798
   public function setUserFraction($userFraction)
3799 3799
   {
3800
-    $this->userFraction = $userFraction;
3800
+	$this->userFraction = $userFraction;
3801 3801
   }
3802 3802
   public function getUserFraction()
3803 3803
   {
3804
-    return $this->userFraction;
3804
+	return $this->userFraction;
3805 3805
   }
3806 3806
   public function setVersionCodes($versionCodes)
3807 3807
   {
3808
-    $this->versionCodes = $versionCodes;
3808
+	$this->versionCodes = $versionCodes;
3809 3809
   }
3810 3810
   public function getVersionCodes()
3811 3811
   {
3812
-    return $this->versionCodes;
3812
+	return $this->versionCodes;
3813 3813
   }
3814 3814
 }
3815 3815
 
@@ -3825,18 +3825,18 @@  discard block
 block discarded – undo
3825 3825
 
3826 3826
   public function setKind($kind)
3827 3827
   {
3828
-    $this->kind = $kind;
3828
+	$this->kind = $kind;
3829 3829
   }
3830 3830
   public function getKind()
3831 3831
   {
3832
-    return $this->kind;
3832
+	return $this->kind;
3833 3833
   }
3834 3834
   public function setTracks($tracks)
3835 3835
   {
3836
-    $this->tracks = $tracks;
3836
+	$this->tracks = $tracks;
3837 3837
   }
3838 3838
   public function getTracks()
3839 3839
   {
3840
-    return $this->tracks;
3840
+	return $this->tracks;
3841 3841
   }
3842 3842
 }
Please login to merge, or discard this patch.
Spacing   +39 added lines, -39 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
                   'required' => true,
84 84
                 ),
85 85
               ),
86
-            ),'delete' => array(
86
+            ), 'delete' => array(
87 87
               'path' => '{packageName}/edits/{editId}',
88 88
               'httpMethod' => 'DELETE',
89 89
               'parameters' => array(
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                   'required' => true,
99 99
                 ),
100 100
               ),
101
-            ),'get' => array(
101
+            ), 'get' => array(
102 102
               'path' => '{packageName}/edits/{editId}',
103 103
               'httpMethod' => 'GET',
104 104
               'parameters' => array(
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                   'required' => true,
114 114
                 ),
115 115
               ),
116
-            ),'insert' => array(
116
+            ), 'insert' => array(
117 117
               'path' => '{packageName}/edits',
118 118
               'httpMethod' => 'POST',
119 119
               'parameters' => array(
@@ -123,7 +123,7 @@  discard block
 block discarded – undo
123 123
                   'required' => true,
124 124
                 ),
125 125
               ),
126
-            ),'validate' => array(
126
+            ), 'validate' => array(
127 127
               'path' => '{packageName}/edits/{editId}:validate',
128 128
               'httpMethod' => 'POST',
129 129
               'parameters' => array(
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                   'required' => true,
174 174
                 ),
175 175
               ),
176
-            ),'deleteall' => array(
176
+            ), 'deleteall' => array(
177 177
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
178 178
               'httpMethod' => 'DELETE',
179 179
               'parameters' => array(
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                   'required' => true,
194 194
                 ),
195 195
               ),
196
-            ),'get' => array(
196
+            ), 'get' => array(
197 197
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
198 198
               'httpMethod' => 'GET',
199 199
               'parameters' => array(
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
                   'required' => true,
219 219
                 ),
220 220
               ),
221
-            ),'list' => array(
221
+            ), 'list' => array(
222 222
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings',
223 223
               'httpMethod' => 'GET',
224 224
               'parameters' => array(
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
                   'required' => true,
239 239
                 ),
240 240
               ),
241
-            ),'patch' => array(
241
+            ), 'patch' => array(
242 242
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
243 243
               'httpMethod' => 'PATCH',
244 244
               'parameters' => array(
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
                   'required' => true,
264 264
                 ),
265 265
               ),
266
-            ),'update' => array(
266
+            ), 'update' => array(
267 267
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/listings/{language}',
268 268
               'httpMethod' => 'PUT',
269 269
               'parameters' => array(
@@ -313,7 +313,7 @@  discard block
 block discarded – undo
313 313
                   'required' => true,
314 314
                 ),
315 315
               ),
316
-            ),'list' => array(
316
+            ), 'list' => array(
317 317
               'path' => '{packageName}/edits/{editId}/apks',
318 318
               'httpMethod' => 'GET',
319 319
               'parameters' => array(
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
                   'required' => true,
329 329
                 ),
330 330
               ),
331
-            ),'upload' => array(
331
+            ), 'upload' => array(
332 332
               'path' => '{packageName}/edits/{editId}/apks',
333 333
               'httpMethod' => 'POST',
334 334
               'parameters' => array(
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                   'required' => true,
369 369
                 ),
370 370
               ),
371
-            ),'patch' => array(
371
+            ), 'patch' => array(
372 372
               'path' => '{packageName}/edits/{editId}/details',
373 373
               'httpMethod' => 'PATCH',
374 374
               'parameters' => array(
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
                   'required' => true,
384 384
                 ),
385 385
               ),
386
-            ),'update' => array(
386
+            ), 'update' => array(
387 387
               'path' => '{packageName}/edits/{editId}/details',
388 388
               'httpMethod' => 'PUT',
389 389
               'parameters' => array(
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
                   'required' => true,
434 434
                 ),
435 435
               ),
436
-            ),'patch' => array(
436
+            ), 'patch' => array(
437 437
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
438 438
               'httpMethod' => 'PATCH',
439 439
               'parameters' => array(
@@ -458,7 +458,7 @@  discard block
 block discarded – undo
458 458
                   'required' => true,
459 459
                 ),
460 460
               ),
461
-            ),'update' => array(
461
+            ), 'update' => array(
462 462
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
463 463
               'httpMethod' => 'PUT',
464 464
               'parameters' => array(
@@ -483,7 +483,7 @@  discard block
 block discarded – undo
483 483
                   'required' => true,
484 484
                 ),
485 485
               ),
486
-            ),'upload' => array(
486
+            ), 'upload' => array(
487 487
               'path' => '{packageName}/edits/{editId}/apks/{apkVersionCode}/expansionFiles/{expansionFileType}',
488 488
               'httpMethod' => 'POST',
489 489
               'parameters' => array(
@@ -548,7 +548,7 @@  discard block
 block discarded – undo
548 548
                   'required' => true,
549 549
                 ),
550 550
               ),
551
-            ),'deleteall' => array(
551
+            ), 'deleteall' => array(
552 552
               'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
553 553
               'httpMethod' => 'DELETE',
554 554
               'parameters' => array(
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
                   'required' => true,
574 574
                 ),
575 575
               ),
576
-            ),'list' => array(
576
+            ), 'list' => array(
577 577
               'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
578 578
               'httpMethod' => 'GET',
579 579
               'parameters' => array(
@@ -598,7 +598,7 @@  discard block
 block discarded – undo
598 598
                   'required' => true,
599 599
                 ),
600 600
               ),
601
-            ),'upload' => array(
601
+            ), 'upload' => array(
602 602
               'path' => '{packageName}/edits/{editId}/listings/{language}/{imageType}',
603 603
               'httpMethod' => 'POST',
604 604
               'parameters' => array(
@@ -653,7 +653,7 @@  discard block
 block discarded – undo
653 653
                   'required' => true,
654 654
                 ),
655 655
               ),
656
-            ),'deleteall' => array(
656
+            ), 'deleteall' => array(
657 657
               'path' => '{packageName}/edits/{editId}/listings',
658 658
               'httpMethod' => 'DELETE',
659 659
               'parameters' => array(
@@ -668,7 +668,7 @@  discard block
 block discarded – undo
668 668
                   'required' => true,
669 669
                 ),
670 670
               ),
671
-            ),'get' => array(
671
+            ), 'get' => array(
672 672
               'path' => '{packageName}/edits/{editId}/listings/{language}',
673 673
               'httpMethod' => 'GET',
674 674
               'parameters' => array(
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
                   'required' => true,
689 689
                 ),
690 690
               ),
691
-            ),'list' => array(
691
+            ), 'list' => array(
692 692
               'path' => '{packageName}/edits/{editId}/listings',
693 693
               'httpMethod' => 'GET',
694 694
               'parameters' => array(
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
                   'required' => true,
704 704
                 ),
705 705
               ),
706
-            ),'patch' => array(
706
+            ), 'patch' => array(
707 707
               'path' => '{packageName}/edits/{editId}/listings/{language}',
708 708
               'httpMethod' => 'PATCH',
709 709
               'parameters' => array(
@@ -723,7 +723,7 @@  discard block
 block discarded – undo
723 723
                   'required' => true,
724 724
                 ),
725 725
               ),
726
-            ),'update' => array(
726
+            ), 'update' => array(
727 727
               'path' => '{packageName}/edits/{editId}/listings/{language}',
728 728
               'httpMethod' => 'PUT',
729 729
               'parameters' => array(
@@ -773,7 +773,7 @@  discard block
 block discarded – undo
773 773
                   'required' => true,
774 774
                 ),
775 775
               ),
776
-            ),'patch' => array(
776
+            ), 'patch' => array(
777 777
               'path' => '{packageName}/edits/{editId}/testers/{track}',
778 778
               'httpMethod' => 'PATCH',
779 779
               'parameters' => array(
@@ -793,7 +793,7 @@  discard block
 block discarded – undo
793 793
                   'required' => true,
794 794
                 ),
795 795
               ),
796
-            ),'update' => array(
796
+            ), 'update' => array(
797 797
               'path' => '{packageName}/edits/{editId}/testers/{track}',
798 798
               'httpMethod' => 'PUT',
799 799
               'parameters' => array(
@@ -843,7 +843,7 @@  discard block
 block discarded – undo
843 843
                   'required' => true,
844 844
                 ),
845 845
               ),
846
-            ),'list' => array(
846
+            ), 'list' => array(
847 847
               'path' => '{packageName}/edits/{editId}/tracks',
848 848
               'httpMethod' => 'GET',
849 849
               'parameters' => array(
@@ -858,7 +858,7 @@  discard block
 block discarded – undo
858 858
                   'required' => true,
859 859
                 ),
860 860
               ),
861
-            ),'patch' => array(
861
+            ), 'patch' => array(
862 862
               'path' => '{packageName}/edits/{editId}/tracks/{track}',
863 863
               'httpMethod' => 'PATCH',
864 864
               'parameters' => array(
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
                   'required' => true,
879 879
                 ),
880 880
               ),
881
-            ),'update' => array(
881
+            ), 'update' => array(
882 882
               'path' => '{packageName}/edits/{editId}/tracks/{track}',
883 883
               'httpMethod' => 'PUT',
884 884
               'parameters' => array(
@@ -948,7 +948,7 @@  discard block
 block discarded – undo
948 948
               'path' => 'inappproducts/batch',
949 949
               'httpMethod' => 'POST',
950 950
               'parameters' => array(),
951
-            ),'delete' => array(
951
+            ), 'delete' => array(
952 952
               'path' => '{packageName}/inappproducts/{sku}',
953 953
               'httpMethod' => 'DELETE',
954 954
               'parameters' => array(
@@ -963,7 +963,7 @@  discard block
 block discarded – undo
963 963
                   'required' => true,
964 964
                 ),
965 965
               ),
966
-            ),'get' => array(
966
+            ), 'get' => array(
967 967
               'path' => '{packageName}/inappproducts/{sku}',
968 968
               'httpMethod' => 'GET',
969 969
               'parameters' => array(
@@ -978,7 +978,7 @@  discard block
 block discarded – undo
978 978
                   'required' => true,
979 979
                 ),
980 980
               ),
981
-            ),'insert' => array(
981
+            ), 'insert' => array(
982 982
               'path' => '{packageName}/inappproducts',
983 983
               'httpMethod' => 'POST',
984 984
               'parameters' => array(
@@ -992,7 +992,7 @@  discard block
 block discarded – undo
992 992
                   'type' => 'boolean',
993 993
                 ),
994 994
               ),
995
-            ),'list' => array(
995
+            ), 'list' => array(
996 996
               'path' => '{packageName}/inappproducts',
997 997
               'httpMethod' => 'GET',
998 998
               'parameters' => array(
@@ -1014,7 +1014,7 @@  discard block
 block discarded – undo
1014 1014
                   'type' => 'integer',
1015 1015
                 ),
1016 1016
               ),
1017
-            ),'patch' => array(
1017
+            ), 'patch' => array(
1018 1018
               'path' => '{packageName}/inappproducts/{sku}',
1019 1019
               'httpMethod' => 'PATCH',
1020 1020
               'parameters' => array(
@@ -1033,7 +1033,7 @@  discard block
 block discarded – undo
1033 1033
                   'type' => 'boolean',
1034 1034
                 ),
1035 1035
               ),
1036
-            ),'update' => array(
1036
+            ), 'update' => array(
1037 1037
               'path' => '{packageName}/inappproducts/{sku}',
1038 1038
               'httpMethod' => 'PUT',
1039 1039
               'parameters' => array(
@@ -1112,7 +1112,7 @@  discard block
 block discarded – undo
1112 1112
                   'required' => true,
1113 1113
                 ),
1114 1114
               ),
1115
-            ),'defer' => array(
1115
+            ), 'defer' => array(
1116 1116
               'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:defer',
1117 1117
               'httpMethod' => 'POST',
1118 1118
               'parameters' => array(
@@ -1132,7 +1132,7 @@  discard block
 block discarded – undo
1132 1132
                   'required' => true,
1133 1133
                 ),
1134 1134
               ),
1135
-            ),'get' => array(
1135
+            ), 'get' => array(
1136 1136
               'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}',
1137 1137
               'httpMethod' => 'GET',
1138 1138
               'parameters' => array(
@@ -1152,7 +1152,7 @@  discard block
 block discarded – undo
1152 1152
                   'required' => true,
1153 1153
                 ),
1154 1154
               ),
1155
-            ),'refund' => array(
1155
+            ), 'refund' => array(
1156 1156
               'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:refund',
1157 1157
               'httpMethod' => 'POST',
1158 1158
               'parameters' => array(
@@ -1172,7 +1172,7 @@  discard block
 block discarded – undo
1172 1172
                   'required' => true,
1173 1173
                 ),
1174 1174
               ),
1175
-            ),'revoke' => array(
1175
+            ), 'revoke' => array(
1176 1176
               'path' => '{packageName}/purchases/subscriptions/{subscriptionId}/tokens/{token}:revoke',
1177 1177
               'httpMethod' => 'POST',
1178 1178
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/AppState.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -205,7 +205,7 @@
 block discarded – undo
205 205
    * of concurrent writes. Maximum per-key size is 128KB. (states.update)
206 206
    *
207 207
    * @param int $stateKey The key for the data to be retrieved.
208
-   * @param Google_UpdateRequest $postBody
208
+   * @param Google_Service_AppState_UpdateRequest $postBody
209 209
    * @param array $optParams Optional parameters.
210 210
    *
211 211
    * @opt_param string currentStateVersion The version of the app state your
Please login to merge, or discard this patch.
Indentation   +112 added lines, -112 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your data for this application. */
34 34
   const APPSTATE =
35
-      "https://www.googleapis.com/auth/appstate";
35
+	  "https://www.googleapis.com/auth/appstate";
36 36
 
37 37
   public $states;
38 38
   
@@ -44,79 +44,79 @@  discard block
 block discarded – undo
44 44
    */
45 45
   public function __construct(Google_Client $client)
46 46
   {
47
-    parent::__construct($client);
48
-    $this->rootUrl = 'https://www.googleapis.com/';
49
-    $this->servicePath = 'appstate/v1/';
50
-    $this->version = 'v1';
51
-    $this->serviceName = 'appstate';
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'appstate/v1/';
50
+	$this->version = 'v1';
51
+	$this->serviceName = 'appstate';
52 52
 
53
-    $this->states = new Google_Service_AppState_States_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'states',
57
-        array(
58
-          'methods' => array(
59
-            'clear' => array(
60
-              'path' => 'states/{stateKey}/clear',
61
-              'httpMethod' => 'POST',
62
-              'parameters' => array(
63
-                'stateKey' => array(
64
-                  'location' => 'path',
65
-                  'type' => 'integer',
66
-                  'required' => true,
67
-                ),
68
-                'currentDataVersion' => array(
69
-                  'location' => 'query',
70
-                  'type' => 'string',
71
-                ),
72
-              ),
73
-            ),'delete' => array(
74
-              'path' => 'states/{stateKey}',
75
-              'httpMethod' => 'DELETE',
76
-              'parameters' => array(
77
-                'stateKey' => array(
78
-                  'location' => 'path',
79
-                  'type' => 'integer',
80
-                  'required' => true,
81
-                ),
82
-              ),
83
-            ),'get' => array(
84
-              'path' => 'states/{stateKey}',
85
-              'httpMethod' => 'GET',
86
-              'parameters' => array(
87
-                'stateKey' => array(
88
-                  'location' => 'path',
89
-                  'type' => 'integer',
90
-                  'required' => true,
91
-                ),
92
-              ),
93
-            ),'list' => array(
94
-              'path' => 'states',
95
-              'httpMethod' => 'GET',
96
-              'parameters' => array(
97
-                'includeData' => array(
98
-                  'location' => 'query',
99
-                  'type' => 'boolean',
100
-                ),
101
-              ),
102
-            ),'update' => array(
103
-              'path' => 'states/{stateKey}',
104
-              'httpMethod' => 'PUT',
105
-              'parameters' => array(
106
-                'stateKey' => array(
107
-                  'location' => 'path',
108
-                  'type' => 'integer',
109
-                  'required' => true,
110
-                ),
111
-                'currentStateVersion' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-              ),
116
-            ),
117
-          )
118
-        )
119
-    );
53
+	$this->states = new Google_Service_AppState_States_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'states',
57
+		array(
58
+		  'methods' => array(
59
+			'clear' => array(
60
+			  'path' => 'states/{stateKey}/clear',
61
+			  'httpMethod' => 'POST',
62
+			  'parameters' => array(
63
+				'stateKey' => array(
64
+				  'location' => 'path',
65
+				  'type' => 'integer',
66
+				  'required' => true,
67
+				),
68
+				'currentDataVersion' => array(
69
+				  'location' => 'query',
70
+				  'type' => 'string',
71
+				),
72
+			  ),
73
+			),'delete' => array(
74
+			  'path' => 'states/{stateKey}',
75
+			  'httpMethod' => 'DELETE',
76
+			  'parameters' => array(
77
+				'stateKey' => array(
78
+				  'location' => 'path',
79
+				  'type' => 'integer',
80
+				  'required' => true,
81
+				),
82
+			  ),
83
+			),'get' => array(
84
+			  'path' => 'states/{stateKey}',
85
+			  'httpMethod' => 'GET',
86
+			  'parameters' => array(
87
+				'stateKey' => array(
88
+				  'location' => 'path',
89
+				  'type' => 'integer',
90
+				  'required' => true,
91
+				),
92
+			  ),
93
+			),'list' => array(
94
+			  'path' => 'states',
95
+			  'httpMethod' => 'GET',
96
+			  'parameters' => array(
97
+				'includeData' => array(
98
+				  'location' => 'query',
99
+				  'type' => 'boolean',
100
+				),
101
+			  ),
102
+			),'update' => array(
103
+			  'path' => 'states/{stateKey}',
104
+			  'httpMethod' => 'PUT',
105
+			  'parameters' => array(
106
+				'stateKey' => array(
107
+				  'location' => 'path',
108
+				  'type' => 'integer',
109
+				  'required' => true,
110
+				),
111
+				'currentStateVersion' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+			  ),
116
+			),
117
+		  )
118
+		)
119
+	);
120 120
   }
121 121
 }
122 122
 
@@ -146,9 +146,9 @@  discard block
 block discarded – undo
146 146
    */
147 147
   public function clear($stateKey, $optParams = array())
148 148
   {
149
-    $params = array('stateKey' => $stateKey);
150
-    $params = array_merge($params, $optParams);
151
-    return $this->call('clear', array($params), "Google_Service_AppState_WriteResult");
149
+	$params = array('stateKey' => $stateKey);
150
+	$params = array_merge($params, $optParams);
151
+	return $this->call('clear', array($params), "Google_Service_AppState_WriteResult");
152 152
   }
153 153
 
154 154
   /**
@@ -163,9 +163,9 @@  discard block
 block discarded – undo
163 163
    */
164 164
   public function delete($stateKey, $optParams = array())
165 165
   {
166
-    $params = array('stateKey' => $stateKey);
167
-    $params = array_merge($params, $optParams);
168
-    return $this->call('delete', array($params));
166
+	$params = array('stateKey' => $stateKey);
167
+	$params = array_merge($params, $optParams);
168
+	return $this->call('delete', array($params));
169 169
   }
170 170
 
171 171
   /**
@@ -178,9 +178,9 @@  discard block
 block discarded – undo
178 178
    */
179 179
   public function get($stateKey, $optParams = array())
180 180
   {
181
-    $params = array('stateKey' => $stateKey);
182
-    $params = array_merge($params, $optParams);
183
-    return $this->call('get', array($params), "Google_Service_AppState_GetResponse");
181
+	$params = array('stateKey' => $stateKey);
182
+	$params = array_merge($params, $optParams);
183
+	return $this->call('get', array($params), "Google_Service_AppState_GetResponse");
184 184
   }
185 185
 
186 186
   /**
@@ -194,9 +194,9 @@  discard block
 block discarded – undo
194 194
    */
195 195
   public function listStates($optParams = array())
196 196
   {
197
-    $params = array();
198
-    $params = array_merge($params, $optParams);
199
-    return $this->call('list', array($params), "Google_Service_AppState_ListResponse");
197
+	$params = array();
198
+	$params = array_merge($params, $optParams);
199
+	return $this->call('list', array($params), "Google_Service_AppState_ListResponse");
200 200
   }
201 201
 
202 202
   /**
@@ -217,9 +217,9 @@  discard block
 block discarded – undo
217 217
    */
218 218
   public function update($stateKey, Google_Service_AppState_UpdateRequest $postBody, $optParams = array())
219 219
   {
220
-    $params = array('stateKey' => $stateKey, 'postBody' => $postBody);
221
-    $params = array_merge($params, $optParams);
222
-    return $this->call('update', array($params), "Google_Service_AppState_WriteResult");
220
+	$params = array('stateKey' => $stateKey, 'postBody' => $postBody);
221
+	$params = array_merge($params, $optParams);
222
+	return $this->call('update', array($params), "Google_Service_AppState_WriteResult");
223 223
   }
224 224
 }
225 225
 
@@ -238,35 +238,35 @@  discard block
 block discarded – undo
238 238
 
239 239
   public function setCurrentStateVersion($currentStateVersion)
240 240
   {
241
-    $this->currentStateVersion = $currentStateVersion;
241
+	$this->currentStateVersion = $currentStateVersion;
242 242
   }
243 243
   public function getCurrentStateVersion()
244 244
   {
245
-    return $this->currentStateVersion;
245
+	return $this->currentStateVersion;
246 246
   }
247 247
   public function setData($data)
248 248
   {
249
-    $this->data = $data;
249
+	$this->data = $data;
250 250
   }
251 251
   public function getData()
252 252
   {
253
-    return $this->data;
253
+	return $this->data;
254 254
   }
255 255
   public function setKind($kind)
256 256
   {
257
-    $this->kind = $kind;
257
+	$this->kind = $kind;
258 258
   }
259 259
   public function getKind()
260 260
   {
261
-    return $this->kind;
261
+	return $this->kind;
262 262
   }
263 263
   public function setStateKey($stateKey)
264 264
   {
265
-    $this->stateKey = $stateKey;
265
+	$this->stateKey = $stateKey;
266 266
   }
267 267
   public function getStateKey()
268 268
   {
269
-    return $this->stateKey;
269
+	return $this->stateKey;
270 270
   }
271 271
 }
272 272
 
@@ -283,27 +283,27 @@  discard block
 block discarded – undo
283 283
 
284 284
   public function setItems($items)
285 285
   {
286
-    $this->items = $items;
286
+	$this->items = $items;
287 287
   }
288 288
   public function getItems()
289 289
   {
290
-    return $this->items;
290
+	return $this->items;
291 291
   }
292 292
   public function setKind($kind)
293 293
   {
294
-    $this->kind = $kind;
294
+	$this->kind = $kind;
295 295
   }
296 296
   public function getKind()
297 297
   {
298
-    return $this->kind;
298
+	return $this->kind;
299 299
   }
300 300
   public function setMaximumKeyCount($maximumKeyCount)
301 301
   {
302
-    $this->maximumKeyCount = $maximumKeyCount;
302
+	$this->maximumKeyCount = $maximumKeyCount;
303 303
   }
304 304
   public function getMaximumKeyCount()
305 305
   {
306
-    return $this->maximumKeyCount;
306
+	return $this->maximumKeyCount;
307 307
   }
308 308
 }
309 309
 
@@ -317,19 +317,19 @@  discard block
 block discarded – undo
317 317
 
318 318
   public function setData($data)
319 319
   {
320
-    $this->data = $data;
320
+	$this->data = $data;
321 321
   }
322 322
   public function getData()
323 323
   {
324
-    return $this->data;
324
+	return $this->data;
325 325
   }
326 326
   public function setKind($kind)
327 327
   {
328
-    $this->kind = $kind;
328
+	$this->kind = $kind;
329 329
   }
330 330
   public function getKind()
331 331
   {
332
-    return $this->kind;
332
+	return $this->kind;
333 333
   }
334 334
 }
335 335
 
@@ -344,26 +344,26 @@  discard block
 block discarded – undo
344 344
 
345 345
   public function setCurrentStateVersion($currentStateVersion)
346 346
   {
347
-    $this->currentStateVersion = $currentStateVersion;
347
+	$this->currentStateVersion = $currentStateVersion;
348 348
   }
349 349
   public function getCurrentStateVersion()
350 350
   {
351
-    return $this->currentStateVersion;
351
+	return $this->currentStateVersion;
352 352
   }
353 353
   public function setKind($kind)
354 354
   {
355
-    $this->kind = $kind;
355
+	$this->kind = $kind;
356 356
   }
357 357
   public function getKind()
358 358
   {
359
-    return $this->kind;
359
+	return $this->kind;
360 360
   }
361 361
   public function setStateKey($stateKey)
362 362
   {
363
-    $this->stateKey = $stateKey;
363
+	$this->stateKey = $stateKey;
364 364
   }
365 365
   public function getStateKey()
366 366
   {
367
-    return $this->stateKey;
367
+	return $this->stateKey;
368 368
   }
369 369
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                   'type' => 'string',
71 71
                 ),
72 72
               ),
73
-            ),'delete' => array(
73
+            ), 'delete' => array(
74 74
               'path' => 'states/{stateKey}',
75 75
               'httpMethod' => 'DELETE',
76 76
               'parameters' => array(
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
                   'required' => true,
81 81
                 ),
82 82
               ),
83
-            ),'get' => array(
83
+            ), 'get' => array(
84 84
               'path' => 'states/{stateKey}',
85 85
               'httpMethod' => 'GET',
86 86
               'parameters' => array(
@@ -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' => 'states',
95 95
               'httpMethod' => 'GET',
96 96
               'parameters' => array(
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
                   'type' => 'boolean',
100 100
                 ),
101 101
               ),
102
-            ),'update' => array(
102
+            ), 'update' => array(
103 103
               'path' => 'states/{stateKey}',
104 104
               'httpMethod' => 'PUT',
105 105
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Autoscaler.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
    *
350 350
    * @param string $project Project ID of Autoscaler resource.
351 351
    * @param string $zone Zone name of Autoscaler resource.
352
-   * @param Google_Autoscaler $postBody
352
+   * @param Google_Service_Autoscaler_Autoscaler $postBody
353 353
    * @param array $optParams Optional parameters.
354 354
    * @return Google_Service_Autoscaler_Operation
355 355
    */
@@ -386,7 +386,7 @@  discard block
 block discarded – undo
386 386
    * @param string $project Project ID of Autoscaler resource.
387 387
    * @param string $zone Zone name of Autoscaler resource.
388 388
    * @param string $autoscaler Name of the Autoscaler resource.
389
-   * @param Google_Autoscaler $postBody
389
+   * @param Google_Service_Autoscaler_Autoscaler $postBody
390 390
    * @param array $optParams Optional parameters.
391 391
    * @return Google_Service_Autoscaler_Operation
392 392
    */
@@ -403,7 +403,7 @@  discard block
 block discarded – undo
403 403
    * @param string $project Project ID of Autoscaler resource.
404 404
    * @param string $zone Zone name of Autoscaler resource.
405 405
    * @param string $autoscaler Name of the Autoscaler resource.
406
-   * @param Google_Autoscaler $postBody
406
+   * @param Google_Service_Autoscaler_Autoscaler $postBody
407 407
    * @param array $optParams Optional parameters.
408 408
    * @return Google_Service_Autoscaler_Operation
409 409
    */
Please login to merge, or discard this patch.
Indentation   +443 added lines, -443 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your Google Compute Engine resources. */
35 35
   const COMPUTE =
36
-      "https://www.googleapis.com/auth/compute";
36
+	  "https://www.googleapis.com/auth/compute";
37 37
   /** View your Google Compute Engine resources. */
38 38
   const COMPUTE_READONLY =
39
-      "https://www.googleapis.com/auth/compute.readonly";
39
+	  "https://www.googleapis.com/auth/compute.readonly";
40 40
 
41 41
   public $autoscalers;
42 42
   public $zoneOperations;
@@ -50,253 +50,253 @@  discard block
 block discarded – undo
50 50
    */
51 51
   public function __construct(Google_Client $client)
52 52
   {
53
-    parent::__construct($client);
54
-    $this->rootUrl = 'https://www.googleapis.com/';
55
-    $this->servicePath = 'autoscaler/v1beta2/';
56
-    $this->version = 'v1beta2';
57
-    $this->serviceName = 'autoscaler';
58
-
59
-    $this->autoscalers = new Google_Service_Autoscaler_Autoscalers_Resource(
60
-        $this,
61
-        $this->serviceName,
62
-        'autoscalers',
63
-        array(
64
-          'methods' => array(
65
-            'delete' => array(
66
-              'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
67
-              'httpMethod' => 'DELETE',
68
-              'parameters' => array(
69
-                'project' => array(
70
-                  'location' => 'path',
71
-                  'type' => 'string',
72
-                  'required' => true,
73
-                ),
74
-                'zone' => array(
75
-                  'location' => 'path',
76
-                  'type' => 'string',
77
-                  'required' => true,
78
-                ),
79
-                'autoscaler' => array(
80
-                  'location' => 'path',
81
-                  'type' => 'string',
82
-                  'required' => true,
83
-                ),
84
-              ),
85
-            ),'get' => array(
86
-              'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'project' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-                'zone' => array(
95
-                  'location' => 'path',
96
-                  'type' => 'string',
97
-                  'required' => true,
98
-                ),
99
-                'autoscaler' => array(
100
-                  'location' => 'path',
101
-                  'type' => 'string',
102
-                  'required' => true,
103
-                ),
104
-              ),
105
-            ),'insert' => array(
106
-              'path' => 'projects/{project}/zones/{zone}/autoscalers',
107
-              'httpMethod' => 'POST',
108
-              'parameters' => array(
109
-                'project' => array(
110
-                  'location' => 'path',
111
-                  'type' => 'string',
112
-                  'required' => true,
113
-                ),
114
-                'zone' => array(
115
-                  'location' => 'path',
116
-                  'type' => 'string',
117
-                  'required' => true,
118
-                ),
119
-              ),
120
-            ),'list' => array(
121
-              'path' => 'projects/{project}/zones/{zone}/autoscalers',
122
-              'httpMethod' => 'GET',
123
-              'parameters' => array(
124
-                'project' => array(
125
-                  'location' => 'path',
126
-                  'type' => 'string',
127
-                  'required' => true,
128
-                ),
129
-                'zone' => array(
130
-                  'location' => 'path',
131
-                  'type' => 'string',
132
-                  'required' => true,
133
-                ),
134
-                'filter' => array(
135
-                  'location' => 'query',
136
-                  'type' => 'string',
137
-                ),
138
-                'pageToken' => array(
139
-                  'location' => 'query',
140
-                  'type' => 'string',
141
-                ),
142
-                'maxResults' => array(
143
-                  'location' => 'query',
144
-                  'type' => 'integer',
145
-                ),
146
-              ),
147
-            ),'patch' => array(
148
-              'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
149
-              'httpMethod' => 'PATCH',
150
-              'parameters' => array(
151
-                'project' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'zone' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-                'autoscaler' => array(
162
-                  'location' => 'path',
163
-                  'type' => 'string',
164
-                  'required' => true,
165
-                ),
166
-              ),
167
-            ),'update' => array(
168
-              'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
169
-              'httpMethod' => 'PUT',
170
-              'parameters' => array(
171
-                'project' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-                'zone' => array(
177
-                  'location' => 'path',
178
-                  'type' => 'string',
179
-                  'required' => true,
180
-                ),
181
-                'autoscaler' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-              ),
187
-            ),
188
-          )
189
-        )
190
-    );
191
-    $this->zoneOperations = new Google_Service_Autoscaler_ZoneOperations_Resource(
192
-        $this,
193
-        $this->serviceName,
194
-        'zoneOperations',
195
-        array(
196
-          'methods' => array(
197
-            'delete' => array(
198
-              'path' => '{project}/zones/{zone}/operations/{operation}',
199
-              'httpMethod' => 'DELETE',
200
-              'parameters' => array(
201
-                'project' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-                'zone' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-                'operation' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-              ),
217
-            ),'get' => array(
218
-              'path' => '{project}/zones/{zone}/operations/{operation}',
219
-              'httpMethod' => 'GET',
220
-              'parameters' => array(
221
-                'project' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'zone' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'operation' => array(
232
-                  'location' => 'path',
233
-                  'type' => 'string',
234
-                  'required' => true,
235
-                ),
236
-              ),
237
-            ),'list' => array(
238
-              'path' => '{project}/zones/{zone}/operations',
239
-              'httpMethod' => 'GET',
240
-              'parameters' => array(
241
-                'project' => array(
242
-                  'location' => 'path',
243
-                  'type' => 'string',
244
-                  'required' => true,
245
-                ),
246
-                'zone' => array(
247
-                  'location' => 'path',
248
-                  'type' => 'string',
249
-                  'required' => true,
250
-                ),
251
-                'filter' => array(
252
-                  'location' => 'query',
253
-                  'type' => 'string',
254
-                ),
255
-                'pageToken' => array(
256
-                  'location' => 'query',
257
-                  'type' => 'string',
258
-                ),
259
-                'maxResults' => array(
260
-                  'location' => 'query',
261
-                  'type' => 'integer',
262
-                ),
263
-              ),
264
-            ),
265
-          )
266
-        )
267
-    );
268
-    $this->zones = new Google_Service_Autoscaler_Zones_Resource(
269
-        $this,
270
-        $this->serviceName,
271
-        'zones',
272
-        array(
273
-          'methods' => array(
274
-            'list' => array(
275
-              'path' => '{project}/zones',
276
-              'httpMethod' => 'GET',
277
-              'parameters' => array(
278
-                'project' => array(
279
-                  'location' => 'path',
280
-                  'type' => 'string',
281
-                  'required' => true,
282
-                ),
283
-                'filter' => array(
284
-                  'location' => 'query',
285
-                  'type' => 'string',
286
-                ),
287
-                'pageToken' => array(
288
-                  'location' => 'query',
289
-                  'type' => 'string',
290
-                ),
291
-                'maxResults' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'integer',
294
-                ),
295
-              ),
296
-            ),
297
-          )
298
-        )
299
-    );
53
+	parent::__construct($client);
54
+	$this->rootUrl = 'https://www.googleapis.com/';
55
+	$this->servicePath = 'autoscaler/v1beta2/';
56
+	$this->version = 'v1beta2';
57
+	$this->serviceName = 'autoscaler';
58
+
59
+	$this->autoscalers = new Google_Service_Autoscaler_Autoscalers_Resource(
60
+		$this,
61
+		$this->serviceName,
62
+		'autoscalers',
63
+		array(
64
+		  'methods' => array(
65
+			'delete' => array(
66
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
67
+			  'httpMethod' => 'DELETE',
68
+			  'parameters' => array(
69
+				'project' => array(
70
+				  'location' => 'path',
71
+				  'type' => 'string',
72
+				  'required' => true,
73
+				),
74
+				'zone' => array(
75
+				  'location' => 'path',
76
+				  'type' => 'string',
77
+				  'required' => true,
78
+				),
79
+				'autoscaler' => array(
80
+				  'location' => 'path',
81
+				  'type' => 'string',
82
+				  'required' => true,
83
+				),
84
+			  ),
85
+			),'get' => array(
86
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'project' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+				'zone' => array(
95
+				  'location' => 'path',
96
+				  'type' => 'string',
97
+				  'required' => true,
98
+				),
99
+				'autoscaler' => array(
100
+				  'location' => 'path',
101
+				  'type' => 'string',
102
+				  'required' => true,
103
+				),
104
+			  ),
105
+			),'insert' => array(
106
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers',
107
+			  'httpMethod' => 'POST',
108
+			  'parameters' => array(
109
+				'project' => array(
110
+				  'location' => 'path',
111
+				  'type' => 'string',
112
+				  'required' => true,
113
+				),
114
+				'zone' => array(
115
+				  'location' => 'path',
116
+				  'type' => 'string',
117
+				  'required' => true,
118
+				),
119
+			  ),
120
+			),'list' => array(
121
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers',
122
+			  'httpMethod' => 'GET',
123
+			  'parameters' => array(
124
+				'project' => array(
125
+				  'location' => 'path',
126
+				  'type' => 'string',
127
+				  'required' => true,
128
+				),
129
+				'zone' => array(
130
+				  'location' => 'path',
131
+				  'type' => 'string',
132
+				  'required' => true,
133
+				),
134
+				'filter' => array(
135
+				  'location' => 'query',
136
+				  'type' => 'string',
137
+				),
138
+				'pageToken' => array(
139
+				  'location' => 'query',
140
+				  'type' => 'string',
141
+				),
142
+				'maxResults' => array(
143
+				  'location' => 'query',
144
+				  'type' => 'integer',
145
+				),
146
+			  ),
147
+			),'patch' => array(
148
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
149
+			  'httpMethod' => 'PATCH',
150
+			  'parameters' => array(
151
+				'project' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'zone' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+				'autoscaler' => array(
162
+				  'location' => 'path',
163
+				  'type' => 'string',
164
+				  'required' => true,
165
+				),
166
+			  ),
167
+			),'update' => array(
168
+			  'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
169
+			  'httpMethod' => 'PUT',
170
+			  'parameters' => array(
171
+				'project' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+				'zone' => array(
177
+				  'location' => 'path',
178
+				  'type' => 'string',
179
+				  'required' => true,
180
+				),
181
+				'autoscaler' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+			  ),
187
+			),
188
+		  )
189
+		)
190
+	);
191
+	$this->zoneOperations = new Google_Service_Autoscaler_ZoneOperations_Resource(
192
+		$this,
193
+		$this->serviceName,
194
+		'zoneOperations',
195
+		array(
196
+		  'methods' => array(
197
+			'delete' => array(
198
+			  'path' => '{project}/zones/{zone}/operations/{operation}',
199
+			  'httpMethod' => 'DELETE',
200
+			  'parameters' => array(
201
+				'project' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+				'zone' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+				'operation' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+			  ),
217
+			),'get' => array(
218
+			  'path' => '{project}/zones/{zone}/operations/{operation}',
219
+			  'httpMethod' => 'GET',
220
+			  'parameters' => array(
221
+				'project' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'zone' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'operation' => array(
232
+				  'location' => 'path',
233
+				  'type' => 'string',
234
+				  'required' => true,
235
+				),
236
+			  ),
237
+			),'list' => array(
238
+			  'path' => '{project}/zones/{zone}/operations',
239
+			  'httpMethod' => 'GET',
240
+			  'parameters' => array(
241
+				'project' => array(
242
+				  'location' => 'path',
243
+				  'type' => 'string',
244
+				  'required' => true,
245
+				),
246
+				'zone' => array(
247
+				  'location' => 'path',
248
+				  'type' => 'string',
249
+				  'required' => true,
250
+				),
251
+				'filter' => array(
252
+				  'location' => 'query',
253
+				  'type' => 'string',
254
+				),
255
+				'pageToken' => array(
256
+				  'location' => 'query',
257
+				  'type' => 'string',
258
+				),
259
+				'maxResults' => array(
260
+				  'location' => 'query',
261
+				  'type' => 'integer',
262
+				),
263
+			  ),
264
+			),
265
+		  )
266
+		)
267
+	);
268
+	$this->zones = new Google_Service_Autoscaler_Zones_Resource(
269
+		$this,
270
+		$this->serviceName,
271
+		'zones',
272
+		array(
273
+		  'methods' => array(
274
+			'list' => array(
275
+			  'path' => '{project}/zones',
276
+			  'httpMethod' => 'GET',
277
+			  'parameters' => array(
278
+				'project' => array(
279
+				  'location' => 'path',
280
+				  'type' => 'string',
281
+				  'required' => true,
282
+				),
283
+				'filter' => array(
284
+				  'location' => 'query',
285
+				  'type' => 'string',
286
+				),
287
+				'pageToken' => array(
288
+				  'location' => 'query',
289
+				  'type' => 'string',
290
+				),
291
+				'maxResults' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'integer',
294
+				),
295
+			  ),
296
+			),
297
+		  )
298
+		)
299
+	);
300 300
   }
301 301
 }
302 302
 
@@ -323,9 +323,9 @@  discard block
 block discarded – undo
323 323
    */
324 324
   public function delete($project, $zone, $autoscaler, $optParams = array())
325 325
   {
326
-    $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
327
-    $params = array_merge($params, $optParams);
328
-    return $this->call('delete', array($params), "Google_Service_Autoscaler_Operation");
326
+	$params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
327
+	$params = array_merge($params, $optParams);
328
+	return $this->call('delete', array($params), "Google_Service_Autoscaler_Operation");
329 329
   }
330 330
 
331 331
   /**
@@ -339,9 +339,9 @@  discard block
 block discarded – undo
339 339
    */
340 340
   public function get($project, $zone, $autoscaler, $optParams = array())
341 341
   {
342
-    $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
343
-    $params = array_merge($params, $optParams);
344
-    return $this->call('get', array($params), "Google_Service_Autoscaler_Autoscaler");
342
+	$params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler);
343
+	$params = array_merge($params, $optParams);
344
+	return $this->call('get', array($params), "Google_Service_Autoscaler_Autoscaler");
345 345
   }
346 346
 
347 347
   /**
@@ -355,9 +355,9 @@  discard block
 block discarded – undo
355 355
    */
356 356
   public function insert($project, $zone, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
357 357
   {
358
-    $params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
359
-    $params = array_merge($params, $optParams);
360
-    return $this->call('insert', array($params), "Google_Service_Autoscaler_Operation");
358
+	$params = array('project' => $project, 'zone' => $zone, 'postBody' => $postBody);
359
+	$params = array_merge($params, $optParams);
360
+	return $this->call('insert', array($params), "Google_Service_Autoscaler_Operation");
361 361
   }
362 362
 
363 363
   /**
@@ -374,9 +374,9 @@  discard block
 block discarded – undo
374 374
    */
375 375
   public function listAutoscalers($project, $zone, $optParams = array())
376 376
   {
377
-    $params = array('project' => $project, 'zone' => $zone);
378
-    $params = array_merge($params, $optParams);
379
-    return $this->call('list', array($params), "Google_Service_Autoscaler_AutoscalerListResponse");
377
+	$params = array('project' => $project, 'zone' => $zone);
378
+	$params = array_merge($params, $optParams);
379
+	return $this->call('list', array($params), "Google_Service_Autoscaler_AutoscalerListResponse");
380 380
   }
381 381
 
382 382
   /**
@@ -392,9 +392,9 @@  discard block
 block discarded – undo
392 392
    */
393 393
   public function patch($project, $zone, $autoscaler, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
394 394
   {
395
-    $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
396
-    $params = array_merge($params, $optParams);
397
-    return $this->call('patch', array($params), "Google_Service_Autoscaler_Operation");
395
+	$params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
396
+	$params = array_merge($params, $optParams);
397
+	return $this->call('patch', array($params), "Google_Service_Autoscaler_Operation");
398 398
   }
399 399
 
400 400
   /**
@@ -409,9 +409,9 @@  discard block
 block discarded – undo
409 409
    */
410 410
   public function update($project, $zone, $autoscaler, Google_Service_Autoscaler_Autoscaler $postBody, $optParams = array())
411 411
   {
412
-    $params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
413
-    $params = array_merge($params, $optParams);
414
-    return $this->call('update', array($params), "Google_Service_Autoscaler_Operation");
412
+	$params = array('project' => $project, 'zone' => $zone, 'autoscaler' => $autoscaler, 'postBody' => $postBody);
413
+	$params = array_merge($params, $optParams);
414
+	return $this->call('update', array($params), "Google_Service_Autoscaler_Operation");
415 415
   }
416 416
 }
417 417
 
@@ -437,9 +437,9 @@  discard block
 block discarded – undo
437 437
    */
438 438
   public function delete($project, $zone, $operation, $optParams = array())
439 439
   {
440
-    $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
441
-    $params = array_merge($params, $optParams);
442
-    return $this->call('delete', array($params));
440
+	$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
441
+	$params = array_merge($params, $optParams);
442
+	return $this->call('delete', array($params));
443 443
   }
444 444
 
445 445
   /**
@@ -454,9 +454,9 @@  discard block
 block discarded – undo
454 454
    */
455 455
   public function get($project, $zone, $operation, $optParams = array())
456 456
   {
457
-    $params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
458
-    $params = array_merge($params, $optParams);
459
-    return $this->call('get', array($params), "Google_Service_Autoscaler_Operation");
457
+	$params = array('project' => $project, 'zone' => $zone, 'operation' => $operation);
458
+	$params = array_merge($params, $optParams);
459
+	return $this->call('get', array($params), "Google_Service_Autoscaler_Operation");
460 460
   }
461 461
 
462 462
   /**
@@ -474,9 +474,9 @@  discard block
 block discarded – undo
474 474
    */
475 475
   public function listZoneOperations($project, $zone, $optParams = array())
476 476
   {
477
-    $params = array('project' => $project, 'zone' => $zone);
478
-    $params = array_merge($params, $optParams);
479
-    return $this->call('list', array($params), "Google_Service_Autoscaler_OperationList");
477
+	$params = array('project' => $project, 'zone' => $zone);
478
+	$params = array_merge($params, $optParams);
479
+	return $this->call('list', array($params), "Google_Service_Autoscaler_OperationList");
480 480
   }
481 481
 }
482 482
 
@@ -504,9 +504,9 @@  discard block
 block discarded – undo
504 504
    */
505 505
   public function listZones($project, $optParams = array())
506 506
   {
507
-    $params = array('project' => $project);
508
-    $params = array_merge($params, $optParams);
509
-    return $this->call('list', array($params), "Google_Service_Autoscaler_ZoneList");
507
+	$params = array('project' => $project);
508
+	$params = array_merge($params, $optParams);
509
+	return $this->call('list', array($params), "Google_Service_Autoscaler_ZoneList");
510 510
   }
511 511
 }
512 512
 
@@ -530,67 +530,67 @@  discard block
 block discarded – undo
530 530
 
531 531
   public function setAutoscalingPolicy(Google_Service_Autoscaler_AutoscalingPolicy $autoscalingPolicy)
532 532
   {
533
-    $this->autoscalingPolicy = $autoscalingPolicy;
533
+	$this->autoscalingPolicy = $autoscalingPolicy;
534 534
   }
535 535
   public function getAutoscalingPolicy()
536 536
   {
537
-    return $this->autoscalingPolicy;
537
+	return $this->autoscalingPolicy;
538 538
   }
539 539
   public function setCreationTimestamp($creationTimestamp)
540 540
   {
541
-    $this->creationTimestamp = $creationTimestamp;
541
+	$this->creationTimestamp = $creationTimestamp;
542 542
   }
543 543
   public function getCreationTimestamp()
544 544
   {
545
-    return $this->creationTimestamp;
545
+	return $this->creationTimestamp;
546 546
   }
547 547
   public function setDescription($description)
548 548
   {
549
-    $this->description = $description;
549
+	$this->description = $description;
550 550
   }
551 551
   public function getDescription()
552 552
   {
553
-    return $this->description;
553
+	return $this->description;
554 554
   }
555 555
   public function setId($id)
556 556
   {
557
-    $this->id = $id;
557
+	$this->id = $id;
558 558
   }
559 559
   public function getId()
560 560
   {
561
-    return $this->id;
561
+	return $this->id;
562 562
   }
563 563
   public function setKind($kind)
564 564
   {
565
-    $this->kind = $kind;
565
+	$this->kind = $kind;
566 566
   }
567 567
   public function getKind()
568 568
   {
569
-    return $this->kind;
569
+	return $this->kind;
570 570
   }
571 571
   public function setName($name)
572 572
   {
573
-    $this->name = $name;
573
+	$this->name = $name;
574 574
   }
575 575
   public function getName()
576 576
   {
577
-    return $this->name;
577
+	return $this->name;
578 578
   }
579 579
   public function setSelfLink($selfLink)
580 580
   {
581
-    $this->selfLink = $selfLink;
581
+	$this->selfLink = $selfLink;
582 582
   }
583 583
   public function getSelfLink()
584 584
   {
585
-    return $this->selfLink;
585
+	return $this->selfLink;
586 586
   }
587 587
   public function setTarget($target)
588 588
   {
589
-    $this->target = $target;
589
+	$this->target = $target;
590 590
   }
591 591
   public function getTarget()
592 592
   {
593
-    return $this->target;
593
+	return $this->target;
594 594
   }
595 595
 }
596 596
 
@@ -607,27 +607,27 @@  discard block
 block discarded – undo
607 607
 
608 608
   public function setItems($items)
609 609
   {
610
-    $this->items = $items;
610
+	$this->items = $items;
611 611
   }
612 612
   public function getItems()
613 613
   {
614
-    return $this->items;
614
+	return $this->items;
615 615
   }
616 616
   public function setKind($kind)
617 617
   {
618
-    $this->kind = $kind;
618
+	$this->kind = $kind;
619 619
   }
620 620
   public function getKind()
621 621
   {
622
-    return $this->kind;
622
+	return $this->kind;
623 623
   }
624 624
   public function setNextPageToken($nextPageToken)
625 625
   {
626
-    $this->nextPageToken = $nextPageToken;
626
+	$this->nextPageToken = $nextPageToken;
627 627
   }
628 628
   public function getNextPageToken()
629 629
   {
630
-    return $this->nextPageToken;
630
+	return $this->nextPageToken;
631 631
   }
632 632
 }
633 633
 
@@ -649,51 +649,51 @@  discard block
 block discarded – undo
649 649
 
650 650
   public function setCoolDownPeriodSec($coolDownPeriodSec)
651 651
   {
652
-    $this->coolDownPeriodSec = $coolDownPeriodSec;
652
+	$this->coolDownPeriodSec = $coolDownPeriodSec;
653 653
   }
654 654
   public function getCoolDownPeriodSec()
655 655
   {
656
-    return $this->coolDownPeriodSec;
656
+	return $this->coolDownPeriodSec;
657 657
   }
658 658
   public function setCpuUtilization(Google_Service_Autoscaler_AutoscalingPolicyCpuUtilization $cpuUtilization)
659 659
   {
660
-    $this->cpuUtilization = $cpuUtilization;
660
+	$this->cpuUtilization = $cpuUtilization;
661 661
   }
662 662
   public function getCpuUtilization()
663 663
   {
664
-    return $this->cpuUtilization;
664
+	return $this->cpuUtilization;
665 665
   }
666 666
   public function setCustomMetricUtilizations($customMetricUtilizations)
667 667
   {
668
-    $this->customMetricUtilizations = $customMetricUtilizations;
668
+	$this->customMetricUtilizations = $customMetricUtilizations;
669 669
   }
670 670
   public function getCustomMetricUtilizations()
671 671
   {
672
-    return $this->customMetricUtilizations;
672
+	return $this->customMetricUtilizations;
673 673
   }
674 674
   public function setLoadBalancingUtilization(Google_Service_Autoscaler_AutoscalingPolicyLoadBalancingUtilization $loadBalancingUtilization)
675 675
   {
676
-    $this->loadBalancingUtilization = $loadBalancingUtilization;
676
+	$this->loadBalancingUtilization = $loadBalancingUtilization;
677 677
   }
678 678
   public function getLoadBalancingUtilization()
679 679
   {
680
-    return $this->loadBalancingUtilization;
680
+	return $this->loadBalancingUtilization;
681 681
   }
682 682
   public function setMaxNumReplicas($maxNumReplicas)
683 683
   {
684
-    $this->maxNumReplicas = $maxNumReplicas;
684
+	$this->maxNumReplicas = $maxNumReplicas;
685 685
   }
686 686
   public function getMaxNumReplicas()
687 687
   {
688
-    return $this->maxNumReplicas;
688
+	return $this->maxNumReplicas;
689 689
   }
690 690
   public function setMinNumReplicas($minNumReplicas)
691 691
   {
692
-    $this->minNumReplicas = $minNumReplicas;
692
+	$this->minNumReplicas = $minNumReplicas;
693 693
   }
694 694
   public function getMinNumReplicas()
695 695
   {
696
-    return $this->minNumReplicas;
696
+	return $this->minNumReplicas;
697 697
   }
698 698
 }
699 699
 
@@ -706,11 +706,11 @@  discard block
 block discarded – undo
706 706
 
707 707
   public function setUtilizationTarget($utilizationTarget)
708 708
   {
709
-    $this->utilizationTarget = $utilizationTarget;
709
+	$this->utilizationTarget = $utilizationTarget;
710 710
   }
711 711
   public function getUtilizationTarget()
712 712
   {
713
-    return $this->utilizationTarget;
713
+	return $this->utilizationTarget;
714 714
   }
715 715
 }
716 716
 
@@ -725,27 +725,27 @@  discard block
 block discarded – undo
725 725
 
726 726
   public function setMetric($metric)
727 727
   {
728
-    $this->metric = $metric;
728
+	$this->metric = $metric;
729 729
   }
730 730
   public function getMetric()
731 731
   {
732
-    return $this->metric;
732
+	return $this->metric;
733 733
   }
734 734
   public function setUtilizationTarget($utilizationTarget)
735 735
   {
736
-    $this->utilizationTarget = $utilizationTarget;
736
+	$this->utilizationTarget = $utilizationTarget;
737 737
   }
738 738
   public function getUtilizationTarget()
739 739
   {
740
-    return $this->utilizationTarget;
740
+	return $this->utilizationTarget;
741 741
   }
742 742
   public function setUtilizationTargetType($utilizationTargetType)
743 743
   {
744
-    $this->utilizationTargetType = $utilizationTargetType;
744
+	$this->utilizationTargetType = $utilizationTargetType;
745 745
   }
746 746
   public function getUtilizationTargetType()
747 747
   {
748
-    return $this->utilizationTargetType;
748
+	return $this->utilizationTargetType;
749 749
   }
750 750
 }
751 751
 
@@ -758,11 +758,11 @@  discard block
 block discarded – undo
758 758
 
759 759
   public function setUtilizationTarget($utilizationTarget)
760 760
   {
761
-    $this->utilizationTarget = $utilizationTarget;
761
+	$this->utilizationTarget = $utilizationTarget;
762 762
   }
763 763
   public function getUtilizationTarget()
764 764
   {
765
-    return $this->utilizationTarget;
765
+	return $this->utilizationTarget;
766 766
   }
767 767
 }
768 768
 
@@ -779,43 +779,43 @@  discard block
 block discarded – undo
779 779
 
780 780
   public function setDeleted($deleted)
781 781
   {
782
-    $this->deleted = $deleted;
782
+	$this->deleted = $deleted;
783 783
   }
784 784
   public function getDeleted()
785 785
   {
786
-    return $this->deleted;
786
+	return $this->deleted;
787 787
   }
788 788
   public function setDeprecated($deprecated)
789 789
   {
790
-    $this->deprecated = $deprecated;
790
+	$this->deprecated = $deprecated;
791 791
   }
792 792
   public function getDeprecated()
793 793
   {
794
-    return $this->deprecated;
794
+	return $this->deprecated;
795 795
   }
796 796
   public function setObsolete($obsolete)
797 797
   {
798
-    $this->obsolete = $obsolete;
798
+	$this->obsolete = $obsolete;
799 799
   }
800 800
   public function getObsolete()
801 801
   {
802
-    return $this->obsolete;
802
+	return $this->obsolete;
803 803
   }
804 804
   public function setReplacement($replacement)
805 805
   {
806
-    $this->replacement = $replacement;
806
+	$this->replacement = $replacement;
807 807
   }
808 808
   public function getReplacement()
809 809
   {
810
-    return $this->replacement;
810
+	return $this->replacement;
811 811
   }
812 812
   public function setState($state)
813 813
   {
814
-    $this->state = $state;
814
+	$this->state = $state;
815 815
   }
816 816
   public function getState()
817 817
   {
818
-    return $this->state;
818
+	return $this->state;
819 819
   }
820 820
 }
821 821
 
@@ -852,179 +852,179 @@  discard block
 block discarded – undo
852 852
 
853 853
   public function setClientOperationId($clientOperationId)
854 854
   {
855
-    $this->clientOperationId = $clientOperationId;
855
+	$this->clientOperationId = $clientOperationId;
856 856
   }
857 857
   public function getClientOperationId()
858 858
   {
859
-    return $this->clientOperationId;
859
+	return $this->clientOperationId;
860 860
   }
861 861
   public function setCreationTimestamp($creationTimestamp)
862 862
   {
863
-    $this->creationTimestamp = $creationTimestamp;
863
+	$this->creationTimestamp = $creationTimestamp;
864 864
   }
865 865
   public function getCreationTimestamp()
866 866
   {
867
-    return $this->creationTimestamp;
867
+	return $this->creationTimestamp;
868 868
   }
869 869
   public function setEndTime($endTime)
870 870
   {
871
-    $this->endTime = $endTime;
871
+	$this->endTime = $endTime;
872 872
   }
873 873
   public function getEndTime()
874 874
   {
875
-    return $this->endTime;
875
+	return $this->endTime;
876 876
   }
877 877
   public function setError(Google_Service_Autoscaler_OperationError $error)
878 878
   {
879
-    $this->error = $error;
879
+	$this->error = $error;
880 880
   }
881 881
   public function getError()
882 882
   {
883
-    return $this->error;
883
+	return $this->error;
884 884
   }
885 885
   public function setHttpErrorMessage($httpErrorMessage)
886 886
   {
887
-    $this->httpErrorMessage = $httpErrorMessage;
887
+	$this->httpErrorMessage = $httpErrorMessage;
888 888
   }
889 889
   public function getHttpErrorMessage()
890 890
   {
891
-    return $this->httpErrorMessage;
891
+	return $this->httpErrorMessage;
892 892
   }
893 893
   public function setHttpErrorStatusCode($httpErrorStatusCode)
894 894
   {
895
-    $this->httpErrorStatusCode = $httpErrorStatusCode;
895
+	$this->httpErrorStatusCode = $httpErrorStatusCode;
896 896
   }
897 897
   public function getHttpErrorStatusCode()
898 898
   {
899
-    return $this->httpErrorStatusCode;
899
+	return $this->httpErrorStatusCode;
900 900
   }
901 901
   public function setId($id)
902 902
   {
903
-    $this->id = $id;
903
+	$this->id = $id;
904 904
   }
905 905
   public function getId()
906 906
   {
907
-    return $this->id;
907
+	return $this->id;
908 908
   }
909 909
   public function setInsertTime($insertTime)
910 910
   {
911
-    $this->insertTime = $insertTime;
911
+	$this->insertTime = $insertTime;
912 912
   }
913 913
   public function getInsertTime()
914 914
   {
915
-    return $this->insertTime;
915
+	return $this->insertTime;
916 916
   }
917 917
   public function setKind($kind)
918 918
   {
919
-    $this->kind = $kind;
919
+	$this->kind = $kind;
920 920
   }
921 921
   public function getKind()
922 922
   {
923
-    return $this->kind;
923
+	return $this->kind;
924 924
   }
925 925
   public function setName($name)
926 926
   {
927
-    $this->name = $name;
927
+	$this->name = $name;
928 928
   }
929 929
   public function getName()
930 930
   {
931
-    return $this->name;
931
+	return $this->name;
932 932
   }
933 933
   public function setOperationType($operationType)
934 934
   {
935
-    $this->operationType = $operationType;
935
+	$this->operationType = $operationType;
936 936
   }
937 937
   public function getOperationType()
938 938
   {
939
-    return $this->operationType;
939
+	return $this->operationType;
940 940
   }
941 941
   public function setProgress($progress)
942 942
   {
943
-    $this->progress = $progress;
943
+	$this->progress = $progress;
944 944
   }
945 945
   public function getProgress()
946 946
   {
947
-    return $this->progress;
947
+	return $this->progress;
948 948
   }
949 949
   public function setRegion($region)
950 950
   {
951
-    $this->region = $region;
951
+	$this->region = $region;
952 952
   }
953 953
   public function getRegion()
954 954
   {
955
-    return $this->region;
955
+	return $this->region;
956 956
   }
957 957
   public function setSelfLink($selfLink)
958 958
   {
959
-    $this->selfLink = $selfLink;
959
+	$this->selfLink = $selfLink;
960 960
   }
961 961
   public function getSelfLink()
962 962
   {
963
-    return $this->selfLink;
963
+	return $this->selfLink;
964 964
   }
965 965
   public function setStartTime($startTime)
966 966
   {
967
-    $this->startTime = $startTime;
967
+	$this->startTime = $startTime;
968 968
   }
969 969
   public function getStartTime()
970 970
   {
971
-    return $this->startTime;
971
+	return $this->startTime;
972 972
   }
973 973
   public function setStatus($status)
974 974
   {
975
-    $this->status = $status;
975
+	$this->status = $status;
976 976
   }
977 977
   public function getStatus()
978 978
   {
979
-    return $this->status;
979
+	return $this->status;
980 980
   }
981 981
   public function setStatusMessage($statusMessage)
982 982
   {
983
-    $this->statusMessage = $statusMessage;
983
+	$this->statusMessage = $statusMessage;
984 984
   }
985 985
   public function getStatusMessage()
986 986
   {
987
-    return $this->statusMessage;
987
+	return $this->statusMessage;
988 988
   }
989 989
   public function setTargetId($targetId)
990 990
   {
991
-    $this->targetId = $targetId;
991
+	$this->targetId = $targetId;
992 992
   }
993 993
   public function getTargetId()
994 994
   {
995
-    return $this->targetId;
995
+	return $this->targetId;
996 996
   }
997 997
   public function setTargetLink($targetLink)
998 998
   {
999
-    $this->targetLink = $targetLink;
999
+	$this->targetLink = $targetLink;
1000 1000
   }
1001 1001
   public function getTargetLink()
1002 1002
   {
1003
-    return $this->targetLink;
1003
+	return $this->targetLink;
1004 1004
   }
1005 1005
   public function setUser($user)
1006 1006
   {
1007
-    $this->user = $user;
1007
+	$this->user = $user;
1008 1008
   }
1009 1009
   public function getUser()
1010 1010
   {
1011
-    return $this->user;
1011
+	return $this->user;
1012 1012
   }
1013 1013
   public function setWarnings($warnings)
1014 1014
   {
1015
-    $this->warnings = $warnings;
1015
+	$this->warnings = $warnings;
1016 1016
   }
1017 1017
   public function getWarnings()
1018 1018
   {
1019
-    return $this->warnings;
1019
+	return $this->warnings;
1020 1020
   }
1021 1021
   public function setZone($zone)
1022 1022
   {
1023
-    $this->zone = $zone;
1023
+	$this->zone = $zone;
1024 1024
   }
1025 1025
   public function getZone()
1026 1026
   {
1027
-    return $this->zone;
1027
+	return $this->zone;
1028 1028
   }
1029 1029
 }
1030 1030
 
@@ -1039,11 +1039,11 @@  discard block
 block discarded – undo
1039 1039
 
1040 1040
   public function setErrors($errors)
1041 1041
   {
1042
-    $this->errors = $errors;
1042
+	$this->errors = $errors;
1043 1043
   }
1044 1044
   public function getErrors()
1045 1045
   {
1046
-    return $this->errors;
1046
+	return $this->errors;
1047 1047
   }
1048 1048
 }
1049 1049
 
@@ -1058,27 +1058,27 @@  discard block
 block discarded – undo
1058 1058
 
1059 1059
   public function setCode($code)
1060 1060
   {
1061
-    $this->code = $code;
1061
+	$this->code = $code;
1062 1062
   }
1063 1063
   public function getCode()
1064 1064
   {
1065
-    return $this->code;
1065
+	return $this->code;
1066 1066
   }
1067 1067
   public function setLocation($location)
1068 1068
   {
1069
-    $this->location = $location;
1069
+	$this->location = $location;
1070 1070
   }
1071 1071
   public function getLocation()
1072 1072
   {
1073
-    return $this->location;
1073
+	return $this->location;
1074 1074
   }
1075 1075
   public function setMessage($message)
1076 1076
   {
1077
-    $this->message = $message;
1077
+	$this->message = $message;
1078 1078
   }
1079 1079
   public function getMessage()
1080 1080
   {
1081
-    return $this->message;
1081
+	return $this->message;
1082 1082
   }
1083 1083
 }
1084 1084
 
@@ -1097,43 +1097,43 @@  discard block
 block discarded – undo
1097 1097
 
1098 1098
   public function setId($id)
1099 1099
   {
1100
-    $this->id = $id;
1100
+	$this->id = $id;
1101 1101
   }
1102 1102
   public function getId()
1103 1103
   {
1104
-    return $this->id;
1104
+	return $this->id;
1105 1105
   }
1106 1106
   public function setItems($items)
1107 1107
   {
1108
-    $this->items = $items;
1108
+	$this->items = $items;
1109 1109
   }
1110 1110
   public function getItems()
1111 1111
   {
1112
-    return $this->items;
1112
+	return $this->items;
1113 1113
   }
1114 1114
   public function setKind($kind)
1115 1115
   {
1116
-    $this->kind = $kind;
1116
+	$this->kind = $kind;
1117 1117
   }
1118 1118
   public function getKind()
1119 1119
   {
1120
-    return $this->kind;
1120
+	return $this->kind;
1121 1121
   }
1122 1122
   public function setNextPageToken($nextPageToken)
1123 1123
   {
1124
-    $this->nextPageToken = $nextPageToken;
1124
+	$this->nextPageToken = $nextPageToken;
1125 1125
   }
1126 1126
   public function getNextPageToken()
1127 1127
   {
1128
-    return $this->nextPageToken;
1128
+	return $this->nextPageToken;
1129 1129
   }
1130 1130
   public function setSelfLink($selfLink)
1131 1131
   {
1132
-    $this->selfLink = $selfLink;
1132
+	$this->selfLink = $selfLink;
1133 1133
   }
1134 1134
   public function getSelfLink()
1135 1135
   {
1136
-    return $this->selfLink;
1136
+	return $this->selfLink;
1137 1137
   }
1138 1138
 }
1139 1139
 
@@ -1150,27 +1150,27 @@  discard block
 block discarded – undo
1150 1150
 
1151 1151
   public function setCode($code)
1152 1152
   {
1153
-    $this->code = $code;
1153
+	$this->code = $code;
1154 1154
   }
1155 1155
   public function getCode()
1156 1156
   {
1157
-    return $this->code;
1157
+	return $this->code;
1158 1158
   }
1159 1159
   public function setData($data)
1160 1160
   {
1161
-    $this->data = $data;
1161
+	$this->data = $data;
1162 1162
   }
1163 1163
   public function getData()
1164 1164
   {
1165
-    return $this->data;
1165
+	return $this->data;
1166 1166
   }
1167 1167
   public function setMessage($message)
1168 1168
   {
1169
-    $this->message = $message;
1169
+	$this->message = $message;
1170 1170
   }
1171 1171
   public function getMessage()
1172 1172
   {
1173
-    return $this->message;
1173
+	return $this->message;
1174 1174
   }
1175 1175
 }
1176 1176
 
@@ -1184,19 +1184,19 @@  discard block
 block discarded – undo
1184 1184
 
1185 1185
   public function setKey($key)
1186 1186
   {
1187
-    $this->key = $key;
1187
+	$this->key = $key;
1188 1188
   }
1189 1189
   public function getKey()
1190 1190
   {
1191
-    return $this->key;
1191
+	return $this->key;
1192 1192
   }
1193 1193
   public function setValue($value)
1194 1194
   {
1195
-    $this->value = $value;
1195
+	$this->value = $value;
1196 1196
   }
1197 1197
   public function getValue()
1198 1198
   {
1199
-    return $this->value;
1199
+	return $this->value;
1200 1200
   }
1201 1201
 }
1202 1202
 
@@ -1221,83 +1221,83 @@  discard block
 block discarded – undo
1221 1221
 
1222 1222
   public function setCreationTimestamp($creationTimestamp)
1223 1223
   {
1224
-    $this->creationTimestamp = $creationTimestamp;
1224
+	$this->creationTimestamp = $creationTimestamp;
1225 1225
   }
1226 1226
   public function getCreationTimestamp()
1227 1227
   {
1228
-    return $this->creationTimestamp;
1228
+	return $this->creationTimestamp;
1229 1229
   }
1230 1230
   public function setDeprecated(Google_Service_Autoscaler_DeprecationStatus $deprecated)
1231 1231
   {
1232
-    $this->deprecated = $deprecated;
1232
+	$this->deprecated = $deprecated;
1233 1233
   }
1234 1234
   public function getDeprecated()
1235 1235
   {
1236
-    return $this->deprecated;
1236
+	return $this->deprecated;
1237 1237
   }
1238 1238
   public function setDescription($description)
1239 1239
   {
1240
-    $this->description = $description;
1240
+	$this->description = $description;
1241 1241
   }
1242 1242
   public function getDescription()
1243 1243
   {
1244
-    return $this->description;
1244
+	return $this->description;
1245 1245
   }
1246 1246
   public function setId($id)
1247 1247
   {
1248
-    $this->id = $id;
1248
+	$this->id = $id;
1249 1249
   }
1250 1250
   public function getId()
1251 1251
   {
1252
-    return $this->id;
1252
+	return $this->id;
1253 1253
   }
1254 1254
   public function setKind($kind)
1255 1255
   {
1256
-    $this->kind = $kind;
1256
+	$this->kind = $kind;
1257 1257
   }
1258 1258
   public function getKind()
1259 1259
   {
1260
-    return $this->kind;
1260
+	return $this->kind;
1261 1261
   }
1262 1262
   public function setMaintenanceWindows($maintenanceWindows)
1263 1263
   {
1264
-    $this->maintenanceWindows = $maintenanceWindows;
1264
+	$this->maintenanceWindows = $maintenanceWindows;
1265 1265
   }
1266 1266
   public function getMaintenanceWindows()
1267 1267
   {
1268
-    return $this->maintenanceWindows;
1268
+	return $this->maintenanceWindows;
1269 1269
   }
1270 1270
   public function setName($name)
1271 1271
   {
1272
-    $this->name = $name;
1272
+	$this->name = $name;
1273 1273
   }
1274 1274
   public function getName()
1275 1275
   {
1276
-    return $this->name;
1276
+	return $this->name;
1277 1277
   }
1278 1278
   public function setRegion($region)
1279 1279
   {
1280
-    $this->region = $region;
1280
+	$this->region = $region;
1281 1281
   }
1282 1282
   public function getRegion()
1283 1283
   {
1284
-    return $this->region;
1284
+	return $this->region;
1285 1285
   }
1286 1286
   public function setSelfLink($selfLink)
1287 1287
   {
1288
-    $this->selfLink = $selfLink;
1288
+	$this->selfLink = $selfLink;
1289 1289
   }
1290 1290
   public function getSelfLink()
1291 1291
   {
1292
-    return $this->selfLink;
1292
+	return $this->selfLink;
1293 1293
   }
1294 1294
   public function setStatus($status)
1295 1295
   {
1296
-    $this->status = $status;
1296
+	$this->status = $status;
1297 1297
   }
1298 1298
   public function getStatus()
1299 1299
   {
1300
-    return $this->status;
1300
+	return $this->status;
1301 1301
   }
1302 1302
 }
1303 1303
 
@@ -1316,43 +1316,43 @@  discard block
 block discarded – undo
1316 1316
 
1317 1317
   public function setId($id)
1318 1318
   {
1319
-    $this->id = $id;
1319
+	$this->id = $id;
1320 1320
   }
1321 1321
   public function getId()
1322 1322
   {
1323
-    return $this->id;
1323
+	return $this->id;
1324 1324
   }
1325 1325
   public function setItems($items)
1326 1326
   {
1327
-    $this->items = $items;
1327
+	$this->items = $items;
1328 1328
   }
1329 1329
   public function getItems()
1330 1330
   {
1331
-    return $this->items;
1331
+	return $this->items;
1332 1332
   }
1333 1333
   public function setKind($kind)
1334 1334
   {
1335
-    $this->kind = $kind;
1335
+	$this->kind = $kind;
1336 1336
   }
1337 1337
   public function getKind()
1338 1338
   {
1339
-    return $this->kind;
1339
+	return $this->kind;
1340 1340
   }
1341 1341
   public function setNextPageToken($nextPageToken)
1342 1342
   {
1343
-    $this->nextPageToken = $nextPageToken;
1343
+	$this->nextPageToken = $nextPageToken;
1344 1344
   }
1345 1345
   public function getNextPageToken()
1346 1346
   {
1347
-    return $this->nextPageToken;
1347
+	return $this->nextPageToken;
1348 1348
   }
1349 1349
   public function setSelfLink($selfLink)
1350 1350
   {
1351
-    $this->selfLink = $selfLink;
1351
+	$this->selfLink = $selfLink;
1352 1352
   }
1353 1353
   public function getSelfLink()
1354 1354
   {
1355
-    return $this->selfLink;
1355
+	return $this->selfLink;
1356 1356
   }
1357 1357
 }
1358 1358
 
@@ -1368,34 +1368,34 @@  discard block
 block discarded – undo
1368 1368
 
1369 1369
   public function setBeginTime($beginTime)
1370 1370
   {
1371
-    $this->beginTime = $beginTime;
1371
+	$this->beginTime = $beginTime;
1372 1372
   }
1373 1373
   public function getBeginTime()
1374 1374
   {
1375
-    return $this->beginTime;
1375
+	return $this->beginTime;
1376 1376
   }
1377 1377
   public function setDescription($description)
1378 1378
   {
1379
-    $this->description = $description;
1379
+	$this->description = $description;
1380 1380
   }
1381 1381
   public function getDescription()
1382 1382
   {
1383
-    return $this->description;
1383
+	return $this->description;
1384 1384
   }
1385 1385
   public function setEndTime($endTime)
1386 1386
   {
1387
-    $this->endTime = $endTime;
1387
+	$this->endTime = $endTime;
1388 1388
   }
1389 1389
   public function getEndTime()
1390 1390
   {
1391
-    return $this->endTime;
1391
+	return $this->endTime;
1392 1392
   }
1393 1393
   public function setName($name)
1394 1394
   {
1395
-    $this->name = $name;
1395
+	$this->name = $name;
1396 1396
   }
1397 1397
   public function getName()
1398 1398
   {
1399
-    return $this->name;
1399
+	return $this->name;
1400 1400
   }
1401 1401
 }
Please login to merge, or discard this patch.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
                   'required' => true,
83 83
                 ),
84 84
               ),
85
-            ),'get' => array(
85
+            ), 'get' => array(
86 86
               'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
87 87
               'httpMethod' => 'GET',
88 88
               'parameters' => array(
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
                   'required' => true,
103 103
                 ),
104 104
               ),
105
-            ),'insert' => array(
105
+            ), 'insert' => array(
106 106
               'path' => 'projects/{project}/zones/{zone}/autoscalers',
107 107
               'httpMethod' => 'POST',
108 108
               'parameters' => array(
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
                   'required' => true,
118 118
                 ),
119 119
               ),
120
-            ),'list' => array(
120
+            ), 'list' => array(
121 121
               'path' => 'projects/{project}/zones/{zone}/autoscalers',
122 122
               'httpMethod' => 'GET',
123 123
               'parameters' => array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                   'type' => 'integer',
145 145
                 ),
146 146
               ),
147
-            ),'patch' => array(
147
+            ), 'patch' => array(
148 148
               'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
149 149
               'httpMethod' => 'PATCH',
150 150
               'parameters' => array(
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
                   'required' => true,
165 165
                 ),
166 166
               ),
167
-            ),'update' => array(
167
+            ), 'update' => array(
168 168
               'path' => 'projects/{project}/zones/{zone}/autoscalers/{autoscaler}',
169 169
               'httpMethod' => 'PUT',
170 170
               'parameters' => array(
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                   'required' => true,
215 215
                 ),
216 216
               ),
217
-            ),'get' => array(
217
+            ), 'get' => array(
218 218
               'path' => '{project}/zones/{zone}/operations/{operation}',
219 219
               'httpMethod' => 'GET',
220 220
               'parameters' => array(
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
                   'required' => true,
235 235
                 ),
236 236
               ),
237
-            ),'list' => array(
237
+            ), 'list' => array(
238 238
               'path' => '{project}/zones/{zone}/operations',
239 239
               'httpMethod' => 'GET',
240 240
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Bigquery.php 3 patches
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
    * Creates a new empty dataset. (datasets.insert)
569 569
    *
570 570
    * @param string $projectId Project ID of the new dataset
571
-   * @param Google_Dataset $postBody
571
+   * @param Google_Service_Bigquery_Dataset $postBody
572 572
    * @param array $optParams Optional parameters.
573 573
    * @return Google_Service_Bigquery_Dataset
574 574
    */
@@ -607,7 +607,7 @@  discard block
 block discarded – undo
607 607
    *
608 608
    * @param string $projectId Project ID of the dataset being updated
609 609
    * @param string $datasetId Dataset ID of the dataset being updated
610
-   * @param Google_Dataset $postBody
610
+   * @param Google_Service_Bigquery_Dataset $postBody
611 611
    * @param array $optParams Optional parameters.
612 612
    * @return Google_Service_Bigquery_Dataset
613 613
    */
@@ -625,7 +625,7 @@  discard block
 block discarded – undo
625 625
    *
626 626
    * @param string $projectId Project ID of the dataset being updated
627 627
    * @param string $datasetId Dataset ID of the dataset being updated
628
-   * @param Google_Dataset $postBody
628
+   * @param Google_Service_Bigquery_Dataset $postBody
629 629
    * @param array $optParams Optional parameters.
630 630
    * @return Google_Service_Bigquery_Dataset
631 631
    */
@@ -712,7 +712,7 @@  discard block
 block discarded – undo
712 712
    *
713 713
    * @param string $projectId Project ID of the project that will be billed for
714 714
    * the job
715
-   * @param Google_Job $postBody
715
+   * @param Google_Service_Bigquery_Job $postBody
716 716
    * @param array $optParams Optional parameters.
717 717
    * @return Google_Service_Bigquery_Job
718 718
    */
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
    * query completes within a specified timeout. (jobs.query)
756 756
    *
757 757
    * @param string $projectId Project ID of the project billed for the query
758
-   * @param Google_QueryRequest $postBody
758
+   * @param Google_Service_Bigquery_QueryRequest $postBody
759 759
    * @param array $optParams Optional parameters.
760 760
    * @return Google_Service_Bigquery_QueryResponse
761 761
    */
@@ -815,7 +815,7 @@  discard block
 block discarded – undo
815 815
    * @param string $projectId Project ID of the destination table.
816 816
    * @param string $datasetId Dataset ID of the destination table.
817 817
    * @param string $tableId Table ID of the destination table.
818
-   * @param Google_TableDataInsertAllRequest $postBody
818
+   * @param Google_Service_Bigquery_TableDataInsertAllRequest $postBody
819 819
    * @param array $optParams Optional parameters.
820 820
    * @return Google_Service_Bigquery_TableDataInsertAllResponse
821 821
    */
@@ -899,7 +899,7 @@  discard block
 block discarded – undo
899 899
    *
900 900
    * @param string $projectId Project ID of the new table
901 901
    * @param string $datasetId Dataset ID of the new table
902
-   * @param Google_Table $postBody
902
+   * @param Google_Service_Bigquery_Table $postBody
903 903
    * @param array $optParams Optional parameters.
904 904
    * @return Google_Service_Bigquery_Table
905 905
    */
@@ -939,7 +939,7 @@  discard block
 block discarded – undo
939 939
    * @param string $projectId Project ID of the table to update
940 940
    * @param string $datasetId Dataset ID of the table to update
941 941
    * @param string $tableId Table ID of the table to update
942
-   * @param Google_Table $postBody
942
+   * @param Google_Service_Bigquery_Table $postBody
943 943
    * @param array $optParams Optional parameters.
944 944
    * @return Google_Service_Bigquery_Table
945 945
    */
@@ -958,7 +958,7 @@  discard block
 block discarded – undo
958 958
    * @param string $projectId Project ID of the table to update
959 959
    * @param string $datasetId Dataset ID of the table to update
960 960
    * @param string $tableId Table ID of the table to update
961
-   * @param Google_Table $postBody
961
+   * @param Google_Service_Bigquery_Table $postBody
962 962
    * @param array $optParams Optional parameters.
963 963
    * @return Google_Service_Bigquery_Table
964 964
    */
Please login to merge, or discard this patch.
Indentation   +1001 added lines, -1001 removed lines patch added patch discarded remove patch
@@ -32,25 +32,25 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage your data in Google BigQuery. */
34 34
   const BIGQUERY =
35
-      "https://www.googleapis.com/auth/bigquery";
35
+	  "https://www.googleapis.com/auth/bigquery";
36 36
   /** Insert data into Google BigQuery. */
37 37
   const BIGQUERY_INSERTDATA =
38
-      "https://www.googleapis.com/auth/bigquery.insertdata";
38
+	  "https://www.googleapis.com/auth/bigquery.insertdata";
39 39
   /** View and manage your data across Google Cloud Platform services. */
40 40
   const CLOUD_PLATFORM =
41
-      "https://www.googleapis.com/auth/cloud-platform";
41
+	  "https://www.googleapis.com/auth/cloud-platform";
42 42
   /** View your data across Google Cloud Platform services. */
43 43
   const CLOUD_PLATFORM_READ_ONLY =
44
-      "https://www.googleapis.com/auth/cloud-platform.read-only";
44
+	  "https://www.googleapis.com/auth/cloud-platform.read-only";
45 45
   /** Manage your data and permissions in Google Cloud Storage. */
46 46
   const DEVSTORAGE_FULL_CONTROL =
47
-      "https://www.googleapis.com/auth/devstorage.full_control";
47
+	  "https://www.googleapis.com/auth/devstorage.full_control";
48 48
   /** View your data in Google Cloud Storage. */
49 49
   const DEVSTORAGE_READ_ONLY =
50
-      "https://www.googleapis.com/auth/devstorage.read_only";
50
+	  "https://www.googleapis.com/auth/devstorage.read_only";
51 51
   /** Manage your data in Google Cloud Storage. */
52 52
   const DEVSTORAGE_READ_WRITE =
53
-      "https://www.googleapis.com/auth/devstorage.read_write";
53
+	  "https://www.googleapis.com/auth/devstorage.read_write";
54 54
 
55 55
   public $datasets;
56 56
   public $jobs;
@@ -66,453 +66,453 @@  discard block
 block discarded – undo
66 66
    */
67 67
   public function __construct(Google_Client $client)
68 68
   {
69
-    parent::__construct($client);
70
-    $this->rootUrl = 'https://www.googleapis.com/';
71
-    $this->servicePath = 'bigquery/v2/';
72
-    $this->version = 'v2';
73
-    $this->serviceName = 'bigquery';
74
-
75
-    $this->datasets = new Google_Service_Bigquery_Datasets_Resource(
76
-        $this,
77
-        $this->serviceName,
78
-        'datasets',
79
-        array(
80
-          'methods' => array(
81
-            'delete' => array(
82
-              'path' => 'projects/{projectId}/datasets/{datasetId}',
83
-              'httpMethod' => 'DELETE',
84
-              'parameters' => array(
85
-                'projectId' => array(
86
-                  'location' => 'path',
87
-                  'type' => 'string',
88
-                  'required' => true,
89
-                ),
90
-                'datasetId' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-                'deleteContents' => array(
96
-                  'location' => 'query',
97
-                  'type' => 'boolean',
98
-                ),
99
-              ),
100
-            ),'get' => array(
101
-              'path' => 'projects/{projectId}/datasets/{datasetId}',
102
-              'httpMethod' => 'GET',
103
-              'parameters' => array(
104
-                'projectId' => array(
105
-                  'location' => 'path',
106
-                  'type' => 'string',
107
-                  'required' => true,
108
-                ),
109
-                'datasetId' => array(
110
-                  'location' => 'path',
111
-                  'type' => 'string',
112
-                  'required' => true,
113
-                ),
114
-              ),
115
-            ),'insert' => array(
116
-              'path' => 'projects/{projectId}/datasets',
117
-              'httpMethod' => 'POST',
118
-              'parameters' => array(
119
-                'projectId' => array(
120
-                  'location' => 'path',
121
-                  'type' => 'string',
122
-                  'required' => true,
123
-                ),
124
-              ),
125
-            ),'list' => array(
126
-              'path' => 'projects/{projectId}/datasets',
127
-              'httpMethod' => 'GET',
128
-              'parameters' => array(
129
-                'projectId' => array(
130
-                  'location' => 'path',
131
-                  'type' => 'string',
132
-                  'required' => true,
133
-                ),
134
-                'pageToken' => array(
135
-                  'location' => 'query',
136
-                  'type' => 'string',
137
-                ),
138
-                'all' => array(
139
-                  'location' => 'query',
140
-                  'type' => 'boolean',
141
-                ),
142
-                'maxResults' => array(
143
-                  'location' => 'query',
144
-                  'type' => 'integer',
145
-                ),
146
-              ),
147
-            ),'patch' => array(
148
-              'path' => 'projects/{projectId}/datasets/{datasetId}',
149
-              'httpMethod' => 'PATCH',
150
-              'parameters' => array(
151
-                'projectId' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'datasetId' => array(
157
-                  'location' => 'path',
158
-                  'type' => 'string',
159
-                  'required' => true,
160
-                ),
161
-              ),
162
-            ),'update' => array(
163
-              'path' => 'projects/{projectId}/datasets/{datasetId}',
164
-              'httpMethod' => 'PUT',
165
-              'parameters' => array(
166
-                'projectId' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'datasetId' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-              ),
177
-            ),
178
-          )
179
-        )
180
-    );
181
-    $this->jobs = new Google_Service_Bigquery_Jobs_Resource(
182
-        $this,
183
-        $this->serviceName,
184
-        'jobs',
185
-        array(
186
-          'methods' => array(
187
-            'cancel' => array(
188
-              'path' => 'project/{projectId}/jobs/{jobId}/cancel',
189
-              'httpMethod' => 'POST',
190
-              'parameters' => array(
191
-                'projectId' => array(
192
-                  'location' => 'path',
193
-                  'type' => 'string',
194
-                  'required' => true,
195
-                ),
196
-                'jobId' => array(
197
-                  'location' => 'path',
198
-                  'type' => 'string',
199
-                  'required' => true,
200
-                ),
201
-              ),
202
-            ),'get' => array(
203
-              'path' => 'projects/{projectId}/jobs/{jobId}',
204
-              'httpMethod' => 'GET',
205
-              'parameters' => array(
206
-                'projectId' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-                'jobId' => array(
212
-                  'location' => 'path',
213
-                  'type' => 'string',
214
-                  'required' => true,
215
-                ),
216
-              ),
217
-            ),'getQueryResults' => array(
218
-              'path' => 'projects/{projectId}/queries/{jobId}',
219
-              'httpMethod' => 'GET',
220
-              'parameters' => array(
221
-                'projectId' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'jobId' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-                'timeoutMs' => array(
232
-                  'location' => 'query',
233
-                  'type' => 'integer',
234
-                ),
235
-                'maxResults' => array(
236
-                  'location' => 'query',
237
-                  'type' => 'integer',
238
-                ),
239
-                'pageToken' => array(
240
-                  'location' => 'query',
241
-                  'type' => 'string',
242
-                ),
243
-                'startIndex' => array(
244
-                  'location' => 'query',
245
-                  'type' => 'string',
246
-                ),
247
-              ),
248
-            ),'insert' => array(
249
-              'path' => 'projects/{projectId}/jobs',
250
-              'httpMethod' => 'POST',
251
-              'parameters' => array(
252
-                'projectId' => array(
253
-                  'location' => 'path',
254
-                  'type' => 'string',
255
-                  'required' => true,
256
-                ),
257
-              ),
258
-            ),'list' => array(
259
-              'path' => 'projects/{projectId}/jobs',
260
-              'httpMethod' => 'GET',
261
-              'parameters' => array(
262
-                'projectId' => array(
263
-                  'location' => 'path',
264
-                  'type' => 'string',
265
-                  'required' => true,
266
-                ),
267
-                'projection' => array(
268
-                  'location' => 'query',
269
-                  'type' => 'string',
270
-                ),
271
-                'stateFilter' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'string',
274
-                  'repeated' => true,
275
-                ),
276
-                'allUsers' => array(
277
-                  'location' => 'query',
278
-                  'type' => 'boolean',
279
-                ),
280
-                'maxResults' => array(
281
-                  'location' => 'query',
282
-                  'type' => 'integer',
283
-                ),
284
-                'pageToken' => array(
285
-                  'location' => 'query',
286
-                  'type' => 'string',
287
-                ),
288
-              ),
289
-            ),'query' => array(
290
-              'path' => 'projects/{projectId}/queries',
291
-              'httpMethod' => 'POST',
292
-              'parameters' => array(
293
-                'projectId' => array(
294
-                  'location' => 'path',
295
-                  'type' => 'string',
296
-                  'required' => true,
297
-                ),
298
-              ),
299
-            ),
300
-          )
301
-        )
302
-    );
303
-    $this->projects = new Google_Service_Bigquery_Projects_Resource(
304
-        $this,
305
-        $this->serviceName,
306
-        'projects',
307
-        array(
308
-          'methods' => array(
309
-            'list' => array(
310
-              'path' => 'projects',
311
-              'httpMethod' => 'GET',
312
-              'parameters' => array(
313
-                'pageToken' => array(
314
-                  'location' => 'query',
315
-                  'type' => 'string',
316
-                ),
317
-                'maxResults' => array(
318
-                  'location' => 'query',
319
-                  'type' => 'integer',
320
-                ),
321
-              ),
322
-            ),
323
-          )
324
-        )
325
-    );
326
-    $this->tabledata = new Google_Service_Bigquery_Tabledata_Resource(
327
-        $this,
328
-        $this->serviceName,
329
-        'tabledata',
330
-        array(
331
-          'methods' => array(
332
-            'insertAll' => array(
333
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/insertAll',
334
-              'httpMethod' => 'POST',
335
-              'parameters' => array(
336
-                'projectId' => array(
337
-                  'location' => 'path',
338
-                  'type' => 'string',
339
-                  'required' => true,
340
-                ),
341
-                'datasetId' => array(
342
-                  'location' => 'path',
343
-                  'type' => 'string',
344
-                  'required' => true,
345
-                ),
346
-                'tableId' => array(
347
-                  'location' => 'path',
348
-                  'type' => 'string',
349
-                  'required' => true,
350
-                ),
351
-              ),
352
-            ),'list' => array(
353
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/data',
354
-              'httpMethod' => 'GET',
355
-              'parameters' => array(
356
-                'projectId' => array(
357
-                  'location' => 'path',
358
-                  'type' => 'string',
359
-                  'required' => true,
360
-                ),
361
-                'datasetId' => array(
362
-                  'location' => 'path',
363
-                  'type' => 'string',
364
-                  'required' => true,
365
-                ),
366
-                'tableId' => array(
367
-                  'location' => 'path',
368
-                  'type' => 'string',
369
-                  'required' => true,
370
-                ),
371
-                'maxResults' => array(
372
-                  'location' => 'query',
373
-                  'type' => 'integer',
374
-                ),
375
-                'pageToken' => array(
376
-                  'location' => 'query',
377
-                  'type' => 'string',
378
-                ),
379
-                'startIndex' => array(
380
-                  'location' => 'query',
381
-                  'type' => 'string',
382
-                ),
383
-              ),
384
-            ),
385
-          )
386
-        )
387
-    );
388
-    $this->tables = new Google_Service_Bigquery_Tables_Resource(
389
-        $this,
390
-        $this->serviceName,
391
-        'tables',
392
-        array(
393
-          'methods' => array(
394
-            'delete' => array(
395
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
396
-              'httpMethod' => 'DELETE',
397
-              'parameters' => array(
398
-                'projectId' => array(
399
-                  'location' => 'path',
400
-                  'type' => 'string',
401
-                  'required' => true,
402
-                ),
403
-                'datasetId' => array(
404
-                  'location' => 'path',
405
-                  'type' => 'string',
406
-                  'required' => true,
407
-                ),
408
-                'tableId' => array(
409
-                  'location' => 'path',
410
-                  'type' => 'string',
411
-                  'required' => true,
412
-                ),
413
-              ),
414
-            ),'get' => array(
415
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
416
-              'httpMethod' => 'GET',
417
-              'parameters' => array(
418
-                'projectId' => array(
419
-                  'location' => 'path',
420
-                  'type' => 'string',
421
-                  'required' => true,
422
-                ),
423
-                'datasetId' => array(
424
-                  'location' => 'path',
425
-                  'type' => 'string',
426
-                  'required' => true,
427
-                ),
428
-                'tableId' => array(
429
-                  'location' => 'path',
430
-                  'type' => 'string',
431
-                  'required' => true,
432
-                ),
433
-              ),
434
-            ),'insert' => array(
435
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
436
-              'httpMethod' => 'POST',
437
-              'parameters' => array(
438
-                'projectId' => array(
439
-                  'location' => 'path',
440
-                  'type' => 'string',
441
-                  'required' => true,
442
-                ),
443
-                'datasetId' => array(
444
-                  'location' => 'path',
445
-                  'type' => 'string',
446
-                  'required' => true,
447
-                ),
448
-              ),
449
-            ),'list' => array(
450
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
451
-              'httpMethod' => 'GET',
452
-              'parameters' => array(
453
-                'projectId' => array(
454
-                  'location' => 'path',
455
-                  'type' => 'string',
456
-                  'required' => true,
457
-                ),
458
-                'datasetId' => array(
459
-                  'location' => 'path',
460
-                  'type' => 'string',
461
-                  'required' => true,
462
-                ),
463
-                'pageToken' => array(
464
-                  'location' => 'query',
465
-                  'type' => 'string',
466
-                ),
467
-                'maxResults' => array(
468
-                  'location' => 'query',
469
-                  'type' => 'integer',
470
-                ),
471
-              ),
472
-            ),'patch' => array(
473
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
474
-              'httpMethod' => 'PATCH',
475
-              'parameters' => array(
476
-                'projectId' => array(
477
-                  'location' => 'path',
478
-                  'type' => 'string',
479
-                  'required' => true,
480
-                ),
481
-                'datasetId' => array(
482
-                  'location' => 'path',
483
-                  'type' => 'string',
484
-                  'required' => true,
485
-                ),
486
-                'tableId' => array(
487
-                  'location' => 'path',
488
-                  'type' => 'string',
489
-                  'required' => true,
490
-                ),
491
-              ),
492
-            ),'update' => array(
493
-              'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
494
-              'httpMethod' => 'PUT',
495
-              'parameters' => array(
496
-                'projectId' => array(
497
-                  'location' => 'path',
498
-                  'type' => 'string',
499
-                  'required' => true,
500
-                ),
501
-                'datasetId' => array(
502
-                  'location' => 'path',
503
-                  'type' => 'string',
504
-                  'required' => true,
505
-                ),
506
-                'tableId' => array(
507
-                  'location' => 'path',
508
-                  'type' => 'string',
509
-                  'required' => true,
510
-                ),
511
-              ),
512
-            ),
513
-          )
514
-        )
515
-    );
69
+	parent::__construct($client);
70
+	$this->rootUrl = 'https://www.googleapis.com/';
71
+	$this->servicePath = 'bigquery/v2/';
72
+	$this->version = 'v2';
73
+	$this->serviceName = 'bigquery';
74
+
75
+	$this->datasets = new Google_Service_Bigquery_Datasets_Resource(
76
+		$this,
77
+		$this->serviceName,
78
+		'datasets',
79
+		array(
80
+		  'methods' => array(
81
+			'delete' => array(
82
+			  'path' => 'projects/{projectId}/datasets/{datasetId}',
83
+			  'httpMethod' => 'DELETE',
84
+			  'parameters' => array(
85
+				'projectId' => array(
86
+				  'location' => 'path',
87
+				  'type' => 'string',
88
+				  'required' => true,
89
+				),
90
+				'datasetId' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+				'deleteContents' => array(
96
+				  'location' => 'query',
97
+				  'type' => 'boolean',
98
+				),
99
+			  ),
100
+			),'get' => array(
101
+			  'path' => 'projects/{projectId}/datasets/{datasetId}',
102
+			  'httpMethod' => 'GET',
103
+			  'parameters' => array(
104
+				'projectId' => array(
105
+				  'location' => 'path',
106
+				  'type' => 'string',
107
+				  'required' => true,
108
+				),
109
+				'datasetId' => array(
110
+				  'location' => 'path',
111
+				  'type' => 'string',
112
+				  'required' => true,
113
+				),
114
+			  ),
115
+			),'insert' => array(
116
+			  'path' => 'projects/{projectId}/datasets',
117
+			  'httpMethod' => 'POST',
118
+			  'parameters' => array(
119
+				'projectId' => array(
120
+				  'location' => 'path',
121
+				  'type' => 'string',
122
+				  'required' => true,
123
+				),
124
+			  ),
125
+			),'list' => array(
126
+			  'path' => 'projects/{projectId}/datasets',
127
+			  'httpMethod' => 'GET',
128
+			  'parameters' => array(
129
+				'projectId' => array(
130
+				  'location' => 'path',
131
+				  'type' => 'string',
132
+				  'required' => true,
133
+				),
134
+				'pageToken' => array(
135
+				  'location' => 'query',
136
+				  'type' => 'string',
137
+				),
138
+				'all' => array(
139
+				  'location' => 'query',
140
+				  'type' => 'boolean',
141
+				),
142
+				'maxResults' => array(
143
+				  'location' => 'query',
144
+				  'type' => 'integer',
145
+				),
146
+			  ),
147
+			),'patch' => array(
148
+			  'path' => 'projects/{projectId}/datasets/{datasetId}',
149
+			  'httpMethod' => 'PATCH',
150
+			  'parameters' => array(
151
+				'projectId' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'datasetId' => array(
157
+				  'location' => 'path',
158
+				  'type' => 'string',
159
+				  'required' => true,
160
+				),
161
+			  ),
162
+			),'update' => array(
163
+			  'path' => 'projects/{projectId}/datasets/{datasetId}',
164
+			  'httpMethod' => 'PUT',
165
+			  'parameters' => array(
166
+				'projectId' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'datasetId' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+			  ),
177
+			),
178
+		  )
179
+		)
180
+	);
181
+	$this->jobs = new Google_Service_Bigquery_Jobs_Resource(
182
+		$this,
183
+		$this->serviceName,
184
+		'jobs',
185
+		array(
186
+		  'methods' => array(
187
+			'cancel' => array(
188
+			  'path' => 'project/{projectId}/jobs/{jobId}/cancel',
189
+			  'httpMethod' => 'POST',
190
+			  'parameters' => array(
191
+				'projectId' => array(
192
+				  'location' => 'path',
193
+				  'type' => 'string',
194
+				  'required' => true,
195
+				),
196
+				'jobId' => array(
197
+				  'location' => 'path',
198
+				  'type' => 'string',
199
+				  'required' => true,
200
+				),
201
+			  ),
202
+			),'get' => array(
203
+			  'path' => 'projects/{projectId}/jobs/{jobId}',
204
+			  'httpMethod' => 'GET',
205
+			  'parameters' => array(
206
+				'projectId' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+				'jobId' => array(
212
+				  'location' => 'path',
213
+				  'type' => 'string',
214
+				  'required' => true,
215
+				),
216
+			  ),
217
+			),'getQueryResults' => array(
218
+			  'path' => 'projects/{projectId}/queries/{jobId}',
219
+			  'httpMethod' => 'GET',
220
+			  'parameters' => array(
221
+				'projectId' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'jobId' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+				'timeoutMs' => array(
232
+				  'location' => 'query',
233
+				  'type' => 'integer',
234
+				),
235
+				'maxResults' => array(
236
+				  'location' => 'query',
237
+				  'type' => 'integer',
238
+				),
239
+				'pageToken' => array(
240
+				  'location' => 'query',
241
+				  'type' => 'string',
242
+				),
243
+				'startIndex' => array(
244
+				  'location' => 'query',
245
+				  'type' => 'string',
246
+				),
247
+			  ),
248
+			),'insert' => array(
249
+			  'path' => 'projects/{projectId}/jobs',
250
+			  'httpMethod' => 'POST',
251
+			  'parameters' => array(
252
+				'projectId' => array(
253
+				  'location' => 'path',
254
+				  'type' => 'string',
255
+				  'required' => true,
256
+				),
257
+			  ),
258
+			),'list' => array(
259
+			  'path' => 'projects/{projectId}/jobs',
260
+			  'httpMethod' => 'GET',
261
+			  'parameters' => array(
262
+				'projectId' => array(
263
+				  'location' => 'path',
264
+				  'type' => 'string',
265
+				  'required' => true,
266
+				),
267
+				'projection' => array(
268
+				  'location' => 'query',
269
+				  'type' => 'string',
270
+				),
271
+				'stateFilter' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'string',
274
+				  'repeated' => true,
275
+				),
276
+				'allUsers' => array(
277
+				  'location' => 'query',
278
+				  'type' => 'boolean',
279
+				),
280
+				'maxResults' => array(
281
+				  'location' => 'query',
282
+				  'type' => 'integer',
283
+				),
284
+				'pageToken' => array(
285
+				  'location' => 'query',
286
+				  'type' => 'string',
287
+				),
288
+			  ),
289
+			),'query' => array(
290
+			  'path' => 'projects/{projectId}/queries',
291
+			  'httpMethod' => 'POST',
292
+			  'parameters' => array(
293
+				'projectId' => array(
294
+				  'location' => 'path',
295
+				  'type' => 'string',
296
+				  'required' => true,
297
+				),
298
+			  ),
299
+			),
300
+		  )
301
+		)
302
+	);
303
+	$this->projects = new Google_Service_Bigquery_Projects_Resource(
304
+		$this,
305
+		$this->serviceName,
306
+		'projects',
307
+		array(
308
+		  'methods' => array(
309
+			'list' => array(
310
+			  'path' => 'projects',
311
+			  'httpMethod' => 'GET',
312
+			  'parameters' => array(
313
+				'pageToken' => array(
314
+				  'location' => 'query',
315
+				  'type' => 'string',
316
+				),
317
+				'maxResults' => array(
318
+				  'location' => 'query',
319
+				  'type' => 'integer',
320
+				),
321
+			  ),
322
+			),
323
+		  )
324
+		)
325
+	);
326
+	$this->tabledata = new Google_Service_Bigquery_Tabledata_Resource(
327
+		$this,
328
+		$this->serviceName,
329
+		'tabledata',
330
+		array(
331
+		  'methods' => array(
332
+			'insertAll' => array(
333
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/insertAll',
334
+			  'httpMethod' => 'POST',
335
+			  'parameters' => array(
336
+				'projectId' => array(
337
+				  'location' => 'path',
338
+				  'type' => 'string',
339
+				  'required' => true,
340
+				),
341
+				'datasetId' => array(
342
+				  'location' => 'path',
343
+				  'type' => 'string',
344
+				  'required' => true,
345
+				),
346
+				'tableId' => array(
347
+				  'location' => 'path',
348
+				  'type' => 'string',
349
+				  'required' => true,
350
+				),
351
+			  ),
352
+			),'list' => array(
353
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/data',
354
+			  'httpMethod' => 'GET',
355
+			  'parameters' => array(
356
+				'projectId' => array(
357
+				  'location' => 'path',
358
+				  'type' => 'string',
359
+				  'required' => true,
360
+				),
361
+				'datasetId' => array(
362
+				  'location' => 'path',
363
+				  'type' => 'string',
364
+				  'required' => true,
365
+				),
366
+				'tableId' => array(
367
+				  'location' => 'path',
368
+				  'type' => 'string',
369
+				  'required' => true,
370
+				),
371
+				'maxResults' => array(
372
+				  'location' => 'query',
373
+				  'type' => 'integer',
374
+				),
375
+				'pageToken' => array(
376
+				  'location' => 'query',
377
+				  'type' => 'string',
378
+				),
379
+				'startIndex' => array(
380
+				  'location' => 'query',
381
+				  'type' => 'string',
382
+				),
383
+			  ),
384
+			),
385
+		  )
386
+		)
387
+	);
388
+	$this->tables = new Google_Service_Bigquery_Tables_Resource(
389
+		$this,
390
+		$this->serviceName,
391
+		'tables',
392
+		array(
393
+		  'methods' => array(
394
+			'delete' => array(
395
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
396
+			  'httpMethod' => 'DELETE',
397
+			  'parameters' => array(
398
+				'projectId' => array(
399
+				  'location' => 'path',
400
+				  'type' => 'string',
401
+				  'required' => true,
402
+				),
403
+				'datasetId' => array(
404
+				  'location' => 'path',
405
+				  'type' => 'string',
406
+				  'required' => true,
407
+				),
408
+				'tableId' => array(
409
+				  'location' => 'path',
410
+				  'type' => 'string',
411
+				  'required' => true,
412
+				),
413
+			  ),
414
+			),'get' => array(
415
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
416
+			  'httpMethod' => 'GET',
417
+			  'parameters' => array(
418
+				'projectId' => array(
419
+				  'location' => 'path',
420
+				  'type' => 'string',
421
+				  'required' => true,
422
+				),
423
+				'datasetId' => array(
424
+				  'location' => 'path',
425
+				  'type' => 'string',
426
+				  'required' => true,
427
+				),
428
+				'tableId' => array(
429
+				  'location' => 'path',
430
+				  'type' => 'string',
431
+				  'required' => true,
432
+				),
433
+			  ),
434
+			),'insert' => array(
435
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
436
+			  'httpMethod' => 'POST',
437
+			  'parameters' => array(
438
+				'projectId' => array(
439
+				  'location' => 'path',
440
+				  'type' => 'string',
441
+				  'required' => true,
442
+				),
443
+				'datasetId' => array(
444
+				  'location' => 'path',
445
+				  'type' => 'string',
446
+				  'required' => true,
447
+				),
448
+			  ),
449
+			),'list' => array(
450
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
451
+			  'httpMethod' => 'GET',
452
+			  'parameters' => array(
453
+				'projectId' => array(
454
+				  'location' => 'path',
455
+				  'type' => 'string',
456
+				  'required' => true,
457
+				),
458
+				'datasetId' => array(
459
+				  'location' => 'path',
460
+				  'type' => 'string',
461
+				  'required' => true,
462
+				),
463
+				'pageToken' => array(
464
+				  'location' => 'query',
465
+				  'type' => 'string',
466
+				),
467
+				'maxResults' => array(
468
+				  'location' => 'query',
469
+				  'type' => 'integer',
470
+				),
471
+			  ),
472
+			),'patch' => array(
473
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
474
+			  'httpMethod' => 'PATCH',
475
+			  'parameters' => array(
476
+				'projectId' => array(
477
+				  'location' => 'path',
478
+				  'type' => 'string',
479
+				  'required' => true,
480
+				),
481
+				'datasetId' => array(
482
+				  'location' => 'path',
483
+				  'type' => 'string',
484
+				  'required' => true,
485
+				),
486
+				'tableId' => array(
487
+				  'location' => 'path',
488
+				  'type' => 'string',
489
+				  'required' => true,
490
+				),
491
+			  ),
492
+			),'update' => array(
493
+			  'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
494
+			  'httpMethod' => 'PUT',
495
+			  'parameters' => array(
496
+				'projectId' => array(
497
+				  'location' => 'path',
498
+				  'type' => 'string',
499
+				  'required' => true,
500
+				),
501
+				'datasetId' => array(
502
+				  'location' => 'path',
503
+				  'type' => 'string',
504
+				  'required' => true,
505
+				),
506
+				'tableId' => array(
507
+				  'location' => 'path',
508
+				  'type' => 'string',
509
+				  'required' => true,
510
+				),
511
+			  ),
512
+			),
513
+		  )
514
+		)
515
+	);
516 516
   }
517 517
 }
518 518
 
@@ -544,9 +544,9 @@  discard block
 block discarded – undo
544 544
    */
545 545
   public function delete($projectId, $datasetId, $optParams = array())
546 546
   {
547
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
548
-    $params = array_merge($params, $optParams);
549
-    return $this->call('delete', array($params));
547
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId);
548
+	$params = array_merge($params, $optParams);
549
+	return $this->call('delete', array($params));
550 550
   }
551 551
 
552 552
   /**
@@ -559,9 +559,9 @@  discard block
 block discarded – undo
559 559
    */
560 560
   public function get($projectId, $datasetId, $optParams = array())
561 561
   {
562
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
563
-    $params = array_merge($params, $optParams);
564
-    return $this->call('get', array($params), "Google_Service_Bigquery_Dataset");
562
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId);
563
+	$params = array_merge($params, $optParams);
564
+	return $this->call('get', array($params), "Google_Service_Bigquery_Dataset");
565 565
   }
566 566
 
567 567
   /**
@@ -574,9 +574,9 @@  discard block
 block discarded – undo
574 574
    */
575 575
   public function insert($projectId, Google_Service_Bigquery_Dataset $postBody, $optParams = array())
576 576
   {
577
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
578
-    $params = array_merge($params, $optParams);
579
-    return $this->call('insert', array($params), "Google_Service_Bigquery_Dataset");
577
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
578
+	$params = array_merge($params, $optParams);
579
+	return $this->call('insert', array($params), "Google_Service_Bigquery_Dataset");
580 580
   }
581 581
 
582 582
   /**
@@ -594,9 +594,9 @@  discard block
 block discarded – undo
594 594
    */
595 595
   public function listDatasets($projectId, $optParams = array())
596 596
   {
597
-    $params = array('projectId' => $projectId);
598
-    $params = array_merge($params, $optParams);
599
-    return $this->call('list', array($params), "Google_Service_Bigquery_DatasetList");
597
+	$params = array('projectId' => $projectId);
598
+	$params = array_merge($params, $optParams);
599
+	return $this->call('list', array($params), "Google_Service_Bigquery_DatasetList");
600 600
   }
601 601
 
602 602
   /**
@@ -613,9 +613,9 @@  discard block
 block discarded – undo
613 613
    */
614 614
   public function patch($projectId, $datasetId, Google_Service_Bigquery_Dataset $postBody, $optParams = array())
615 615
   {
616
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
617
-    $params = array_merge($params, $optParams);
618
-    return $this->call('patch', array($params), "Google_Service_Bigquery_Dataset");
616
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
617
+	$params = array_merge($params, $optParams);
618
+	return $this->call('patch', array($params), "Google_Service_Bigquery_Dataset");
619 619
   }
620 620
 
621 621
   /**
@@ -631,9 +631,9 @@  discard block
 block discarded – undo
631 631
    */
632 632
   public function update($projectId, $datasetId, Google_Service_Bigquery_Dataset $postBody, $optParams = array())
633 633
   {
634
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
635
-    $params = array_merge($params, $optParams);
636
-    return $this->call('update', array($params), "Google_Service_Bigquery_Dataset");
634
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
635
+	$params = array_merge($params, $optParams);
636
+	return $this->call('update', array($params), "Google_Service_Bigquery_Dataset");
637 637
   }
638 638
 }
639 639
 
@@ -660,9 +660,9 @@  discard block
 block discarded – undo
660 660
    */
661 661
   public function cancel($projectId, $jobId, $optParams = array())
662 662
   {
663
-    $params = array('projectId' => $projectId, 'jobId' => $jobId);
664
-    $params = array_merge($params, $optParams);
665
-    return $this->call('cancel', array($params), "Google_Service_Bigquery_JobCancelResponse");
663
+	$params = array('projectId' => $projectId, 'jobId' => $jobId);
664
+	$params = array_merge($params, $optParams);
665
+	return $this->call('cancel', array($params), "Google_Service_Bigquery_JobCancelResponse");
666 666
   }
667 667
 
668 668
   /**
@@ -677,9 +677,9 @@  discard block
 block discarded – undo
677 677
    */
678 678
   public function get($projectId, $jobId, $optParams = array())
679 679
   {
680
-    $params = array('projectId' => $projectId, 'jobId' => $jobId);
681
-    $params = array_merge($params, $optParams);
682
-    return $this->call('get', array($params), "Google_Service_Bigquery_Job");
680
+	$params = array('projectId' => $projectId, 'jobId' => $jobId);
681
+	$params = array_merge($params, $optParams);
682
+	return $this->call('get', array($params), "Google_Service_Bigquery_Job");
683 683
   }
684 684
 
685 685
   /**
@@ -701,9 +701,9 @@  discard block
 block discarded – undo
701 701
    */
702 702
   public function getQueryResults($projectId, $jobId, $optParams = array())
703 703
   {
704
-    $params = array('projectId' => $projectId, 'jobId' => $jobId);
705
-    $params = array_merge($params, $optParams);
706
-    return $this->call('getQueryResults', array($params), "Google_Service_Bigquery_GetQueryResultsResponse");
704
+	$params = array('projectId' => $projectId, 'jobId' => $jobId);
705
+	$params = array_merge($params, $optParams);
706
+	return $this->call('getQueryResults', array($params), "Google_Service_Bigquery_GetQueryResultsResponse");
707 707
   }
708 708
 
709 709
   /**
@@ -718,9 +718,9 @@  discard block
 block discarded – undo
718 718
    */
719 719
   public function insert($projectId, Google_Service_Bigquery_Job $postBody, $optParams = array())
720 720
   {
721
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
722
-    $params = array_merge($params, $optParams);
723
-    return $this->call('insert', array($params), "Google_Service_Bigquery_Job");
721
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
722
+	$params = array_merge($params, $optParams);
723
+	return $this->call('insert', array($params), "Google_Service_Bigquery_Job");
724 724
   }
725 725
 
726 726
   /**
@@ -745,9 +745,9 @@  discard block
 block discarded – undo
745 745
    */
746 746
   public function listJobs($projectId, $optParams = array())
747 747
   {
748
-    $params = array('projectId' => $projectId);
749
-    $params = array_merge($params, $optParams);
750
-    return $this->call('list', array($params), "Google_Service_Bigquery_JobList");
748
+	$params = array('projectId' => $projectId);
749
+	$params = array_merge($params, $optParams);
750
+	return $this->call('list', array($params), "Google_Service_Bigquery_JobList");
751 751
   }
752 752
 
753 753
   /**
@@ -761,9 +761,9 @@  discard block
 block discarded – undo
761 761
    */
762 762
   public function query($projectId, Google_Service_Bigquery_QueryRequest $postBody, $optParams = array())
763 763
   {
764
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
765
-    $params = array_merge($params, $optParams);
766
-    return $this->call('query', array($params), "Google_Service_Bigquery_QueryResponse");
764
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
765
+	$params = array_merge($params, $optParams);
766
+	return $this->call('query', array($params), "Google_Service_Bigquery_QueryResponse");
767 767
   }
768 768
 }
769 769
 
@@ -791,9 +791,9 @@  discard block
 block discarded – undo
791 791
    */
792 792
   public function listProjects($optParams = array())
793 793
   {
794
-    $params = array();
795
-    $params = array_merge($params, $optParams);
796
-    return $this->call('list', array($params), "Google_Service_Bigquery_ProjectList");
794
+	$params = array();
795
+	$params = array_merge($params, $optParams);
796
+	return $this->call('list', array($params), "Google_Service_Bigquery_ProjectList");
797 797
   }
798 798
 }
799 799
 
@@ -821,9 +821,9 @@  discard block
 block discarded – undo
821 821
    */
822 822
   public function insertAll($projectId, $datasetId, $tableId, Google_Service_Bigquery_TableDataInsertAllRequest $postBody, $optParams = array())
823 823
   {
824
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
825
-    $params = array_merge($params, $optParams);
826
-    return $this->call('insertAll', array($params), "Google_Service_Bigquery_TableDataInsertAllResponse");
824
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
825
+	$params = array_merge($params, $optParams);
826
+	return $this->call('insertAll', array($params), "Google_Service_Bigquery_TableDataInsertAllResponse");
827 827
   }
828 828
 
829 829
   /**
@@ -843,9 +843,9 @@  discard block
 block discarded – undo
843 843
    */
844 844
   public function listTabledata($projectId, $datasetId, $tableId, $optParams = array())
845 845
   {
846
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
847
-    $params = array_merge($params, $optParams);
848
-    return $this->call('list', array($params), "Google_Service_Bigquery_TableDataList");
846
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
847
+	$params = array_merge($params, $optParams);
848
+	return $this->call('list', array($params), "Google_Service_Bigquery_TableDataList");
849 849
   }
850 850
 }
851 851
 
@@ -871,9 +871,9 @@  discard block
 block discarded – undo
871 871
    */
872 872
   public function delete($projectId, $datasetId, $tableId, $optParams = array())
873 873
   {
874
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
875
-    $params = array_merge($params, $optParams);
876
-    return $this->call('delete', array($params));
874
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
875
+	$params = array_merge($params, $optParams);
876
+	return $this->call('delete', array($params));
877 877
   }
878 878
 
879 879
   /**
@@ -889,9 +889,9 @@  discard block
 block discarded – undo
889 889
    */
890 890
   public function get($projectId, $datasetId, $tableId, $optParams = array())
891 891
   {
892
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
893
-    $params = array_merge($params, $optParams);
894
-    return $this->call('get', array($params), "Google_Service_Bigquery_Table");
892
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId);
893
+	$params = array_merge($params, $optParams);
894
+	return $this->call('get', array($params), "Google_Service_Bigquery_Table");
895 895
   }
896 896
 
897 897
   /**
@@ -905,9 +905,9 @@  discard block
 block discarded – undo
905 905
    */
906 906
   public function insert($projectId, $datasetId, Google_Service_Bigquery_Table $postBody, $optParams = array())
907 907
   {
908
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
909
-    $params = array_merge($params, $optParams);
910
-    return $this->call('insert', array($params), "Google_Service_Bigquery_Table");
908
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'postBody' => $postBody);
909
+	$params = array_merge($params, $optParams);
910
+	return $this->call('insert', array($params), "Google_Service_Bigquery_Table");
911 911
   }
912 912
 
913 913
   /**
@@ -925,9 +925,9 @@  discard block
 block discarded – undo
925 925
    */
926 926
   public function listTables($projectId, $datasetId, $optParams = array())
927 927
   {
928
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId);
929
-    $params = array_merge($params, $optParams);
930
-    return $this->call('list', array($params), "Google_Service_Bigquery_TableList");
928
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId);
929
+	$params = array_merge($params, $optParams);
930
+	return $this->call('list', array($params), "Google_Service_Bigquery_TableList");
931 931
   }
932 932
 
933 933
   /**
@@ -945,9 +945,9 @@  discard block
 block discarded – undo
945 945
    */
946 946
   public function patch($projectId, $datasetId, $tableId, Google_Service_Bigquery_Table $postBody, $optParams = array())
947 947
   {
948
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
949
-    $params = array_merge($params, $optParams);
950
-    return $this->call('patch', array($params), "Google_Service_Bigquery_Table");
948
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
949
+	$params = array_merge($params, $optParams);
950
+	return $this->call('patch', array($params), "Google_Service_Bigquery_Table");
951 951
   }
952 952
 
953 953
   /**
@@ -964,9 +964,9 @@  discard block
 block discarded – undo
964 964
    */
965 965
   public function update($projectId, $datasetId, $tableId, Google_Service_Bigquery_Table $postBody, $optParams = array())
966 966
   {
967
-    $params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
968
-    $params = array_merge($params, $optParams);
969
-    return $this->call('update', array($params), "Google_Service_Bigquery_Table");
967
+	$params = array('projectId' => $projectId, 'datasetId' => $datasetId, 'tableId' => $tableId, 'postBody' => $postBody);
968
+	$params = array_merge($params, $optParams);
969
+	return $this->call('update', array($params), "Google_Service_Bigquery_Table");
970 970
   }
971 971
 }
972 972
 
@@ -987,51 +987,51 @@  discard block
 block discarded – undo
987 987
 
988 988
   public function setAllowJaggedRows($allowJaggedRows)
989 989
   {
990
-    $this->allowJaggedRows = $allowJaggedRows;
990
+	$this->allowJaggedRows = $allowJaggedRows;
991 991
   }
992 992
   public function getAllowJaggedRows()
993 993
   {
994
-    return $this->allowJaggedRows;
994
+	return $this->allowJaggedRows;
995 995
   }
996 996
   public function setAllowQuotedNewlines($allowQuotedNewlines)
997 997
   {
998
-    $this->allowQuotedNewlines = $allowQuotedNewlines;
998
+	$this->allowQuotedNewlines = $allowQuotedNewlines;
999 999
   }
1000 1000
   public function getAllowQuotedNewlines()
1001 1001
   {
1002
-    return $this->allowQuotedNewlines;
1002
+	return $this->allowQuotedNewlines;
1003 1003
   }
1004 1004
   public function setEncoding($encoding)
1005 1005
   {
1006
-    $this->encoding = $encoding;
1006
+	$this->encoding = $encoding;
1007 1007
   }
1008 1008
   public function getEncoding()
1009 1009
   {
1010
-    return $this->encoding;
1010
+	return $this->encoding;
1011 1011
   }
1012 1012
   public function setFieldDelimiter($fieldDelimiter)
1013 1013
   {
1014
-    $this->fieldDelimiter = $fieldDelimiter;
1014
+	$this->fieldDelimiter = $fieldDelimiter;
1015 1015
   }
1016 1016
   public function getFieldDelimiter()
1017 1017
   {
1018
-    return $this->fieldDelimiter;
1018
+	return $this->fieldDelimiter;
1019 1019
   }
1020 1020
   public function setQuote($quote)
1021 1021
   {
1022
-    $this->quote = $quote;
1022
+	$this->quote = $quote;
1023 1023
   }
1024 1024
   public function getQuote()
1025 1025
   {
1026
-    return $this->quote;
1026
+	return $this->quote;
1027 1027
   }
1028 1028
   public function setSkipLeadingRows($skipLeadingRows)
1029 1029
   {
1030
-    $this->skipLeadingRows = $skipLeadingRows;
1030
+	$this->skipLeadingRows = $skipLeadingRows;
1031 1031
   }
1032 1032
   public function getSkipLeadingRows()
1033 1033
   {
1034
-    return $this->skipLeadingRows;
1034
+	return $this->skipLeadingRows;
1035 1035
   }
1036 1036
 }
1037 1037
 
@@ -1058,99 +1058,99 @@  discard block
 block discarded – undo
1058 1058
 
1059 1059
   public function setAccess($access)
1060 1060
   {
1061
-    $this->access = $access;
1061
+	$this->access = $access;
1062 1062
   }
1063 1063
   public function getAccess()
1064 1064
   {
1065
-    return $this->access;
1065
+	return $this->access;
1066 1066
   }
1067 1067
   public function setCreationTime($creationTime)
1068 1068
   {
1069
-    $this->creationTime = $creationTime;
1069
+	$this->creationTime = $creationTime;
1070 1070
   }
1071 1071
   public function getCreationTime()
1072 1072
   {
1073
-    return $this->creationTime;
1073
+	return $this->creationTime;
1074 1074
   }
1075 1075
   public function setDatasetReference(Google_Service_Bigquery_DatasetReference $datasetReference)
1076 1076
   {
1077
-    $this->datasetReference = $datasetReference;
1077
+	$this->datasetReference = $datasetReference;
1078 1078
   }
1079 1079
   public function getDatasetReference()
1080 1080
   {
1081
-    return $this->datasetReference;
1081
+	return $this->datasetReference;
1082 1082
   }
1083 1083
   public function setDefaultTableExpirationMs($defaultTableExpirationMs)
1084 1084
   {
1085
-    $this->defaultTableExpirationMs = $defaultTableExpirationMs;
1085
+	$this->defaultTableExpirationMs = $defaultTableExpirationMs;
1086 1086
   }
1087 1087
   public function getDefaultTableExpirationMs()
1088 1088
   {
1089
-    return $this->defaultTableExpirationMs;
1089
+	return $this->defaultTableExpirationMs;
1090 1090
   }
1091 1091
   public function setDescription($description)
1092 1092
   {
1093
-    $this->description = $description;
1093
+	$this->description = $description;
1094 1094
   }
1095 1095
   public function getDescription()
1096 1096
   {
1097
-    return $this->description;
1097
+	return $this->description;
1098 1098
   }
1099 1099
   public function setEtag($etag)
1100 1100
   {
1101
-    $this->etag = $etag;
1101
+	$this->etag = $etag;
1102 1102
   }
1103 1103
   public function getEtag()
1104 1104
   {
1105
-    return $this->etag;
1105
+	return $this->etag;
1106 1106
   }
1107 1107
   public function setFriendlyName($friendlyName)
1108 1108
   {
1109
-    $this->friendlyName = $friendlyName;
1109
+	$this->friendlyName = $friendlyName;
1110 1110
   }
1111 1111
   public function getFriendlyName()
1112 1112
   {
1113
-    return $this->friendlyName;
1113
+	return $this->friendlyName;
1114 1114
   }
1115 1115
   public function setId($id)
1116 1116
   {
1117
-    $this->id = $id;
1117
+	$this->id = $id;
1118 1118
   }
1119 1119
   public function getId()
1120 1120
   {
1121
-    return $this->id;
1121
+	return $this->id;
1122 1122
   }
1123 1123
   public function setKind($kind)
1124 1124
   {
1125
-    $this->kind = $kind;
1125
+	$this->kind = $kind;
1126 1126
   }
1127 1127
   public function getKind()
1128 1128
   {
1129
-    return $this->kind;
1129
+	return $this->kind;
1130 1130
   }
1131 1131
   public function setLastModifiedTime($lastModifiedTime)
1132 1132
   {
1133
-    $this->lastModifiedTime = $lastModifiedTime;
1133
+	$this->lastModifiedTime = $lastModifiedTime;
1134 1134
   }
1135 1135
   public function getLastModifiedTime()
1136 1136
   {
1137
-    return $this->lastModifiedTime;
1137
+	return $this->lastModifiedTime;
1138 1138
   }
1139 1139
   public function setLocation($location)
1140 1140
   {
1141
-    $this->location = $location;
1141
+	$this->location = $location;
1142 1142
   }
1143 1143
   public function getLocation()
1144 1144
   {
1145
-    return $this->location;
1145
+	return $this->location;
1146 1146
   }
1147 1147
   public function setSelfLink($selfLink)
1148 1148
   {
1149
-    $this->selfLink = $selfLink;
1149
+	$this->selfLink = $selfLink;
1150 1150
   }
1151 1151
   public function getSelfLink()
1152 1152
   {
1153
-    return $this->selfLink;
1153
+	return $this->selfLink;
1154 1154
   }
1155 1155
 }
1156 1156
 
@@ -1169,51 +1169,51 @@  discard block
 block discarded – undo
1169 1169
 
1170 1170
   public function setDomain($domain)
1171 1171
   {
1172
-    $this->domain = $domain;
1172
+	$this->domain = $domain;
1173 1173
   }
1174 1174
   public function getDomain()
1175 1175
   {
1176
-    return $this->domain;
1176
+	return $this->domain;
1177 1177
   }
1178 1178
   public function setGroupByEmail($groupByEmail)
1179 1179
   {
1180
-    $this->groupByEmail = $groupByEmail;
1180
+	$this->groupByEmail = $groupByEmail;
1181 1181
   }
1182 1182
   public function getGroupByEmail()
1183 1183
   {
1184
-    return $this->groupByEmail;
1184
+	return $this->groupByEmail;
1185 1185
   }
1186 1186
   public function setRole($role)
1187 1187
   {
1188
-    $this->role = $role;
1188
+	$this->role = $role;
1189 1189
   }
1190 1190
   public function getRole()
1191 1191
   {
1192
-    return $this->role;
1192
+	return $this->role;
1193 1193
   }
1194 1194
   public function setSpecialGroup($specialGroup)
1195 1195
   {
1196
-    $this->specialGroup = $specialGroup;
1196
+	$this->specialGroup = $specialGroup;
1197 1197
   }
1198 1198
   public function getSpecialGroup()
1199 1199
   {
1200
-    return $this->specialGroup;
1200
+	return $this->specialGroup;
1201 1201
   }
1202 1202
   public function setUserByEmail($userByEmail)
1203 1203
   {
1204
-    $this->userByEmail = $userByEmail;
1204
+	$this->userByEmail = $userByEmail;
1205 1205
   }
1206 1206
   public function getUserByEmail()
1207 1207
   {
1208
-    return $this->userByEmail;
1208
+	return $this->userByEmail;
1209 1209
   }
1210 1210
   public function setView(Google_Service_Bigquery_TableReference $view)
1211 1211
   {
1212
-    $this->view = $view;
1212
+	$this->view = $view;
1213 1213
   }
1214 1214
   public function getView()
1215 1215
   {
1216
-    return $this->view;
1216
+	return $this->view;
1217 1217
   }
1218 1218
 }
1219 1219
 
@@ -1231,35 +1231,35 @@  discard block
 block discarded – undo
1231 1231
 
1232 1232
   public function setDatasets($datasets)
1233 1233
   {
1234
-    $this->datasets = $datasets;
1234
+	$this->datasets = $datasets;
1235 1235
   }
1236 1236
   public function getDatasets()
1237 1237
   {
1238
-    return $this->datasets;
1238
+	return $this->datasets;
1239 1239
   }
1240 1240
   public function setEtag($etag)
1241 1241
   {
1242
-    $this->etag = $etag;
1242
+	$this->etag = $etag;
1243 1243
   }
1244 1244
   public function getEtag()
1245 1245
   {
1246
-    return $this->etag;
1246
+	return $this->etag;
1247 1247
   }
1248 1248
   public function setKind($kind)
1249 1249
   {
1250
-    $this->kind = $kind;
1250
+	$this->kind = $kind;
1251 1251
   }
1252 1252
   public function getKind()
1253 1253
   {
1254
-    return $this->kind;
1254
+	return $this->kind;
1255 1255
   }
1256 1256
   public function setNextPageToken($nextPageToken)
1257 1257
   {
1258
-    $this->nextPageToken = $nextPageToken;
1258
+	$this->nextPageToken = $nextPageToken;
1259 1259
   }
1260 1260
   public function getNextPageToken()
1261 1261
   {
1262
-    return $this->nextPageToken;
1262
+	return $this->nextPageToken;
1263 1263
   }
1264 1264
 }
1265 1265
 
@@ -1276,35 +1276,35 @@  discard block
 block discarded – undo
1276 1276
 
1277 1277
   public function setDatasetReference(Google_Service_Bigquery_DatasetReference $datasetReference)
1278 1278
   {
1279
-    $this->datasetReference = $datasetReference;
1279
+	$this->datasetReference = $datasetReference;
1280 1280
   }
1281 1281
   public function getDatasetReference()
1282 1282
   {
1283
-    return $this->datasetReference;
1283
+	return $this->datasetReference;
1284 1284
   }
1285 1285
   public function setFriendlyName($friendlyName)
1286 1286
   {
1287
-    $this->friendlyName = $friendlyName;
1287
+	$this->friendlyName = $friendlyName;
1288 1288
   }
1289 1289
   public function getFriendlyName()
1290 1290
   {
1291
-    return $this->friendlyName;
1291
+	return $this->friendlyName;
1292 1292
   }
1293 1293
   public function setId($id)
1294 1294
   {
1295
-    $this->id = $id;
1295
+	$this->id = $id;
1296 1296
   }
1297 1297
   public function getId()
1298 1298
   {
1299
-    return $this->id;
1299
+	return $this->id;
1300 1300
   }
1301 1301
   public function setKind($kind)
1302 1302
   {
1303
-    $this->kind = $kind;
1303
+	$this->kind = $kind;
1304 1304
   }
1305 1305
   public function getKind()
1306 1306
   {
1307
-    return $this->kind;
1307
+	return $this->kind;
1308 1308
   }
1309 1309
 }
1310 1310
 
@@ -1318,19 +1318,19 @@  discard block
 block discarded – undo
1318 1318
 
1319 1319
   public function setDatasetId($datasetId)
1320 1320
   {
1321
-    $this->datasetId = $datasetId;
1321
+	$this->datasetId = $datasetId;
1322 1322
   }
1323 1323
   public function getDatasetId()
1324 1324
   {
1325
-    return $this->datasetId;
1325
+	return $this->datasetId;
1326 1326
   }
1327 1327
   public function setProjectId($projectId)
1328 1328
   {
1329
-    $this->projectId = $projectId;
1329
+	$this->projectId = $projectId;
1330 1330
   }
1331 1331
   public function getProjectId()
1332 1332
   {
1333
-    return $this->projectId;
1333
+	return $this->projectId;
1334 1334
   }
1335 1335
 }
1336 1336
 
@@ -1346,35 +1346,35 @@  discard block
 block discarded – undo
1346 1346
 
1347 1347
   public function setDebugInfo($debugInfo)
1348 1348
   {
1349
-    $this->debugInfo = $debugInfo;
1349
+	$this->debugInfo = $debugInfo;
1350 1350
   }
1351 1351
   public function getDebugInfo()
1352 1352
   {
1353
-    return $this->debugInfo;
1353
+	return $this->debugInfo;
1354 1354
   }
1355 1355
   public function setLocation($location)
1356 1356
   {
1357
-    $this->location = $location;
1357
+	$this->location = $location;
1358 1358
   }
1359 1359
   public function getLocation()
1360 1360
   {
1361
-    return $this->location;
1361
+	return $this->location;
1362 1362
   }
1363 1363
   public function setMessage($message)
1364 1364
   {
1365
-    $this->message = $message;
1365
+	$this->message = $message;
1366 1366
   }
1367 1367
   public function getMessage()
1368 1368
   {
1369
-    return $this->message;
1369
+	return $this->message;
1370 1370
   }
1371 1371
   public function setReason($reason)
1372 1372
   {
1373
-    $this->reason = $reason;
1373
+	$this->reason = $reason;
1374 1374
   }
1375 1375
   public function getReason()
1376 1376
   {
1377
-    return $this->reason;
1377
+	return $this->reason;
1378 1378
   }
1379 1379
 }
1380 1380
 
@@ -1396,59 +1396,59 @@  discard block
 block discarded – undo
1396 1396
 
1397 1397
   public function setCompression($compression)
1398 1398
   {
1399
-    $this->compression = $compression;
1399
+	$this->compression = $compression;
1400 1400
   }
1401 1401
   public function getCompression()
1402 1402
   {
1403
-    return $this->compression;
1403
+	return $this->compression;
1404 1404
   }
1405 1405
   public function setCsvOptions(Google_Service_Bigquery_CsvOptions $csvOptions)
1406 1406
   {
1407
-    $this->csvOptions = $csvOptions;
1407
+	$this->csvOptions = $csvOptions;
1408 1408
   }
1409 1409
   public function getCsvOptions()
1410 1410
   {
1411
-    return $this->csvOptions;
1411
+	return $this->csvOptions;
1412 1412
   }
1413 1413
   public function setIgnoreUnknownValues($ignoreUnknownValues)
1414 1414
   {
1415
-    $this->ignoreUnknownValues = $ignoreUnknownValues;
1415
+	$this->ignoreUnknownValues = $ignoreUnknownValues;
1416 1416
   }
1417 1417
   public function getIgnoreUnknownValues()
1418 1418
   {
1419
-    return $this->ignoreUnknownValues;
1419
+	return $this->ignoreUnknownValues;
1420 1420
   }
1421 1421
   public function setMaxBadRecords($maxBadRecords)
1422 1422
   {
1423
-    $this->maxBadRecords = $maxBadRecords;
1423
+	$this->maxBadRecords = $maxBadRecords;
1424 1424
   }
1425 1425
   public function getMaxBadRecords()
1426 1426
   {
1427
-    return $this->maxBadRecords;
1427
+	return $this->maxBadRecords;
1428 1428
   }
1429 1429
   public function setSchema(Google_Service_Bigquery_TableSchema $schema)
1430 1430
   {
1431
-    $this->schema = $schema;
1431
+	$this->schema = $schema;
1432 1432
   }
1433 1433
   public function getSchema()
1434 1434
   {
1435
-    return $this->schema;
1435
+	return $this->schema;
1436 1436
   }
1437 1437
   public function setSourceFormat($sourceFormat)
1438 1438
   {
1439
-    $this->sourceFormat = $sourceFormat;
1439
+	$this->sourceFormat = $sourceFormat;
1440 1440
   }
1441 1441
   public function getSourceFormat()
1442 1442
   {
1443
-    return $this->sourceFormat;
1443
+	return $this->sourceFormat;
1444 1444
   }
1445 1445
   public function setSourceUris($sourceUris)
1446 1446
   {
1447
-    $this->sourceUris = $sourceUris;
1447
+	$this->sourceUris = $sourceUris;
1448 1448
   }
1449 1449
   public function getSourceUris()
1450 1450
   {
1451
-    return $this->sourceUris;
1451
+	return $this->sourceUris;
1452 1452
   }
1453 1453
 }
1454 1454
 
@@ -1476,98 +1476,98 @@  discard block
 block discarded – undo
1476 1476
 
1477 1477
   public function setCacheHit($cacheHit)
1478 1478
   {
1479
-    $this->cacheHit = $cacheHit;
1479
+	$this->cacheHit = $cacheHit;
1480 1480
   }
1481 1481
   public function getCacheHit()
1482 1482
   {
1483
-    return $this->cacheHit;
1483
+	return $this->cacheHit;
1484 1484
   }
1485 1485
   public function setErrors($errors)
1486 1486
   {
1487
-    $this->errors = $errors;
1487
+	$this->errors = $errors;
1488 1488
   }
1489 1489
   public function getErrors()
1490 1490
   {
1491
-    return $this->errors;
1491
+	return $this->errors;
1492 1492
   }
1493 1493
   public function setEtag($etag)
1494 1494
   {
1495
-    $this->etag = $etag;
1495
+	$this->etag = $etag;
1496 1496
   }
1497 1497
   public function getEtag()
1498 1498
   {
1499
-    return $this->etag;
1499
+	return $this->etag;
1500 1500
   }
1501 1501
   public function setJobComplete($jobComplete)
1502 1502
   {
1503
-    $this->jobComplete = $jobComplete;
1503
+	$this->jobComplete = $jobComplete;
1504 1504
   }
1505 1505
   public function getJobComplete()
1506 1506
   {
1507
-    return $this->jobComplete;
1507
+	return $this->jobComplete;
1508 1508
   }
1509 1509
   public function setJobReference(Google_Service_Bigquery_JobReference $jobReference)
1510 1510
   {
1511
-    $this->jobReference = $jobReference;
1511
+	$this->jobReference = $jobReference;
1512 1512
   }
1513 1513
   public function getJobReference()
1514 1514
   {
1515
-    return $this->jobReference;
1515
+	return $this->jobReference;
1516 1516
   }
1517 1517
   public function setKind($kind)
1518 1518
   {
1519
-    $this->kind = $kind;
1519
+	$this->kind = $kind;
1520 1520
   }
1521 1521
   public function getKind()
1522 1522
   {
1523
-    return $this->kind;
1523
+	return $this->kind;
1524 1524
   }
1525 1525
   public function setPageToken($pageToken)
1526 1526
   {
1527
-    $this->pageToken = $pageToken;
1527
+	$this->pageToken = $pageToken;
1528 1528
   }
1529 1529
   public function getPageToken()
1530 1530
   {
1531
-    return $this->pageToken;
1531
+	return $this->pageToken;
1532 1532
   }
1533 1533
   public function setRows($rows)
1534 1534
   {
1535
-    $this->rows = $rows;
1535
+	$this->rows = $rows;
1536 1536
   }
1537 1537
   public function getRows()
1538 1538
   {
1539
-    return $this->rows;
1539
+	return $this->rows;
1540 1540
   }
1541 1541
   public function setSchema(Google_Service_Bigquery_TableSchema $schema)
1542 1542
   {
1543
-    $this->schema = $schema;
1543
+	$this->schema = $schema;
1544 1544
   }
1545 1545
   public function getSchema()
1546 1546
   {
1547
-    return $this->schema;
1547
+	return $this->schema;
1548 1548
   }
1549 1549
   public function setTotalBytesProcessed($totalBytesProcessed)
1550 1550
   {
1551
-    $this->totalBytesProcessed = $totalBytesProcessed;
1551
+	$this->totalBytesProcessed = $totalBytesProcessed;
1552 1552
   }
1553 1553
   public function getTotalBytesProcessed()
1554 1554
   {
1555
-    return $this->totalBytesProcessed;
1555
+	return $this->totalBytesProcessed;
1556 1556
   }
1557 1557
   public function setTotalRows($totalRows)
1558 1558
   {
1559
-    $this->totalRows = $totalRows;
1559
+	$this->totalRows = $totalRows;
1560 1560
   }
1561 1561
   public function getTotalRows()
1562 1562
   {
1563
-    return $this->totalRows;
1563
+	return $this->totalRows;
1564 1564
   }
1565 1565
 }
1566 1566
 
1567 1567
 class Google_Service_Bigquery_Job extends Google_Model
1568 1568
 {
1569 1569
   protected $internal_gapi_mappings = array(
1570
-        "userEmail" => "user_email",
1570
+		"userEmail" => "user_email",
1571 1571
   );
1572 1572
   protected $configurationType = 'Google_Service_Bigquery_JobConfiguration';
1573 1573
   protected $configurationDataType = '';
@@ -1586,75 +1586,75 @@  discard block
 block discarded – undo
1586 1586
 
1587 1587
   public function setConfiguration(Google_Service_Bigquery_JobConfiguration $configuration)
1588 1588
   {
1589
-    $this->configuration = $configuration;
1589
+	$this->configuration = $configuration;
1590 1590
   }
1591 1591
   public function getConfiguration()
1592 1592
   {
1593
-    return $this->configuration;
1593
+	return $this->configuration;
1594 1594
   }
1595 1595
   public function setEtag($etag)
1596 1596
   {
1597
-    $this->etag = $etag;
1597
+	$this->etag = $etag;
1598 1598
   }
1599 1599
   public function getEtag()
1600 1600
   {
1601
-    return $this->etag;
1601
+	return $this->etag;
1602 1602
   }
1603 1603
   public function setId($id)
1604 1604
   {
1605
-    $this->id = $id;
1605
+	$this->id = $id;
1606 1606
   }
1607 1607
   public function getId()
1608 1608
   {
1609
-    return $this->id;
1609
+	return $this->id;
1610 1610
   }
1611 1611
   public function setJobReference(Google_Service_Bigquery_JobReference $jobReference)
1612 1612
   {
1613
-    $this->jobReference = $jobReference;
1613
+	$this->jobReference = $jobReference;
1614 1614
   }
1615 1615
   public function getJobReference()
1616 1616
   {
1617
-    return $this->jobReference;
1617
+	return $this->jobReference;
1618 1618
   }
1619 1619
   public function setKind($kind)
1620 1620
   {
1621
-    $this->kind = $kind;
1621
+	$this->kind = $kind;
1622 1622
   }
1623 1623
   public function getKind()
1624 1624
   {
1625
-    return $this->kind;
1625
+	return $this->kind;
1626 1626
   }
1627 1627
   public function setSelfLink($selfLink)
1628 1628
   {
1629
-    $this->selfLink = $selfLink;
1629
+	$this->selfLink = $selfLink;
1630 1630
   }
1631 1631
   public function getSelfLink()
1632 1632
   {
1633
-    return $this->selfLink;
1633
+	return $this->selfLink;
1634 1634
   }
1635 1635
   public function setStatistics(Google_Service_Bigquery_JobStatistics $statistics)
1636 1636
   {
1637
-    $this->statistics = $statistics;
1637
+	$this->statistics = $statistics;
1638 1638
   }
1639 1639
   public function getStatistics()
1640 1640
   {
1641
-    return $this->statistics;
1641
+	return $this->statistics;
1642 1642
   }
1643 1643
   public function setStatus(Google_Service_Bigquery_JobStatus $status)
1644 1644
   {
1645
-    $this->status = $status;
1645
+	$this->status = $status;
1646 1646
   }
1647 1647
   public function getStatus()
1648 1648
   {
1649
-    return $this->status;
1649
+	return $this->status;
1650 1650
   }
1651 1651
   public function setUserEmail($userEmail)
1652 1652
   {
1653
-    $this->userEmail = $userEmail;
1653
+	$this->userEmail = $userEmail;
1654 1654
   }
1655 1655
   public function getUserEmail()
1656 1656
   {
1657
-    return $this->userEmail;
1657
+	return $this->userEmail;
1658 1658
   }
1659 1659
 }
1660 1660
 
@@ -1669,19 +1669,19 @@  discard block
 block discarded – undo
1669 1669
 
1670 1670
   public function setJob(Google_Service_Bigquery_Job $job)
1671 1671
   {
1672
-    $this->job = $job;
1672
+	$this->job = $job;
1673 1673
   }
1674 1674
   public function getJob()
1675 1675
   {
1676
-    return $this->job;
1676
+	return $this->job;
1677 1677
   }
1678 1678
   public function setKind($kind)
1679 1679
   {
1680
-    $this->kind = $kind;
1680
+	$this->kind = $kind;
1681 1681
   }
1682 1682
   public function getKind()
1683 1683
   {
1684
-    return $this->kind;
1684
+	return $this->kind;
1685 1685
   }
1686 1686
 }
1687 1687
 
@@ -1704,51 +1704,51 @@  discard block
 block discarded – undo
1704 1704
 
1705 1705
   public function setCopy(Google_Service_Bigquery_JobConfigurationTableCopy $copy)
1706 1706
   {
1707
-    $this->copy = $copy;
1707
+	$this->copy = $copy;
1708 1708
   }
1709 1709
   public function getCopy()
1710 1710
   {
1711
-    return $this->copy;
1711
+	return $this->copy;
1712 1712
   }
1713 1713
   public function setDryRun($dryRun)
1714 1714
   {
1715
-    $this->dryRun = $dryRun;
1715
+	$this->dryRun = $dryRun;
1716 1716
   }
1717 1717
   public function getDryRun()
1718 1718
   {
1719
-    return $this->dryRun;
1719
+	return $this->dryRun;
1720 1720
   }
1721 1721
   public function setExtract(Google_Service_Bigquery_JobConfigurationExtract $extract)
1722 1722
   {
1723
-    $this->extract = $extract;
1723
+	$this->extract = $extract;
1724 1724
   }
1725 1725
   public function getExtract()
1726 1726
   {
1727
-    return $this->extract;
1727
+	return $this->extract;
1728 1728
   }
1729 1729
   public function setLink(Google_Service_Bigquery_JobConfigurationLink $link)
1730 1730
   {
1731
-    $this->link = $link;
1731
+	$this->link = $link;
1732 1732
   }
1733 1733
   public function getLink()
1734 1734
   {
1735
-    return $this->link;
1735
+	return $this->link;
1736 1736
   }
1737 1737
   public function setLoad(Google_Service_Bigquery_JobConfigurationLoad $load)
1738 1738
   {
1739
-    $this->load = $load;
1739
+	$this->load = $load;
1740 1740
   }
1741 1741
   public function getLoad()
1742 1742
   {
1743
-    return $this->load;
1743
+	return $this->load;
1744 1744
   }
1745 1745
   public function setQuery(Google_Service_Bigquery_JobConfigurationQuery $query)
1746 1746
   {
1747
-    $this->query = $query;
1747
+	$this->query = $query;
1748 1748
   }
1749 1749
   public function getQuery()
1750 1750
   {
1751
-    return $this->query;
1751
+	return $this->query;
1752 1752
   }
1753 1753
 }
1754 1754
 
@@ -1769,59 +1769,59 @@  discard block
 block discarded – undo
1769 1769
 
1770 1770
   public function setCompression($compression)
1771 1771
   {
1772
-    $this->compression = $compression;
1772
+	$this->compression = $compression;
1773 1773
   }
1774 1774
   public function getCompression()
1775 1775
   {
1776
-    return $this->compression;
1776
+	return $this->compression;
1777 1777
   }
1778 1778
   public function setDestinationFormat($destinationFormat)
1779 1779
   {
1780
-    $this->destinationFormat = $destinationFormat;
1780
+	$this->destinationFormat = $destinationFormat;
1781 1781
   }
1782 1782
   public function getDestinationFormat()
1783 1783
   {
1784
-    return $this->destinationFormat;
1784
+	return $this->destinationFormat;
1785 1785
   }
1786 1786
   public function setDestinationUri($destinationUri)
1787 1787
   {
1788
-    $this->destinationUri = $destinationUri;
1788
+	$this->destinationUri = $destinationUri;
1789 1789
   }
1790 1790
   public function getDestinationUri()
1791 1791
   {
1792
-    return $this->destinationUri;
1792
+	return $this->destinationUri;
1793 1793
   }
1794 1794
   public function setDestinationUris($destinationUris)
1795 1795
   {
1796
-    $this->destinationUris = $destinationUris;
1796
+	$this->destinationUris = $destinationUris;
1797 1797
   }
1798 1798
   public function getDestinationUris()
1799 1799
   {
1800
-    return $this->destinationUris;
1800
+	return $this->destinationUris;
1801 1801
   }
1802 1802
   public function setFieldDelimiter($fieldDelimiter)
1803 1803
   {
1804
-    $this->fieldDelimiter = $fieldDelimiter;
1804
+	$this->fieldDelimiter = $fieldDelimiter;
1805 1805
   }
1806 1806
   public function getFieldDelimiter()
1807 1807
   {
1808
-    return $this->fieldDelimiter;
1808
+	return $this->fieldDelimiter;
1809 1809
   }
1810 1810
   public function setPrintHeader($printHeader)
1811 1811
   {
1812
-    $this->printHeader = $printHeader;
1812
+	$this->printHeader = $printHeader;
1813 1813
   }
1814 1814
   public function getPrintHeader()
1815 1815
   {
1816
-    return $this->printHeader;
1816
+	return $this->printHeader;
1817 1817
   }
1818 1818
   public function setSourceTable(Google_Service_Bigquery_TableReference $sourceTable)
1819 1819
   {
1820
-    $this->sourceTable = $sourceTable;
1820
+	$this->sourceTable = $sourceTable;
1821 1821
   }
1822 1822
   public function getSourceTable()
1823 1823
   {
1824
-    return $this->sourceTable;
1824
+	return $this->sourceTable;
1825 1825
   }
1826 1826
 }
1827 1827
 
@@ -1839,35 +1839,35 @@  discard block
 block discarded – undo
1839 1839
 
1840 1840
   public function setCreateDisposition($createDisposition)
1841 1841
   {
1842
-    $this->createDisposition = $createDisposition;
1842
+	$this->createDisposition = $createDisposition;
1843 1843
   }
1844 1844
   public function getCreateDisposition()
1845 1845
   {
1846
-    return $this->createDisposition;
1846
+	return $this->createDisposition;
1847 1847
   }
1848 1848
   public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable)
1849 1849
   {
1850
-    $this->destinationTable = $destinationTable;
1850
+	$this->destinationTable = $destinationTable;
1851 1851
   }
1852 1852
   public function getDestinationTable()
1853 1853
   {
1854
-    return $this->destinationTable;
1854
+	return $this->destinationTable;
1855 1855
   }
1856 1856
   public function setSourceUri($sourceUri)
1857 1857
   {
1858
-    $this->sourceUri = $sourceUri;
1858
+	$this->sourceUri = $sourceUri;
1859 1859
   }
1860 1860
   public function getSourceUri()
1861 1861
   {
1862
-    return $this->sourceUri;
1862
+	return $this->sourceUri;
1863 1863
   }
1864 1864
   public function setWriteDisposition($writeDisposition)
1865 1865
   {
1866
-    $this->writeDisposition = $writeDisposition;
1866
+	$this->writeDisposition = $writeDisposition;
1867 1867
   }
1868 1868
   public function getWriteDisposition()
1869 1869
   {
1870
-    return $this->writeDisposition;
1870
+	return $this->writeDisposition;
1871 1871
   }
1872 1872
 }
1873 1873
 
@@ -1899,139 +1899,139 @@  discard block
 block discarded – undo
1899 1899
 
1900 1900
   public function setAllowJaggedRows($allowJaggedRows)
1901 1901
   {
1902
-    $this->allowJaggedRows = $allowJaggedRows;
1902
+	$this->allowJaggedRows = $allowJaggedRows;
1903 1903
   }
1904 1904
   public function getAllowJaggedRows()
1905 1905
   {
1906
-    return $this->allowJaggedRows;
1906
+	return $this->allowJaggedRows;
1907 1907
   }
1908 1908
   public function setAllowQuotedNewlines($allowQuotedNewlines)
1909 1909
   {
1910
-    $this->allowQuotedNewlines = $allowQuotedNewlines;
1910
+	$this->allowQuotedNewlines = $allowQuotedNewlines;
1911 1911
   }
1912 1912
   public function getAllowQuotedNewlines()
1913 1913
   {
1914
-    return $this->allowQuotedNewlines;
1914
+	return $this->allowQuotedNewlines;
1915 1915
   }
1916 1916
   public function setCreateDisposition($createDisposition)
1917 1917
   {
1918
-    $this->createDisposition = $createDisposition;
1918
+	$this->createDisposition = $createDisposition;
1919 1919
   }
1920 1920
   public function getCreateDisposition()
1921 1921
   {
1922
-    return $this->createDisposition;
1922
+	return $this->createDisposition;
1923 1923
   }
1924 1924
   public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable)
1925 1925
   {
1926
-    $this->destinationTable = $destinationTable;
1926
+	$this->destinationTable = $destinationTable;
1927 1927
   }
1928 1928
   public function getDestinationTable()
1929 1929
   {
1930
-    return $this->destinationTable;
1930
+	return $this->destinationTable;
1931 1931
   }
1932 1932
   public function setEncoding($encoding)
1933 1933
   {
1934
-    $this->encoding = $encoding;
1934
+	$this->encoding = $encoding;
1935 1935
   }
1936 1936
   public function getEncoding()
1937 1937
   {
1938
-    return $this->encoding;
1938
+	return $this->encoding;
1939 1939
   }
1940 1940
   public function setFieldDelimiter($fieldDelimiter)
1941 1941
   {
1942
-    $this->fieldDelimiter = $fieldDelimiter;
1942
+	$this->fieldDelimiter = $fieldDelimiter;
1943 1943
   }
1944 1944
   public function getFieldDelimiter()
1945 1945
   {
1946
-    return $this->fieldDelimiter;
1946
+	return $this->fieldDelimiter;
1947 1947
   }
1948 1948
   public function setIgnoreUnknownValues($ignoreUnknownValues)
1949 1949
   {
1950
-    $this->ignoreUnknownValues = $ignoreUnknownValues;
1950
+	$this->ignoreUnknownValues = $ignoreUnknownValues;
1951 1951
   }
1952 1952
   public function getIgnoreUnknownValues()
1953 1953
   {
1954
-    return $this->ignoreUnknownValues;
1954
+	return $this->ignoreUnknownValues;
1955 1955
   }
1956 1956
   public function setMaxBadRecords($maxBadRecords)
1957 1957
   {
1958
-    $this->maxBadRecords = $maxBadRecords;
1958
+	$this->maxBadRecords = $maxBadRecords;
1959 1959
   }
1960 1960
   public function getMaxBadRecords()
1961 1961
   {
1962
-    return $this->maxBadRecords;
1962
+	return $this->maxBadRecords;
1963 1963
   }
1964 1964
   public function setProjectionFields($projectionFields)
1965 1965
   {
1966
-    $this->projectionFields = $projectionFields;
1966
+	$this->projectionFields = $projectionFields;
1967 1967
   }
1968 1968
   public function getProjectionFields()
1969 1969
   {
1970
-    return $this->projectionFields;
1970
+	return $this->projectionFields;
1971 1971
   }
1972 1972
   public function setQuote($quote)
1973 1973
   {
1974
-    $this->quote = $quote;
1974
+	$this->quote = $quote;
1975 1975
   }
1976 1976
   public function getQuote()
1977 1977
   {
1978
-    return $this->quote;
1978
+	return $this->quote;
1979 1979
   }
1980 1980
   public function setSchema(Google_Service_Bigquery_TableSchema $schema)
1981 1981
   {
1982
-    $this->schema = $schema;
1982
+	$this->schema = $schema;
1983 1983
   }
1984 1984
   public function getSchema()
1985 1985
   {
1986
-    return $this->schema;
1986
+	return $this->schema;
1987 1987
   }
1988 1988
   public function setSchemaInline($schemaInline)
1989 1989
   {
1990
-    $this->schemaInline = $schemaInline;
1990
+	$this->schemaInline = $schemaInline;
1991 1991
   }
1992 1992
   public function getSchemaInline()
1993 1993
   {
1994
-    return $this->schemaInline;
1994
+	return $this->schemaInline;
1995 1995
   }
1996 1996
   public function setSchemaInlineFormat($schemaInlineFormat)
1997 1997
   {
1998
-    $this->schemaInlineFormat = $schemaInlineFormat;
1998
+	$this->schemaInlineFormat = $schemaInlineFormat;
1999 1999
   }
2000 2000
   public function getSchemaInlineFormat()
2001 2001
   {
2002
-    return $this->schemaInlineFormat;
2002
+	return $this->schemaInlineFormat;
2003 2003
   }
2004 2004
   public function setSkipLeadingRows($skipLeadingRows)
2005 2005
   {
2006
-    $this->skipLeadingRows = $skipLeadingRows;
2006
+	$this->skipLeadingRows = $skipLeadingRows;
2007 2007
   }
2008 2008
   public function getSkipLeadingRows()
2009 2009
   {
2010
-    return $this->skipLeadingRows;
2010
+	return $this->skipLeadingRows;
2011 2011
   }
2012 2012
   public function setSourceFormat($sourceFormat)
2013 2013
   {
2014
-    $this->sourceFormat = $sourceFormat;
2014
+	$this->sourceFormat = $sourceFormat;
2015 2015
   }
2016 2016
   public function getSourceFormat()
2017 2017
   {
2018
-    return $this->sourceFormat;
2018
+	return $this->sourceFormat;
2019 2019
   }
2020 2020
   public function setSourceUris($sourceUris)
2021 2021
   {
2022
-    $this->sourceUris = $sourceUris;
2022
+	$this->sourceUris = $sourceUris;
2023 2023
   }
2024 2024
   public function getSourceUris()
2025 2025
   {
2026
-    return $this->sourceUris;
2026
+	return $this->sourceUris;
2027 2027
   }
2028 2028
   public function setWriteDisposition($writeDisposition)
2029 2029
   {
2030
-    $this->writeDisposition = $writeDisposition;
2030
+	$this->writeDisposition = $writeDisposition;
2031 2031
   }
2032 2032
   public function getWriteDisposition()
2033 2033
   {
2034
-    return $this->writeDisposition;
2034
+	return $this->writeDisposition;
2035 2035
   }
2036 2036
 }
2037 2037
 
@@ -2060,99 +2060,99 @@  discard block
 block discarded – undo
2060 2060
 
2061 2061
   public function setAllowLargeResults($allowLargeResults)
2062 2062
   {
2063
-    $this->allowLargeResults = $allowLargeResults;
2063
+	$this->allowLargeResults = $allowLargeResults;
2064 2064
   }
2065 2065
   public function getAllowLargeResults()
2066 2066
   {
2067
-    return $this->allowLargeResults;
2067
+	return $this->allowLargeResults;
2068 2068
   }
2069 2069
   public function setCreateDisposition($createDisposition)
2070 2070
   {
2071
-    $this->createDisposition = $createDisposition;
2071
+	$this->createDisposition = $createDisposition;
2072 2072
   }
2073 2073
   public function getCreateDisposition()
2074 2074
   {
2075
-    return $this->createDisposition;
2075
+	return $this->createDisposition;
2076 2076
   }
2077 2077
   public function setDefaultDataset(Google_Service_Bigquery_DatasetReference $defaultDataset)
2078 2078
   {
2079
-    $this->defaultDataset = $defaultDataset;
2079
+	$this->defaultDataset = $defaultDataset;
2080 2080
   }
2081 2081
   public function getDefaultDataset()
2082 2082
   {
2083
-    return $this->defaultDataset;
2083
+	return $this->defaultDataset;
2084 2084
   }
2085 2085
   public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable)
2086 2086
   {
2087
-    $this->destinationTable = $destinationTable;
2087
+	$this->destinationTable = $destinationTable;
2088 2088
   }
2089 2089
   public function getDestinationTable()
2090 2090
   {
2091
-    return $this->destinationTable;
2091
+	return $this->destinationTable;
2092 2092
   }
2093 2093
   public function setFlattenResults($flattenResults)
2094 2094
   {
2095
-    $this->flattenResults = $flattenResults;
2095
+	$this->flattenResults = $flattenResults;
2096 2096
   }
2097 2097
   public function getFlattenResults()
2098 2098
   {
2099
-    return $this->flattenResults;
2099
+	return $this->flattenResults;
2100 2100
   }
2101 2101
   public function setPreserveNulls($preserveNulls)
2102 2102
   {
2103
-    $this->preserveNulls = $preserveNulls;
2103
+	$this->preserveNulls = $preserveNulls;
2104 2104
   }
2105 2105
   public function getPreserveNulls()
2106 2106
   {
2107
-    return $this->preserveNulls;
2107
+	return $this->preserveNulls;
2108 2108
   }
2109 2109
   public function setPriority($priority)
2110 2110
   {
2111
-    $this->priority = $priority;
2111
+	$this->priority = $priority;
2112 2112
   }
2113 2113
   public function getPriority()
2114 2114
   {
2115
-    return $this->priority;
2115
+	return $this->priority;
2116 2116
   }
2117 2117
   public function setQuery($query)
2118 2118
   {
2119
-    $this->query = $query;
2119
+	$this->query = $query;
2120 2120
   }
2121 2121
   public function getQuery()
2122 2122
   {
2123
-    return $this->query;
2123
+	return $this->query;
2124 2124
   }
2125 2125
   public function setTableDefinitions($tableDefinitions)
2126 2126
   {
2127
-    $this->tableDefinitions = $tableDefinitions;
2127
+	$this->tableDefinitions = $tableDefinitions;
2128 2128
   }
2129 2129
   public function getTableDefinitions()
2130 2130
   {
2131
-    return $this->tableDefinitions;
2131
+	return $this->tableDefinitions;
2132 2132
   }
2133 2133
   public function setUseQueryCache($useQueryCache)
2134 2134
   {
2135
-    $this->useQueryCache = $useQueryCache;
2135
+	$this->useQueryCache = $useQueryCache;
2136 2136
   }
2137 2137
   public function getUseQueryCache()
2138 2138
   {
2139
-    return $this->useQueryCache;
2139
+	return $this->useQueryCache;
2140 2140
   }
2141 2141
   public function setUserDefinedFunctionResources($userDefinedFunctionResources)
2142 2142
   {
2143
-    $this->userDefinedFunctionResources = $userDefinedFunctionResources;
2143
+	$this->userDefinedFunctionResources = $userDefinedFunctionResources;
2144 2144
   }
2145 2145
   public function getUserDefinedFunctionResources()
2146 2146
   {
2147
-    return $this->userDefinedFunctionResources;
2147
+	return $this->userDefinedFunctionResources;
2148 2148
   }
2149 2149
   public function setWriteDisposition($writeDisposition)
2150 2150
   {
2151
-    $this->writeDisposition = $writeDisposition;
2151
+	$this->writeDisposition = $writeDisposition;
2152 2152
   }
2153 2153
   public function getWriteDisposition()
2154 2154
   {
2155
-    return $this->writeDisposition;
2155
+	return $this->writeDisposition;
2156 2156
   }
2157 2157
 }
2158 2158
 
@@ -2177,43 +2177,43 @@  discard block
 block discarded – undo
2177 2177
 
2178 2178
   public function setCreateDisposition($createDisposition)
2179 2179
   {
2180
-    $this->createDisposition = $createDisposition;
2180
+	$this->createDisposition = $createDisposition;
2181 2181
   }
2182 2182
   public function getCreateDisposition()
2183 2183
   {
2184
-    return $this->createDisposition;
2184
+	return $this->createDisposition;
2185 2185
   }
2186 2186
   public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable)
2187 2187
   {
2188
-    $this->destinationTable = $destinationTable;
2188
+	$this->destinationTable = $destinationTable;
2189 2189
   }
2190 2190
   public function getDestinationTable()
2191 2191
   {
2192
-    return $this->destinationTable;
2192
+	return $this->destinationTable;
2193 2193
   }
2194 2194
   public function setSourceTable(Google_Service_Bigquery_TableReference $sourceTable)
2195 2195
   {
2196
-    $this->sourceTable = $sourceTable;
2196
+	$this->sourceTable = $sourceTable;
2197 2197
   }
2198 2198
   public function getSourceTable()
2199 2199
   {
2200
-    return $this->sourceTable;
2200
+	return $this->sourceTable;
2201 2201
   }
2202 2202
   public function setSourceTables($sourceTables)
2203 2203
   {
2204
-    $this->sourceTables = $sourceTables;
2204
+	$this->sourceTables = $sourceTables;
2205 2205
   }
2206 2206
   public function getSourceTables()
2207 2207
   {
2208
-    return $this->sourceTables;
2208
+	return $this->sourceTables;
2209 2209
   }
2210 2210
   public function setWriteDisposition($writeDisposition)
2211 2211
   {
2212
-    $this->writeDisposition = $writeDisposition;
2212
+	$this->writeDisposition = $writeDisposition;
2213 2213
   }
2214 2214
   public function getWriteDisposition()
2215 2215
   {
2216
-    return $this->writeDisposition;
2216
+	return $this->writeDisposition;
2217 2217
   }
2218 2218
 }
2219 2219
 
@@ -2231,42 +2231,42 @@  discard block
 block discarded – undo
2231 2231
 
2232 2232
   public function setEtag($etag)
2233 2233
   {
2234
-    $this->etag = $etag;
2234
+	$this->etag = $etag;
2235 2235
   }
2236 2236
   public function getEtag()
2237 2237
   {
2238
-    return $this->etag;
2238
+	return $this->etag;
2239 2239
   }
2240 2240
   public function setJobs($jobs)
2241 2241
   {
2242
-    $this->jobs = $jobs;
2242
+	$this->jobs = $jobs;
2243 2243
   }
2244 2244
   public function getJobs()
2245 2245
   {
2246
-    return $this->jobs;
2246
+	return $this->jobs;
2247 2247
   }
2248 2248
   public function setKind($kind)
2249 2249
   {
2250
-    $this->kind = $kind;
2250
+	$this->kind = $kind;
2251 2251
   }
2252 2252
   public function getKind()
2253 2253
   {
2254
-    return $this->kind;
2254
+	return $this->kind;
2255 2255
   }
2256 2256
   public function setNextPageToken($nextPageToken)
2257 2257
   {
2258
-    $this->nextPageToken = $nextPageToken;
2258
+	$this->nextPageToken = $nextPageToken;
2259 2259
   }
2260 2260
   public function getNextPageToken()
2261 2261
   {
2262
-    return $this->nextPageToken;
2262
+	return $this->nextPageToken;
2263 2263
   }
2264 2264
 }
2265 2265
 
2266 2266
 class Google_Service_Bigquery_JobListJobs extends Google_Model
2267 2267
 {
2268 2268
   protected $internal_gapi_mappings = array(
2269
-        "userEmail" => "user_email",
2269
+		"userEmail" => "user_email",
2270 2270
   );
2271 2271
   protected $configurationType = 'Google_Service_Bigquery_JobConfiguration';
2272 2272
   protected $configurationDataType = '';
@@ -2286,75 +2286,75 @@  discard block
 block discarded – undo
2286 2286
 
2287 2287
   public function setConfiguration(Google_Service_Bigquery_JobConfiguration $configuration)
2288 2288
   {
2289
-    $this->configuration = $configuration;
2289
+	$this->configuration = $configuration;
2290 2290
   }
2291 2291
   public function getConfiguration()
2292 2292
   {
2293
-    return $this->configuration;
2293
+	return $this->configuration;
2294 2294
   }
2295 2295
   public function setErrorResult(Google_Service_Bigquery_ErrorProto $errorResult)
2296 2296
   {
2297
-    $this->errorResult = $errorResult;
2297
+	$this->errorResult = $errorResult;
2298 2298
   }
2299 2299
   public function getErrorResult()
2300 2300
   {
2301
-    return $this->errorResult;
2301
+	return $this->errorResult;
2302 2302
   }
2303 2303
   public function setId($id)
2304 2304
   {
2305
-    $this->id = $id;
2305
+	$this->id = $id;
2306 2306
   }
2307 2307
   public function getId()
2308 2308
   {
2309
-    return $this->id;
2309
+	return $this->id;
2310 2310
   }
2311 2311
   public function setJobReference(Google_Service_Bigquery_JobReference $jobReference)
2312 2312
   {
2313
-    $this->jobReference = $jobReference;
2313
+	$this->jobReference = $jobReference;
2314 2314
   }
2315 2315
   public function getJobReference()
2316 2316
   {
2317
-    return $this->jobReference;
2317
+	return $this->jobReference;
2318 2318
   }
2319 2319
   public function setKind($kind)
2320 2320
   {
2321
-    $this->kind = $kind;
2321
+	$this->kind = $kind;
2322 2322
   }
2323 2323
   public function getKind()
2324 2324
   {
2325
-    return $this->kind;
2325
+	return $this->kind;
2326 2326
   }
2327 2327
   public function setState($state)
2328 2328
   {
2329
-    $this->state = $state;
2329
+	$this->state = $state;
2330 2330
   }
2331 2331
   public function getState()
2332 2332
   {
2333
-    return $this->state;
2333
+	return $this->state;
2334 2334
   }
2335 2335
   public function setStatistics(Google_Service_Bigquery_JobStatistics $statistics)
2336 2336
   {
2337
-    $this->statistics = $statistics;
2337
+	$this->statistics = $statistics;
2338 2338
   }
2339 2339
   public function getStatistics()
2340 2340
   {
2341
-    return $this->statistics;
2341
+	return $this->statistics;
2342 2342
   }
2343 2343
   public function setStatus(Google_Service_Bigquery_JobStatus $status)
2344 2344
   {
2345
-    $this->status = $status;
2345
+	$this->status = $status;
2346 2346
   }
2347 2347
   public function getStatus()
2348 2348
   {
2349
-    return $this->status;
2349
+	return $this->status;
2350 2350
   }
2351 2351
   public function setUserEmail($userEmail)
2352 2352
   {
2353
-    $this->userEmail = $userEmail;
2353
+	$this->userEmail = $userEmail;
2354 2354
   }
2355 2355
   public function getUserEmail()
2356 2356
   {
2357
-    return $this->userEmail;
2357
+	return $this->userEmail;
2358 2358
   }
2359 2359
 }
2360 2360
 
@@ -2368,19 +2368,19 @@  discard block
 block discarded – undo
2368 2368
 
2369 2369
   public function setJobId($jobId)
2370 2370
   {
2371
-    $this->jobId = $jobId;
2371
+	$this->jobId = $jobId;
2372 2372
   }
2373 2373
   public function getJobId()
2374 2374
   {
2375
-    return $this->jobId;
2375
+	return $this->jobId;
2376 2376
   }
2377 2377
   public function setProjectId($projectId)
2378 2378
   {
2379
-    $this->projectId = $projectId;
2379
+	$this->projectId = $projectId;
2380 2380
   }
2381 2381
   public function getProjectId()
2382 2382
   {
2383
-    return $this->projectId;
2383
+	return $this->projectId;
2384 2384
   }
2385 2385
 }
2386 2386
 
@@ -2402,59 +2402,59 @@  discard block
 block discarded – undo
2402 2402
 
2403 2403
   public function setCreationTime($creationTime)
2404 2404
   {
2405
-    $this->creationTime = $creationTime;
2405
+	$this->creationTime = $creationTime;
2406 2406
   }
2407 2407
   public function getCreationTime()
2408 2408
   {
2409
-    return $this->creationTime;
2409
+	return $this->creationTime;
2410 2410
   }
2411 2411
   public function setEndTime($endTime)
2412 2412
   {
2413
-    $this->endTime = $endTime;
2413
+	$this->endTime = $endTime;
2414 2414
   }
2415 2415
   public function getEndTime()
2416 2416
   {
2417
-    return $this->endTime;
2417
+	return $this->endTime;
2418 2418
   }
2419 2419
   public function setExtract(Google_Service_Bigquery_JobStatistics4 $extract)
2420 2420
   {
2421
-    $this->extract = $extract;
2421
+	$this->extract = $extract;
2422 2422
   }
2423 2423
   public function getExtract()
2424 2424
   {
2425
-    return $this->extract;
2425
+	return $this->extract;
2426 2426
   }
2427 2427
   public function setLoad(Google_Service_Bigquery_JobStatistics3 $load)
2428 2428
   {
2429
-    $this->load = $load;
2429
+	$this->load = $load;
2430 2430
   }
2431 2431
   public function getLoad()
2432 2432
   {
2433
-    return $this->load;
2433
+	return $this->load;
2434 2434
   }
2435 2435
   public function setQuery(Google_Service_Bigquery_JobStatistics2 $query)
2436 2436
   {
2437
-    $this->query = $query;
2437
+	$this->query = $query;
2438 2438
   }
2439 2439
   public function getQuery()
2440 2440
   {
2441
-    return $this->query;
2441
+	return $this->query;
2442 2442
   }
2443 2443
   public function setStartTime($startTime)
2444 2444
   {
2445
-    $this->startTime = $startTime;
2445
+	$this->startTime = $startTime;
2446 2446
   }
2447 2447
   public function getStartTime()
2448 2448
   {
2449
-    return $this->startTime;
2449
+	return $this->startTime;
2450 2450
   }
2451 2451
   public function setTotalBytesProcessed($totalBytesProcessed)
2452 2452
   {
2453
-    $this->totalBytesProcessed = $totalBytesProcessed;
2453
+	$this->totalBytesProcessed = $totalBytesProcessed;
2454 2454
   }
2455 2455
   public function getTotalBytesProcessed()
2456 2456
   {
2457
-    return $this->totalBytesProcessed;
2457
+	return $this->totalBytesProcessed;
2458 2458
   }
2459 2459
 }
2460 2460
 
@@ -2470,35 +2470,35 @@  discard block
 block discarded – undo
2470 2470
 
2471 2471
   public function setBillingTier($billingTier)
2472 2472
   {
2473
-    $this->billingTier = $billingTier;
2473
+	$this->billingTier = $billingTier;
2474 2474
   }
2475 2475
   public function getBillingTier()
2476 2476
   {
2477
-    return $this->billingTier;
2477
+	return $this->billingTier;
2478 2478
   }
2479 2479
   public function setCacheHit($cacheHit)
2480 2480
   {
2481
-    $this->cacheHit = $cacheHit;
2481
+	$this->cacheHit = $cacheHit;
2482 2482
   }
2483 2483
   public function getCacheHit()
2484 2484
   {
2485
-    return $this->cacheHit;
2485
+	return $this->cacheHit;
2486 2486
   }
2487 2487
   public function setTotalBytesBilled($totalBytesBilled)
2488 2488
   {
2489
-    $this->totalBytesBilled = $totalBytesBilled;
2489
+	$this->totalBytesBilled = $totalBytesBilled;
2490 2490
   }
2491 2491
   public function getTotalBytesBilled()
2492 2492
   {
2493
-    return $this->totalBytesBilled;
2493
+	return $this->totalBytesBilled;
2494 2494
   }
2495 2495
   public function setTotalBytesProcessed($totalBytesProcessed)
2496 2496
   {
2497
-    $this->totalBytesProcessed = $totalBytesProcessed;
2497
+	$this->totalBytesProcessed = $totalBytesProcessed;
2498 2498
   }
2499 2499
   public function getTotalBytesProcessed()
2500 2500
   {
2501
-    return $this->totalBytesProcessed;
2501
+	return $this->totalBytesProcessed;
2502 2502
   }
2503 2503
 }
2504 2504
 
@@ -2514,35 +2514,35 @@  discard block
 block discarded – undo
2514 2514
 
2515 2515
   public function setInputFileBytes($inputFileBytes)
2516 2516
   {
2517
-    $this->inputFileBytes = $inputFileBytes;
2517
+	$this->inputFileBytes = $inputFileBytes;
2518 2518
   }
2519 2519
   public function getInputFileBytes()
2520 2520
   {
2521
-    return $this->inputFileBytes;
2521
+	return $this->inputFileBytes;
2522 2522
   }
2523 2523
   public function setInputFiles($inputFiles)
2524 2524
   {
2525
-    $this->inputFiles = $inputFiles;
2525
+	$this->inputFiles = $inputFiles;
2526 2526
   }
2527 2527
   public function getInputFiles()
2528 2528
   {
2529
-    return $this->inputFiles;
2529
+	return $this->inputFiles;
2530 2530
   }
2531 2531
   public function setOutputBytes($outputBytes)
2532 2532
   {
2533
-    $this->outputBytes = $outputBytes;
2533
+	$this->outputBytes = $outputBytes;
2534 2534
   }
2535 2535
   public function getOutputBytes()
2536 2536
   {
2537
-    return $this->outputBytes;
2537
+	return $this->outputBytes;
2538 2538
   }
2539 2539
   public function setOutputRows($outputRows)
2540 2540
   {
2541
-    $this->outputRows = $outputRows;
2541
+	$this->outputRows = $outputRows;
2542 2542
   }
2543 2543
   public function getOutputRows()
2544 2544
   {
2545
-    return $this->outputRows;
2545
+	return $this->outputRows;
2546 2546
   }
2547 2547
 }
2548 2548
 
@@ -2556,11 +2556,11 @@  discard block
 block discarded – undo
2556 2556
 
2557 2557
   public function setDestinationUriFileCounts($destinationUriFileCounts)
2558 2558
   {
2559
-    $this->destinationUriFileCounts = $destinationUriFileCounts;
2559
+	$this->destinationUriFileCounts = $destinationUriFileCounts;
2560 2560
   }
2561 2561
   public function getDestinationUriFileCounts()
2562 2562
   {
2563
-    return $this->destinationUriFileCounts;
2563
+	return $this->destinationUriFileCounts;
2564 2564
   }
2565 2565
 }
2566 2566
 
@@ -2578,27 +2578,27 @@  discard block
 block discarded – undo
2578 2578
 
2579 2579
   public function setErrorResult(Google_Service_Bigquery_ErrorProto $errorResult)
2580 2580
   {
2581
-    $this->errorResult = $errorResult;
2581
+	$this->errorResult = $errorResult;
2582 2582
   }
2583 2583
   public function getErrorResult()
2584 2584
   {
2585
-    return $this->errorResult;
2585
+	return $this->errorResult;
2586 2586
   }
2587 2587
   public function setErrors($errors)
2588 2588
   {
2589
-    $this->errors = $errors;
2589
+	$this->errors = $errors;
2590 2590
   }
2591 2591
   public function getErrors()
2592 2592
   {
2593
-    return $this->errors;
2593
+	return $this->errors;
2594 2594
   }
2595 2595
   public function setState($state)
2596 2596
   {
2597
-    $this->state = $state;
2597
+	$this->state = $state;
2598 2598
   }
2599 2599
   public function getState()
2600 2600
   {
2601
-    return $this->state;
2601
+	return $this->state;
2602 2602
   }
2603 2603
 }
2604 2604
 
@@ -2621,43 +2621,43 @@  discard block
 block discarded – undo
2621 2621
 
2622 2622
   public function setEtag($etag)
2623 2623
   {
2624
-    $this->etag = $etag;
2624
+	$this->etag = $etag;
2625 2625
   }
2626 2626
   public function getEtag()
2627 2627
   {
2628
-    return $this->etag;
2628
+	return $this->etag;
2629 2629
   }
2630 2630
   public function setKind($kind)
2631 2631
   {
2632
-    $this->kind = $kind;
2632
+	$this->kind = $kind;
2633 2633
   }
2634 2634
   public function getKind()
2635 2635
   {
2636
-    return $this->kind;
2636
+	return $this->kind;
2637 2637
   }
2638 2638
   public function setNextPageToken($nextPageToken)
2639 2639
   {
2640
-    $this->nextPageToken = $nextPageToken;
2640
+	$this->nextPageToken = $nextPageToken;
2641 2641
   }
2642 2642
   public function getNextPageToken()
2643 2643
   {
2644
-    return $this->nextPageToken;
2644
+	return $this->nextPageToken;
2645 2645
   }
2646 2646
   public function setProjects($projects)
2647 2647
   {
2648
-    $this->projects = $projects;
2648
+	$this->projects = $projects;
2649 2649
   }
2650 2650
   public function getProjects()
2651 2651
   {
2652
-    return $this->projects;
2652
+	return $this->projects;
2653 2653
   }
2654 2654
   public function setTotalItems($totalItems)
2655 2655
   {
2656
-    $this->totalItems = $totalItems;
2656
+	$this->totalItems = $totalItems;
2657 2657
   }
2658 2658
   public function getTotalItems()
2659 2659
   {
2660
-    return $this->totalItems;
2660
+	return $this->totalItems;
2661 2661
   }
2662 2662
 }
2663 2663
 
@@ -2675,43 +2675,43 @@  discard block
 block discarded – undo
2675 2675
 
2676 2676
   public function setFriendlyName($friendlyName)
2677 2677
   {
2678
-    $this->friendlyName = $friendlyName;
2678
+	$this->friendlyName = $friendlyName;
2679 2679
   }
2680 2680
   public function getFriendlyName()
2681 2681
   {
2682
-    return $this->friendlyName;
2682
+	return $this->friendlyName;
2683 2683
   }
2684 2684
   public function setId($id)
2685 2685
   {
2686
-    $this->id = $id;
2686
+	$this->id = $id;
2687 2687
   }
2688 2688
   public function getId()
2689 2689
   {
2690
-    return $this->id;
2690
+	return $this->id;
2691 2691
   }
2692 2692
   public function setKind($kind)
2693 2693
   {
2694
-    $this->kind = $kind;
2694
+	$this->kind = $kind;
2695 2695
   }
2696 2696
   public function getKind()
2697 2697
   {
2698
-    return $this->kind;
2698
+	return $this->kind;
2699 2699
   }
2700 2700
   public function setNumericId($numericId)
2701 2701
   {
2702
-    $this->numericId = $numericId;
2702
+	$this->numericId = $numericId;
2703 2703
   }
2704 2704
   public function getNumericId()
2705 2705
   {
2706
-    return $this->numericId;
2706
+	return $this->numericId;
2707 2707
   }
2708 2708
   public function setProjectReference(Google_Service_Bigquery_ProjectReference $projectReference)
2709 2709
   {
2710
-    $this->projectReference = $projectReference;
2710
+	$this->projectReference = $projectReference;
2711 2711
   }
2712 2712
   public function getProjectReference()
2713 2713
   {
2714
-    return $this->projectReference;
2714
+	return $this->projectReference;
2715 2715
   }
2716 2716
 }
2717 2717
 
@@ -2724,11 +2724,11 @@  discard block
 block discarded – undo
2724 2724
 
2725 2725
   public function setProjectId($projectId)
2726 2726
   {
2727
-    $this->projectId = $projectId;
2727
+	$this->projectId = $projectId;
2728 2728
   }
2729 2729
   public function getProjectId()
2730 2730
   {
2731
-    return $this->projectId;
2731
+	return $this->projectId;
2732 2732
   }
2733 2733
 }
2734 2734
 
@@ -2749,67 +2749,67 @@  discard block
 block discarded – undo
2749 2749
 
2750 2750
   public function setDefaultDataset(Google_Service_Bigquery_DatasetReference $defaultDataset)
2751 2751
   {
2752
-    $this->defaultDataset = $defaultDataset;
2752
+	$this->defaultDataset = $defaultDataset;
2753 2753
   }
2754 2754
   public function getDefaultDataset()
2755 2755
   {
2756
-    return $this->defaultDataset;
2756
+	return $this->defaultDataset;
2757 2757
   }
2758 2758
   public function setDryRun($dryRun)
2759 2759
   {
2760
-    $this->dryRun = $dryRun;
2760
+	$this->dryRun = $dryRun;
2761 2761
   }
2762 2762
   public function getDryRun()
2763 2763
   {
2764
-    return $this->dryRun;
2764
+	return $this->dryRun;
2765 2765
   }
2766 2766
   public function setKind($kind)
2767 2767
   {
2768
-    $this->kind = $kind;
2768
+	$this->kind = $kind;
2769 2769
   }
2770 2770
   public function getKind()
2771 2771
   {
2772
-    return $this->kind;
2772
+	return $this->kind;
2773 2773
   }
2774 2774
   public function setMaxResults($maxResults)
2775 2775
   {
2776
-    $this->maxResults = $maxResults;
2776
+	$this->maxResults = $maxResults;
2777 2777
   }
2778 2778
   public function getMaxResults()
2779 2779
   {
2780
-    return $this->maxResults;
2780
+	return $this->maxResults;
2781 2781
   }
2782 2782
   public function setPreserveNulls($preserveNulls)
2783 2783
   {
2784
-    $this->preserveNulls = $preserveNulls;
2784
+	$this->preserveNulls = $preserveNulls;
2785 2785
   }
2786 2786
   public function getPreserveNulls()
2787 2787
   {
2788
-    return $this->preserveNulls;
2788
+	return $this->preserveNulls;
2789 2789
   }
2790 2790
   public function setQuery($query)
2791 2791
   {
2792
-    $this->query = $query;
2792
+	$this->query = $query;
2793 2793
   }
2794 2794
   public function getQuery()
2795 2795
   {
2796
-    return $this->query;
2796
+	return $this->query;
2797 2797
   }
2798 2798
   public function setTimeoutMs($timeoutMs)
2799 2799
   {
2800
-    $this->timeoutMs = $timeoutMs;
2800
+	$this->timeoutMs = $timeoutMs;
2801 2801
   }
2802 2802
   public function getTimeoutMs()
2803 2803
   {
2804
-    return $this->timeoutMs;
2804
+	return $this->timeoutMs;
2805 2805
   }
2806 2806
   public function setUseQueryCache($useQueryCache)
2807 2807
   {
2808
-    $this->useQueryCache = $useQueryCache;
2808
+	$this->useQueryCache = $useQueryCache;
2809 2809
   }
2810 2810
   public function getUseQueryCache()
2811 2811
   {
2812
-    return $this->useQueryCache;
2812
+	return $this->useQueryCache;
2813 2813
   }
2814 2814
 }
2815 2815
 
@@ -2836,83 +2836,83 @@  discard block
 block discarded – undo
2836 2836
 
2837 2837
   public function setCacheHit($cacheHit)
2838 2838
   {
2839
-    $this->cacheHit = $cacheHit;
2839
+	$this->cacheHit = $cacheHit;
2840 2840
   }
2841 2841
   public function getCacheHit()
2842 2842
   {
2843
-    return $this->cacheHit;
2843
+	return $this->cacheHit;
2844 2844
   }
2845 2845
   public function setErrors($errors)
2846 2846
   {
2847
-    $this->errors = $errors;
2847
+	$this->errors = $errors;
2848 2848
   }
2849 2849
   public function getErrors()
2850 2850
   {
2851
-    return $this->errors;
2851
+	return $this->errors;
2852 2852
   }
2853 2853
   public function setJobComplete($jobComplete)
2854 2854
   {
2855
-    $this->jobComplete = $jobComplete;
2855
+	$this->jobComplete = $jobComplete;
2856 2856
   }
2857 2857
   public function getJobComplete()
2858 2858
   {
2859
-    return $this->jobComplete;
2859
+	return $this->jobComplete;
2860 2860
   }
2861 2861
   public function setJobReference(Google_Service_Bigquery_JobReference $jobReference)
2862 2862
   {
2863
-    $this->jobReference = $jobReference;
2863
+	$this->jobReference = $jobReference;
2864 2864
   }
2865 2865
   public function getJobReference()
2866 2866
   {
2867
-    return $this->jobReference;
2867
+	return $this->jobReference;
2868 2868
   }
2869 2869
   public function setKind($kind)
2870 2870
   {
2871
-    $this->kind = $kind;
2871
+	$this->kind = $kind;
2872 2872
   }
2873 2873
   public function getKind()
2874 2874
   {
2875
-    return $this->kind;
2875
+	return $this->kind;
2876 2876
   }
2877 2877
   public function setPageToken($pageToken)
2878 2878
   {
2879
-    $this->pageToken = $pageToken;
2879
+	$this->pageToken = $pageToken;
2880 2880
   }
2881 2881
   public function getPageToken()
2882 2882
   {
2883
-    return $this->pageToken;
2883
+	return $this->pageToken;
2884 2884
   }
2885 2885
   public function setRows($rows)
2886 2886
   {
2887
-    $this->rows = $rows;
2887
+	$this->rows = $rows;
2888 2888
   }
2889 2889
   public function getRows()
2890 2890
   {
2891
-    return $this->rows;
2891
+	return $this->rows;
2892 2892
   }
2893 2893
   public function setSchema(Google_Service_Bigquery_TableSchema $schema)
2894 2894
   {
2895
-    $this->schema = $schema;
2895
+	$this->schema = $schema;
2896 2896
   }
2897 2897
   public function getSchema()
2898 2898
   {
2899
-    return $this->schema;
2899
+	return $this->schema;
2900 2900
   }
2901 2901
   public function setTotalBytesProcessed($totalBytesProcessed)
2902 2902
   {
2903
-    $this->totalBytesProcessed = $totalBytesProcessed;
2903
+	$this->totalBytesProcessed = $totalBytesProcessed;
2904 2904
   }
2905 2905
   public function getTotalBytesProcessed()
2906 2906
   {
2907
-    return $this->totalBytesProcessed;
2907
+	return $this->totalBytesProcessed;
2908 2908
   }
2909 2909
   public function setTotalRows($totalRows)
2910 2910
   {
2911
-    $this->totalRows = $totalRows;
2911
+	$this->totalRows = $totalRows;
2912 2912
   }
2913 2913
   public function getTotalRows()
2914 2914
   {
2915
-    return $this->totalRows;
2915
+	return $this->totalRows;
2916 2916
   }
2917 2917
 }
2918 2918
 
@@ -2927,27 +2927,27 @@  discard block
 block discarded – undo
2927 2927
 
2928 2928
   public function setEstimatedBytes($estimatedBytes)
2929 2929
   {
2930
-    $this->estimatedBytes = $estimatedBytes;
2930
+	$this->estimatedBytes = $estimatedBytes;
2931 2931
   }
2932 2932
   public function getEstimatedBytes()
2933 2933
   {
2934
-    return $this->estimatedBytes;
2934
+	return $this->estimatedBytes;
2935 2935
   }
2936 2936
   public function setEstimatedRows($estimatedRows)
2937 2937
   {
2938
-    $this->estimatedRows = $estimatedRows;
2938
+	$this->estimatedRows = $estimatedRows;
2939 2939
   }
2940 2940
   public function getEstimatedRows()
2941 2941
   {
2942
-    return $this->estimatedRows;
2942
+	return $this->estimatedRows;
2943 2943
   }
2944 2944
   public function setOldestEntryTime($oldestEntryTime)
2945 2945
   {
2946
-    $this->oldestEntryTime = $oldestEntryTime;
2946
+	$this->oldestEntryTime = $oldestEntryTime;
2947 2947
   }
2948 2948
   public function getOldestEntryTime()
2949 2949
   {
2950
-    return $this->oldestEntryTime;
2950
+	return $this->oldestEntryTime;
2951 2951
   }
2952 2952
 }
2953 2953
 
@@ -2982,147 +2982,147 @@  discard block
 block discarded – undo
2982 2982
 
2983 2983
   public function setCreationTime($creationTime)
2984 2984
   {
2985
-    $this->creationTime = $creationTime;
2985
+	$this->creationTime = $creationTime;
2986 2986
   }
2987 2987
   public function getCreationTime()
2988 2988
   {
2989
-    return $this->creationTime;
2989
+	return $this->creationTime;
2990 2990
   }
2991 2991
   public function setDescription($description)
2992 2992
   {
2993
-    $this->description = $description;
2993
+	$this->description = $description;
2994 2994
   }
2995 2995
   public function getDescription()
2996 2996
   {
2997
-    return $this->description;
2997
+	return $this->description;
2998 2998
   }
2999 2999
   public function setEtag($etag)
3000 3000
   {
3001
-    $this->etag = $etag;
3001
+	$this->etag = $etag;
3002 3002
   }
3003 3003
   public function getEtag()
3004 3004
   {
3005
-    return $this->etag;
3005
+	return $this->etag;
3006 3006
   }
3007 3007
   public function setExpirationTime($expirationTime)
3008 3008
   {
3009
-    $this->expirationTime = $expirationTime;
3009
+	$this->expirationTime = $expirationTime;
3010 3010
   }
3011 3011
   public function getExpirationTime()
3012 3012
   {
3013
-    return $this->expirationTime;
3013
+	return $this->expirationTime;
3014 3014
   }
3015 3015
   public function setExternalDataConfiguration(Google_Service_Bigquery_ExternalDataConfiguration $externalDataConfiguration)
3016 3016
   {
3017
-    $this->externalDataConfiguration = $externalDataConfiguration;
3017
+	$this->externalDataConfiguration = $externalDataConfiguration;
3018 3018
   }
3019 3019
   public function getExternalDataConfiguration()
3020 3020
   {
3021
-    return $this->externalDataConfiguration;
3021
+	return $this->externalDataConfiguration;
3022 3022
   }
3023 3023
   public function setFriendlyName($friendlyName)
3024 3024
   {
3025
-    $this->friendlyName = $friendlyName;
3025
+	$this->friendlyName = $friendlyName;
3026 3026
   }
3027 3027
   public function getFriendlyName()
3028 3028
   {
3029
-    return $this->friendlyName;
3029
+	return $this->friendlyName;
3030 3030
   }
3031 3031
   public function setId($id)
3032 3032
   {
3033
-    $this->id = $id;
3033
+	$this->id = $id;
3034 3034
   }
3035 3035
   public function getId()
3036 3036
   {
3037
-    return $this->id;
3037
+	return $this->id;
3038 3038
   }
3039 3039
   public function setKind($kind)
3040 3040
   {
3041
-    $this->kind = $kind;
3041
+	$this->kind = $kind;
3042 3042
   }
3043 3043
   public function getKind()
3044 3044
   {
3045
-    return $this->kind;
3045
+	return $this->kind;
3046 3046
   }
3047 3047
   public function setLastModifiedTime($lastModifiedTime)
3048 3048
   {
3049
-    $this->lastModifiedTime = $lastModifiedTime;
3049
+	$this->lastModifiedTime = $lastModifiedTime;
3050 3050
   }
3051 3051
   public function getLastModifiedTime()
3052 3052
   {
3053
-    return $this->lastModifiedTime;
3053
+	return $this->lastModifiedTime;
3054 3054
   }
3055 3055
   public function setLocation($location)
3056 3056
   {
3057
-    $this->location = $location;
3057
+	$this->location = $location;
3058 3058
   }
3059 3059
   public function getLocation()
3060 3060
   {
3061
-    return $this->location;
3061
+	return $this->location;
3062 3062
   }
3063 3063
   public function setNumBytes($numBytes)
3064 3064
   {
3065
-    $this->numBytes = $numBytes;
3065
+	$this->numBytes = $numBytes;
3066 3066
   }
3067 3067
   public function getNumBytes()
3068 3068
   {
3069
-    return $this->numBytes;
3069
+	return $this->numBytes;
3070 3070
   }
3071 3071
   public function setNumRows($numRows)
3072 3072
   {
3073
-    $this->numRows = $numRows;
3073
+	$this->numRows = $numRows;
3074 3074
   }
3075 3075
   public function getNumRows()
3076 3076
   {
3077
-    return $this->numRows;
3077
+	return $this->numRows;
3078 3078
   }
3079 3079
   public function setSchema(Google_Service_Bigquery_TableSchema $schema)
3080 3080
   {
3081
-    $this->schema = $schema;
3081
+	$this->schema = $schema;
3082 3082
   }
3083 3083
   public function getSchema()
3084 3084
   {
3085
-    return $this->schema;
3085
+	return $this->schema;
3086 3086
   }
3087 3087
   public function setSelfLink($selfLink)
3088 3088
   {
3089
-    $this->selfLink = $selfLink;
3089
+	$this->selfLink = $selfLink;
3090 3090
   }
3091 3091
   public function getSelfLink()
3092 3092
   {
3093
-    return $this->selfLink;
3093
+	return $this->selfLink;
3094 3094
   }
3095 3095
   public function setStreamingBuffer(Google_Service_Bigquery_Streamingbuffer $streamingBuffer)
3096 3096
   {
3097
-    $this->streamingBuffer = $streamingBuffer;
3097
+	$this->streamingBuffer = $streamingBuffer;
3098 3098
   }
3099 3099
   public function getStreamingBuffer()
3100 3100
   {
3101
-    return $this->streamingBuffer;
3101
+	return $this->streamingBuffer;
3102 3102
   }
3103 3103
   public function setTableReference(Google_Service_Bigquery_TableReference $tableReference)
3104 3104
   {
3105
-    $this->tableReference = $tableReference;
3105
+	$this->tableReference = $tableReference;
3106 3106
   }
3107 3107
   public function getTableReference()
3108 3108
   {
3109
-    return $this->tableReference;
3109
+	return $this->tableReference;
3110 3110
   }
3111 3111
   public function setType($type)
3112 3112
   {
3113
-    $this->type = $type;
3113
+	$this->type = $type;
3114 3114
   }
3115 3115
   public function getType()
3116 3116
   {
3117
-    return $this->type;
3117
+	return $this->type;
3118 3118
   }
3119 3119
   public function setView(Google_Service_Bigquery_ViewDefinition $view)
3120 3120
   {
3121
-    $this->view = $view;
3121
+	$this->view = $view;
3122 3122
   }
3123 3123
   public function getView()
3124 3124
   {
3125
-    return $this->view;
3125
+	return $this->view;
3126 3126
   }
3127 3127
 }
3128 3128
 
@@ -3135,11 +3135,11 @@  discard block
 block discarded – undo
3135 3135
 
3136 3136
   public function setV($v)
3137 3137
   {
3138
-    $this->v = $v;
3138
+	$this->v = $v;
3139 3139
   }
3140 3140
   public function getV()
3141 3141
   {
3142
-    return $this->v;
3142
+	return $this->v;
3143 3143
   }
3144 3144
 }
3145 3145
 
@@ -3157,35 +3157,35 @@  discard block
 block discarded – undo
3157 3157
 
3158 3158
   public function setIgnoreUnknownValues($ignoreUnknownValues)
3159 3159
   {
3160
-    $this->ignoreUnknownValues = $ignoreUnknownValues;
3160
+	$this->ignoreUnknownValues = $ignoreUnknownValues;
3161 3161
   }
3162 3162
   public function getIgnoreUnknownValues()
3163 3163
   {
3164
-    return $this->ignoreUnknownValues;
3164
+	return $this->ignoreUnknownValues;
3165 3165
   }
3166 3166
   public function setKind($kind)
3167 3167
   {
3168
-    $this->kind = $kind;
3168
+	$this->kind = $kind;
3169 3169
   }
3170 3170
   public function getKind()
3171 3171
   {
3172
-    return $this->kind;
3172
+	return $this->kind;
3173 3173
   }
3174 3174
   public function setRows($rows)
3175 3175
   {
3176
-    $this->rows = $rows;
3176
+	$this->rows = $rows;
3177 3177
   }
3178 3178
   public function getRows()
3179 3179
   {
3180
-    return $this->rows;
3180
+	return $this->rows;
3181 3181
   }
3182 3182
   public function setSkipInvalidRows($skipInvalidRows)
3183 3183
   {
3184
-    $this->skipInvalidRows = $skipInvalidRows;
3184
+	$this->skipInvalidRows = $skipInvalidRows;
3185 3185
   }
3186 3186
   public function getSkipInvalidRows()
3187 3187
   {
3188
-    return $this->skipInvalidRows;
3188
+	return $this->skipInvalidRows;
3189 3189
   }
3190 3190
 }
3191 3191
 
@@ -3199,19 +3199,19 @@  discard block
 block discarded – undo
3199 3199
 
3200 3200
   public function setInsertId($insertId)
3201 3201
   {
3202
-    $this->insertId = $insertId;
3202
+	$this->insertId = $insertId;
3203 3203
   }
3204 3204
   public function getInsertId()
3205 3205
   {
3206
-    return $this->insertId;
3206
+	return $this->insertId;
3207 3207
   }
3208 3208
   public function setJson($json)
3209 3209
   {
3210
-    $this->json = $json;
3210
+	$this->json = $json;
3211 3211
   }
3212 3212
   public function getJson()
3213 3213
   {
3214
-    return $this->json;
3214
+	return $this->json;
3215 3215
   }
3216 3216
 }
3217 3217
 
@@ -3227,19 +3227,19 @@  discard block
 block discarded – undo
3227 3227
 
3228 3228
   public function setInsertErrors($insertErrors)
3229 3229
   {
3230
-    $this->insertErrors = $insertErrors;
3230
+	$this->insertErrors = $insertErrors;
3231 3231
   }
3232 3232
   public function getInsertErrors()
3233 3233
   {
3234
-    return $this->insertErrors;
3234
+	return $this->insertErrors;
3235 3235
   }
3236 3236
   public function setKind($kind)
3237 3237
   {
3238
-    $this->kind = $kind;
3238
+	$this->kind = $kind;
3239 3239
   }
3240 3240
   public function getKind()
3241 3241
   {
3242
-    return $this->kind;
3242
+	return $this->kind;
3243 3243
   }
3244 3244
 }
3245 3245
 
@@ -3255,19 +3255,19 @@  discard block
 block discarded – undo
3255 3255
 
3256 3256
   public function setErrors($errors)
3257 3257
   {
3258
-    $this->errors = $errors;
3258
+	$this->errors = $errors;
3259 3259
   }
3260 3260
   public function getErrors()
3261 3261
   {
3262
-    return $this->errors;
3262
+	return $this->errors;
3263 3263
   }
3264 3264
   public function setIndex($index)
3265 3265
   {
3266
-    $this->index = $index;
3266
+	$this->index = $index;
3267 3267
   }
3268 3268
   public function getIndex()
3269 3269
   {
3270
-    return $this->index;
3270
+	return $this->index;
3271 3271
   }
3272 3272
 }
3273 3273
 
@@ -3286,43 +3286,43 @@  discard block
 block discarded – undo
3286 3286
 
3287 3287
   public function setEtag($etag)
3288 3288
   {
3289
-    $this->etag = $etag;
3289
+	$this->etag = $etag;
3290 3290
   }
3291 3291
   public function getEtag()
3292 3292
   {
3293
-    return $this->etag;
3293
+	return $this->etag;
3294 3294
   }
3295 3295
   public function setKind($kind)
3296 3296
   {
3297
-    $this->kind = $kind;
3297
+	$this->kind = $kind;
3298 3298
   }
3299 3299
   public function getKind()
3300 3300
   {
3301
-    return $this->kind;
3301
+	return $this->kind;
3302 3302
   }
3303 3303
   public function setPageToken($pageToken)
3304 3304
   {
3305
-    $this->pageToken = $pageToken;
3305
+	$this->pageToken = $pageToken;
3306 3306
   }
3307 3307
   public function getPageToken()
3308 3308
   {
3309
-    return $this->pageToken;
3309
+	return $this->pageToken;
3310 3310
   }
3311 3311
   public function setRows($rows)
3312 3312
   {
3313
-    $this->rows = $rows;
3313
+	$this->rows = $rows;
3314 3314
   }
3315 3315
   public function getRows()
3316 3316
   {
3317
-    return $this->rows;
3317
+	return $this->rows;
3318 3318
   }
3319 3319
   public function setTotalRows($totalRows)
3320 3320
   {
3321
-    $this->totalRows = $totalRows;
3321
+	$this->totalRows = $totalRows;
3322 3322
   }
3323 3323
   public function getTotalRows()
3324 3324
   {
3325
-    return $this->totalRows;
3325
+	return $this->totalRows;
3326 3326
   }
3327 3327
 }
3328 3328
 
@@ -3341,43 +3341,43 @@  discard block
 block discarded – undo
3341 3341
 
3342 3342
   public function setDescription($description)
3343 3343
   {
3344
-    $this->description = $description;
3344
+	$this->description = $description;
3345 3345
   }
3346 3346
   public function getDescription()
3347 3347
   {
3348
-    return $this->description;
3348
+	return $this->description;
3349 3349
   }
3350 3350
   public function setFields($fields)
3351 3351
   {
3352
-    $this->fields = $fields;
3352
+	$this->fields = $fields;
3353 3353
   }
3354 3354
   public function getFields()
3355 3355
   {
3356
-    return $this->fields;
3356
+	return $this->fields;
3357 3357
   }
3358 3358
   public function setMode($mode)
3359 3359
   {
3360
-    $this->mode = $mode;
3360
+	$this->mode = $mode;
3361 3361
   }
3362 3362
   public function getMode()
3363 3363
   {
3364
-    return $this->mode;
3364
+	return $this->mode;
3365 3365
   }
3366 3366
   public function setName($name)
3367 3367
   {
3368
-    $this->name = $name;
3368
+	$this->name = $name;
3369 3369
   }
3370 3370
   public function getName()
3371 3371
   {
3372
-    return $this->name;
3372
+	return $this->name;
3373 3373
   }
3374 3374
   public function setType($type)
3375 3375
   {
3376
-    $this->type = $type;
3376
+	$this->type = $type;
3377 3377
   }
3378 3378
   public function getType()
3379 3379
   {
3380
-    return $this->type;
3380
+	return $this->type;
3381 3381
   }
3382 3382
 }
3383 3383
 
@@ -3396,43 +3396,43 @@  discard block
 block discarded – undo
3396 3396
 
3397 3397
   public function setEtag($etag)
3398 3398
   {
3399
-    $this->etag = $etag;
3399
+	$this->etag = $etag;
3400 3400
   }
3401 3401
   public function getEtag()
3402 3402
   {
3403
-    return $this->etag;
3403
+	return $this->etag;
3404 3404
   }
3405 3405
   public function setKind($kind)
3406 3406
   {
3407
-    $this->kind = $kind;
3407
+	$this->kind = $kind;
3408 3408
   }
3409 3409
   public function getKind()
3410 3410
   {
3411
-    return $this->kind;
3411
+	return $this->kind;
3412 3412
   }
3413 3413
   public function setNextPageToken($nextPageToken)
3414 3414
   {
3415
-    $this->nextPageToken = $nextPageToken;
3415
+	$this->nextPageToken = $nextPageToken;
3416 3416
   }
3417 3417
   public function getNextPageToken()
3418 3418
   {
3419
-    return $this->nextPageToken;
3419
+	return $this->nextPageToken;
3420 3420
   }
3421 3421
   public function setTables($tables)
3422 3422
   {
3423
-    $this->tables = $tables;
3423
+	$this->tables = $tables;
3424 3424
   }
3425 3425
   public function getTables()
3426 3426
   {
3427
-    return $this->tables;
3427
+	return $this->tables;
3428 3428
   }
3429 3429
   public function setTotalItems($totalItems)
3430 3430
   {
3431
-    $this->totalItems = $totalItems;
3431
+	$this->totalItems = $totalItems;
3432 3432
   }
3433 3433
   public function getTotalItems()
3434 3434
   {
3435
-    return $this->totalItems;
3435
+	return $this->totalItems;
3436 3436
   }
3437 3437
 }
3438 3438
 
@@ -3450,43 +3450,43 @@  discard block
 block discarded – undo
3450 3450
 
3451 3451
   public function setFriendlyName($friendlyName)
3452 3452
   {
3453
-    $this->friendlyName = $friendlyName;
3453
+	$this->friendlyName = $friendlyName;
3454 3454
   }
3455 3455
   public function getFriendlyName()
3456 3456
   {
3457
-    return $this->friendlyName;
3457
+	return $this->friendlyName;
3458 3458
   }
3459 3459
   public function setId($id)
3460 3460
   {
3461
-    $this->id = $id;
3461
+	$this->id = $id;
3462 3462
   }
3463 3463
   public function getId()
3464 3464
   {
3465
-    return $this->id;
3465
+	return $this->id;
3466 3466
   }
3467 3467
   public function setKind($kind)
3468 3468
   {
3469
-    $this->kind = $kind;
3469
+	$this->kind = $kind;
3470 3470
   }
3471 3471
   public function getKind()
3472 3472
   {
3473
-    return $this->kind;
3473
+	return $this->kind;
3474 3474
   }
3475 3475
   public function setTableReference(Google_Service_Bigquery_TableReference $tableReference)
3476 3476
   {
3477
-    $this->tableReference = $tableReference;
3477
+	$this->tableReference = $tableReference;
3478 3478
   }
3479 3479
   public function getTableReference()
3480 3480
   {
3481
-    return $this->tableReference;
3481
+	return $this->tableReference;
3482 3482
   }
3483 3483
   public function setType($type)
3484 3484
   {
3485
-    $this->type = $type;
3485
+	$this->type = $type;
3486 3486
   }
3487 3487
   public function getType()
3488 3488
   {
3489
-    return $this->type;
3489
+	return $this->type;
3490 3490
   }
3491 3491
 }
3492 3492
 
@@ -3501,27 +3501,27 @@  discard block
 block discarded – undo
3501 3501
 
3502 3502
   public function setDatasetId($datasetId)
3503 3503
   {
3504
-    $this->datasetId = $datasetId;
3504
+	$this->datasetId = $datasetId;
3505 3505
   }
3506 3506
   public function getDatasetId()
3507 3507
   {
3508
-    return $this->datasetId;
3508
+	return $this->datasetId;
3509 3509
   }
3510 3510
   public function setProjectId($projectId)
3511 3511
   {
3512
-    $this->projectId = $projectId;
3512
+	$this->projectId = $projectId;
3513 3513
   }
3514 3514
   public function getProjectId()
3515 3515
   {
3516
-    return $this->projectId;
3516
+	return $this->projectId;
3517 3517
   }
3518 3518
   public function setTableId($tableId)
3519 3519
   {
3520
-    $this->tableId = $tableId;
3520
+	$this->tableId = $tableId;
3521 3521
   }
3522 3522
   public function getTableId()
3523 3523
   {
3524
-    return $this->tableId;
3524
+	return $this->tableId;
3525 3525
   }
3526 3526
 }
3527 3527
 
@@ -3536,11 +3536,11 @@  discard block
 block discarded – undo
3536 3536
 
3537 3537
   public function setF($f)
3538 3538
   {
3539
-    $this->f = $f;
3539
+	$this->f = $f;
3540 3540
   }
3541 3541
   public function getF()
3542 3542
   {
3543
-    return $this->f;
3543
+	return $this->f;
3544 3544
   }
3545 3545
 }
3546 3546
 
@@ -3555,11 +3555,11 @@  discard block
 block discarded – undo
3555 3555
 
3556 3556
   public function setFields($fields)
3557 3557
   {
3558
-    $this->fields = $fields;
3558
+	$this->fields = $fields;
3559 3559
   }
3560 3560
   public function getFields()
3561 3561
   {
3562
-    return $this->fields;
3562
+	return $this->fields;
3563 3563
   }
3564 3564
 }
3565 3565
 
@@ -3573,19 +3573,19 @@  discard block
 block discarded – undo
3573 3573
 
3574 3574
   public function setInlineCode($inlineCode)
3575 3575
   {
3576
-    $this->inlineCode = $inlineCode;
3576
+	$this->inlineCode = $inlineCode;
3577 3577
   }
3578 3578
   public function getInlineCode()
3579 3579
   {
3580
-    return $this->inlineCode;
3580
+	return $this->inlineCode;
3581 3581
   }
3582 3582
   public function setResourceUri($resourceUri)
3583 3583
   {
3584
-    $this->resourceUri = $resourceUri;
3584
+	$this->resourceUri = $resourceUri;
3585 3585
   }
3586 3586
   public function getResourceUri()
3587 3587
   {
3588
-    return $this->resourceUri;
3588
+	return $this->resourceUri;
3589 3589
   }
3590 3590
 }
3591 3591
 
@@ -3598,10 +3598,10 @@  discard block
 block discarded – undo
3598 3598
 
3599 3599
   public function setQuery($query)
3600 3600
   {
3601
-    $this->query = $query;
3601
+	$this->query = $query;
3602 3602
   }
3603 3603
   public function getQuery()
3604 3604
   {
3605
-    return $this->query;
3605
+	return $this->query;
3606 3606
   }
3607 3607
 }
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                   'type' => 'boolean',
98 98
                 ),
99 99
               ),
100
-            ),'get' => array(
100
+            ), 'get' => array(
101 101
               'path' => 'projects/{projectId}/datasets/{datasetId}',
102 102
               'httpMethod' => 'GET',
103 103
               'parameters' => array(
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
                   'required' => true,
113 113
                 ),
114 114
               ),
115
-            ),'insert' => array(
115
+            ), 'insert' => array(
116 116
               'path' => 'projects/{projectId}/datasets',
117 117
               'httpMethod' => 'POST',
118 118
               'parameters' => array(
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
                   'required' => true,
123 123
                 ),
124 124
               ),
125
-            ),'list' => array(
125
+            ), 'list' => array(
126 126
               'path' => 'projects/{projectId}/datasets',
127 127
               'httpMethod' => 'GET',
128 128
               'parameters' => array(
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                   'type' => 'integer',
145 145
                 ),
146 146
               ),
147
-            ),'patch' => array(
147
+            ), 'patch' => array(
148 148
               'path' => 'projects/{projectId}/datasets/{datasetId}',
149 149
               'httpMethod' => 'PATCH',
150 150
               'parameters' => array(
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
                   'required' => true,
160 160
                 ),
161 161
               ),
162
-            ),'update' => array(
162
+            ), 'update' => array(
163 163
               'path' => 'projects/{projectId}/datasets/{datasetId}',
164 164
               'httpMethod' => 'PUT',
165 165
               'parameters' => array(
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
                   'required' => true,
200 200
                 ),
201 201
               ),
202
-            ),'get' => array(
202
+            ), 'get' => array(
203 203
               'path' => 'projects/{projectId}/jobs/{jobId}',
204 204
               'httpMethod' => 'GET',
205 205
               'parameters' => array(
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
                   'required' => true,
215 215
                 ),
216 216
               ),
217
-            ),'getQueryResults' => array(
217
+            ), 'getQueryResults' => array(
218 218
               'path' => 'projects/{projectId}/queries/{jobId}',
219 219
               'httpMethod' => 'GET',
220 220
               'parameters' => array(
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                   'type' => 'string',
246 246
                 ),
247 247
               ),
248
-            ),'insert' => array(
248
+            ), 'insert' => array(
249 249
               'path' => 'projects/{projectId}/jobs',
250 250
               'httpMethod' => 'POST',
251 251
               'parameters' => array(
@@ -255,7 +255,7 @@  discard block
 block discarded – undo
255 255
                   'required' => true,
256 256
                 ),
257 257
               ),
258
-            ),'list' => array(
258
+            ), 'list' => array(
259 259
               'path' => 'projects/{projectId}/jobs',
260 260
               'httpMethod' => 'GET',
261 261
               'parameters' => array(
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                   'type' => 'string',
287 287
                 ),
288 288
               ),
289
-            ),'query' => array(
289
+            ), 'query' => array(
290 290
               'path' => 'projects/{projectId}/queries',
291 291
               'httpMethod' => 'POST',
292 292
               'parameters' => array(
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
                   'required' => true,
350 350
                 ),
351 351
               ),
352
-            ),'list' => array(
352
+            ), 'list' => array(
353 353
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}/data',
354 354
               'httpMethod' => 'GET',
355 355
               'parameters' => array(
@@ -411,7 +411,7 @@  discard block
 block discarded – undo
411 411
                   'required' => true,
412 412
                 ),
413 413
               ),
414
-            ),'get' => array(
414
+            ), 'get' => array(
415 415
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
416 416
               'httpMethod' => 'GET',
417 417
               'parameters' => array(
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
                   'required' => true,
432 432
                 ),
433 433
               ),
434
-            ),'insert' => array(
434
+            ), 'insert' => array(
435 435
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
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
-            ),'list' => array(
449
+            ), 'list' => array(
450 450
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables',
451 451
               'httpMethod' => 'GET',
452 452
               'parameters' => array(
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
                   'type' => 'integer',
470 470
                 ),
471 471
               ),
472
-            ),'patch' => array(
472
+            ), 'patch' => array(
473 473
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
474 474
               'httpMethod' => 'PATCH',
475 475
               'parameters' => array(
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
                   'required' => true,
490 490
                 ),
491 491
               ),
492
-            ),'update' => array(
492
+            ), 'update' => array(
493 493
               'path' => 'projects/{projectId}/datasets/{datasetId}/tables/{tableId}',
494 494
               'httpMethod' => 'PUT',
495 495
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Blogger.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -1259,7 +1259,7 @@  discard block
 block discarded – undo
1259 1259
    * Add a page. (pages.insert)
1260 1260
    *
1261 1261
    * @param string $blogId ID of the blog to add the page to.
1262
-   * @param Google_Page $postBody
1262
+   * @param Google_Service_Blogger_Page $postBody
1263 1263
    * @param array $optParams Optional parameters.
1264 1264
    *
1265 1265
    * @opt_param bool isDraft Whether to create the page as a draft (default:
@@ -1300,7 +1300,7 @@  discard block
 block discarded – undo
1300 1300
    *
1301 1301
    * @param string $blogId The ID of the Blog.
1302 1302
    * @param string $pageId The ID of the Page.
1303
-   * @param Google_Page $postBody
1303
+   * @param Google_Service_Blogger_Page $postBody
1304 1304
    * @param array $optParams Optional parameters.
1305 1305
    *
1306 1306
    * @opt_param bool revert Whether a revert action should be performed when the
@@ -1351,7 +1351,7 @@  discard block
 block discarded – undo
1351 1351
    *
1352 1352
    * @param string $blogId The ID of the Blog.
1353 1353
    * @param string $pageId The ID of the Page.
1354
-   * @param Google_Page $postBody
1354
+   * @param Google_Service_Blogger_Page $postBody
1355 1355
    * @param array $optParams Optional parameters.
1356 1356
    *
1357 1357
    * @opt_param bool revert Whether a revert action should be performed when the
@@ -1511,7 +1511,7 @@  discard block
 block discarded – undo
1511 1511
    * Add a post. (posts.insert)
1512 1512
    *
1513 1513
    * @param string $blogId ID of the blog to add the post to.
1514
-   * @param Google_Post $postBody
1514
+   * @param Google_Service_Blogger_Post $postBody
1515 1515
    * @param array $optParams Optional parameters.
1516 1516
    *
1517 1517
    * @opt_param bool fetchImages Whether image URL metadata for each post is
@@ -1565,7 +1565,7 @@  discard block
 block discarded – undo
1565 1565
    *
1566 1566
    * @param string $blogId The ID of the Blog.
1567 1567
    * @param string $postId The ID of the Post.
1568
-   * @param Google_Post $postBody
1568
+   * @param Google_Service_Blogger_Post $postBody
1569 1569
    * @param array $optParams Optional parameters.
1570 1570
    *
1571 1571
    * @opt_param bool revert Whether a revert action should be performed when the
@@ -1649,7 +1649,7 @@  discard block
 block discarded – undo
1649 1649
    *
1650 1650
    * @param string $blogId The ID of the Blog.
1651 1651
    * @param string $postId The ID of the Post.
1652
-   * @param Google_Post $postBody
1652
+   * @param Google_Service_Blogger_Post $postBody
1653 1653
    * @param array $optParams Optional parameters.
1654 1654
    *
1655 1655
    * @opt_param bool revert Whether a revert action should be performed when the
Please login to merge, or discard this patch.
Indentation   +1266 added lines, -1266 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Manage your Blogger account. */
34 34
   const BLOGGER =
35
-      "https://www.googleapis.com/auth/blogger";
35
+	  "https://www.googleapis.com/auth/blogger";
36 36
   /** View your Blogger account. */
37 37
   const BLOGGER_READONLY =
38
-      "https://www.googleapis.com/auth/blogger.readonly";
38
+	  "https://www.googleapis.com/auth/blogger.readonly";
39 39
 
40 40
   public $blogUserInfos;
41 41
   public $blogs;
@@ -54,879 +54,879 @@  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 = 'blogger/v3/';
60
-    $this->version = 'v3';
61
-    $this->serviceName = 'blogger';
62
-
63
-    $this->blogUserInfos = new Google_Service_Blogger_BlogUserInfos_Resource(
64
-        $this,
65
-        $this->serviceName,
66
-        'blogUserInfos',
67
-        array(
68
-          'methods' => array(
69
-            'get' => array(
70
-              'path' => 'users/{userId}/blogs/{blogId}',
71
-              'httpMethod' => 'GET',
72
-              'parameters' => array(
73
-                'userId' => array(
74
-                  'location' => 'path',
75
-                  'type' => 'string',
76
-                  'required' => true,
77
-                ),
78
-                'blogId' => array(
79
-                  'location' => 'path',
80
-                  'type' => 'string',
81
-                  'required' => true,
82
-                ),
83
-                'maxPosts' => array(
84
-                  'location' => 'query',
85
-                  'type' => 'integer',
86
-                ),
87
-              ),
88
-            ),
89
-          )
90
-        )
91
-    );
92
-    $this->blogs = new Google_Service_Blogger_Blogs_Resource(
93
-        $this,
94
-        $this->serviceName,
95
-        'blogs',
96
-        array(
97
-          'methods' => array(
98
-            'get' => array(
99
-              'path' => 'blogs/{blogId}',
100
-              'httpMethod' => 'GET',
101
-              'parameters' => array(
102
-                'blogId' => array(
103
-                  'location' => 'path',
104
-                  'type' => 'string',
105
-                  'required' => true,
106
-                ),
107
-                'maxPosts' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'integer',
110
-                ),
111
-                'view' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-              ),
116
-            ),'getByUrl' => array(
117
-              'path' => 'blogs/byurl',
118
-              'httpMethod' => 'GET',
119
-              'parameters' => array(
120
-                'url' => array(
121
-                  'location' => 'query',
122
-                  'type' => 'string',
123
-                  'required' => true,
124
-                ),
125
-                'view' => array(
126
-                  'location' => 'query',
127
-                  'type' => 'string',
128
-                ),
129
-              ),
130
-            ),'listByUser' => array(
131
-              'path' => 'users/{userId}/blogs',
132
-              'httpMethod' => 'GET',
133
-              'parameters' => array(
134
-                'userId' => array(
135
-                  'location' => 'path',
136
-                  'type' => 'string',
137
-                  'required' => true,
138
-                ),
139
-                'fetchUserInfo' => array(
140
-                  'location' => 'query',
141
-                  'type' => 'boolean',
142
-                ),
143
-                'status' => array(
144
-                  'location' => 'query',
145
-                  'type' => 'string',
146
-                  'repeated' => true,
147
-                ),
148
-                'role' => array(
149
-                  'location' => 'query',
150
-                  'type' => 'string',
151
-                  'repeated' => true,
152
-                ),
153
-                'view' => array(
154
-                  'location' => 'query',
155
-                  'type' => 'string',
156
-                ),
157
-              ),
158
-            ),
159
-          )
160
-        )
161
-    );
162
-    $this->comments = new Google_Service_Blogger_Comments_Resource(
163
-        $this,
164
-        $this->serviceName,
165
-        'comments',
166
-        array(
167
-          'methods' => array(
168
-            'approve' => array(
169
-              'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/approve',
170
-              'httpMethod' => 'POST',
171
-              'parameters' => array(
172
-                'blogId' => array(
173
-                  'location' => 'path',
174
-                  'type' => 'string',
175
-                  'required' => true,
176
-                ),
177
-                'postId' => array(
178
-                  'location' => 'path',
179
-                  'type' => 'string',
180
-                  'required' => true,
181
-                ),
182
-                'commentId' => array(
183
-                  'location' => 'path',
184
-                  'type' => 'string',
185
-                  'required' => true,
186
-                ),
187
-              ),
188
-            ),'delete' => array(
189
-              'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
190
-              'httpMethod' => 'DELETE',
191
-              'parameters' => array(
192
-                'blogId' => array(
193
-                  'location' => 'path',
194
-                  'type' => 'string',
195
-                  'required' => true,
196
-                ),
197
-                'postId' => array(
198
-                  'location' => 'path',
199
-                  'type' => 'string',
200
-                  'required' => true,
201
-                ),
202
-                'commentId' => array(
203
-                  'location' => 'path',
204
-                  'type' => 'string',
205
-                  'required' => true,
206
-                ),
207
-              ),
208
-            ),'get' => array(
209
-              'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
210
-              'httpMethod' => 'GET',
211
-              'parameters' => array(
212
-                'blogId' => array(
213
-                  'location' => 'path',
214
-                  'type' => 'string',
215
-                  'required' => true,
216
-                ),
217
-                'postId' => array(
218
-                  'location' => 'path',
219
-                  'type' => 'string',
220
-                  'required' => true,
221
-                ),
222
-                'commentId' => array(
223
-                  'location' => 'path',
224
-                  'type' => 'string',
225
-                  'required' => true,
226
-                ),
227
-                'view' => array(
228
-                  'location' => 'query',
229
-                  'type' => 'string',
230
-                ),
231
-              ),
232
-            ),'list' => array(
233
-              'path' => 'blogs/{blogId}/posts/{postId}/comments',
234
-              'httpMethod' => 'GET',
235
-              'parameters' => array(
236
-                'blogId' => array(
237
-                  'location' => 'path',
238
-                  'type' => 'string',
239
-                  'required' => true,
240
-                ),
241
-                'postId' => array(
242
-                  'location' => 'path',
243
-                  'type' => 'string',
244
-                  'required' => true,
245
-                ),
246
-                'status' => array(
247
-                  'location' => 'query',
248
-                  'type' => 'string',
249
-                  'repeated' => true,
250
-                ),
251
-                'startDate' => array(
252
-                  'location' => 'query',
253
-                  'type' => 'string',
254
-                ),
255
-                'endDate' => array(
256
-                  'location' => 'query',
257
-                  'type' => 'string',
258
-                ),
259
-                'maxResults' => array(
260
-                  'location' => 'query',
261
-                  'type' => 'integer',
262
-                ),
263
-                'pageToken' => array(
264
-                  'location' => 'query',
265
-                  'type' => 'string',
266
-                ),
267
-                'fetchBodies' => array(
268
-                  'location' => 'query',
269
-                  'type' => 'boolean',
270
-                ),
271
-                'view' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'string',
274
-                ),
275
-              ),
276
-            ),'listByBlog' => array(
277
-              'path' => 'blogs/{blogId}/comments',
278
-              'httpMethod' => 'GET',
279
-              'parameters' => array(
280
-                'blogId' => array(
281
-                  'location' => 'path',
282
-                  'type' => 'string',
283
-                  'required' => true,
284
-                ),
285
-                'status' => array(
286
-                  'location' => 'query',
287
-                  'type' => 'string',
288
-                  'repeated' => true,
289
-                ),
290
-                'startDate' => array(
291
-                  'location' => 'query',
292
-                  'type' => 'string',
293
-                ),
294
-                'endDate' => array(
295
-                  'location' => 'query',
296
-                  'type' => 'string',
297
-                ),
298
-                'maxResults' => array(
299
-                  'location' => 'query',
300
-                  'type' => 'integer',
301
-                ),
302
-                'pageToken' => array(
303
-                  'location' => 'query',
304
-                  'type' => 'string',
305
-                ),
306
-                'fetchBodies' => array(
307
-                  'location' => 'query',
308
-                  'type' => 'boolean',
309
-                ),
310
-              ),
311
-            ),'markAsSpam' => array(
312
-              'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/spam',
313
-              'httpMethod' => 'POST',
314
-              'parameters' => array(
315
-                'blogId' => array(
316
-                  'location' => 'path',
317
-                  'type' => 'string',
318
-                  'required' => true,
319
-                ),
320
-                'postId' => array(
321
-                  'location' => 'path',
322
-                  'type' => 'string',
323
-                  'required' => true,
324
-                ),
325
-                'commentId' => array(
326
-                  'location' => 'path',
327
-                  'type' => 'string',
328
-                  'required' => true,
329
-                ),
330
-              ),
331
-            ),'removeContent' => array(
332
-              'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent',
333
-              'httpMethod' => 'POST',
334
-              'parameters' => array(
335
-                'blogId' => array(
336
-                  'location' => 'path',
337
-                  'type' => 'string',
338
-                  'required' => true,
339
-                ),
340
-                'postId' => array(
341
-                  'location' => 'path',
342
-                  'type' => 'string',
343
-                  'required' => true,
344
-                ),
345
-                'commentId' => array(
346
-                  'location' => 'path',
347
-                  'type' => 'string',
348
-                  'required' => true,
349
-                ),
350
-              ),
351
-            ),
352
-          )
353
-        )
354
-    );
355
-    $this->pageViews = new Google_Service_Blogger_PageViews_Resource(
356
-        $this,
357
-        $this->serviceName,
358
-        'pageViews',
359
-        array(
360
-          'methods' => array(
361
-            'get' => array(
362
-              'path' => 'blogs/{blogId}/pageviews',
363
-              'httpMethod' => 'GET',
364
-              'parameters' => array(
365
-                'blogId' => array(
366
-                  'location' => 'path',
367
-                  'type' => 'string',
368
-                  'required' => true,
369
-                ),
370
-                'range' => array(
371
-                  'location' => 'query',
372
-                  'type' => 'string',
373
-                  'repeated' => true,
374
-                ),
375
-              ),
376
-            ),
377
-          )
378
-        )
379
-    );
380
-    $this->pages = new Google_Service_Blogger_Pages_Resource(
381
-        $this,
382
-        $this->serviceName,
383
-        'pages',
384
-        array(
385
-          'methods' => array(
386
-            'delete' => array(
387
-              'path' => 'blogs/{blogId}/pages/{pageId}',
388
-              'httpMethod' => 'DELETE',
389
-              'parameters' => array(
390
-                'blogId' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'pageId' => array(
396
-                  'location' => 'path',
397
-                  'type' => 'string',
398
-                  'required' => true,
399
-                ),
400
-              ),
401
-            ),'get' => array(
402
-              'path' => 'blogs/{blogId}/pages/{pageId}',
403
-              'httpMethod' => 'GET',
404
-              'parameters' => array(
405
-                'blogId' => array(
406
-                  'location' => 'path',
407
-                  'type' => 'string',
408
-                  'required' => true,
409
-                ),
410
-                'pageId' => array(
411
-                  'location' => 'path',
412
-                  'type' => 'string',
413
-                  'required' => true,
414
-                ),
415
-                'view' => array(
416
-                  'location' => 'query',
417
-                  'type' => 'string',
418
-                ),
419
-              ),
420
-            ),'insert' => array(
421
-              'path' => 'blogs/{blogId}/pages',
422
-              'httpMethod' => 'POST',
423
-              'parameters' => array(
424
-                'blogId' => array(
425
-                  'location' => 'path',
426
-                  'type' => 'string',
427
-                  'required' => true,
428
-                ),
429
-                'isDraft' => array(
430
-                  'location' => 'query',
431
-                  'type' => 'boolean',
432
-                ),
433
-              ),
434
-            ),'list' => array(
435
-              'path' => 'blogs/{blogId}/pages',
436
-              'httpMethod' => 'GET',
437
-              'parameters' => array(
438
-                'blogId' => array(
439
-                  'location' => 'path',
440
-                  'type' => 'string',
441
-                  'required' => true,
442
-                ),
443
-                'status' => array(
444
-                  'location' => 'query',
445
-                  'type' => 'string',
446
-                  'repeated' => true,
447
-                ),
448
-                'maxResults' => array(
449
-                  'location' => 'query',
450
-                  'type' => 'integer',
451
-                ),
452
-                'pageToken' => array(
453
-                  'location' => 'query',
454
-                  'type' => 'string',
455
-                ),
456
-                'fetchBodies' => array(
457
-                  'location' => 'query',
458
-                  'type' => 'boolean',
459
-                ),
460
-                'view' => array(
461
-                  'location' => 'query',
462
-                  'type' => 'string',
463
-                ),
464
-              ),
465
-            ),'patch' => array(
466
-              'path' => 'blogs/{blogId}/pages/{pageId}',
467
-              'httpMethod' => 'PATCH',
468
-              'parameters' => array(
469
-                'blogId' => array(
470
-                  'location' => 'path',
471
-                  'type' => 'string',
472
-                  'required' => true,
473
-                ),
474
-                'pageId' => array(
475
-                  'location' => 'path',
476
-                  'type' => 'string',
477
-                  'required' => true,
478
-                ),
479
-                'revert' => array(
480
-                  'location' => 'query',
481
-                  'type' => 'boolean',
482
-                ),
483
-                'publish' => array(
484
-                  'location' => 'query',
485
-                  'type' => 'boolean',
486
-                ),
487
-              ),
488
-            ),'publish' => array(
489
-              'path' => 'blogs/{blogId}/pages/{pageId}/publish',
490
-              'httpMethod' => 'POST',
491
-              'parameters' => array(
492
-                'blogId' => array(
493
-                  'location' => 'path',
494
-                  'type' => 'string',
495
-                  'required' => true,
496
-                ),
497
-                'pageId' => array(
498
-                  'location' => 'path',
499
-                  'type' => 'string',
500
-                  'required' => true,
501
-                ),
502
-              ),
503
-            ),'revert' => array(
504
-              'path' => 'blogs/{blogId}/pages/{pageId}/revert',
505
-              'httpMethod' => 'POST',
506
-              'parameters' => array(
507
-                'blogId' => array(
508
-                  'location' => 'path',
509
-                  'type' => 'string',
510
-                  'required' => true,
511
-                ),
512
-                'pageId' => array(
513
-                  'location' => 'path',
514
-                  'type' => 'string',
515
-                  'required' => true,
516
-                ),
517
-              ),
518
-            ),'update' => array(
519
-              'path' => 'blogs/{blogId}/pages/{pageId}',
520
-              'httpMethod' => 'PUT',
521
-              'parameters' => array(
522
-                'blogId' => array(
523
-                  'location' => 'path',
524
-                  'type' => 'string',
525
-                  'required' => true,
526
-                ),
527
-                'pageId' => array(
528
-                  'location' => 'path',
529
-                  'type' => 'string',
530
-                  'required' => true,
531
-                ),
532
-                'revert' => array(
533
-                  'location' => 'query',
534
-                  'type' => 'boolean',
535
-                ),
536
-                'publish' => array(
537
-                  'location' => 'query',
538
-                  'type' => 'boolean',
539
-                ),
540
-              ),
541
-            ),
542
-          )
543
-        )
544
-    );
545
-    $this->postUserInfos = new Google_Service_Blogger_PostUserInfos_Resource(
546
-        $this,
547
-        $this->serviceName,
548
-        'postUserInfos',
549
-        array(
550
-          'methods' => array(
551
-            'get' => array(
552
-              'path' => 'users/{userId}/blogs/{blogId}/posts/{postId}',
553
-              'httpMethod' => 'GET',
554
-              'parameters' => array(
555
-                'userId' => array(
556
-                  'location' => 'path',
557
-                  'type' => 'string',
558
-                  'required' => true,
559
-                ),
560
-                'blogId' => array(
561
-                  'location' => 'path',
562
-                  'type' => 'string',
563
-                  'required' => true,
564
-                ),
565
-                'postId' => array(
566
-                  'location' => 'path',
567
-                  'type' => 'string',
568
-                  'required' => true,
569
-                ),
570
-                'maxComments' => array(
571
-                  'location' => 'query',
572
-                  'type' => 'integer',
573
-                ),
574
-              ),
575
-            ),'list' => array(
576
-              'path' => 'users/{userId}/blogs/{blogId}/posts',
577
-              'httpMethod' => 'GET',
578
-              'parameters' => array(
579
-                'userId' => array(
580
-                  'location' => 'path',
581
-                  'type' => 'string',
582
-                  'required' => true,
583
-                ),
584
-                'blogId' => array(
585
-                  'location' => 'path',
586
-                  'type' => 'string',
587
-                  'required' => true,
588
-                ),
589
-                'orderBy' => array(
590
-                  'location' => 'query',
591
-                  'type' => 'string',
592
-                ),
593
-                'startDate' => array(
594
-                  'location' => 'query',
595
-                  'type' => 'string',
596
-                ),
597
-                'endDate' => array(
598
-                  'location' => 'query',
599
-                  'type' => 'string',
600
-                ),
601
-                'labels' => array(
602
-                  'location' => 'query',
603
-                  'type' => 'string',
604
-                ),
605
-                'maxResults' => array(
606
-                  'location' => 'query',
607
-                  'type' => 'integer',
608
-                ),
609
-                'pageToken' => array(
610
-                  'location' => 'query',
611
-                  'type' => 'string',
612
-                ),
613
-                'status' => array(
614
-                  'location' => 'query',
615
-                  'type' => 'string',
616
-                  'repeated' => true,
617
-                ),
618
-                'fetchBodies' => array(
619
-                  'location' => 'query',
620
-                  'type' => 'boolean',
621
-                ),
622
-                'view' => array(
623
-                  'location' => 'query',
624
-                  'type' => 'string',
625
-                ),
626
-              ),
627
-            ),
628
-          )
629
-        )
630
-    );
631
-    $this->posts = new Google_Service_Blogger_Posts_Resource(
632
-        $this,
633
-        $this->serviceName,
634
-        'posts',
635
-        array(
636
-          'methods' => array(
637
-            'delete' => array(
638
-              'path' => 'blogs/{blogId}/posts/{postId}',
639
-              'httpMethod' => 'DELETE',
640
-              'parameters' => array(
641
-                'blogId' => array(
642
-                  'location' => 'path',
643
-                  'type' => 'string',
644
-                  'required' => true,
645
-                ),
646
-                'postId' => array(
647
-                  'location' => 'path',
648
-                  'type' => 'string',
649
-                  'required' => true,
650
-                ),
651
-              ),
652
-            ),'get' => array(
653
-              'path' => 'blogs/{blogId}/posts/{postId}',
654
-              'httpMethod' => 'GET',
655
-              'parameters' => array(
656
-                'blogId' => array(
657
-                  'location' => 'path',
658
-                  'type' => 'string',
659
-                  'required' => true,
660
-                ),
661
-                'postId' => array(
662
-                  'location' => 'path',
663
-                  'type' => 'string',
664
-                  'required' => true,
665
-                ),
666
-                'fetchBody' => array(
667
-                  'location' => 'query',
668
-                  'type' => 'boolean',
669
-                ),
670
-                'maxComments' => array(
671
-                  'location' => 'query',
672
-                  'type' => 'integer',
673
-                ),
674
-                'fetchImages' => array(
675
-                  'location' => 'query',
676
-                  'type' => 'boolean',
677
-                ),
678
-                'view' => array(
679
-                  'location' => 'query',
680
-                  'type' => 'string',
681
-                ),
682
-              ),
683
-            ),'getByPath' => array(
684
-              'path' => 'blogs/{blogId}/posts/bypath',
685
-              'httpMethod' => 'GET',
686
-              'parameters' => array(
687
-                'blogId' => array(
688
-                  'location' => 'path',
689
-                  'type' => 'string',
690
-                  'required' => true,
691
-                ),
692
-                'path' => array(
693
-                  'location' => 'query',
694
-                  'type' => 'string',
695
-                  'required' => true,
696
-                ),
697
-                'maxComments' => array(
698
-                  'location' => 'query',
699
-                  'type' => 'integer',
700
-                ),
701
-                'view' => array(
702
-                  'location' => 'query',
703
-                  'type' => 'string',
704
-                ),
705
-              ),
706
-            ),'insert' => array(
707
-              'path' => 'blogs/{blogId}/posts',
708
-              'httpMethod' => 'POST',
709
-              'parameters' => array(
710
-                'blogId' => array(
711
-                  'location' => 'path',
712
-                  'type' => 'string',
713
-                  'required' => true,
714
-                ),
715
-                'fetchImages' => array(
716
-                  'location' => 'query',
717
-                  'type' => 'boolean',
718
-                ),
719
-                'isDraft' => array(
720
-                  'location' => 'query',
721
-                  'type' => 'boolean',
722
-                ),
723
-                'fetchBody' => array(
724
-                  'location' => 'query',
725
-                  'type' => 'boolean',
726
-                ),
727
-              ),
728
-            ),'list' => array(
729
-              'path' => 'blogs/{blogId}/posts',
730
-              'httpMethod' => 'GET',
731
-              'parameters' => array(
732
-                'blogId' => array(
733
-                  'location' => 'path',
734
-                  'type' => 'string',
735
-                  'required' => true,
736
-                ),
737
-                'orderBy' => array(
738
-                  'location' => 'query',
739
-                  'type' => 'string',
740
-                ),
741
-                'startDate' => array(
742
-                  'location' => 'query',
743
-                  'type' => 'string',
744
-                ),
745
-                'endDate' => array(
746
-                  'location' => 'query',
747
-                  'type' => 'string',
748
-                ),
749
-                'labels' => array(
750
-                  'location' => 'query',
751
-                  'type' => 'string',
752
-                ),
753
-                'maxResults' => array(
754
-                  'location' => 'query',
755
-                  'type' => 'integer',
756
-                ),
757
-                'fetchImages' => array(
758
-                  'location' => 'query',
759
-                  'type' => 'boolean',
760
-                ),
761
-                'pageToken' => array(
762
-                  'location' => 'query',
763
-                  'type' => 'string',
764
-                ),
765
-                'status' => array(
766
-                  'location' => 'query',
767
-                  'type' => 'string',
768
-                  'repeated' => true,
769
-                ),
770
-                'fetchBodies' => array(
771
-                  'location' => 'query',
772
-                  'type' => 'boolean',
773
-                ),
774
-                'view' => array(
775
-                  'location' => 'query',
776
-                  'type' => 'string',
777
-                ),
778
-              ),
779
-            ),'patch' => array(
780
-              'path' => 'blogs/{blogId}/posts/{postId}',
781
-              'httpMethod' => 'PATCH',
782
-              'parameters' => array(
783
-                'blogId' => array(
784
-                  'location' => 'path',
785
-                  'type' => 'string',
786
-                  'required' => true,
787
-                ),
788
-                'postId' => array(
789
-                  'location' => 'path',
790
-                  'type' => 'string',
791
-                  'required' => true,
792
-                ),
793
-                'revert' => array(
794
-                  'location' => 'query',
795
-                  'type' => 'boolean',
796
-                ),
797
-                'publish' => array(
798
-                  'location' => 'query',
799
-                  'type' => 'boolean',
800
-                ),
801
-                'fetchBody' => array(
802
-                  'location' => 'query',
803
-                  'type' => 'boolean',
804
-                ),
805
-                'maxComments' => array(
806
-                  'location' => 'query',
807
-                  'type' => 'integer',
808
-                ),
809
-                'fetchImages' => array(
810
-                  'location' => 'query',
811
-                  'type' => 'boolean',
812
-                ),
813
-              ),
814
-            ),'publish' => array(
815
-              'path' => 'blogs/{blogId}/posts/{postId}/publish',
816
-              'httpMethod' => 'POST',
817
-              'parameters' => array(
818
-                'blogId' => array(
819
-                  'location' => 'path',
820
-                  'type' => 'string',
821
-                  'required' => true,
822
-                ),
823
-                'postId' => array(
824
-                  'location' => 'path',
825
-                  'type' => 'string',
826
-                  'required' => true,
827
-                ),
828
-                'publishDate' => array(
829
-                  'location' => 'query',
830
-                  'type' => 'string',
831
-                ),
832
-              ),
833
-            ),'revert' => array(
834
-              'path' => 'blogs/{blogId}/posts/{postId}/revert',
835
-              'httpMethod' => 'POST',
836
-              'parameters' => array(
837
-                'blogId' => array(
838
-                  'location' => 'path',
839
-                  'type' => 'string',
840
-                  'required' => true,
841
-                ),
842
-                'postId' => array(
843
-                  'location' => 'path',
844
-                  'type' => 'string',
845
-                  'required' => true,
846
-                ),
847
-              ),
848
-            ),'search' => array(
849
-              'path' => 'blogs/{blogId}/posts/search',
850
-              'httpMethod' => 'GET',
851
-              'parameters' => array(
852
-                'blogId' => array(
853
-                  'location' => 'path',
854
-                  'type' => 'string',
855
-                  'required' => true,
856
-                ),
857
-                'q' => array(
858
-                  'location' => 'query',
859
-                  'type' => 'string',
860
-                  'required' => true,
861
-                ),
862
-                'orderBy' => array(
863
-                  'location' => 'query',
864
-                  'type' => 'string',
865
-                ),
866
-                'fetchBodies' => array(
867
-                  'location' => 'query',
868
-                  'type' => 'boolean',
869
-                ),
870
-              ),
871
-            ),'update' => array(
872
-              'path' => 'blogs/{blogId}/posts/{postId}',
873
-              'httpMethod' => 'PUT',
874
-              'parameters' => array(
875
-                'blogId' => array(
876
-                  'location' => 'path',
877
-                  'type' => 'string',
878
-                  'required' => true,
879
-                ),
880
-                'postId' => array(
881
-                  'location' => 'path',
882
-                  'type' => 'string',
883
-                  'required' => true,
884
-                ),
885
-                'revert' => array(
886
-                  'location' => 'query',
887
-                  'type' => 'boolean',
888
-                ),
889
-                'publish' => array(
890
-                  'location' => 'query',
891
-                  'type' => 'boolean',
892
-                ),
893
-                'fetchBody' => array(
894
-                  'location' => 'query',
895
-                  'type' => 'boolean',
896
-                ),
897
-                'maxComments' => array(
898
-                  'location' => 'query',
899
-                  'type' => 'integer',
900
-                ),
901
-                'fetchImages' => array(
902
-                  'location' => 'query',
903
-                  'type' => 'boolean',
904
-                ),
905
-              ),
906
-            ),
907
-          )
908
-        )
909
-    );
910
-    $this->users = new Google_Service_Blogger_Users_Resource(
911
-        $this,
912
-        $this->serviceName,
913
-        'users',
914
-        array(
915
-          'methods' => array(
916
-            'get' => array(
917
-              'path' => 'users/{userId}',
918
-              'httpMethod' => 'GET',
919
-              'parameters' => array(
920
-                'userId' => array(
921
-                  'location' => 'path',
922
-                  'type' => 'string',
923
-                  'required' => true,
924
-                ),
925
-              ),
926
-            ),
927
-          )
928
-        )
929
-    );
57
+	parent::__construct($client);
58
+	$this->rootUrl = 'https://www.googleapis.com/';
59
+	$this->servicePath = 'blogger/v3/';
60
+	$this->version = 'v3';
61
+	$this->serviceName = 'blogger';
62
+
63
+	$this->blogUserInfos = new Google_Service_Blogger_BlogUserInfos_Resource(
64
+		$this,
65
+		$this->serviceName,
66
+		'blogUserInfos',
67
+		array(
68
+		  'methods' => array(
69
+			'get' => array(
70
+			  'path' => 'users/{userId}/blogs/{blogId}',
71
+			  'httpMethod' => 'GET',
72
+			  'parameters' => array(
73
+				'userId' => array(
74
+				  'location' => 'path',
75
+				  'type' => 'string',
76
+				  'required' => true,
77
+				),
78
+				'blogId' => array(
79
+				  'location' => 'path',
80
+				  'type' => 'string',
81
+				  'required' => true,
82
+				),
83
+				'maxPosts' => array(
84
+				  'location' => 'query',
85
+				  'type' => 'integer',
86
+				),
87
+			  ),
88
+			),
89
+		  )
90
+		)
91
+	);
92
+	$this->blogs = new Google_Service_Blogger_Blogs_Resource(
93
+		$this,
94
+		$this->serviceName,
95
+		'blogs',
96
+		array(
97
+		  'methods' => array(
98
+			'get' => array(
99
+			  'path' => 'blogs/{blogId}',
100
+			  'httpMethod' => 'GET',
101
+			  'parameters' => array(
102
+				'blogId' => array(
103
+				  'location' => 'path',
104
+				  'type' => 'string',
105
+				  'required' => true,
106
+				),
107
+				'maxPosts' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'integer',
110
+				),
111
+				'view' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+			  ),
116
+			),'getByUrl' => array(
117
+			  'path' => 'blogs/byurl',
118
+			  'httpMethod' => 'GET',
119
+			  'parameters' => array(
120
+				'url' => array(
121
+				  'location' => 'query',
122
+				  'type' => 'string',
123
+				  'required' => true,
124
+				),
125
+				'view' => array(
126
+				  'location' => 'query',
127
+				  'type' => 'string',
128
+				),
129
+			  ),
130
+			),'listByUser' => array(
131
+			  'path' => 'users/{userId}/blogs',
132
+			  'httpMethod' => 'GET',
133
+			  'parameters' => array(
134
+				'userId' => array(
135
+				  'location' => 'path',
136
+				  'type' => 'string',
137
+				  'required' => true,
138
+				),
139
+				'fetchUserInfo' => array(
140
+				  'location' => 'query',
141
+				  'type' => 'boolean',
142
+				),
143
+				'status' => array(
144
+				  'location' => 'query',
145
+				  'type' => 'string',
146
+				  'repeated' => true,
147
+				),
148
+				'role' => array(
149
+				  'location' => 'query',
150
+				  'type' => 'string',
151
+				  'repeated' => true,
152
+				),
153
+				'view' => array(
154
+				  'location' => 'query',
155
+				  'type' => 'string',
156
+				),
157
+			  ),
158
+			),
159
+		  )
160
+		)
161
+	);
162
+	$this->comments = new Google_Service_Blogger_Comments_Resource(
163
+		$this,
164
+		$this->serviceName,
165
+		'comments',
166
+		array(
167
+		  'methods' => array(
168
+			'approve' => array(
169
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/approve',
170
+			  'httpMethod' => 'POST',
171
+			  'parameters' => array(
172
+				'blogId' => array(
173
+				  'location' => 'path',
174
+				  'type' => 'string',
175
+				  'required' => true,
176
+				),
177
+				'postId' => array(
178
+				  'location' => 'path',
179
+				  'type' => 'string',
180
+				  'required' => true,
181
+				),
182
+				'commentId' => array(
183
+				  'location' => 'path',
184
+				  'type' => 'string',
185
+				  'required' => true,
186
+				),
187
+			  ),
188
+			),'delete' => array(
189
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
190
+			  'httpMethod' => 'DELETE',
191
+			  'parameters' => array(
192
+				'blogId' => array(
193
+				  'location' => 'path',
194
+				  'type' => 'string',
195
+				  'required' => true,
196
+				),
197
+				'postId' => array(
198
+				  'location' => 'path',
199
+				  'type' => 'string',
200
+				  'required' => true,
201
+				),
202
+				'commentId' => array(
203
+				  'location' => 'path',
204
+				  'type' => 'string',
205
+				  'required' => true,
206
+				),
207
+			  ),
208
+			),'get' => array(
209
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
210
+			  'httpMethod' => 'GET',
211
+			  'parameters' => array(
212
+				'blogId' => array(
213
+				  'location' => 'path',
214
+				  'type' => 'string',
215
+				  'required' => true,
216
+				),
217
+				'postId' => array(
218
+				  'location' => 'path',
219
+				  'type' => 'string',
220
+				  'required' => true,
221
+				),
222
+				'commentId' => array(
223
+				  'location' => 'path',
224
+				  'type' => 'string',
225
+				  'required' => true,
226
+				),
227
+				'view' => array(
228
+				  'location' => 'query',
229
+				  'type' => 'string',
230
+				),
231
+			  ),
232
+			),'list' => array(
233
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments',
234
+			  'httpMethod' => 'GET',
235
+			  'parameters' => array(
236
+				'blogId' => array(
237
+				  'location' => 'path',
238
+				  'type' => 'string',
239
+				  'required' => true,
240
+				),
241
+				'postId' => array(
242
+				  'location' => 'path',
243
+				  'type' => 'string',
244
+				  'required' => true,
245
+				),
246
+				'status' => array(
247
+				  'location' => 'query',
248
+				  'type' => 'string',
249
+				  'repeated' => true,
250
+				),
251
+				'startDate' => array(
252
+				  'location' => 'query',
253
+				  'type' => 'string',
254
+				),
255
+				'endDate' => array(
256
+				  'location' => 'query',
257
+				  'type' => 'string',
258
+				),
259
+				'maxResults' => array(
260
+				  'location' => 'query',
261
+				  'type' => 'integer',
262
+				),
263
+				'pageToken' => array(
264
+				  'location' => 'query',
265
+				  'type' => 'string',
266
+				),
267
+				'fetchBodies' => array(
268
+				  'location' => 'query',
269
+				  'type' => 'boolean',
270
+				),
271
+				'view' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'string',
274
+				),
275
+			  ),
276
+			),'listByBlog' => array(
277
+			  'path' => 'blogs/{blogId}/comments',
278
+			  'httpMethod' => 'GET',
279
+			  'parameters' => array(
280
+				'blogId' => array(
281
+				  'location' => 'path',
282
+				  'type' => 'string',
283
+				  'required' => true,
284
+				),
285
+				'status' => array(
286
+				  'location' => 'query',
287
+				  'type' => 'string',
288
+				  'repeated' => true,
289
+				),
290
+				'startDate' => array(
291
+				  'location' => 'query',
292
+				  'type' => 'string',
293
+				),
294
+				'endDate' => array(
295
+				  'location' => 'query',
296
+				  'type' => 'string',
297
+				),
298
+				'maxResults' => array(
299
+				  'location' => 'query',
300
+				  'type' => 'integer',
301
+				),
302
+				'pageToken' => array(
303
+				  'location' => 'query',
304
+				  'type' => 'string',
305
+				),
306
+				'fetchBodies' => array(
307
+				  'location' => 'query',
308
+				  'type' => 'boolean',
309
+				),
310
+			  ),
311
+			),'markAsSpam' => array(
312
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/spam',
313
+			  'httpMethod' => 'POST',
314
+			  'parameters' => array(
315
+				'blogId' => array(
316
+				  'location' => 'path',
317
+				  'type' => 'string',
318
+				  'required' => true,
319
+				),
320
+				'postId' => array(
321
+				  'location' => 'path',
322
+				  'type' => 'string',
323
+				  'required' => true,
324
+				),
325
+				'commentId' => array(
326
+				  'location' => 'path',
327
+				  'type' => 'string',
328
+				  'required' => true,
329
+				),
330
+			  ),
331
+			),'removeContent' => array(
332
+			  'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent',
333
+			  'httpMethod' => 'POST',
334
+			  'parameters' => array(
335
+				'blogId' => array(
336
+				  'location' => 'path',
337
+				  'type' => 'string',
338
+				  'required' => true,
339
+				),
340
+				'postId' => array(
341
+				  'location' => 'path',
342
+				  'type' => 'string',
343
+				  'required' => true,
344
+				),
345
+				'commentId' => array(
346
+				  'location' => 'path',
347
+				  'type' => 'string',
348
+				  'required' => true,
349
+				),
350
+			  ),
351
+			),
352
+		  )
353
+		)
354
+	);
355
+	$this->pageViews = new Google_Service_Blogger_PageViews_Resource(
356
+		$this,
357
+		$this->serviceName,
358
+		'pageViews',
359
+		array(
360
+		  'methods' => array(
361
+			'get' => array(
362
+			  'path' => 'blogs/{blogId}/pageviews',
363
+			  'httpMethod' => 'GET',
364
+			  'parameters' => array(
365
+				'blogId' => array(
366
+				  'location' => 'path',
367
+				  'type' => 'string',
368
+				  'required' => true,
369
+				),
370
+				'range' => array(
371
+				  'location' => 'query',
372
+				  'type' => 'string',
373
+				  'repeated' => true,
374
+				),
375
+			  ),
376
+			),
377
+		  )
378
+		)
379
+	);
380
+	$this->pages = new Google_Service_Blogger_Pages_Resource(
381
+		$this,
382
+		$this->serviceName,
383
+		'pages',
384
+		array(
385
+		  'methods' => array(
386
+			'delete' => array(
387
+			  'path' => 'blogs/{blogId}/pages/{pageId}',
388
+			  'httpMethod' => 'DELETE',
389
+			  'parameters' => array(
390
+				'blogId' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'pageId' => array(
396
+				  'location' => 'path',
397
+				  'type' => 'string',
398
+				  'required' => true,
399
+				),
400
+			  ),
401
+			),'get' => array(
402
+			  'path' => 'blogs/{blogId}/pages/{pageId}',
403
+			  'httpMethod' => 'GET',
404
+			  'parameters' => array(
405
+				'blogId' => array(
406
+				  'location' => 'path',
407
+				  'type' => 'string',
408
+				  'required' => true,
409
+				),
410
+				'pageId' => array(
411
+				  'location' => 'path',
412
+				  'type' => 'string',
413
+				  'required' => true,
414
+				),
415
+				'view' => array(
416
+				  'location' => 'query',
417
+				  'type' => 'string',
418
+				),
419
+			  ),
420
+			),'insert' => array(
421
+			  'path' => 'blogs/{blogId}/pages',
422
+			  'httpMethod' => 'POST',
423
+			  'parameters' => array(
424
+				'blogId' => array(
425
+				  'location' => 'path',
426
+				  'type' => 'string',
427
+				  'required' => true,
428
+				),
429
+				'isDraft' => array(
430
+				  'location' => 'query',
431
+				  'type' => 'boolean',
432
+				),
433
+			  ),
434
+			),'list' => array(
435
+			  'path' => 'blogs/{blogId}/pages',
436
+			  'httpMethod' => 'GET',
437
+			  'parameters' => array(
438
+				'blogId' => array(
439
+				  'location' => 'path',
440
+				  'type' => 'string',
441
+				  'required' => true,
442
+				),
443
+				'status' => array(
444
+				  'location' => 'query',
445
+				  'type' => 'string',
446
+				  'repeated' => true,
447
+				),
448
+				'maxResults' => array(
449
+				  'location' => 'query',
450
+				  'type' => 'integer',
451
+				),
452
+				'pageToken' => array(
453
+				  'location' => 'query',
454
+				  'type' => 'string',
455
+				),
456
+				'fetchBodies' => array(
457
+				  'location' => 'query',
458
+				  'type' => 'boolean',
459
+				),
460
+				'view' => array(
461
+				  'location' => 'query',
462
+				  'type' => 'string',
463
+				),
464
+			  ),
465
+			),'patch' => array(
466
+			  'path' => 'blogs/{blogId}/pages/{pageId}',
467
+			  'httpMethod' => 'PATCH',
468
+			  'parameters' => array(
469
+				'blogId' => array(
470
+				  'location' => 'path',
471
+				  'type' => 'string',
472
+				  'required' => true,
473
+				),
474
+				'pageId' => array(
475
+				  'location' => 'path',
476
+				  'type' => 'string',
477
+				  'required' => true,
478
+				),
479
+				'revert' => array(
480
+				  'location' => 'query',
481
+				  'type' => 'boolean',
482
+				),
483
+				'publish' => array(
484
+				  'location' => 'query',
485
+				  'type' => 'boolean',
486
+				),
487
+			  ),
488
+			),'publish' => array(
489
+			  'path' => 'blogs/{blogId}/pages/{pageId}/publish',
490
+			  'httpMethod' => 'POST',
491
+			  'parameters' => array(
492
+				'blogId' => array(
493
+				  'location' => 'path',
494
+				  'type' => 'string',
495
+				  'required' => true,
496
+				),
497
+				'pageId' => array(
498
+				  'location' => 'path',
499
+				  'type' => 'string',
500
+				  'required' => true,
501
+				),
502
+			  ),
503
+			),'revert' => array(
504
+			  'path' => 'blogs/{blogId}/pages/{pageId}/revert',
505
+			  'httpMethod' => 'POST',
506
+			  'parameters' => array(
507
+				'blogId' => array(
508
+				  'location' => 'path',
509
+				  'type' => 'string',
510
+				  'required' => true,
511
+				),
512
+				'pageId' => array(
513
+				  'location' => 'path',
514
+				  'type' => 'string',
515
+				  'required' => true,
516
+				),
517
+			  ),
518
+			),'update' => array(
519
+			  'path' => 'blogs/{blogId}/pages/{pageId}',
520
+			  'httpMethod' => 'PUT',
521
+			  'parameters' => array(
522
+				'blogId' => array(
523
+				  'location' => 'path',
524
+				  'type' => 'string',
525
+				  'required' => true,
526
+				),
527
+				'pageId' => array(
528
+				  'location' => 'path',
529
+				  'type' => 'string',
530
+				  'required' => true,
531
+				),
532
+				'revert' => array(
533
+				  'location' => 'query',
534
+				  'type' => 'boolean',
535
+				),
536
+				'publish' => array(
537
+				  'location' => 'query',
538
+				  'type' => 'boolean',
539
+				),
540
+			  ),
541
+			),
542
+		  )
543
+		)
544
+	);
545
+	$this->postUserInfos = new Google_Service_Blogger_PostUserInfos_Resource(
546
+		$this,
547
+		$this->serviceName,
548
+		'postUserInfos',
549
+		array(
550
+		  'methods' => array(
551
+			'get' => array(
552
+			  'path' => 'users/{userId}/blogs/{blogId}/posts/{postId}',
553
+			  'httpMethod' => 'GET',
554
+			  'parameters' => array(
555
+				'userId' => array(
556
+				  'location' => 'path',
557
+				  'type' => 'string',
558
+				  'required' => true,
559
+				),
560
+				'blogId' => array(
561
+				  'location' => 'path',
562
+				  'type' => 'string',
563
+				  'required' => true,
564
+				),
565
+				'postId' => array(
566
+				  'location' => 'path',
567
+				  'type' => 'string',
568
+				  'required' => true,
569
+				),
570
+				'maxComments' => array(
571
+				  'location' => 'query',
572
+				  'type' => 'integer',
573
+				),
574
+			  ),
575
+			),'list' => array(
576
+			  'path' => 'users/{userId}/blogs/{blogId}/posts',
577
+			  'httpMethod' => 'GET',
578
+			  'parameters' => array(
579
+				'userId' => array(
580
+				  'location' => 'path',
581
+				  'type' => 'string',
582
+				  'required' => true,
583
+				),
584
+				'blogId' => array(
585
+				  'location' => 'path',
586
+				  'type' => 'string',
587
+				  'required' => true,
588
+				),
589
+				'orderBy' => array(
590
+				  'location' => 'query',
591
+				  'type' => 'string',
592
+				),
593
+				'startDate' => array(
594
+				  'location' => 'query',
595
+				  'type' => 'string',
596
+				),
597
+				'endDate' => array(
598
+				  'location' => 'query',
599
+				  'type' => 'string',
600
+				),
601
+				'labels' => array(
602
+				  'location' => 'query',
603
+				  'type' => 'string',
604
+				),
605
+				'maxResults' => array(
606
+				  'location' => 'query',
607
+				  'type' => 'integer',
608
+				),
609
+				'pageToken' => array(
610
+				  'location' => 'query',
611
+				  'type' => 'string',
612
+				),
613
+				'status' => array(
614
+				  'location' => 'query',
615
+				  'type' => 'string',
616
+				  'repeated' => true,
617
+				),
618
+				'fetchBodies' => array(
619
+				  'location' => 'query',
620
+				  'type' => 'boolean',
621
+				),
622
+				'view' => array(
623
+				  'location' => 'query',
624
+				  'type' => 'string',
625
+				),
626
+			  ),
627
+			),
628
+		  )
629
+		)
630
+	);
631
+	$this->posts = new Google_Service_Blogger_Posts_Resource(
632
+		$this,
633
+		$this->serviceName,
634
+		'posts',
635
+		array(
636
+		  'methods' => array(
637
+			'delete' => array(
638
+			  'path' => 'blogs/{blogId}/posts/{postId}',
639
+			  'httpMethod' => 'DELETE',
640
+			  'parameters' => array(
641
+				'blogId' => array(
642
+				  'location' => 'path',
643
+				  'type' => 'string',
644
+				  'required' => true,
645
+				),
646
+				'postId' => array(
647
+				  'location' => 'path',
648
+				  'type' => 'string',
649
+				  'required' => true,
650
+				),
651
+			  ),
652
+			),'get' => array(
653
+			  'path' => 'blogs/{blogId}/posts/{postId}',
654
+			  'httpMethod' => 'GET',
655
+			  'parameters' => array(
656
+				'blogId' => array(
657
+				  'location' => 'path',
658
+				  'type' => 'string',
659
+				  'required' => true,
660
+				),
661
+				'postId' => array(
662
+				  'location' => 'path',
663
+				  'type' => 'string',
664
+				  'required' => true,
665
+				),
666
+				'fetchBody' => array(
667
+				  'location' => 'query',
668
+				  'type' => 'boolean',
669
+				),
670
+				'maxComments' => array(
671
+				  'location' => 'query',
672
+				  'type' => 'integer',
673
+				),
674
+				'fetchImages' => array(
675
+				  'location' => 'query',
676
+				  'type' => 'boolean',
677
+				),
678
+				'view' => array(
679
+				  'location' => 'query',
680
+				  'type' => 'string',
681
+				),
682
+			  ),
683
+			),'getByPath' => array(
684
+			  'path' => 'blogs/{blogId}/posts/bypath',
685
+			  'httpMethod' => 'GET',
686
+			  'parameters' => array(
687
+				'blogId' => array(
688
+				  'location' => 'path',
689
+				  'type' => 'string',
690
+				  'required' => true,
691
+				),
692
+				'path' => array(
693
+				  'location' => 'query',
694
+				  'type' => 'string',
695
+				  'required' => true,
696
+				),
697
+				'maxComments' => array(
698
+				  'location' => 'query',
699
+				  'type' => 'integer',
700
+				),
701
+				'view' => array(
702
+				  'location' => 'query',
703
+				  'type' => 'string',
704
+				),
705
+			  ),
706
+			),'insert' => array(
707
+			  'path' => 'blogs/{blogId}/posts',
708
+			  'httpMethod' => 'POST',
709
+			  'parameters' => array(
710
+				'blogId' => array(
711
+				  'location' => 'path',
712
+				  'type' => 'string',
713
+				  'required' => true,
714
+				),
715
+				'fetchImages' => array(
716
+				  'location' => 'query',
717
+				  'type' => 'boolean',
718
+				),
719
+				'isDraft' => array(
720
+				  'location' => 'query',
721
+				  'type' => 'boolean',
722
+				),
723
+				'fetchBody' => array(
724
+				  'location' => 'query',
725
+				  'type' => 'boolean',
726
+				),
727
+			  ),
728
+			),'list' => array(
729
+			  'path' => 'blogs/{blogId}/posts',
730
+			  'httpMethod' => 'GET',
731
+			  'parameters' => array(
732
+				'blogId' => array(
733
+				  'location' => 'path',
734
+				  'type' => 'string',
735
+				  'required' => true,
736
+				),
737
+				'orderBy' => array(
738
+				  'location' => 'query',
739
+				  'type' => 'string',
740
+				),
741
+				'startDate' => array(
742
+				  'location' => 'query',
743
+				  'type' => 'string',
744
+				),
745
+				'endDate' => array(
746
+				  'location' => 'query',
747
+				  'type' => 'string',
748
+				),
749
+				'labels' => array(
750
+				  'location' => 'query',
751
+				  'type' => 'string',
752
+				),
753
+				'maxResults' => array(
754
+				  'location' => 'query',
755
+				  'type' => 'integer',
756
+				),
757
+				'fetchImages' => array(
758
+				  'location' => 'query',
759
+				  'type' => 'boolean',
760
+				),
761
+				'pageToken' => array(
762
+				  'location' => 'query',
763
+				  'type' => 'string',
764
+				),
765
+				'status' => array(
766
+				  'location' => 'query',
767
+				  'type' => 'string',
768
+				  'repeated' => true,
769
+				),
770
+				'fetchBodies' => array(
771
+				  'location' => 'query',
772
+				  'type' => 'boolean',
773
+				),
774
+				'view' => array(
775
+				  'location' => 'query',
776
+				  'type' => 'string',
777
+				),
778
+			  ),
779
+			),'patch' => array(
780
+			  'path' => 'blogs/{blogId}/posts/{postId}',
781
+			  'httpMethod' => 'PATCH',
782
+			  'parameters' => array(
783
+				'blogId' => array(
784
+				  'location' => 'path',
785
+				  'type' => 'string',
786
+				  'required' => true,
787
+				),
788
+				'postId' => array(
789
+				  'location' => 'path',
790
+				  'type' => 'string',
791
+				  'required' => true,
792
+				),
793
+				'revert' => array(
794
+				  'location' => 'query',
795
+				  'type' => 'boolean',
796
+				),
797
+				'publish' => array(
798
+				  'location' => 'query',
799
+				  'type' => 'boolean',
800
+				),
801
+				'fetchBody' => array(
802
+				  'location' => 'query',
803
+				  'type' => 'boolean',
804
+				),
805
+				'maxComments' => array(
806
+				  'location' => 'query',
807
+				  'type' => 'integer',
808
+				),
809
+				'fetchImages' => array(
810
+				  'location' => 'query',
811
+				  'type' => 'boolean',
812
+				),
813
+			  ),
814
+			),'publish' => array(
815
+			  'path' => 'blogs/{blogId}/posts/{postId}/publish',
816
+			  'httpMethod' => 'POST',
817
+			  'parameters' => array(
818
+				'blogId' => array(
819
+				  'location' => 'path',
820
+				  'type' => 'string',
821
+				  'required' => true,
822
+				),
823
+				'postId' => array(
824
+				  'location' => 'path',
825
+				  'type' => 'string',
826
+				  'required' => true,
827
+				),
828
+				'publishDate' => array(
829
+				  'location' => 'query',
830
+				  'type' => 'string',
831
+				),
832
+			  ),
833
+			),'revert' => array(
834
+			  'path' => 'blogs/{blogId}/posts/{postId}/revert',
835
+			  'httpMethod' => 'POST',
836
+			  'parameters' => array(
837
+				'blogId' => array(
838
+				  'location' => 'path',
839
+				  'type' => 'string',
840
+				  'required' => true,
841
+				),
842
+				'postId' => array(
843
+				  'location' => 'path',
844
+				  'type' => 'string',
845
+				  'required' => true,
846
+				),
847
+			  ),
848
+			),'search' => array(
849
+			  'path' => 'blogs/{blogId}/posts/search',
850
+			  'httpMethod' => 'GET',
851
+			  'parameters' => array(
852
+				'blogId' => array(
853
+				  'location' => 'path',
854
+				  'type' => 'string',
855
+				  'required' => true,
856
+				),
857
+				'q' => array(
858
+				  'location' => 'query',
859
+				  'type' => 'string',
860
+				  'required' => true,
861
+				),
862
+				'orderBy' => array(
863
+				  'location' => 'query',
864
+				  'type' => 'string',
865
+				),
866
+				'fetchBodies' => array(
867
+				  'location' => 'query',
868
+				  'type' => 'boolean',
869
+				),
870
+			  ),
871
+			),'update' => array(
872
+			  'path' => 'blogs/{blogId}/posts/{postId}',
873
+			  'httpMethod' => 'PUT',
874
+			  'parameters' => array(
875
+				'blogId' => array(
876
+				  'location' => 'path',
877
+				  'type' => 'string',
878
+				  'required' => true,
879
+				),
880
+				'postId' => array(
881
+				  'location' => 'path',
882
+				  'type' => 'string',
883
+				  'required' => true,
884
+				),
885
+				'revert' => array(
886
+				  'location' => 'query',
887
+				  'type' => 'boolean',
888
+				),
889
+				'publish' => array(
890
+				  'location' => 'query',
891
+				  'type' => 'boolean',
892
+				),
893
+				'fetchBody' => array(
894
+				  'location' => 'query',
895
+				  'type' => 'boolean',
896
+				),
897
+				'maxComments' => array(
898
+				  'location' => 'query',
899
+				  'type' => 'integer',
900
+				),
901
+				'fetchImages' => array(
902
+				  'location' => 'query',
903
+				  'type' => 'boolean',
904
+				),
905
+			  ),
906
+			),
907
+		  )
908
+		)
909
+	);
910
+	$this->users = new Google_Service_Blogger_Users_Resource(
911
+		$this,
912
+		$this->serviceName,
913
+		'users',
914
+		array(
915
+		  'methods' => array(
916
+			'get' => array(
917
+			  'path' => 'users/{userId}',
918
+			  'httpMethod' => 'GET',
919
+			  'parameters' => array(
920
+				'userId' => array(
921
+				  'location' => 'path',
922
+				  'type' => 'string',
923
+				  'required' => true,
924
+				),
925
+			  ),
926
+			),
927
+		  )
928
+		)
929
+	);
930 930
   }
931 931
 }
932 932
 
@@ -956,9 +956,9 @@  discard block
 block discarded – undo
956 956
    */
957 957
   public function get($userId, $blogId, $optParams = array())
958 958
   {
959
-    $params = array('userId' => $userId, 'blogId' => $blogId);
960
-    $params = array_merge($params, $optParams);
961
-    return $this->call('get', array($params), "Google_Service_Blogger_BlogUserInfo");
959
+	$params = array('userId' => $userId, 'blogId' => $blogId);
960
+	$params = array_merge($params, $optParams);
961
+	return $this->call('get', array($params), "Google_Service_Blogger_BlogUserInfo");
962 962
   }
963 963
 }
964 964
 
@@ -987,9 +987,9 @@  discard block
 block discarded – undo
987 987
    */
988 988
   public function get($blogId, $optParams = array())
989 989
   {
990
-    $params = array('blogId' => $blogId);
991
-    $params = array_merge($params, $optParams);
992
-    return $this->call('get', array($params), "Google_Service_Blogger_Blog");
990
+	$params = array('blogId' => $blogId);
991
+	$params = array_merge($params, $optParams);
992
+	return $this->call('get', array($params), "Google_Service_Blogger_Blog");
993 993
   }
994 994
 
995 995
   /**
@@ -1004,9 +1004,9 @@  discard block
 block discarded – undo
1004 1004
    */
1005 1005
   public function getByUrl($url, $optParams = array())
1006 1006
   {
1007
-    $params = array('url' => $url);
1008
-    $params = array_merge($params, $optParams);
1009
-    return $this->call('getByUrl', array($params), "Google_Service_Blogger_Blog");
1007
+	$params = array('url' => $url);
1008
+	$params = array_merge($params, $optParams);
1009
+	return $this->call('getByUrl', array($params), "Google_Service_Blogger_Blog");
1010 1010
   }
1011 1011
 
1012 1012
   /**
@@ -1029,9 +1029,9 @@  discard block
 block discarded – undo
1029 1029
    */
1030 1030
   public function listByUser($userId, $optParams = array())
1031 1031
   {
1032
-    $params = array('userId' => $userId);
1033
-    $params = array_merge($params, $optParams);
1034
-    return $this->call('listByUser', array($params), "Google_Service_Blogger_BlogList");
1032
+	$params = array('userId' => $userId);
1033
+	$params = array_merge($params, $optParams);
1034
+	return $this->call('listByUser', array($params), "Google_Service_Blogger_BlogList");
1035 1035
   }
1036 1036
 }
1037 1037
 
@@ -1057,9 +1057,9 @@  discard block
 block discarded – undo
1057 1057
    */
1058 1058
   public function approve($blogId, $postId, $commentId, $optParams = array())
1059 1059
   {
1060
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1061
-    $params = array_merge($params, $optParams);
1062
-    return $this->call('approve', array($params), "Google_Service_Blogger_Comment");
1060
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1061
+	$params = array_merge($params, $optParams);
1062
+	return $this->call('approve', array($params), "Google_Service_Blogger_Comment");
1063 1063
   }
1064 1064
 
1065 1065
   /**
@@ -1072,9 +1072,9 @@  discard block
 block discarded – undo
1072 1072
    */
1073 1073
   public function delete($blogId, $postId, $commentId, $optParams = array())
1074 1074
   {
1075
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1076
-    $params = array_merge($params, $optParams);
1077
-    return $this->call('delete', array($params));
1075
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1076
+	$params = array_merge($params, $optParams);
1077
+	return $this->call('delete', array($params));
1078 1078
   }
1079 1079
 
1080 1080
   /**
@@ -1093,9 +1093,9 @@  discard block
 block discarded – undo
1093 1093
    */
1094 1094
   public function get($blogId, $postId, $commentId, $optParams = array())
1095 1095
   {
1096
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1097
-    $params = array_merge($params, $optParams);
1098
-    return $this->call('get', array($params), "Google_Service_Blogger_Comment");
1096
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1097
+	$params = array_merge($params, $optParams);
1098
+	return $this->call('get', array($params), "Google_Service_Blogger_Comment");
1099 1099
   }
1100 1100
 
1101 1101
   /**
@@ -1121,9 +1121,9 @@  discard block
 block discarded – undo
1121 1121
    */
1122 1122
   public function listComments($blogId, $postId, $optParams = array())
1123 1123
   {
1124
-    $params = array('blogId' => $blogId, 'postId' => $postId);
1125
-    $params = array_merge($params, $optParams);
1126
-    return $this->call('list', array($params), "Google_Service_Blogger_CommentList");
1124
+	$params = array('blogId' => $blogId, 'postId' => $postId);
1125
+	$params = array_merge($params, $optParams);
1126
+	return $this->call('list', array($params), "Google_Service_Blogger_CommentList");
1127 1127
   }
1128 1128
 
1129 1129
   /**
@@ -1147,9 +1147,9 @@  discard block
 block discarded – undo
1147 1147
    */
1148 1148
   public function listByBlog($blogId, $optParams = array())
1149 1149
   {
1150
-    $params = array('blogId' => $blogId);
1151
-    $params = array_merge($params, $optParams);
1152
-    return $this->call('listByBlog', array($params), "Google_Service_Blogger_CommentList");
1150
+	$params = array('blogId' => $blogId);
1151
+	$params = array_merge($params, $optParams);
1152
+	return $this->call('listByBlog', array($params), "Google_Service_Blogger_CommentList");
1153 1153
   }
1154 1154
 
1155 1155
   /**
@@ -1163,9 +1163,9 @@  discard block
 block discarded – undo
1163 1163
    */
1164 1164
   public function markAsSpam($blogId, $postId, $commentId, $optParams = array())
1165 1165
   {
1166
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1167
-    $params = array_merge($params, $optParams);
1168
-    return $this->call('markAsSpam', array($params), "Google_Service_Blogger_Comment");
1166
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1167
+	$params = array_merge($params, $optParams);
1168
+	return $this->call('markAsSpam', array($params), "Google_Service_Blogger_Comment");
1169 1169
   }
1170 1170
 
1171 1171
   /**
@@ -1179,9 +1179,9 @@  discard block
 block discarded – undo
1179 1179
    */
1180 1180
   public function removeContent($blogId, $postId, $commentId, $optParams = array())
1181 1181
   {
1182
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1183
-    $params = array_merge($params, $optParams);
1184
-    return $this->call('removeContent', array($params), "Google_Service_Blogger_Comment");
1182
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'commentId' => $commentId);
1183
+	$params = array_merge($params, $optParams);
1184
+	return $this->call('removeContent', array($params), "Google_Service_Blogger_Comment");
1185 1185
   }
1186 1186
 }
1187 1187
 
@@ -1207,9 +1207,9 @@  discard block
 block discarded – undo
1207 1207
    */
1208 1208
   public function get($blogId, $optParams = array())
1209 1209
   {
1210
-    $params = array('blogId' => $blogId);
1211
-    $params = array_merge($params, $optParams);
1212
-    return $this->call('get', array($params), "Google_Service_Blogger_Pageviews");
1210
+	$params = array('blogId' => $blogId);
1211
+	$params = array_merge($params, $optParams);
1212
+	return $this->call('get', array($params), "Google_Service_Blogger_Pageviews");
1213 1213
   }
1214 1214
 }
1215 1215
 
@@ -1233,9 +1233,9 @@  discard block
 block discarded – undo
1233 1233
    */
1234 1234
   public function delete($blogId, $pageId, $optParams = array())
1235 1235
   {
1236
-    $params = array('blogId' => $blogId, 'pageId' => $pageId);
1237
-    $params = array_merge($params, $optParams);
1238
-    return $this->call('delete', array($params));
1236
+	$params = array('blogId' => $blogId, 'pageId' => $pageId);
1237
+	$params = array_merge($params, $optParams);
1238
+	return $this->call('delete', array($params));
1239 1239
   }
1240 1240
 
1241 1241
   /**
@@ -1250,9 +1250,9 @@  discard block
 block discarded – undo
1250 1250
    */
1251 1251
   public function get($blogId, $pageId, $optParams = array())
1252 1252
   {
1253
-    $params = array('blogId' => $blogId, 'pageId' => $pageId);
1254
-    $params = array_merge($params, $optParams);
1255
-    return $this->call('get', array($params), "Google_Service_Blogger_Page");
1253
+	$params = array('blogId' => $blogId, 'pageId' => $pageId);
1254
+	$params = array_merge($params, $optParams);
1255
+	return $this->call('get', array($params), "Google_Service_Blogger_Page");
1256 1256
   }
1257 1257
 
1258 1258
   /**
@@ -1268,9 +1268,9 @@  discard block
 block discarded – undo
1268 1268
    */
1269 1269
   public function insert($blogId, Google_Service_Blogger_Page $postBody, $optParams = array())
1270 1270
   {
1271
-    $params = array('blogId' => $blogId, 'postBody' => $postBody);
1272
-    $params = array_merge($params, $optParams);
1273
-    return $this->call('insert', array($params), "Google_Service_Blogger_Page");
1271
+	$params = array('blogId' => $blogId, 'postBody' => $postBody);
1272
+	$params = array_merge($params, $optParams);
1273
+	return $this->call('insert', array($params), "Google_Service_Blogger_Page");
1274 1274
   }
1275 1275
 
1276 1276
   /**
@@ -1290,9 +1290,9 @@  discard block
 block discarded – undo
1290 1290
    */
1291 1291
   public function listPages($blogId, $optParams = array())
1292 1292
   {
1293
-    $params = array('blogId' => $blogId);
1294
-    $params = array_merge($params, $optParams);
1295
-    return $this->call('list', array($params), "Google_Service_Blogger_PageList");
1293
+	$params = array('blogId' => $blogId);
1294
+	$params = array_merge($params, $optParams);
1295
+	return $this->call('list', array($params), "Google_Service_Blogger_PageList");
1296 1296
   }
1297 1297
 
1298 1298
   /**
@@ -1311,9 +1311,9 @@  discard block
 block discarded – undo
1311 1311
    */
1312 1312
   public function patch($blogId, $pageId, Google_Service_Blogger_Page $postBody, $optParams = array())
1313 1313
   {
1314
-    $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
1315
-    $params = array_merge($params, $optParams);
1316
-    return $this->call('patch', array($params), "Google_Service_Blogger_Page");
1314
+	$params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
1315
+	$params = array_merge($params, $optParams);
1316
+	return $this->call('patch', array($params), "Google_Service_Blogger_Page");
1317 1317
   }
1318 1318
 
1319 1319
   /**
@@ -1326,9 +1326,9 @@  discard block
 block discarded – undo
1326 1326
    */
1327 1327
   public function publish($blogId, $pageId, $optParams = array())
1328 1328
   {
1329
-    $params = array('blogId' => $blogId, 'pageId' => $pageId);
1330
-    $params = array_merge($params, $optParams);
1331
-    return $this->call('publish', array($params), "Google_Service_Blogger_Page");
1329
+	$params = array('blogId' => $blogId, 'pageId' => $pageId);
1330
+	$params = array_merge($params, $optParams);
1331
+	return $this->call('publish', array($params), "Google_Service_Blogger_Page");
1332 1332
   }
1333 1333
 
1334 1334
   /**
@@ -1341,9 +1341,9 @@  discard block
 block discarded – undo
1341 1341
    */
1342 1342
   public function revert($blogId, $pageId, $optParams = array())
1343 1343
   {
1344
-    $params = array('blogId' => $blogId, 'pageId' => $pageId);
1345
-    $params = array_merge($params, $optParams);
1346
-    return $this->call('revert', array($params), "Google_Service_Blogger_Page");
1344
+	$params = array('blogId' => $blogId, 'pageId' => $pageId);
1345
+	$params = array_merge($params, $optParams);
1346
+	return $this->call('revert', array($params), "Google_Service_Blogger_Page");
1347 1347
   }
1348 1348
 
1349 1349
   /**
@@ -1362,9 +1362,9 @@  discard block
 block discarded – undo
1362 1362
    */
1363 1363
   public function update($blogId, $pageId, Google_Service_Blogger_Page $postBody, $optParams = array())
1364 1364
   {
1365
-    $params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
1366
-    $params = array_merge($params, $optParams);
1367
-    return $this->call('update', array($params), "Google_Service_Blogger_Page");
1365
+	$params = array('blogId' => $blogId, 'pageId' => $pageId, 'postBody' => $postBody);
1366
+	$params = array_merge($params, $optParams);
1367
+	return $this->call('update', array($params), "Google_Service_Blogger_Page");
1368 1368
   }
1369 1369
 }
1370 1370
 
@@ -1397,9 +1397,9 @@  discard block
 block discarded – undo
1397 1397
    */
1398 1398
   public function get($userId, $blogId, $postId, $optParams = array())
1399 1399
   {
1400
-    $params = array('userId' => $userId, 'blogId' => $blogId, 'postId' => $postId);
1401
-    $params = array_merge($params, $optParams);
1402
-    return $this->call('get', array($params), "Google_Service_Blogger_PostUserInfo");
1400
+	$params = array('userId' => $userId, 'blogId' => $blogId, 'postId' => $postId);
1401
+	$params = array_merge($params, $optParams);
1402
+	return $this->call('get', array($params), "Google_Service_Blogger_PostUserInfo");
1403 1403
   }
1404 1404
 
1405 1405
   /**
@@ -1431,9 +1431,9 @@  discard block
 block discarded – undo
1431 1431
    */
1432 1432
   public function listPostUserInfos($userId, $blogId, $optParams = array())
1433 1433
   {
1434
-    $params = array('userId' => $userId, 'blogId' => $blogId);
1435
-    $params = array_merge($params, $optParams);
1436
-    return $this->call('list', array($params), "Google_Service_Blogger_PostUserInfosList");
1434
+	$params = array('userId' => $userId, 'blogId' => $blogId);
1435
+	$params = array_merge($params, $optParams);
1436
+	return $this->call('list', array($params), "Google_Service_Blogger_PostUserInfosList");
1437 1437
   }
1438 1438
 }
1439 1439
 
@@ -1457,9 +1457,9 @@  discard block
 block discarded – undo
1457 1457
    */
1458 1458
   public function delete($blogId, $postId, $optParams = array())
1459 1459
   {
1460
-    $params = array('blogId' => $blogId, 'postId' => $postId);
1461
-    $params = array_merge($params, $optParams);
1462
-    return $this->call('delete', array($params));
1460
+	$params = array('blogId' => $blogId, 'postId' => $postId);
1461
+	$params = array_merge($params, $optParams);
1462
+	return $this->call('delete', array($params));
1463 1463
   }
1464 1464
 
1465 1465
   /**
@@ -1482,9 +1482,9 @@  discard block
 block discarded – undo
1482 1482
    */
1483 1483
   public function get($blogId, $postId, $optParams = array())
1484 1484
   {
1485
-    $params = array('blogId' => $blogId, 'postId' => $postId);
1486
-    $params = array_merge($params, $optParams);
1487
-    return $this->call('get', array($params), "Google_Service_Blogger_Post");
1485
+	$params = array('blogId' => $blogId, 'postId' => $postId);
1486
+	$params = array_merge($params, $optParams);
1487
+	return $this->call('get', array($params), "Google_Service_Blogger_Post");
1488 1488
   }
1489 1489
 
1490 1490
   /**
@@ -1502,9 +1502,9 @@  discard block
 block discarded – undo
1502 1502
    */
1503 1503
   public function getByPath($blogId, $path, $optParams = array())
1504 1504
   {
1505
-    $params = array('blogId' => $blogId, 'path' => $path);
1506
-    $params = array_merge($params, $optParams);
1507
-    return $this->call('getByPath', array($params), "Google_Service_Blogger_Post");
1505
+	$params = array('blogId' => $blogId, 'path' => $path);
1506
+	$params = array_merge($params, $optParams);
1507
+	return $this->call('getByPath', array($params), "Google_Service_Blogger_Post");
1508 1508
   }
1509 1509
 
1510 1510
   /**
@@ -1524,9 +1524,9 @@  discard block
 block discarded – undo
1524 1524
    */
1525 1525
   public function insert($blogId, Google_Service_Blogger_Post $postBody, $optParams = array())
1526 1526
   {
1527
-    $params = array('blogId' => $blogId, 'postBody' => $postBody);
1528
-    $params = array_merge($params, $optParams);
1529
-    return $this->call('insert', array($params), "Google_Service_Blogger_Post");
1527
+	$params = array('blogId' => $blogId, 'postBody' => $postBody);
1528
+	$params = array_merge($params, $optParams);
1529
+	return $this->call('insert', array($params), "Google_Service_Blogger_Post");
1530 1530
   }
1531 1531
 
1532 1532
   /**
@@ -1555,9 +1555,9 @@  discard block
 block discarded – undo
1555 1555
    */
1556 1556
   public function listPosts($blogId, $optParams = array())
1557 1557
   {
1558
-    $params = array('blogId' => $blogId);
1559
-    $params = array_merge($params, $optParams);
1560
-    return $this->call('list', array($params), "Google_Service_Blogger_PostList");
1558
+	$params = array('blogId' => $blogId);
1559
+	$params = array_merge($params, $optParams);
1560
+	return $this->call('list', array($params), "Google_Service_Blogger_PostList");
1561 1561
   }
1562 1562
 
1563 1563
   /**
@@ -1582,9 +1582,9 @@  discard block
 block discarded – undo
1582 1582
    */
1583 1583
   public function patch($blogId, $postId, Google_Service_Blogger_Post $postBody, $optParams = array())
1584 1584
   {
1585
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
1586
-    $params = array_merge($params, $optParams);
1587
-    return $this->call('patch', array($params), "Google_Service_Blogger_Post");
1585
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
1586
+	$params = array_merge($params, $optParams);
1587
+	return $this->call('patch', array($params), "Google_Service_Blogger_Post");
1588 1588
   }
1589 1589
 
1590 1590
   /**
@@ -1604,9 +1604,9 @@  discard block
 block discarded – undo
1604 1604
    */
1605 1605
   public function publish($blogId, $postId, $optParams = array())
1606 1606
   {
1607
-    $params = array('blogId' => $blogId, 'postId' => $postId);
1608
-    $params = array_merge($params, $optParams);
1609
-    return $this->call('publish', array($params), "Google_Service_Blogger_Post");
1607
+	$params = array('blogId' => $blogId, 'postId' => $postId);
1608
+	$params = array_merge($params, $optParams);
1609
+	return $this->call('publish', array($params), "Google_Service_Blogger_Post");
1610 1610
   }
1611 1611
 
1612 1612
   /**
@@ -1619,9 +1619,9 @@  discard block
 block discarded – undo
1619 1619
    */
1620 1620
   public function revert($blogId, $postId, $optParams = array())
1621 1621
   {
1622
-    $params = array('blogId' => $blogId, 'postId' => $postId);
1623
-    $params = array_merge($params, $optParams);
1624
-    return $this->call('revert', array($params), "Google_Service_Blogger_Post");
1622
+	$params = array('blogId' => $blogId, 'postId' => $postId);
1623
+	$params = array_merge($params, $optParams);
1624
+	return $this->call('revert', array($params), "Google_Service_Blogger_Post");
1625 1625
   }
1626 1626
 
1627 1627
   /**
@@ -1639,9 +1639,9 @@  discard block
 block discarded – undo
1639 1639
    */
1640 1640
   public function search($blogId, $q, $optParams = array())
1641 1641
   {
1642
-    $params = array('blogId' => $blogId, 'q' => $q);
1643
-    $params = array_merge($params, $optParams);
1644
-    return $this->call('search', array($params), "Google_Service_Blogger_PostList");
1642
+	$params = array('blogId' => $blogId, 'q' => $q);
1643
+	$params = array_merge($params, $optParams);
1644
+	return $this->call('search', array($params), "Google_Service_Blogger_PostList");
1645 1645
   }
1646 1646
 
1647 1647
   /**
@@ -1666,9 +1666,9 @@  discard block
 block discarded – undo
1666 1666
    */
1667 1667
   public function update($blogId, $postId, Google_Service_Blogger_Post $postBody, $optParams = array())
1668 1668
   {
1669
-    $params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
1670
-    $params = array_merge($params, $optParams);
1671
-    return $this->call('update', array($params), "Google_Service_Blogger_Post");
1669
+	$params = array('blogId' => $blogId, 'postId' => $postId, 'postBody' => $postBody);
1670
+	$params = array_merge($params, $optParams);
1671
+	return $this->call('update', array($params), "Google_Service_Blogger_Post");
1672 1672
   }
1673 1673
 }
1674 1674
 
@@ -1692,9 +1692,9 @@  discard block
 block discarded – undo
1692 1692
    */
1693 1693
   public function get($userId, $optParams = array())
1694 1694
   {
1695
-    $params = array('userId' => $userId);
1696
-    $params = array_merge($params, $optParams);
1697
-    return $this->call('get', array($params), "Google_Service_Blogger_User");
1695
+	$params = array('userId' => $userId);
1696
+	$params = array_merge($params, $optParams);
1697
+	return $this->call('get', array($params), "Google_Service_Blogger_User");
1698 1698
   }
1699 1699
 }
1700 1700
 
@@ -1725,107 +1725,107 @@  discard block
 block discarded – undo
1725 1725
 
1726 1726
   public function setCustomMetaData($customMetaData)
1727 1727
   {
1728
-    $this->customMetaData = $customMetaData;
1728
+	$this->customMetaData = $customMetaData;
1729 1729
   }
1730 1730
   public function getCustomMetaData()
1731 1731
   {
1732
-    return $this->customMetaData;
1732
+	return $this->customMetaData;
1733 1733
   }
1734 1734
   public function setDescription($description)
1735 1735
   {
1736
-    $this->description = $description;
1736
+	$this->description = $description;
1737 1737
   }
1738 1738
   public function getDescription()
1739 1739
   {
1740
-    return $this->description;
1740
+	return $this->description;
1741 1741
   }
1742 1742
   public function setId($id)
1743 1743
   {
1744
-    $this->id = $id;
1744
+	$this->id = $id;
1745 1745
   }
1746 1746
   public function getId()
1747 1747
   {
1748
-    return $this->id;
1748
+	return $this->id;
1749 1749
   }
1750 1750
   public function setKind($kind)
1751 1751
   {
1752
-    $this->kind = $kind;
1752
+	$this->kind = $kind;
1753 1753
   }
1754 1754
   public function getKind()
1755 1755
   {
1756
-    return $this->kind;
1756
+	return $this->kind;
1757 1757
   }
1758 1758
   public function setLocale(Google_Service_Blogger_BlogLocale $locale)
1759 1759
   {
1760
-    $this->locale = $locale;
1760
+	$this->locale = $locale;
1761 1761
   }
1762 1762
   public function getLocale()
1763 1763
   {
1764
-    return $this->locale;
1764
+	return $this->locale;
1765 1765
   }
1766 1766
   public function setName($name)
1767 1767
   {
1768
-    $this->name = $name;
1768
+	$this->name = $name;
1769 1769
   }
1770 1770
   public function getName()
1771 1771
   {
1772
-    return $this->name;
1772
+	return $this->name;
1773 1773
   }
1774 1774
   public function setPages(Google_Service_Blogger_BlogPages $pages)
1775 1775
   {
1776
-    $this->pages = $pages;
1776
+	$this->pages = $pages;
1777 1777
   }
1778 1778
   public function getPages()
1779 1779
   {
1780
-    return $this->pages;
1780
+	return $this->pages;
1781 1781
   }
1782 1782
   public function setPosts(Google_Service_Blogger_BlogPosts $posts)
1783 1783
   {
1784
-    $this->posts = $posts;
1784
+	$this->posts = $posts;
1785 1785
   }
1786 1786
   public function getPosts()
1787 1787
   {
1788
-    return $this->posts;
1788
+	return $this->posts;
1789 1789
   }
1790 1790
   public function setPublished($published)
1791 1791
   {
1792
-    $this->published = $published;
1792
+	$this->published = $published;
1793 1793
   }
1794 1794
   public function getPublished()
1795 1795
   {
1796
-    return $this->published;
1796
+	return $this->published;
1797 1797
   }
1798 1798
   public function setSelfLink($selfLink)
1799 1799
   {
1800
-    $this->selfLink = $selfLink;
1800
+	$this->selfLink = $selfLink;
1801 1801
   }
1802 1802
   public function getSelfLink()
1803 1803
   {
1804
-    return $this->selfLink;
1804
+	return $this->selfLink;
1805 1805
   }
1806 1806
   public function setStatus($status)
1807 1807
   {
1808
-    $this->status = $status;
1808
+	$this->status = $status;
1809 1809
   }
1810 1810
   public function getStatus()
1811 1811
   {
1812
-    return $this->status;
1812
+	return $this->status;
1813 1813
   }
1814 1814
   public function setUpdated($updated)
1815 1815
   {
1816
-    $this->updated = $updated;
1816
+	$this->updated = $updated;
1817 1817
   }
1818 1818
   public function getUpdated()
1819 1819
   {
1820
-    return $this->updated;
1820
+	return $this->updated;
1821 1821
   }
1822 1822
   public function setUrl($url)
1823 1823
   {
1824
-    $this->url = $url;
1824
+	$this->url = $url;
1825 1825
   }
1826 1826
   public function getUrl()
1827 1827
   {
1828
-    return $this->url;
1828
+	return $this->url;
1829 1829
   }
1830 1830
 }
1831 1831
 
@@ -1843,27 +1843,27 @@  discard block
 block discarded – undo
1843 1843
 
1844 1844
   public function setBlogUserInfos($blogUserInfos)
1845 1845
   {
1846
-    $this->blogUserInfos = $blogUserInfos;
1846
+	$this->blogUserInfos = $blogUserInfos;
1847 1847
   }
1848 1848
   public function getBlogUserInfos()
1849 1849
   {
1850
-    return $this->blogUserInfos;
1850
+	return $this->blogUserInfos;
1851 1851
   }
1852 1852
   public function setItems($items)
1853 1853
   {
1854
-    $this->items = $items;
1854
+	$this->items = $items;
1855 1855
   }
1856 1856
   public function getItems()
1857 1857
   {
1858
-    return $this->items;
1858
+	return $this->items;
1859 1859
   }
1860 1860
   public function setKind($kind)
1861 1861
   {
1862
-    $this->kind = $kind;
1862
+	$this->kind = $kind;
1863 1863
   }
1864 1864
   public function getKind()
1865 1865
   {
1866
-    return $this->kind;
1866
+	return $this->kind;
1867 1867
   }
1868 1868
 }
1869 1869
 
@@ -1878,27 +1878,27 @@  discard block
 block discarded – undo
1878 1878
 
1879 1879
   public function setCountry($country)
1880 1880
   {
1881
-    $this->country = $country;
1881
+	$this->country = $country;
1882 1882
   }
1883 1883
   public function getCountry()
1884 1884
   {
1885
-    return $this->country;
1885
+	return $this->country;
1886 1886
   }
1887 1887
   public function setLanguage($language)
1888 1888
   {
1889
-    $this->language = $language;
1889
+	$this->language = $language;
1890 1890
   }
1891 1891
   public function getLanguage()
1892 1892
   {
1893
-    return $this->language;
1893
+	return $this->language;
1894 1894
   }
1895 1895
   public function setVariant($variant)
1896 1896
   {
1897
-    $this->variant = $variant;
1897
+	$this->variant = $variant;
1898 1898
   }
1899 1899
   public function getVariant()
1900 1900
   {
1901
-    return $this->variant;
1901
+	return $this->variant;
1902 1902
   }
1903 1903
 }
1904 1904
 
@@ -1912,19 +1912,19 @@  discard block
 block discarded – undo
1912 1912
 
1913 1913
   public function setSelfLink($selfLink)
1914 1914
   {
1915
-    $this->selfLink = $selfLink;
1915
+	$this->selfLink = $selfLink;
1916 1916
   }
1917 1917
   public function getSelfLink()
1918 1918
   {
1919
-    return $this->selfLink;
1919
+	return $this->selfLink;
1920 1920
   }
1921 1921
   public function setTotalItems($totalItems)
1922 1922
   {
1923
-    $this->totalItems = $totalItems;
1923
+	$this->totalItems = $totalItems;
1924 1924
   }
1925 1925
   public function getTotalItems()
1926 1926
   {
1927
-    return $this->totalItems;
1927
+	return $this->totalItems;
1928 1928
   }
1929 1929
 }
1930 1930
 
@@ -1942,51 +1942,51 @@  discard block
 block discarded – undo
1942 1942
 
1943 1943
   public function setBlogId($blogId)
1944 1944
   {
1945
-    $this->blogId = $blogId;
1945
+	$this->blogId = $blogId;
1946 1946
   }
1947 1947
   public function getBlogId()
1948 1948
   {
1949
-    return $this->blogId;
1949
+	return $this->blogId;
1950 1950
   }
1951 1951
   public function setHasAdminAccess($hasAdminAccess)
1952 1952
   {
1953
-    $this->hasAdminAccess = $hasAdminAccess;
1953
+	$this->hasAdminAccess = $hasAdminAccess;
1954 1954
   }
1955 1955
   public function getHasAdminAccess()
1956 1956
   {
1957
-    return $this->hasAdminAccess;
1957
+	return $this->hasAdminAccess;
1958 1958
   }
1959 1959
   public function setKind($kind)
1960 1960
   {
1961
-    $this->kind = $kind;
1961
+	$this->kind = $kind;
1962 1962
   }
1963 1963
   public function getKind()
1964 1964
   {
1965
-    return $this->kind;
1965
+	return $this->kind;
1966 1966
   }
1967 1967
   public function setPhotosAlbumKey($photosAlbumKey)
1968 1968
   {
1969
-    $this->photosAlbumKey = $photosAlbumKey;
1969
+	$this->photosAlbumKey = $photosAlbumKey;
1970 1970
   }
1971 1971
   public function getPhotosAlbumKey()
1972 1972
   {
1973
-    return $this->photosAlbumKey;
1973
+	return $this->photosAlbumKey;
1974 1974
   }
1975 1975
   public function setRole($role)
1976 1976
   {
1977
-    $this->role = $role;
1977
+	$this->role = $role;
1978 1978
   }
1979 1979
   public function getRole()
1980 1980
   {
1981
-    return $this->role;
1981
+	return $this->role;
1982 1982
   }
1983 1983
   public function setUserId($userId)
1984 1984
   {
1985
-    $this->userId = $userId;
1985
+	$this->userId = $userId;
1986 1986
   }
1987 1987
   public function getUserId()
1988 1988
   {
1989
-    return $this->userId;
1989
+	return $this->userId;
1990 1990
   }
1991 1991
 }
1992 1992
 
@@ -2003,34 +2003,34 @@  discard block
 block discarded – undo
2003 2003
 
2004 2004
   public function setItems($items)
2005 2005
   {
2006
-    $this->items = $items;
2006
+	$this->items = $items;
2007 2007
   }
2008 2008
   public function getItems()
2009 2009
   {
2010
-    return $this->items;
2010
+	return $this->items;
2011 2011
   }
2012 2012
   public function setSelfLink($selfLink)
2013 2013
   {
2014
-    $this->selfLink = $selfLink;
2014
+	$this->selfLink = $selfLink;
2015 2015
   }
2016 2016
   public function getSelfLink()
2017 2017
   {
2018
-    return $this->selfLink;
2018
+	return $this->selfLink;
2019 2019
   }
2020 2020
   public function setTotalItems($totalItems)
2021 2021
   {
2022
-    $this->totalItems = $totalItems;
2022
+	$this->totalItems = $totalItems;
2023 2023
   }
2024 2024
   public function getTotalItems()
2025 2025
   {
2026
-    return $this->totalItems;
2026
+	return $this->totalItems;
2027 2027
   }
2028 2028
 }
2029 2029
 
2030 2030
 class Google_Service_Blogger_BlogUserInfo extends Google_Model
2031 2031
 {
2032 2032
   protected $internal_gapi_mappings = array(
2033
-        "blogUserInfo" => "blog_user_info",
2033
+		"blogUserInfo" => "blog_user_info",
2034 2034
   );
2035 2035
   protected $blogType = 'Google_Service_Blogger_Blog';
2036 2036
   protected $blogDataType = '';
@@ -2041,27 +2041,27 @@  discard block
 block discarded – undo
2041 2041
 
2042 2042
   public function setBlog(Google_Service_Blogger_Blog $blog)
2043 2043
   {
2044
-    $this->blog = $blog;
2044
+	$this->blog = $blog;
2045 2045
   }
2046 2046
   public function getBlog()
2047 2047
   {
2048
-    return $this->blog;
2048
+	return $this->blog;
2049 2049
   }
2050 2050
   public function setBlogUserInfo(Google_Service_Blogger_BlogPerUserInfo $blogUserInfo)
2051 2051
   {
2052
-    $this->blogUserInfo = $blogUserInfo;
2052
+	$this->blogUserInfo = $blogUserInfo;
2053 2053
   }
2054 2054
   public function getBlogUserInfo()
2055 2055
   {
2056
-    return $this->blogUserInfo;
2056
+	return $this->blogUserInfo;
2057 2057
   }
2058 2058
   public function setKind($kind)
2059 2059
   {
2060
-    $this->kind = $kind;
2060
+	$this->kind = $kind;
2061 2061
   }
2062 2062
   public function getKind()
2063 2063
   {
2064
-    return $this->kind;
2064
+	return $this->kind;
2065 2065
   }
2066 2066
 }
2067 2067
 
@@ -2088,91 +2088,91 @@  discard block
 block discarded – undo
2088 2088
 
2089 2089
   public function setAuthor(Google_Service_Blogger_CommentAuthor $author)
2090 2090
   {
2091
-    $this->author = $author;
2091
+	$this->author = $author;
2092 2092
   }
2093 2093
   public function getAuthor()
2094 2094
   {
2095
-    return $this->author;
2095
+	return $this->author;
2096 2096
   }
2097 2097
   public function setBlog(Google_Service_Blogger_CommentBlog $blog)
2098 2098
   {
2099
-    $this->blog = $blog;
2099
+	$this->blog = $blog;
2100 2100
   }
2101 2101
   public function getBlog()
2102 2102
   {
2103
-    return $this->blog;
2103
+	return $this->blog;
2104 2104
   }
2105 2105
   public function setContent($content)
2106 2106
   {
2107
-    $this->content = $content;
2107
+	$this->content = $content;
2108 2108
   }
2109 2109
   public function getContent()
2110 2110
   {
2111
-    return $this->content;
2111
+	return $this->content;
2112 2112
   }
2113 2113
   public function setId($id)
2114 2114
   {
2115
-    $this->id = $id;
2115
+	$this->id = $id;
2116 2116
   }
2117 2117
   public function getId()
2118 2118
   {
2119
-    return $this->id;
2119
+	return $this->id;
2120 2120
   }
2121 2121
   public function setInReplyTo(Google_Service_Blogger_CommentInReplyTo $inReplyTo)
2122 2122
   {
2123
-    $this->inReplyTo = $inReplyTo;
2123
+	$this->inReplyTo = $inReplyTo;
2124 2124
   }
2125 2125
   public function getInReplyTo()
2126 2126
   {
2127
-    return $this->inReplyTo;
2127
+	return $this->inReplyTo;
2128 2128
   }
2129 2129
   public function setKind($kind)
2130 2130
   {
2131
-    $this->kind = $kind;
2131
+	$this->kind = $kind;
2132 2132
   }
2133 2133
   public function getKind()
2134 2134
   {
2135
-    return $this->kind;
2135
+	return $this->kind;
2136 2136
   }
2137 2137
   public function setPost(Google_Service_Blogger_CommentPost $post)
2138 2138
   {
2139
-    $this->post = $post;
2139
+	$this->post = $post;
2140 2140
   }
2141 2141
   public function getPost()
2142 2142
   {
2143
-    return $this->post;
2143
+	return $this->post;
2144 2144
   }
2145 2145
   public function setPublished($published)
2146 2146
   {
2147
-    $this->published = $published;
2147
+	$this->published = $published;
2148 2148
   }
2149 2149
   public function getPublished()
2150 2150
   {
2151
-    return $this->published;
2151
+	return $this->published;
2152 2152
   }
2153 2153
   public function setSelfLink($selfLink)
2154 2154
   {
2155
-    $this->selfLink = $selfLink;
2155
+	$this->selfLink = $selfLink;
2156 2156
   }
2157 2157
   public function getSelfLink()
2158 2158
   {
2159
-    return $this->selfLink;
2159
+	return $this->selfLink;
2160 2160
   }
2161 2161
   public function setStatus($status)
2162 2162
   {
2163
-    $this->status = $status;
2163
+	$this->status = $status;
2164 2164
   }
2165 2165
   public function getStatus()
2166 2166
   {
2167
-    return $this->status;
2167
+	return $this->status;
2168 2168
   }
2169 2169
   public function setUpdated($updated)
2170 2170
   {
2171
-    $this->updated = $updated;
2171
+	$this->updated = $updated;
2172 2172
   }
2173 2173
   public function getUpdated()
2174 2174
   {
2175
-    return $this->updated;
2175
+	return $this->updated;
2176 2176
   }
2177 2177
 }
2178 2178
 
@@ -2189,35 +2189,35 @@  discard block
 block discarded – undo
2189 2189
 
2190 2190
   public function setDisplayName($displayName)
2191 2191
   {
2192
-    $this->displayName = $displayName;
2192
+	$this->displayName = $displayName;
2193 2193
   }
2194 2194
   public function getDisplayName()
2195 2195
   {
2196
-    return $this->displayName;
2196
+	return $this->displayName;
2197 2197
   }
2198 2198
   public function setId($id)
2199 2199
   {
2200
-    $this->id = $id;
2200
+	$this->id = $id;
2201 2201
   }
2202 2202
   public function getId()
2203 2203
   {
2204
-    return $this->id;
2204
+	return $this->id;
2205 2205
   }
2206 2206
   public function setImage(Google_Service_Blogger_CommentAuthorImage $image)
2207 2207
   {
2208
-    $this->image = $image;
2208
+	$this->image = $image;
2209 2209
   }
2210 2210
   public function getImage()
2211 2211
   {
2212
-    return $this->image;
2212
+	return $this->image;
2213 2213
   }
2214 2214
   public function setUrl($url)
2215 2215
   {
2216
-    $this->url = $url;
2216
+	$this->url = $url;
2217 2217
   }
2218 2218
   public function getUrl()
2219 2219
   {
2220
-    return $this->url;
2220
+	return $this->url;
2221 2221
   }
2222 2222
 }
2223 2223
 
@@ -2230,11 +2230,11 @@  discard block
 block discarded – undo
2230 2230
 
2231 2231
   public function setUrl($url)
2232 2232
   {
2233
-    $this->url = $url;
2233
+	$this->url = $url;
2234 2234
   }
2235 2235
   public function getUrl()
2236 2236
   {
2237
-    return $this->url;
2237
+	return $this->url;
2238 2238
   }
2239 2239
 }
2240 2240
 
@@ -2247,11 +2247,11 @@  discard block
 block discarded – undo
2247 2247
 
2248 2248
   public function setId($id)
2249 2249
   {
2250
-    $this->id = $id;
2250
+	$this->id = $id;
2251 2251
   }
2252 2252
   public function getId()
2253 2253
   {
2254
-    return $this->id;
2254
+	return $this->id;
2255 2255
   }
2256 2256
 }
2257 2257
 
@@ -2264,11 +2264,11 @@  discard block
 block discarded – undo
2264 2264
 
2265 2265
   public function setId($id)
2266 2266
   {
2267
-    $this->id = $id;
2267
+	$this->id = $id;
2268 2268
   }
2269 2269
   public function getId()
2270 2270
   {
2271
-    return $this->id;
2271
+	return $this->id;
2272 2272
   }
2273 2273
 }
2274 2274
 
@@ -2287,43 +2287,43 @@  discard block
 block discarded – undo
2287 2287
 
2288 2288
   public function setEtag($etag)
2289 2289
   {
2290
-    $this->etag = $etag;
2290
+	$this->etag = $etag;
2291 2291
   }
2292 2292
   public function getEtag()
2293 2293
   {
2294
-    return $this->etag;
2294
+	return $this->etag;
2295 2295
   }
2296 2296
   public function setItems($items)
2297 2297
   {
2298
-    $this->items = $items;
2298
+	$this->items = $items;
2299 2299
   }
2300 2300
   public function getItems()
2301 2301
   {
2302
-    return $this->items;
2302
+	return $this->items;
2303 2303
   }
2304 2304
   public function setKind($kind)
2305 2305
   {
2306
-    $this->kind = $kind;
2306
+	$this->kind = $kind;
2307 2307
   }
2308 2308
   public function getKind()
2309 2309
   {
2310
-    return $this->kind;
2310
+	return $this->kind;
2311 2311
   }
2312 2312
   public function setNextPageToken($nextPageToken)
2313 2313
   {
2314
-    $this->nextPageToken = $nextPageToken;
2314
+	$this->nextPageToken = $nextPageToken;
2315 2315
   }
2316 2316
   public function getNextPageToken()
2317 2317
   {
2318
-    return $this->nextPageToken;
2318
+	return $this->nextPageToken;
2319 2319
   }
2320 2320
   public function setPrevPageToken($prevPageToken)
2321 2321
   {
2322
-    $this->prevPageToken = $prevPageToken;
2322
+	$this->prevPageToken = $prevPageToken;
2323 2323
   }
2324 2324
   public function getPrevPageToken()
2325 2325
   {
2326
-    return $this->prevPageToken;
2326
+	return $this->prevPageToken;
2327 2327
   }
2328 2328
 }
2329 2329
 
@@ -2336,11 +2336,11 @@  discard block
 block discarded – undo
2336 2336
 
2337 2337
   public function setId($id)
2338 2338
   {
2339
-    $this->id = $id;
2339
+	$this->id = $id;
2340 2340
   }
2341 2341
   public function getId()
2342 2342
   {
2343
-    return $this->id;
2343
+	return $this->id;
2344 2344
   }
2345 2345
 }
2346 2346
 
@@ -2366,99 +2366,99 @@  discard block
 block discarded – undo
2366 2366
 
2367 2367
   public function setAuthor(Google_Service_Blogger_PageAuthor $author)
2368 2368
   {
2369
-    $this->author = $author;
2369
+	$this->author = $author;
2370 2370
   }
2371 2371
   public function getAuthor()
2372 2372
   {
2373
-    return $this->author;
2373
+	return $this->author;
2374 2374
   }
2375 2375
   public function setBlog(Google_Service_Blogger_PageBlog $blog)
2376 2376
   {
2377
-    $this->blog = $blog;
2377
+	$this->blog = $blog;
2378 2378
   }
2379 2379
   public function getBlog()
2380 2380
   {
2381
-    return $this->blog;
2381
+	return $this->blog;
2382 2382
   }
2383 2383
   public function setContent($content)
2384 2384
   {
2385
-    $this->content = $content;
2385
+	$this->content = $content;
2386 2386
   }
2387 2387
   public function getContent()
2388 2388
   {
2389
-    return $this->content;
2389
+	return $this->content;
2390 2390
   }
2391 2391
   public function setEtag($etag)
2392 2392
   {
2393
-    $this->etag = $etag;
2393
+	$this->etag = $etag;
2394 2394
   }
2395 2395
   public function getEtag()
2396 2396
   {
2397
-    return $this->etag;
2397
+	return $this->etag;
2398 2398
   }
2399 2399
   public function setId($id)
2400 2400
   {
2401
-    $this->id = $id;
2401
+	$this->id = $id;
2402 2402
   }
2403 2403
   public function getId()
2404 2404
   {
2405
-    return $this->id;
2405
+	return $this->id;
2406 2406
   }
2407 2407
   public function setKind($kind)
2408 2408
   {
2409
-    $this->kind = $kind;
2409
+	$this->kind = $kind;
2410 2410
   }
2411 2411
   public function getKind()
2412 2412
   {
2413
-    return $this->kind;
2413
+	return $this->kind;
2414 2414
   }
2415 2415
   public function setPublished($published)
2416 2416
   {
2417
-    $this->published = $published;
2417
+	$this->published = $published;
2418 2418
   }
2419 2419
   public function getPublished()
2420 2420
   {
2421
-    return $this->published;
2421
+	return $this->published;
2422 2422
   }
2423 2423
   public function setSelfLink($selfLink)
2424 2424
   {
2425
-    $this->selfLink = $selfLink;
2425
+	$this->selfLink = $selfLink;
2426 2426
   }
2427 2427
   public function getSelfLink()
2428 2428
   {
2429
-    return $this->selfLink;
2429
+	return $this->selfLink;
2430 2430
   }
2431 2431
   public function setStatus($status)
2432 2432
   {
2433
-    $this->status = $status;
2433
+	$this->status = $status;
2434 2434
   }
2435 2435
   public function getStatus()
2436 2436
   {
2437
-    return $this->status;
2437
+	return $this->status;
2438 2438
   }
2439 2439
   public function setTitle($title)
2440 2440
   {
2441
-    $this->title = $title;
2441
+	$this->title = $title;
2442 2442
   }
2443 2443
   public function getTitle()
2444 2444
   {
2445
-    return $this->title;
2445
+	return $this->title;
2446 2446
   }
2447 2447
   public function setUpdated($updated)
2448 2448
   {
2449
-    $this->updated = $updated;
2449
+	$this->updated = $updated;
2450 2450
   }
2451 2451
   public function getUpdated()
2452 2452
   {
2453
-    return $this->updated;
2453
+	return $this->updated;
2454 2454
   }
2455 2455
   public function setUrl($url)
2456 2456
   {
2457
-    $this->url = $url;
2457
+	$this->url = $url;
2458 2458
   }
2459 2459
   public function getUrl()
2460 2460
   {
2461
-    return $this->url;
2461
+	return $this->url;
2462 2462
   }
2463 2463
 }
2464 2464
 
@@ -2475,35 +2475,35 @@  discard block
 block discarded – undo
2475 2475
 
2476 2476
   public function setDisplayName($displayName)
2477 2477
   {
2478
-    $this->displayName = $displayName;
2478
+	$this->displayName = $displayName;
2479 2479
   }
2480 2480
   public function getDisplayName()
2481 2481
   {
2482
-    return $this->displayName;
2482
+	return $this->displayName;
2483 2483
   }
2484 2484
   public function setId($id)
2485 2485
   {
2486
-    $this->id = $id;
2486
+	$this->id = $id;
2487 2487
   }
2488 2488
   public function getId()
2489 2489
   {
2490
-    return $this->id;
2490
+	return $this->id;
2491 2491
   }
2492 2492
   public function setImage(Google_Service_Blogger_PageAuthorImage $image)
2493 2493
   {
2494
-    $this->image = $image;
2494
+	$this->image = $image;
2495 2495
   }
2496 2496
   public function getImage()
2497 2497
   {
2498
-    return $this->image;
2498
+	return $this->image;
2499 2499
   }
2500 2500
   public function setUrl($url)
2501 2501
   {
2502
-    $this->url = $url;
2502
+	$this->url = $url;
2503 2503
   }
2504 2504
   public function getUrl()
2505 2505
   {
2506
-    return $this->url;
2506
+	return $this->url;
2507 2507
   }
2508 2508
 }
2509 2509
 
@@ -2516,11 +2516,11 @@  discard block
 block discarded – undo
2516 2516
 
2517 2517
   public function setUrl($url)
2518 2518
   {
2519
-    $this->url = $url;
2519
+	$this->url = $url;
2520 2520
   }
2521 2521
   public function getUrl()
2522 2522
   {
2523
-    return $this->url;
2523
+	return $this->url;
2524 2524
   }
2525 2525
 }
2526 2526
 
@@ -2533,11 +2533,11 @@  discard block
 block discarded – undo
2533 2533
 
2534 2534
   public function setId($id)
2535 2535
   {
2536
-    $this->id = $id;
2536
+	$this->id = $id;
2537 2537
   }
2538 2538
   public function getId()
2539 2539
   {
2540
-    return $this->id;
2540
+	return $this->id;
2541 2541
   }
2542 2542
 }
2543 2543
 
@@ -2555,35 +2555,35 @@  discard block
 block discarded – undo
2555 2555
 
2556 2556
   public function setEtag($etag)
2557 2557
   {
2558
-    $this->etag = $etag;
2558
+	$this->etag = $etag;
2559 2559
   }
2560 2560
   public function getEtag()
2561 2561
   {
2562
-    return $this->etag;
2562
+	return $this->etag;
2563 2563
   }
2564 2564
   public function setItems($items)
2565 2565
   {
2566
-    $this->items = $items;
2566
+	$this->items = $items;
2567 2567
   }
2568 2568
   public function getItems()
2569 2569
   {
2570
-    return $this->items;
2570
+	return $this->items;
2571 2571
   }
2572 2572
   public function setKind($kind)
2573 2573
   {
2574
-    $this->kind = $kind;
2574
+	$this->kind = $kind;
2575 2575
   }
2576 2576
   public function getKind()
2577 2577
   {
2578
-    return $this->kind;
2578
+	return $this->kind;
2579 2579
   }
2580 2580
   public function setNextPageToken($nextPageToken)
2581 2581
   {
2582
-    $this->nextPageToken = $nextPageToken;
2582
+	$this->nextPageToken = $nextPageToken;
2583 2583
   }
2584 2584
   public function getNextPageToken()
2585 2585
   {
2586
-    return $this->nextPageToken;
2586
+	return $this->nextPageToken;
2587 2587
   }
2588 2588
 }
2589 2589
 
@@ -2600,27 +2600,27 @@  discard block
 block discarded – undo
2600 2600
 
2601 2601
   public function setBlogId($blogId)
2602 2602
   {
2603
-    $this->blogId = $blogId;
2603
+	$this->blogId = $blogId;
2604 2604
   }
2605 2605
   public function getBlogId()
2606 2606
   {
2607
-    return $this->blogId;
2607
+	return $this->blogId;
2608 2608
   }
2609 2609
   public function setCounts($counts)
2610 2610
   {
2611
-    $this->counts = $counts;
2611
+	$this->counts = $counts;
2612 2612
   }
2613 2613
   public function getCounts()
2614 2614
   {
2615
-    return $this->counts;
2615
+	return $this->counts;
2616 2616
   }
2617 2617
   public function setKind($kind)
2618 2618
   {
2619
-    $this->kind = $kind;
2619
+	$this->kind = $kind;
2620 2620
   }
2621 2621
   public function getKind()
2622 2622
   {
2623
-    return $this->kind;
2623
+	return $this->kind;
2624 2624
   }
2625 2625
 }
2626 2626
 
@@ -2634,19 +2634,19 @@  discard block
 block discarded – undo
2634 2634
 
2635 2635
   public function setCount($count)
2636 2636
   {
2637
-    $this->count = $count;
2637
+	$this->count = $count;
2638 2638
   }
2639 2639
   public function getCount()
2640 2640
   {
2641
-    return $this->count;
2641
+	return $this->count;
2642 2642
   }
2643 2643
   public function setTimeRange($timeRange)
2644 2644
   {
2645
-    $this->timeRange = $timeRange;
2645
+	$this->timeRange = $timeRange;
2646 2646
   }
2647 2647
   public function getTimeRange()
2648 2648
   {
2649
-    return $this->timeRange;
2649
+	return $this->timeRange;
2650 2650
   }
2651 2651
 }
2652 2652
 
@@ -2683,155 +2683,155 @@  discard block
 block discarded – undo
2683 2683
 
2684 2684
   public function setAuthor(Google_Service_Blogger_PostAuthor $author)
2685 2685
   {
2686
-    $this->author = $author;
2686
+	$this->author = $author;
2687 2687
   }
2688 2688
   public function getAuthor()
2689 2689
   {
2690
-    return $this->author;
2690
+	return $this->author;
2691 2691
   }
2692 2692
   public function setBlog(Google_Service_Blogger_PostBlog $blog)
2693 2693
   {
2694
-    $this->blog = $blog;
2694
+	$this->blog = $blog;
2695 2695
   }
2696 2696
   public function getBlog()
2697 2697
   {
2698
-    return $this->blog;
2698
+	return $this->blog;
2699 2699
   }
2700 2700
   public function setContent($content)
2701 2701
   {
2702
-    $this->content = $content;
2702
+	$this->content = $content;
2703 2703
   }
2704 2704
   public function getContent()
2705 2705
   {
2706
-    return $this->content;
2706
+	return $this->content;
2707 2707
   }
2708 2708
   public function setCustomMetaData($customMetaData)
2709 2709
   {
2710
-    $this->customMetaData = $customMetaData;
2710
+	$this->customMetaData = $customMetaData;
2711 2711
   }
2712 2712
   public function getCustomMetaData()
2713 2713
   {
2714
-    return $this->customMetaData;
2714
+	return $this->customMetaData;
2715 2715
   }
2716 2716
   public function setEtag($etag)
2717 2717
   {
2718
-    $this->etag = $etag;
2718
+	$this->etag = $etag;
2719 2719
   }
2720 2720
   public function getEtag()
2721 2721
   {
2722
-    return $this->etag;
2722
+	return $this->etag;
2723 2723
   }
2724 2724
   public function setId($id)
2725 2725
   {
2726
-    $this->id = $id;
2726
+	$this->id = $id;
2727 2727
   }
2728 2728
   public function getId()
2729 2729
   {
2730
-    return $this->id;
2730
+	return $this->id;
2731 2731
   }
2732 2732
   public function setImages($images)
2733 2733
   {
2734
-    $this->images = $images;
2734
+	$this->images = $images;
2735 2735
   }
2736 2736
   public function getImages()
2737 2737
   {
2738
-    return $this->images;
2738
+	return $this->images;
2739 2739
   }
2740 2740
   public function setKind($kind)
2741 2741
   {
2742
-    $this->kind = $kind;
2742
+	$this->kind = $kind;
2743 2743
   }
2744 2744
   public function getKind()
2745 2745
   {
2746
-    return $this->kind;
2746
+	return $this->kind;
2747 2747
   }
2748 2748
   public function setLabels($labels)
2749 2749
   {
2750
-    $this->labels = $labels;
2750
+	$this->labels = $labels;
2751 2751
   }
2752 2752
   public function getLabels()
2753 2753
   {
2754
-    return $this->labels;
2754
+	return $this->labels;
2755 2755
   }
2756 2756
   public function setLocation(Google_Service_Blogger_PostLocation $location)
2757 2757
   {
2758
-    $this->location = $location;
2758
+	$this->location = $location;
2759 2759
   }
2760 2760
   public function getLocation()
2761 2761
   {
2762
-    return $this->location;
2762
+	return $this->location;
2763 2763
   }
2764 2764
   public function setPublished($published)
2765 2765
   {
2766
-    $this->published = $published;
2766
+	$this->published = $published;
2767 2767
   }
2768 2768
   public function getPublished()
2769 2769
   {
2770
-    return $this->published;
2770
+	return $this->published;
2771 2771
   }
2772 2772
   public function setReaderComments($readerComments)
2773 2773
   {
2774
-    $this->readerComments = $readerComments;
2774
+	$this->readerComments = $readerComments;
2775 2775
   }
2776 2776
   public function getReaderComments()
2777 2777
   {
2778
-    return $this->readerComments;
2778
+	return $this->readerComments;
2779 2779
   }
2780 2780
   public function setReplies(Google_Service_Blogger_PostReplies $replies)
2781 2781
   {
2782
-    $this->replies = $replies;
2782
+	$this->replies = $replies;
2783 2783
   }
2784 2784
   public function getReplies()
2785 2785
   {
2786
-    return $this->replies;
2786
+	return $this->replies;
2787 2787
   }
2788 2788
   public function setSelfLink($selfLink)
2789 2789
   {
2790
-    $this->selfLink = $selfLink;
2790
+	$this->selfLink = $selfLink;
2791 2791
   }
2792 2792
   public function getSelfLink()
2793 2793
   {
2794
-    return $this->selfLink;
2794
+	return $this->selfLink;
2795 2795
   }
2796 2796
   public function setStatus($status)
2797 2797
   {
2798
-    $this->status = $status;
2798
+	$this->status = $status;
2799 2799
   }
2800 2800
   public function getStatus()
2801 2801
   {
2802
-    return $this->status;
2802
+	return $this->status;
2803 2803
   }
2804 2804
   public function setTitle($title)
2805 2805
   {
2806
-    $this->title = $title;
2806
+	$this->title = $title;
2807 2807
   }
2808 2808
   public function getTitle()
2809 2809
   {
2810
-    return $this->title;
2810
+	return $this->title;
2811 2811
   }
2812 2812
   public function setTitleLink($titleLink)
2813 2813
   {
2814
-    $this->titleLink = $titleLink;
2814
+	$this->titleLink = $titleLink;
2815 2815
   }
2816 2816
   public function getTitleLink()
2817 2817
   {
2818
-    return $this->titleLink;
2818
+	return $this->titleLink;
2819 2819
   }
2820 2820
   public function setUpdated($updated)
2821 2821
   {
2822
-    $this->updated = $updated;
2822
+	$this->updated = $updated;
2823 2823
   }
2824 2824
   public function getUpdated()
2825 2825
   {
2826
-    return $this->updated;
2826
+	return $this->updated;
2827 2827
   }
2828 2828
   public function setUrl($url)
2829 2829
   {
2830
-    $this->url = $url;
2830
+	$this->url = $url;
2831 2831
   }
2832 2832
   public function getUrl()
2833 2833
   {
2834
-    return $this->url;
2834
+	return $this->url;
2835 2835
   }
2836 2836
 }
2837 2837
 
@@ -2848,35 +2848,35 @@  discard block
 block discarded – undo
2848 2848
 
2849 2849
   public function setDisplayName($displayName)
2850 2850
   {
2851
-    $this->displayName = $displayName;
2851
+	$this->displayName = $displayName;
2852 2852
   }
2853 2853
   public function getDisplayName()
2854 2854
   {
2855
-    return $this->displayName;
2855
+	return $this->displayName;
2856 2856
   }
2857 2857
   public function setId($id)
2858 2858
   {
2859
-    $this->id = $id;
2859
+	$this->id = $id;
2860 2860
   }
2861 2861
   public function getId()
2862 2862
   {
2863
-    return $this->id;
2863
+	return $this->id;
2864 2864
   }
2865 2865
   public function setImage(Google_Service_Blogger_PostAuthorImage $image)
2866 2866
   {
2867
-    $this->image = $image;
2867
+	$this->image = $image;
2868 2868
   }
2869 2869
   public function getImage()
2870 2870
   {
2871
-    return $this->image;
2871
+	return $this->image;
2872 2872
   }
2873 2873
   public function setUrl($url)
2874 2874
   {
2875
-    $this->url = $url;
2875
+	$this->url = $url;
2876 2876
   }
2877 2877
   public function getUrl()
2878 2878
   {
2879
-    return $this->url;
2879
+	return $this->url;
2880 2880
   }
2881 2881
 }
2882 2882
 
@@ -2889,11 +2889,11 @@  discard block
 block discarded – undo
2889 2889
 
2890 2890
   public function setUrl($url)
2891 2891
   {
2892
-    $this->url = $url;
2892
+	$this->url = $url;
2893 2893
   }
2894 2894
   public function getUrl()
2895 2895
   {
2896
-    return $this->url;
2896
+	return $this->url;
2897 2897
   }
2898 2898
 }
2899 2899
 
@@ -2906,11 +2906,11 @@  discard block
 block discarded – undo
2906 2906
 
2907 2907
   public function setId($id)
2908 2908
   {
2909
-    $this->id = $id;
2909
+	$this->id = $id;
2910 2910
   }
2911 2911
   public function getId()
2912 2912
   {
2913
-    return $this->id;
2913
+	return $this->id;
2914 2914
   }
2915 2915
 }
2916 2916
 
@@ -2923,11 +2923,11 @@  discard block
 block discarded – undo
2923 2923
 
2924 2924
   public function setUrl($url)
2925 2925
   {
2926
-    $this->url = $url;
2926
+	$this->url = $url;
2927 2927
   }
2928 2928
   public function getUrl()
2929 2929
   {
2930
-    return $this->url;
2930
+	return $this->url;
2931 2931
   }
2932 2932
 }
2933 2933
 
@@ -2945,35 +2945,35 @@  discard block
 block discarded – undo
2945 2945
 
2946 2946
   public function setEtag($etag)
2947 2947
   {
2948
-    $this->etag = $etag;
2948
+	$this->etag = $etag;
2949 2949
   }
2950 2950
   public function getEtag()
2951 2951
   {
2952
-    return $this->etag;
2952
+	return $this->etag;
2953 2953
   }
2954 2954
   public function setItems($items)
2955 2955
   {
2956
-    $this->items = $items;
2956
+	$this->items = $items;
2957 2957
   }
2958 2958
   public function getItems()
2959 2959
   {
2960
-    return $this->items;
2960
+	return $this->items;
2961 2961
   }
2962 2962
   public function setKind($kind)
2963 2963
   {
2964
-    $this->kind = $kind;
2964
+	$this->kind = $kind;
2965 2965
   }
2966 2966
   public function getKind()
2967 2967
   {
2968
-    return $this->kind;
2968
+	return $this->kind;
2969 2969
   }
2970 2970
   public function setNextPageToken($nextPageToken)
2971 2971
   {
2972
-    $this->nextPageToken = $nextPageToken;
2972
+	$this->nextPageToken = $nextPageToken;
2973 2973
   }
2974 2974
   public function getNextPageToken()
2975 2975
   {
2976
-    return $this->nextPageToken;
2976
+	return $this->nextPageToken;
2977 2977
   }
2978 2978
 }
2979 2979
 
@@ -2989,35 +2989,35 @@  discard block
 block discarded – undo
2989 2989
 
2990 2990
   public function setLat($lat)
2991 2991
   {
2992
-    $this->lat = $lat;
2992
+	$this->lat = $lat;
2993 2993
   }
2994 2994
   public function getLat()
2995 2995
   {
2996
-    return $this->lat;
2996
+	return $this->lat;
2997 2997
   }
2998 2998
   public function setLng($lng)
2999 2999
   {
3000
-    $this->lng = $lng;
3000
+	$this->lng = $lng;
3001 3001
   }
3002 3002
   public function getLng()
3003 3003
   {
3004
-    return $this->lng;
3004
+	return $this->lng;
3005 3005
   }
3006 3006
   public function setName($name)
3007 3007
   {
3008
-    $this->name = $name;
3008
+	$this->name = $name;
3009 3009
   }
3010 3010
   public function getName()
3011 3011
   {
3012
-    return $this->name;
3012
+	return $this->name;
3013 3013
   }
3014 3014
   public function setSpan($span)
3015 3015
   {
3016
-    $this->span = $span;
3016
+	$this->span = $span;
3017 3017
   }
3018 3018
   public function getSpan()
3019 3019
   {
3020
-    return $this->span;
3020
+	return $this->span;
3021 3021
   }
3022 3022
 }
3023 3023
 
@@ -3034,43 +3034,43 @@  discard block
 block discarded – undo
3034 3034
 
3035 3035
   public function setBlogId($blogId)
3036 3036
   {
3037
-    $this->blogId = $blogId;
3037
+	$this->blogId = $blogId;
3038 3038
   }
3039 3039
   public function getBlogId()
3040 3040
   {
3041
-    return $this->blogId;
3041
+	return $this->blogId;
3042 3042
   }
3043 3043
   public function setHasEditAccess($hasEditAccess)
3044 3044
   {
3045
-    $this->hasEditAccess = $hasEditAccess;
3045
+	$this->hasEditAccess = $hasEditAccess;
3046 3046
   }
3047 3047
   public function getHasEditAccess()
3048 3048
   {
3049
-    return $this->hasEditAccess;
3049
+	return $this->hasEditAccess;
3050 3050
   }
3051 3051
   public function setKind($kind)
3052 3052
   {
3053
-    $this->kind = $kind;
3053
+	$this->kind = $kind;
3054 3054
   }
3055 3055
   public function getKind()
3056 3056
   {
3057
-    return $this->kind;
3057
+	return $this->kind;
3058 3058
   }
3059 3059
   public function setPostId($postId)
3060 3060
   {
3061
-    $this->postId = $postId;
3061
+	$this->postId = $postId;
3062 3062
   }
3063 3063
   public function getPostId()
3064 3064
   {
3065
-    return $this->postId;
3065
+	return $this->postId;
3066 3066
   }
3067 3067
   public function setUserId($userId)
3068 3068
   {
3069
-    $this->userId = $userId;
3069
+	$this->userId = $userId;
3070 3070
   }
3071 3071
   public function getUserId()
3072 3072
   {
3073
-    return $this->userId;
3073
+	return $this->userId;
3074 3074
   }
3075 3075
 }
3076 3076
 
@@ -3087,34 +3087,34 @@  discard block
 block discarded – undo
3087 3087
 
3088 3088
   public function setItems($items)
3089 3089
   {
3090
-    $this->items = $items;
3090
+	$this->items = $items;
3091 3091
   }
3092 3092
   public function getItems()
3093 3093
   {
3094
-    return $this->items;
3094
+	return $this->items;
3095 3095
   }
3096 3096
   public function setSelfLink($selfLink)
3097 3097
   {
3098
-    $this->selfLink = $selfLink;
3098
+	$this->selfLink = $selfLink;
3099 3099
   }
3100 3100
   public function getSelfLink()
3101 3101
   {
3102
-    return $this->selfLink;
3102
+	return $this->selfLink;
3103 3103
   }
3104 3104
   public function setTotalItems($totalItems)
3105 3105
   {
3106
-    $this->totalItems = $totalItems;
3106
+	$this->totalItems = $totalItems;
3107 3107
   }
3108 3108
   public function getTotalItems()
3109 3109
   {
3110
-    return $this->totalItems;
3110
+	return $this->totalItems;
3111 3111
   }
3112 3112
 }
3113 3113
 
3114 3114
 class Google_Service_Blogger_PostUserInfo extends Google_Model
3115 3115
 {
3116 3116
   protected $internal_gapi_mappings = array(
3117
-        "postUserInfo" => "post_user_info",
3117
+		"postUserInfo" => "post_user_info",
3118 3118
   );
3119 3119
   public $kind;
3120 3120
   protected $postType = 'Google_Service_Blogger_Post';
@@ -3125,27 +3125,27 @@  discard block
 block discarded – undo
3125 3125
 
3126 3126
   public function setKind($kind)
3127 3127
   {
3128
-    $this->kind = $kind;
3128
+	$this->kind = $kind;
3129 3129
   }
3130 3130
   public function getKind()
3131 3131
   {
3132
-    return $this->kind;
3132
+	return $this->kind;
3133 3133
   }
3134 3134
   public function setPost(Google_Service_Blogger_Post $post)
3135 3135
   {
3136
-    $this->post = $post;
3136
+	$this->post = $post;
3137 3137
   }
3138 3138
   public function getPost()
3139 3139
   {
3140
-    return $this->post;
3140
+	return $this->post;
3141 3141
   }
3142 3142
   public function setPostUserInfo(Google_Service_Blogger_PostPerUserInfo $postUserInfo)
3143 3143
   {
3144
-    $this->postUserInfo = $postUserInfo;
3144
+	$this->postUserInfo = $postUserInfo;
3145 3145
   }
3146 3146
   public function getPostUserInfo()
3147 3147
   {
3148
-    return $this->postUserInfo;
3148
+	return $this->postUserInfo;
3149 3149
   }
3150 3150
 }
3151 3151
 
@@ -3162,27 +3162,27 @@  discard block
 block discarded – undo
3162 3162
 
3163 3163
   public function setItems($items)
3164 3164
   {
3165
-    $this->items = $items;
3165
+	$this->items = $items;
3166 3166
   }
3167 3167
   public function getItems()
3168 3168
   {
3169
-    return $this->items;
3169
+	return $this->items;
3170 3170
   }
3171 3171
   public function setKind($kind)
3172 3172
   {
3173
-    $this->kind = $kind;
3173
+	$this->kind = $kind;
3174 3174
   }
3175 3175
   public function getKind()
3176 3176
   {
3177
-    return $this->kind;
3177
+	return $this->kind;
3178 3178
   }
3179 3179
   public function setNextPageToken($nextPageToken)
3180 3180
   {
3181
-    $this->nextPageToken = $nextPageToken;
3181
+	$this->nextPageToken = $nextPageToken;
3182 3182
   }
3183 3183
   public function getNextPageToken()
3184 3184
   {
3185
-    return $this->nextPageToken;
3185
+	return $this->nextPageToken;
3186 3186
   }
3187 3187
 }
3188 3188
 
@@ -3205,75 +3205,75 @@  discard block
 block discarded – undo
3205 3205
 
3206 3206
   public function setAbout($about)
3207 3207
   {
3208
-    $this->about = $about;
3208
+	$this->about = $about;
3209 3209
   }
3210 3210
   public function getAbout()
3211 3211
   {
3212
-    return $this->about;
3212
+	return $this->about;
3213 3213
   }
3214 3214
   public function setBlogs(Google_Service_Blogger_UserBlogs $blogs)
3215 3215
   {
3216
-    $this->blogs = $blogs;
3216
+	$this->blogs = $blogs;
3217 3217
   }
3218 3218
   public function getBlogs()
3219 3219
   {
3220
-    return $this->blogs;
3220
+	return $this->blogs;
3221 3221
   }
3222 3222
   public function setCreated($created)
3223 3223
   {
3224
-    $this->created = $created;
3224
+	$this->created = $created;
3225 3225
   }
3226 3226
   public function getCreated()
3227 3227
   {
3228
-    return $this->created;
3228
+	return $this->created;
3229 3229
   }
3230 3230
   public function setDisplayName($displayName)
3231 3231
   {
3232
-    $this->displayName = $displayName;
3232
+	$this->displayName = $displayName;
3233 3233
   }
3234 3234
   public function getDisplayName()
3235 3235
   {
3236
-    return $this->displayName;
3236
+	return $this->displayName;
3237 3237
   }
3238 3238
   public function setId($id)
3239 3239
   {
3240
-    $this->id = $id;
3240
+	$this->id = $id;
3241 3241
   }
3242 3242
   public function getId()
3243 3243
   {
3244
-    return $this->id;
3244
+	return $this->id;
3245 3245
   }
3246 3246
   public function setKind($kind)
3247 3247
   {
3248
-    $this->kind = $kind;
3248
+	$this->kind = $kind;
3249 3249
   }
3250 3250
   public function getKind()
3251 3251
   {
3252
-    return $this->kind;
3252
+	return $this->kind;
3253 3253
   }
3254 3254
   public function setLocale(Google_Service_Blogger_UserLocale $locale)
3255 3255
   {
3256
-    $this->locale = $locale;
3256
+	$this->locale = $locale;
3257 3257
   }
3258 3258
   public function getLocale()
3259 3259
   {
3260
-    return $this->locale;
3260
+	return $this->locale;
3261 3261
   }
3262 3262
   public function setSelfLink($selfLink)
3263 3263
   {
3264
-    $this->selfLink = $selfLink;
3264
+	$this->selfLink = $selfLink;
3265 3265
   }
3266 3266
   public function getSelfLink()
3267 3267
   {
3268
-    return $this->selfLink;
3268
+	return $this->selfLink;
3269 3269
   }
3270 3270
   public function setUrl($url)
3271 3271
   {
3272
-    $this->url = $url;
3272
+	$this->url = $url;
3273 3273
   }
3274 3274
   public function getUrl()
3275 3275
   {
3276
-    return $this->url;
3276
+	return $this->url;
3277 3277
   }
3278 3278
 }
3279 3279
 
@@ -3286,11 +3286,11 @@  discard block
 block discarded – undo
3286 3286
 
3287 3287
   public function setSelfLink($selfLink)
3288 3288
   {
3289
-    $this->selfLink = $selfLink;
3289
+	$this->selfLink = $selfLink;
3290 3290
   }
3291 3291
   public function getSelfLink()
3292 3292
   {
3293
-    return $this->selfLink;
3293
+	return $this->selfLink;
3294 3294
   }
3295 3295
 }
3296 3296
 
@@ -3305,26 +3305,26 @@  discard block
 block discarded – undo
3305 3305
 
3306 3306
   public function setCountry($country)
3307 3307
   {
3308
-    $this->country = $country;
3308
+	$this->country = $country;
3309 3309
   }
3310 3310
   public function getCountry()
3311 3311
   {
3312
-    return $this->country;
3312
+	return $this->country;
3313 3313
   }
3314 3314
   public function setLanguage($language)
3315 3315
   {
3316
-    $this->language = $language;
3316
+	$this->language = $language;
3317 3317
   }
3318 3318
   public function getLanguage()
3319 3319
   {
3320
-    return $this->language;
3320
+	return $this->language;
3321 3321
   }
3322 3322
   public function setVariant($variant)
3323 3323
   {
3324
-    $this->variant = $variant;
3324
+	$this->variant = $variant;
3325 3325
   }
3326 3326
   public function getVariant()
3327 3327
   {
3328
-    return $this->variant;
3328
+	return $this->variant;
3329 3329
   }
3330 3330
 }
Please login to merge, or discard this patch.
Spacing   +25 added lines, -25 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
                   'type' => 'string',
114 114
                 ),
115 115
               ),
116
-            ),'getByUrl' => array(
116
+            ), 'getByUrl' => array(
117 117
               'path' => 'blogs/byurl',
118 118
               'httpMethod' => 'GET',
119 119
               'parameters' => array(
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
                   'type' => 'string',
128 128
                 ),
129 129
               ),
130
-            ),'listByUser' => array(
130
+            ), 'listByUser' => array(
131 131
               'path' => 'users/{userId}/blogs',
132 132
               'httpMethod' => 'GET',
133 133
               'parameters' => array(
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
                   'required' => true,
186 186
                 ),
187 187
               ),
188
-            ),'delete' => array(
188
+            ), 'delete' => array(
189 189
               'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
190 190
               'httpMethod' => 'DELETE',
191 191
               'parameters' => array(
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                   'required' => true,
206 206
                 ),
207 207
               ),
208
-            ),'get' => array(
208
+            ), 'get' => array(
209 209
               'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}',
210 210
               'httpMethod' => 'GET',
211 211
               'parameters' => array(
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
                   'type' => 'string',
230 230
                 ),
231 231
               ),
232
-            ),'list' => array(
232
+            ), 'list' => array(
233 233
               'path' => 'blogs/{blogId}/posts/{postId}/comments',
234 234
               'httpMethod' => 'GET',
235 235
               'parameters' => array(
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
                   'type' => 'string',
274 274
                 ),
275 275
               ),
276
-            ),'listByBlog' => array(
276
+            ), 'listByBlog' => array(
277 277
               'path' => 'blogs/{blogId}/comments',
278 278
               'httpMethod' => 'GET',
279 279
               'parameters' => array(
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
                   'type' => 'boolean',
309 309
                 ),
310 310
               ),
311
-            ),'markAsSpam' => array(
311
+            ), 'markAsSpam' => array(
312 312
               'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/spam',
313 313
               'httpMethod' => 'POST',
314 314
               'parameters' => array(
@@ -328,7 +328,7 @@  discard block
 block discarded – undo
328 328
                   'required' => true,
329 329
                 ),
330 330
               ),
331
-            ),'removeContent' => array(
331
+            ), 'removeContent' => array(
332 332
               'path' => 'blogs/{blogId}/posts/{postId}/comments/{commentId}/removecontent',
333 333
               'httpMethod' => 'POST',
334 334
               'parameters' => array(
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
                   'required' => true,
399 399
                 ),
400 400
               ),
401
-            ),'get' => array(
401
+            ), 'get' => array(
402 402
               'path' => 'blogs/{blogId}/pages/{pageId}',
403 403
               'httpMethod' => 'GET',
404 404
               'parameters' => array(
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
                   'type' => 'string',
418 418
                 ),
419 419
               ),
420
-            ),'insert' => array(
420
+            ), 'insert' => array(
421 421
               'path' => 'blogs/{blogId}/pages',
422 422
               'httpMethod' => 'POST',
423 423
               'parameters' => array(
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
                   'type' => 'boolean',
432 432
                 ),
433 433
               ),
434
-            ),'list' => array(
434
+            ), 'list' => array(
435 435
               'path' => 'blogs/{blogId}/pages',
436 436
               'httpMethod' => 'GET',
437 437
               'parameters' => array(
@@ -462,7 +462,7 @@  discard block
 block discarded – undo
462 462
                   'type' => 'string',
463 463
                 ),
464 464
               ),
465
-            ),'patch' => array(
465
+            ), 'patch' => array(
466 466
               'path' => 'blogs/{blogId}/pages/{pageId}',
467 467
               'httpMethod' => 'PATCH',
468 468
               'parameters' => array(
@@ -485,7 +485,7 @@  discard block
 block discarded – undo
485 485
                   'type' => 'boolean',
486 486
                 ),
487 487
               ),
488
-            ),'publish' => array(
488
+            ), 'publish' => array(
489 489
               'path' => 'blogs/{blogId}/pages/{pageId}/publish',
490 490
               'httpMethod' => 'POST',
491 491
               'parameters' => array(
@@ -500,7 +500,7 @@  discard block
 block discarded – undo
500 500
                   'required' => true,
501 501
                 ),
502 502
               ),
503
-            ),'revert' => array(
503
+            ), 'revert' => array(
504 504
               'path' => 'blogs/{blogId}/pages/{pageId}/revert',
505 505
               'httpMethod' => 'POST',
506 506
               'parameters' => array(
@@ -515,7 +515,7 @@  discard block
 block discarded – undo
515 515
                   'required' => true,
516 516
                 ),
517 517
               ),
518
-            ),'update' => array(
518
+            ), 'update' => array(
519 519
               'path' => 'blogs/{blogId}/pages/{pageId}',
520 520
               'httpMethod' => 'PUT',
521 521
               'parameters' => array(
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
                   'type' => 'integer',
573 573
                 ),
574 574
               ),
575
-            ),'list' => array(
575
+            ), 'list' => array(
576 576
               'path' => 'users/{userId}/blogs/{blogId}/posts',
577 577
               'httpMethod' => 'GET',
578 578
               'parameters' => array(
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
                   'required' => true,
650 650
                 ),
651 651
               ),
652
-            ),'get' => array(
652
+            ), 'get' => array(
653 653
               'path' => 'blogs/{blogId}/posts/{postId}',
654 654
               'httpMethod' => 'GET',
655 655
               'parameters' => array(
@@ -680,7 +680,7 @@  discard block
 block discarded – undo
680 680
                   'type' => 'string',
681 681
                 ),
682 682
               ),
683
-            ),'getByPath' => array(
683
+            ), 'getByPath' => array(
684 684
               'path' => 'blogs/{blogId}/posts/bypath',
685 685
               'httpMethod' => 'GET',
686 686
               'parameters' => array(
@@ -703,7 +703,7 @@  discard block
 block discarded – undo
703 703
                   'type' => 'string',
704 704
                 ),
705 705
               ),
706
-            ),'insert' => array(
706
+            ), 'insert' => array(
707 707
               'path' => 'blogs/{blogId}/posts',
708 708
               'httpMethod' => 'POST',
709 709
               'parameters' => array(
@@ -725,7 +725,7 @@  discard block
 block discarded – undo
725 725
                   'type' => 'boolean',
726 726
                 ),
727 727
               ),
728
-            ),'list' => array(
728
+            ), 'list' => array(
729 729
               'path' => 'blogs/{blogId}/posts',
730 730
               'httpMethod' => 'GET',
731 731
               'parameters' => array(
@@ -776,7 +776,7 @@  discard block
 block discarded – undo
776 776
                   'type' => 'string',
777 777
                 ),
778 778
               ),
779
-            ),'patch' => array(
779
+            ), 'patch' => array(
780 780
               'path' => 'blogs/{blogId}/posts/{postId}',
781 781
               'httpMethod' => 'PATCH',
782 782
               'parameters' => array(
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
                   'type' => 'boolean',
812 812
                 ),
813 813
               ),
814
-            ),'publish' => array(
814
+            ), 'publish' => array(
815 815
               'path' => 'blogs/{blogId}/posts/{postId}/publish',
816 816
               'httpMethod' => 'POST',
817 817
               'parameters' => array(
@@ -830,7 +830,7 @@  discard block
 block discarded – undo
830 830
                   'type' => 'string',
831 831
                 ),
832 832
               ),
833
-            ),'revert' => array(
833
+            ), 'revert' => array(
834 834
               'path' => 'blogs/{blogId}/posts/{postId}/revert',
835 835
               'httpMethod' => 'POST',
836 836
               'parameters' => array(
@@ -845,7 +845,7 @@  discard block
 block discarded – undo
845 845
                   'required' => true,
846 846
                 ),
847 847
               ),
848
-            ),'search' => array(
848
+            ), 'search' => array(
849 849
               'path' => 'blogs/{blogId}/posts/search',
850 850
               'httpMethod' => 'GET',
851 851
               'parameters' => array(
@@ -868,7 +868,7 @@  discard block
 block discarded – undo
868 868
                   'type' => 'boolean',
869 869
                 ),
870 870
               ),
871
-            ),'update' => array(
871
+            ), 'update' => array(
872 872
               'path' => 'blogs/{blogId}/posts/{postId}',
873 873
               'httpMethod' => 'PUT',
874 874
               'parameters' => array(
Please login to merge, or discard this patch.