Test Failed
Pull Request — master (#437)
by Kiran
22:03
created
google-api-php-client/src/Google/Service/Groupssettings.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
    * (groups.patch)
125 125
    *
126 126
    * @param string $groupUniqueId The resource ID
127
-   * @param Google_Groups $postBody
127
+   * @param Google_Service_Groupssettings_Groups $postBody
128 128
    * @param array $optParams Optional parameters.
129 129
    * @return Google_Service_Groupssettings_Groups
130 130
    */
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
    * Updates an existing resource. (groups.update)
140 140
    *
141 141
    * @param string $groupUniqueId The resource ID
142
-   * @param Google_Groups $postBody
142
+   * @param Google_Service_Groupssettings_Groups $postBody
143 143
    * @param array $optParams Optional parameters.
144 144
    * @return Google_Service_Groupssettings_Groups
145 145
    */
Please login to merge, or discard this patch.
Indentation   +111 added lines, -111 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage the settings of a Google Apps Group. */
34 34
   const APPS_GROUPS_SETTINGS =
35
-      "https://www.googleapis.com/auth/apps.groups.settings";
35
+	  "https://www.googleapis.com/auth/apps.groups.settings";
36 36
 
37 37
   public $groups;
38 38
   
@@ -44,52 +44,52 @@  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 = 'groups/v1/groups/';
50
-    $this->version = 'v1';
51
-    $this->serviceName = 'groupssettings';
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'groups/v1/groups/';
50
+	$this->version = 'v1';
51
+	$this->serviceName = 'groupssettings';
52 52
 
53
-    $this->groups = new Google_Service_Groupssettings_Groups_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'groups',
57
-        array(
58
-          'methods' => array(
59
-            'get' => array(
60
-              'path' => '{groupUniqueId}',
61
-              'httpMethod' => 'GET',
62
-              'parameters' => array(
63
-                'groupUniqueId' => array(
64
-                  'location' => 'path',
65
-                  'type' => 'string',
66
-                  'required' => true,
67
-                ),
68
-              ),
69
-            ),'patch' => array(
70
-              'path' => '{groupUniqueId}',
71
-              'httpMethod' => 'PATCH',
72
-              'parameters' => array(
73
-                'groupUniqueId' => array(
74
-                  'location' => 'path',
75
-                  'type' => 'string',
76
-                  'required' => true,
77
-                ),
78
-              ),
79
-            ),'update' => array(
80
-              'path' => '{groupUniqueId}',
81
-              'httpMethod' => 'PUT',
82
-              'parameters' => array(
83
-                'groupUniqueId' => array(
84
-                  'location' => 'path',
85
-                  'type' => 'string',
86
-                  'required' => true,
87
-                ),
88
-              ),
89
-            ),
90
-          )
91
-        )
92
-    );
53
+	$this->groups = new Google_Service_Groupssettings_Groups_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'groups',
57
+		array(
58
+		  'methods' => array(
59
+			'get' => array(
60
+			  'path' => '{groupUniqueId}',
61
+			  'httpMethod' => 'GET',
62
+			  'parameters' => array(
63
+				'groupUniqueId' => array(
64
+				  'location' => 'path',
65
+				  'type' => 'string',
66
+				  'required' => true,
67
+				),
68
+			  ),
69
+			),'patch' => array(
70
+			  'path' => '{groupUniqueId}',
71
+			  'httpMethod' => 'PATCH',
72
+			  'parameters' => array(
73
+				'groupUniqueId' => array(
74
+				  'location' => 'path',
75
+				  'type' => 'string',
76
+				  'required' => true,
77
+				),
78
+			  ),
79
+			),'update' => array(
80
+			  'path' => '{groupUniqueId}',
81
+			  'httpMethod' => 'PUT',
82
+			  'parameters' => array(
83
+				'groupUniqueId' => array(
84
+				  'location' => 'path',
85
+				  'type' => 'string',
86
+				  'required' => true,
87
+				),
88
+			  ),
89
+			),
90
+		  )
91
+		)
92
+	);
93 93
   }
94 94
 }
95 95
 
@@ -114,9 +114,9 @@  discard block
 block discarded – undo
114 114
    */
115 115
   public function get($groupUniqueId, $optParams = array())
116 116
   {
117
-    $params = array('groupUniqueId' => $groupUniqueId);
118
-    $params = array_merge($params, $optParams);
119
-    return $this->call('get', array($params), "Google_Service_Groupssettings_Groups");
117
+	$params = array('groupUniqueId' => $groupUniqueId);
118
+	$params = array_merge($params, $optParams);
119
+	return $this->call('get', array($params), "Google_Service_Groupssettings_Groups");
120 120
   }
121 121
 
122 122
   /**
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
    */
131 131
   public function patch($groupUniqueId, Google_Service_Groupssettings_Groups $postBody, $optParams = array())
132 132
   {
133
-    $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
134
-    $params = array_merge($params, $optParams);
135
-    return $this->call('patch', array($params), "Google_Service_Groupssettings_Groups");
133
+	$params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
134
+	$params = array_merge($params, $optParams);
135
+	return $this->call('patch', array($params), "Google_Service_Groupssettings_Groups");
136 136
   }
137 137
 
138 138
   /**
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
    */
146 146
   public function update($groupUniqueId, Google_Service_Groupssettings_Groups $postBody, $optParams = array())
147 147
   {
148
-    $params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
149
-    $params = array_merge($params, $optParams);
150
-    return $this->call('update', array($params), "Google_Service_Groupssettings_Groups");
148
+	$params = array('groupUniqueId' => $groupUniqueId, 'postBody' => $postBody);
149
+	$params = array_merge($params, $optParams);
150
+	return $this->call('update', array($params), "Google_Service_Groupssettings_Groups");
151 151
   }
152 152
 }
153 153
 
@@ -190,226 +190,226 @@  discard block
 block discarded – undo
190 190
 
191 191
   public function setAllowExternalMembers($allowExternalMembers)
192 192
   {
193
-    $this->allowExternalMembers = $allowExternalMembers;
193
+	$this->allowExternalMembers = $allowExternalMembers;
194 194
   }
195 195
   public function getAllowExternalMembers()
196 196
   {
197
-    return $this->allowExternalMembers;
197
+	return $this->allowExternalMembers;
198 198
   }
199 199
   public function setAllowGoogleCommunication($allowGoogleCommunication)
200 200
   {
201
-    $this->allowGoogleCommunication = $allowGoogleCommunication;
201
+	$this->allowGoogleCommunication = $allowGoogleCommunication;
202 202
   }
203 203
   public function getAllowGoogleCommunication()
204 204
   {
205
-    return $this->allowGoogleCommunication;
205
+	return $this->allowGoogleCommunication;
206 206
   }
207 207
   public function setAllowWebPosting($allowWebPosting)
208 208
   {
209
-    $this->allowWebPosting = $allowWebPosting;
209
+	$this->allowWebPosting = $allowWebPosting;
210 210
   }
211 211
   public function getAllowWebPosting()
212 212
   {
213
-    return $this->allowWebPosting;
213
+	return $this->allowWebPosting;
214 214
   }
215 215
   public function setArchiveOnly($archiveOnly)
216 216
   {
217
-    $this->archiveOnly = $archiveOnly;
217
+	$this->archiveOnly = $archiveOnly;
218 218
   }
219 219
   public function getArchiveOnly()
220 220
   {
221
-    return $this->archiveOnly;
221
+	return $this->archiveOnly;
222 222
   }
223 223
   public function setCustomReplyTo($customReplyTo)
224 224
   {
225
-    $this->customReplyTo = $customReplyTo;
225
+	$this->customReplyTo = $customReplyTo;
226 226
   }
227 227
   public function getCustomReplyTo()
228 228
   {
229
-    return $this->customReplyTo;
229
+	return $this->customReplyTo;
230 230
   }
231 231
   public function setDefaultMessageDenyNotificationText($defaultMessageDenyNotificationText)
232 232
   {
233
-    $this->defaultMessageDenyNotificationText = $defaultMessageDenyNotificationText;
233
+	$this->defaultMessageDenyNotificationText = $defaultMessageDenyNotificationText;
234 234
   }
235 235
   public function getDefaultMessageDenyNotificationText()
236 236
   {
237
-    return $this->defaultMessageDenyNotificationText;
237
+	return $this->defaultMessageDenyNotificationText;
238 238
   }
239 239
   public function setDescription($description)
240 240
   {
241
-    $this->description = $description;
241
+	$this->description = $description;
242 242
   }
243 243
   public function getDescription()
244 244
   {
245
-    return $this->description;
245
+	return $this->description;
246 246
   }
247 247
   public function setEmail($email)
248 248
   {
249
-    $this->email = $email;
249
+	$this->email = $email;
250 250
   }
251 251
   public function getEmail()
252 252
   {
253
-    return $this->email;
253
+	return $this->email;
254 254
   }
255 255
   public function setIncludeInGlobalAddressList($includeInGlobalAddressList)
256 256
   {
257
-    $this->includeInGlobalAddressList = $includeInGlobalAddressList;
257
+	$this->includeInGlobalAddressList = $includeInGlobalAddressList;
258 258
   }
259 259
   public function getIncludeInGlobalAddressList()
260 260
   {
261
-    return $this->includeInGlobalAddressList;
261
+	return $this->includeInGlobalAddressList;
262 262
   }
263 263
   public function setIsArchived($isArchived)
264 264
   {
265
-    $this->isArchived = $isArchived;
265
+	$this->isArchived = $isArchived;
266 266
   }
267 267
   public function getIsArchived()
268 268
   {
269
-    return $this->isArchived;
269
+	return $this->isArchived;
270 270
   }
271 271
   public function setKind($kind)
272 272
   {
273
-    $this->kind = $kind;
273
+	$this->kind = $kind;
274 274
   }
275 275
   public function getKind()
276 276
   {
277
-    return $this->kind;
277
+	return $this->kind;
278 278
   }
279 279
   public function setMaxMessageBytes($maxMessageBytes)
280 280
   {
281
-    $this->maxMessageBytes = $maxMessageBytes;
281
+	$this->maxMessageBytes = $maxMessageBytes;
282 282
   }
283 283
   public function getMaxMessageBytes()
284 284
   {
285
-    return $this->maxMessageBytes;
285
+	return $this->maxMessageBytes;
286 286
   }
287 287
   public function setMembersCanPostAsTheGroup($membersCanPostAsTheGroup)
288 288
   {
289
-    $this->membersCanPostAsTheGroup = $membersCanPostAsTheGroup;
289
+	$this->membersCanPostAsTheGroup = $membersCanPostAsTheGroup;
290 290
   }
291 291
   public function getMembersCanPostAsTheGroup()
292 292
   {
293
-    return $this->membersCanPostAsTheGroup;
293
+	return $this->membersCanPostAsTheGroup;
294 294
   }
295 295
   public function setMessageDisplayFont($messageDisplayFont)
296 296
   {
297
-    $this->messageDisplayFont = $messageDisplayFont;
297
+	$this->messageDisplayFont = $messageDisplayFont;
298 298
   }
299 299
   public function getMessageDisplayFont()
300 300
   {
301
-    return $this->messageDisplayFont;
301
+	return $this->messageDisplayFont;
302 302
   }
303 303
   public function setMessageModerationLevel($messageModerationLevel)
304 304
   {
305
-    $this->messageModerationLevel = $messageModerationLevel;
305
+	$this->messageModerationLevel = $messageModerationLevel;
306 306
   }
307 307
   public function getMessageModerationLevel()
308 308
   {
309
-    return $this->messageModerationLevel;
309
+	return $this->messageModerationLevel;
310 310
   }
311 311
   public function setName($name)
312 312
   {
313
-    $this->name = $name;
313
+	$this->name = $name;
314 314
   }
315 315
   public function getName()
316 316
   {
317
-    return $this->name;
317
+	return $this->name;
318 318
   }
319 319
   public function setPrimaryLanguage($primaryLanguage)
320 320
   {
321
-    $this->primaryLanguage = $primaryLanguage;
321
+	$this->primaryLanguage = $primaryLanguage;
322 322
   }
323 323
   public function getPrimaryLanguage()
324 324
   {
325
-    return $this->primaryLanguage;
325
+	return $this->primaryLanguage;
326 326
   }
327 327
   public function setReplyTo($replyTo)
328 328
   {
329
-    $this->replyTo = $replyTo;
329
+	$this->replyTo = $replyTo;
330 330
   }
331 331
   public function getReplyTo()
332 332
   {
333
-    return $this->replyTo;
333
+	return $this->replyTo;
334 334
   }
335 335
   public function setSendMessageDenyNotification($sendMessageDenyNotification)
336 336
   {
337
-    $this->sendMessageDenyNotification = $sendMessageDenyNotification;
337
+	$this->sendMessageDenyNotification = $sendMessageDenyNotification;
338 338
   }
339 339
   public function getSendMessageDenyNotification()
340 340
   {
341
-    return $this->sendMessageDenyNotification;
341
+	return $this->sendMessageDenyNotification;
342 342
   }
343 343
   public function setShowInGroupDirectory($showInGroupDirectory)
344 344
   {
345
-    $this->showInGroupDirectory = $showInGroupDirectory;
345
+	$this->showInGroupDirectory = $showInGroupDirectory;
346 346
   }
347 347
   public function getShowInGroupDirectory()
348 348
   {
349
-    return $this->showInGroupDirectory;
349
+	return $this->showInGroupDirectory;
350 350
   }
351 351
   public function setSpamModerationLevel($spamModerationLevel)
352 352
   {
353
-    $this->spamModerationLevel = $spamModerationLevel;
353
+	$this->spamModerationLevel = $spamModerationLevel;
354 354
   }
355 355
   public function getSpamModerationLevel()
356 356
   {
357
-    return $this->spamModerationLevel;
357
+	return $this->spamModerationLevel;
358 358
   }
359 359
   public function setWhoCanContactOwner($whoCanContactOwner)
360 360
   {
361
-    $this->whoCanContactOwner = $whoCanContactOwner;
361
+	$this->whoCanContactOwner = $whoCanContactOwner;
362 362
   }
363 363
   public function getWhoCanContactOwner()
364 364
   {
365
-    return $this->whoCanContactOwner;
365
+	return $this->whoCanContactOwner;
366 366
   }
367 367
   public function setWhoCanInvite($whoCanInvite)
368 368
   {
369
-    $this->whoCanInvite = $whoCanInvite;
369
+	$this->whoCanInvite = $whoCanInvite;
370 370
   }
371 371
   public function getWhoCanInvite()
372 372
   {
373
-    return $this->whoCanInvite;
373
+	return $this->whoCanInvite;
374 374
   }
375 375
   public function setWhoCanJoin($whoCanJoin)
376 376
   {
377
-    $this->whoCanJoin = $whoCanJoin;
377
+	$this->whoCanJoin = $whoCanJoin;
378 378
   }
379 379
   public function getWhoCanJoin()
380 380
   {
381
-    return $this->whoCanJoin;
381
+	return $this->whoCanJoin;
382 382
   }
383 383
   public function setWhoCanLeaveGroup($whoCanLeaveGroup)
384 384
   {
385
-    $this->whoCanLeaveGroup = $whoCanLeaveGroup;
385
+	$this->whoCanLeaveGroup = $whoCanLeaveGroup;
386 386
   }
387 387
   public function getWhoCanLeaveGroup()
388 388
   {
389
-    return $this->whoCanLeaveGroup;
389
+	return $this->whoCanLeaveGroup;
390 390
   }
391 391
   public function setWhoCanPostMessage($whoCanPostMessage)
392 392
   {
393
-    $this->whoCanPostMessage = $whoCanPostMessage;
393
+	$this->whoCanPostMessage = $whoCanPostMessage;
394 394
   }
395 395
   public function getWhoCanPostMessage()
396 396
   {
397
-    return $this->whoCanPostMessage;
397
+	return $this->whoCanPostMessage;
398 398
   }
399 399
   public function setWhoCanViewGroup($whoCanViewGroup)
400 400
   {
401
-    $this->whoCanViewGroup = $whoCanViewGroup;
401
+	$this->whoCanViewGroup = $whoCanViewGroup;
402 402
   }
403 403
   public function getWhoCanViewGroup()
404 404
   {
405
-    return $this->whoCanViewGroup;
405
+	return $this->whoCanViewGroup;
406 406
   }
407 407
   public function setWhoCanViewMembership($whoCanViewMembership)
408 408
   {
409
-    $this->whoCanViewMembership = $whoCanViewMembership;
409
+	$this->whoCanViewMembership = $whoCanViewMembership;
410 410
   }
411 411
   public function getWhoCanViewMembership()
412 412
   {
413
-    return $this->whoCanViewMembership;
413
+	return $this->whoCanViewMembership;
414 414
   }
415 415
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
                   'required' => true,
67 67
                 ),
68 68
               ),
69
-            ),'patch' => array(
69
+            ), 'patch' => array(
70 70
               'path' => '{groupUniqueId}',
71 71
               'httpMethod' => 'PATCH',
72 72
               'parameters' => array(
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                   'required' => true,
77 77
                 ),
78 78
               ),
79
-            ),'update' => array(
79
+            ), 'update' => array(
80 80
               'path' => '{groupUniqueId}',
81 81
               'httpMethod' => 'PUT',
82 82
               'parameters' => array(
Please login to merge, or discard this patch.
google-api-php-client/src/Google/Service/IdentityToolkit.php 3 patches
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
    * Creates the URI used by the IdP to authenticate the user.
126 126
    * (relyingparty.createAuthUri)
127 127
    *
128
-   * @param Google_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody
128
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody
129 129
    * @param array $optParams Optional parameters.
130 130
    * @return Google_Service_IdentityToolkit_CreateAuthUriResponse
131 131
    */
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
   /**
140 140
    * Delete user account. (relyingparty.deleteAccount)
141 141
    *
142
-   * @param Google_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody
142
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody
143 143
    * @param array $optParams Optional parameters.
144 144
    * @return Google_Service_IdentityToolkit_DeleteAccountResponse
145 145
    */
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
   /**
154 154
    * Batch download user accounts. (relyingparty.downloadAccount)
155 155
    *
156
-   * @param Google_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody
156
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody
157 157
    * @param array $optParams Optional parameters.
158 158
    * @return Google_Service_IdentityToolkit_DownloadAccountResponse
159 159
    */
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
   /**
168 168
    * Returns the account info. (relyingparty.getAccountInfo)
169 169
    *
170
-   * @param Google_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody
170
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody
171 171
    * @param array $optParams Optional parameters.
172 172
    * @return Google_Service_IdentityToolkit_GetAccountInfoResponse
173 173
    */
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
    * Get a code for user action confirmation.
183 183
    * (relyingparty.getOobConfirmationCode)
184 184
    *
185
-   * @param Google_Relyingparty $postBody
185
+   * @param Google_Service_IdentityToolkit_Relyingparty $postBody
186 186
    * @param array $optParams Optional parameters.
187 187
    * @return Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse
188 188
    */
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
   /**
223 223
    * Reset password for a user. (relyingparty.resetPassword)
224 224
    *
225
-   * @param Google_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody
225
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody
226 226
    * @param array $optParams Optional parameters.
227 227
    * @return Google_Service_IdentityToolkit_ResetPasswordResponse
228 228
    */
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
   /**
237 237
    * Set account info for a user. (relyingparty.setAccountInfo)
238 238
    *
239
-   * @param Google_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody
239
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody
240 240
    * @param array $optParams Optional parameters.
241 241
    * @return Google_Service_IdentityToolkit_SetAccountInfoResponse
242 242
    */
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
   /**
251 251
    * Batch upload existing user accounts. (relyingparty.uploadAccount)
252 252
    *
253
-   * @param Google_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody
253
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody
254 254
    * @param array $optParams Optional parameters.
255 255
    * @return Google_Service_IdentityToolkit_UploadAccountResponse
256 256
    */
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
   /**
265 265
    * Verifies the assertion returned by the IdP. (relyingparty.verifyAssertion)
266 266
    *
267
-   * @param Google_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody
267
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody
268 268
    * @param array $optParams Optional parameters.
269 269
    * @return Google_Service_IdentityToolkit_VerifyAssertionResponse
270 270
    */
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
   /**
279 279
    * Verifies the user entered password. (relyingparty.verifyPassword)
280 280
    *
281
-   * @param Google_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody
281
+   * @param Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody
282 282
    * @param array $optParams Optional parameters.
283 283
    * @return Google_Service_IdentityToolkit_VerifyPasswordResponse
284 284
    */
Please login to merge, or discard this patch.
Indentation   +380 added lines, -380 removed lines patch added patch discarded remove patch
@@ -42,70 +42,70 @@  discard block
 block discarded – undo
42 42
    */
43 43
   public function __construct(Google_Client $client)
44 44
   {
45
-    parent::__construct($client);
46
-    $this->rootUrl = 'https://www.googleapis.com/';
47
-    $this->servicePath = 'identitytoolkit/v3/relyingparty/';
48
-    $this->version = 'v3';
49
-    $this->serviceName = 'identitytoolkit';
50
-
51
-    $this->relyingparty = new Google_Service_IdentityToolkit_Relyingparty_Resource(
52
-        $this,
53
-        $this->serviceName,
54
-        'relyingparty',
55
-        array(
56
-          'methods' => array(
57
-            'createAuthUri' => array(
58
-              'path' => 'createAuthUri',
59
-              'httpMethod' => 'POST',
60
-              'parameters' => array(),
61
-            ),'deleteAccount' => array(
62
-              'path' => 'deleteAccount',
63
-              'httpMethod' => 'POST',
64
-              'parameters' => array(),
65
-            ),'downloadAccount' => array(
66
-              'path' => 'downloadAccount',
67
-              'httpMethod' => 'POST',
68
-              'parameters' => array(),
69
-            ),'getAccountInfo' => array(
70
-              'path' => 'getAccountInfo',
71
-              'httpMethod' => 'POST',
72
-              'parameters' => array(),
73
-            ),'getOobConfirmationCode' => array(
74
-              'path' => 'getOobConfirmationCode',
75
-              'httpMethod' => 'POST',
76
-              'parameters' => array(),
77
-            ),'getPublicKeys' => array(
78
-              'path' => 'publicKeys',
79
-              'httpMethod' => 'GET',
80
-              'parameters' => array(),
81
-            ),'getRecaptchaParam' => array(
82
-              'path' => 'getRecaptchaParam',
83
-              'httpMethod' => 'GET',
84
-              'parameters' => array(),
85
-            ),'resetPassword' => array(
86
-              'path' => 'resetPassword',
87
-              'httpMethod' => 'POST',
88
-              'parameters' => array(),
89
-            ),'setAccountInfo' => array(
90
-              'path' => 'setAccountInfo',
91
-              'httpMethod' => 'POST',
92
-              'parameters' => array(),
93
-            ),'uploadAccount' => array(
94
-              'path' => 'uploadAccount',
95
-              'httpMethod' => 'POST',
96
-              'parameters' => array(),
97
-            ),'verifyAssertion' => array(
98
-              'path' => 'verifyAssertion',
99
-              'httpMethod' => 'POST',
100
-              'parameters' => array(),
101
-            ),'verifyPassword' => array(
102
-              'path' => 'verifyPassword',
103
-              'httpMethod' => 'POST',
104
-              'parameters' => array(),
105
-            ),
106
-          )
107
-        )
108
-    );
45
+	parent::__construct($client);
46
+	$this->rootUrl = 'https://www.googleapis.com/';
47
+	$this->servicePath = 'identitytoolkit/v3/relyingparty/';
48
+	$this->version = 'v3';
49
+	$this->serviceName = 'identitytoolkit';
50
+
51
+	$this->relyingparty = new Google_Service_IdentityToolkit_Relyingparty_Resource(
52
+		$this,
53
+		$this->serviceName,
54
+		'relyingparty',
55
+		array(
56
+		  'methods' => array(
57
+			'createAuthUri' => array(
58
+			  'path' => 'createAuthUri',
59
+			  'httpMethod' => 'POST',
60
+			  'parameters' => array(),
61
+			),'deleteAccount' => array(
62
+			  'path' => 'deleteAccount',
63
+			  'httpMethod' => 'POST',
64
+			  'parameters' => array(),
65
+			),'downloadAccount' => array(
66
+			  'path' => 'downloadAccount',
67
+			  'httpMethod' => 'POST',
68
+			  'parameters' => array(),
69
+			),'getAccountInfo' => array(
70
+			  'path' => 'getAccountInfo',
71
+			  'httpMethod' => 'POST',
72
+			  'parameters' => array(),
73
+			),'getOobConfirmationCode' => array(
74
+			  'path' => 'getOobConfirmationCode',
75
+			  'httpMethod' => 'POST',
76
+			  'parameters' => array(),
77
+			),'getPublicKeys' => array(
78
+			  'path' => 'publicKeys',
79
+			  'httpMethod' => 'GET',
80
+			  'parameters' => array(),
81
+			),'getRecaptchaParam' => array(
82
+			  'path' => 'getRecaptchaParam',
83
+			  'httpMethod' => 'GET',
84
+			  'parameters' => array(),
85
+			),'resetPassword' => array(
86
+			  'path' => 'resetPassword',
87
+			  'httpMethod' => 'POST',
88
+			  'parameters' => array(),
89
+			),'setAccountInfo' => array(
90
+			  'path' => 'setAccountInfo',
91
+			  'httpMethod' => 'POST',
92
+			  'parameters' => array(),
93
+			),'uploadAccount' => array(
94
+			  'path' => 'uploadAccount',
95
+			  'httpMethod' => 'POST',
96
+			  'parameters' => array(),
97
+			),'verifyAssertion' => array(
98
+			  'path' => 'verifyAssertion',
99
+			  'httpMethod' => 'POST',
100
+			  'parameters' => array(),
101
+			),'verifyPassword' => array(
102
+			  'path' => 'verifyPassword',
103
+			  'httpMethod' => 'POST',
104
+			  'parameters' => array(),
105
+			),
106
+		  )
107
+		)
108
+	);
109 109
   }
110 110
 }
111 111
 
@@ -131,9 +131,9 @@  discard block
 block discarded – undo
131 131
    */
132 132
   public function createAuthUri(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyCreateAuthUriRequest $postBody, $optParams = array())
133 133
   {
134
-    $params = array('postBody' => $postBody);
135
-    $params = array_merge($params, $optParams);
136
-    return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse");
134
+	$params = array('postBody' => $postBody);
135
+	$params = array_merge($params, $optParams);
136
+	return $this->call('createAuthUri', array($params), "Google_Service_IdentityToolkit_CreateAuthUriResponse");
137 137
   }
138 138
 
139 139
   /**
@@ -145,9 +145,9 @@  discard block
 block discarded – undo
145 145
    */
146 146
   public function deleteAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDeleteAccountRequest $postBody, $optParams = array())
147 147
   {
148
-    $params = array('postBody' => $postBody);
149
-    $params = array_merge($params, $optParams);
150
-    return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse");
148
+	$params = array('postBody' => $postBody);
149
+	$params = array_merge($params, $optParams);
150
+	return $this->call('deleteAccount', array($params), "Google_Service_IdentityToolkit_DeleteAccountResponse");
151 151
   }
152 152
 
153 153
   /**
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
    */
160 160
   public function downloadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyDownloadAccountRequest $postBody, $optParams = array())
161 161
   {
162
-    $params = array('postBody' => $postBody);
163
-    $params = array_merge($params, $optParams);
164
-    return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
162
+	$params = array('postBody' => $postBody);
163
+	$params = array_merge($params, $optParams);
164
+	return $this->call('downloadAccount', array($params), "Google_Service_IdentityToolkit_DownloadAccountResponse");
165 165
   }
166 166
 
167 167
   /**
@@ -173,9 +173,9 @@  discard block
 block discarded – undo
173 173
    */
174 174
   public function getAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetAccountInfoRequest $postBody, $optParams = array())
175 175
   {
176
-    $params = array('postBody' => $postBody);
177
-    $params = array_merge($params, $optParams);
178
-    return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse");
176
+	$params = array('postBody' => $postBody);
177
+	$params = array_merge($params, $optParams);
178
+	return $this->call('getAccountInfo', array($params), "Google_Service_IdentityToolkit_GetAccountInfoResponse");
179 179
   }
180 180
 
181 181
   /**
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
    */
189 189
   public function getOobConfirmationCode(Google_Service_IdentityToolkit_Relyingparty $postBody, $optParams = array())
190 190
   {
191
-    $params = array('postBody' => $postBody);
192
-    $params = array_merge($params, $optParams);
193
-    return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
191
+	$params = array('postBody' => $postBody);
192
+	$params = array_merge($params, $optParams);
193
+	return $this->call('getOobConfirmationCode', array($params), "Google_Service_IdentityToolkit_GetOobConfirmationCodeResponse");
194 194
   }
195 195
 
196 196
   /**
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
    */
202 202
   public function getPublicKeys($optParams = array())
203 203
   {
204
-    $params = array();
205
-    $params = array_merge($params, $optParams);
206
-    return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
204
+	$params = array();
205
+	$params = array_merge($params, $optParams);
206
+	return $this->call('getPublicKeys', array($params), "Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyGetPublicKeysResponse");
207 207
   }
208 208
 
209 209
   /**
@@ -214,9 +214,9 @@  discard block
 block discarded – undo
214 214
    */
215 215
   public function getRecaptchaParam($optParams = array())
216 216
   {
217
-    $params = array();
218
-    $params = array_merge($params, $optParams);
219
-    return $this->call('getRecaptchaParam', array($params), "Google_Service_IdentityToolkit_GetRecaptchaParamResponse");
217
+	$params = array();
218
+	$params = array_merge($params, $optParams);
219
+	return $this->call('getRecaptchaParam', array($params), "Google_Service_IdentityToolkit_GetRecaptchaParamResponse");
220 220
   }
221 221
 
222 222
   /**
@@ -228,9 +228,9 @@  discard block
 block discarded – undo
228 228
    */
229 229
   public function resetPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyResetPasswordRequest $postBody, $optParams = array())
230 230
   {
231
-    $params = array('postBody' => $postBody);
232
-    $params = array_merge($params, $optParams);
233
-    return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
231
+	$params = array('postBody' => $postBody);
232
+	$params = array_merge($params, $optParams);
233
+	return $this->call('resetPassword', array($params), "Google_Service_IdentityToolkit_ResetPasswordResponse");
234 234
   }
235 235
 
236 236
   /**
@@ -242,9 +242,9 @@  discard block
 block discarded – undo
242 242
    */
243 243
   public function setAccountInfo(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartySetAccountInfoRequest $postBody, $optParams = array())
244 244
   {
245
-    $params = array('postBody' => $postBody);
246
-    $params = array_merge($params, $optParams);
247
-    return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse");
245
+	$params = array('postBody' => $postBody);
246
+	$params = array_merge($params, $optParams);
247
+	return $this->call('setAccountInfo', array($params), "Google_Service_IdentityToolkit_SetAccountInfoResponse");
248 248
   }
249 249
 
250 250
   /**
@@ -256,9 +256,9 @@  discard block
 block discarded – undo
256 256
    */
257 257
   public function uploadAccount(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyUploadAccountRequest $postBody, $optParams = array())
258 258
   {
259
-    $params = array('postBody' => $postBody);
260
-    $params = array_merge($params, $optParams);
261
-    return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse");
259
+	$params = array('postBody' => $postBody);
260
+	$params = array_merge($params, $optParams);
261
+	return $this->call('uploadAccount', array($params), "Google_Service_IdentityToolkit_UploadAccountResponse");
262 262
   }
263 263
 
264 264
   /**
@@ -270,9 +270,9 @@  discard block
 block discarded – undo
270 270
    */
271 271
   public function verifyAssertion(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyAssertionRequest $postBody, $optParams = array())
272 272
   {
273
-    $params = array('postBody' => $postBody);
274
-    $params = array_merge($params, $optParams);
275
-    return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse");
273
+	$params = array('postBody' => $postBody);
274
+	$params = array_merge($params, $optParams);
275
+	return $this->call('verifyAssertion', array($params), "Google_Service_IdentityToolkit_VerifyAssertionResponse");
276 276
   }
277 277
 
278 278
   /**
@@ -284,9 +284,9 @@  discard block
 block discarded – undo
284 284
    */
285 285
   public function verifyPassword(Google_Service_IdentityToolkit_IdentitytoolkitRelyingpartyVerifyPasswordRequest $postBody, $optParams = array())
286 286
   {
287
-    $params = array('postBody' => $postBody);
288
-    $params = array_merge($params, $optParams);
289
-    return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
287
+	$params = array('postBody' => $postBody);
288
+	$params = array_merge($params, $optParams);
289
+	return $this->call('verifyPassword', array($params), "Google_Service_IdentityToolkit_VerifyPasswordResponse");
290 290
   }
291 291
 }
292 292
 
@@ -307,51 +307,51 @@  discard block
 block discarded – undo
307 307
 
308 308
   public function setAuthUri($authUri)
309 309
   {
310
-    $this->authUri = $authUri;
310
+	$this->authUri = $authUri;
311 311
   }
312 312
   public function getAuthUri()
313 313
   {
314
-    return $this->authUri;
314
+	return $this->authUri;
315 315
   }
316 316
   public function setCaptchaRequired($captchaRequired)
317 317
   {
318
-    $this->captchaRequired = $captchaRequired;
318
+	$this->captchaRequired = $captchaRequired;
319 319
   }
320 320
   public function getCaptchaRequired()
321 321
   {
322
-    return $this->captchaRequired;
322
+	return $this->captchaRequired;
323 323
   }
324 324
   public function setForExistingProvider($forExistingProvider)
325 325
   {
326
-    $this->forExistingProvider = $forExistingProvider;
326
+	$this->forExistingProvider = $forExistingProvider;
327 327
   }
328 328
   public function getForExistingProvider()
329 329
   {
330
-    return $this->forExistingProvider;
330
+	return $this->forExistingProvider;
331 331
   }
332 332
   public function setKind($kind)
333 333
   {
334
-    $this->kind = $kind;
334
+	$this->kind = $kind;
335 335
   }
336 336
   public function getKind()
337 337
   {
338
-    return $this->kind;
338
+	return $this->kind;
339 339
   }
340 340
   public function setProviderId($providerId)
341 341
   {
342
-    $this->providerId = $providerId;
342
+	$this->providerId = $providerId;
343 343
   }
344 344
   public function getProviderId()
345 345
   {
346
-    return $this->providerId;
346
+	return $this->providerId;
347 347
   }
348 348
   public function setRegistered($registered)
349 349
   {
350
-    $this->registered = $registered;
350
+	$this->registered = $registered;
351 351
   }
352 352
   public function getRegistered()
353 353
   {
354
-    return $this->registered;
354
+	return $this->registered;
355 355
   }
356 356
 }
357 357
 
@@ -364,11 +364,11 @@  discard block
 block discarded – undo
364 364
 
365 365
   public function setKind($kind)
366 366
   {
367
-    $this->kind = $kind;
367
+	$this->kind = $kind;
368 368
   }
369 369
   public function getKind()
370 370
   {
371
-    return $this->kind;
371
+	return $this->kind;
372 372
   }
373 373
 }
374 374
 
@@ -385,27 +385,27 @@  discard block
 block discarded – undo
385 385
 
386 386
   public function setKind($kind)
387 387
   {
388
-    $this->kind = $kind;
388
+	$this->kind = $kind;
389 389
   }
390 390
   public function getKind()
391 391
   {
392
-    return $this->kind;
392
+	return $this->kind;
393 393
   }
394 394
   public function setNextPageToken($nextPageToken)
395 395
   {
396
-    $this->nextPageToken = $nextPageToken;
396
+	$this->nextPageToken = $nextPageToken;
397 397
   }
398 398
   public function getNextPageToken()
399 399
   {
400
-    return $this->nextPageToken;
400
+	return $this->nextPageToken;
401 401
   }
402 402
   public function setUsers($users)
403 403
   {
404
-    $this->users = $users;
404
+	$this->users = $users;
405 405
   }
406 406
   public function getUsers()
407 407
   {
408
-    return $this->users;
408
+	return $this->users;
409 409
   }
410 410
 }
411 411
 
@@ -421,19 +421,19 @@  discard block
 block discarded – undo
421 421
 
422 422
   public function setKind($kind)
423 423
   {
424
-    $this->kind = $kind;
424
+	$this->kind = $kind;
425 425
   }
426 426
   public function getKind()
427 427
   {
428
-    return $this->kind;
428
+	return $this->kind;
429 429
   }
430 430
   public function setUsers($users)
431 431
   {
432
-    $this->users = $users;
432
+	$this->users = $users;
433 433
   }
434 434
   public function getUsers()
435 435
   {
436
-    return $this->users;
436
+	return $this->users;
437 437
   }
438 438
 }
439 439
 
@@ -447,19 +447,19 @@  discard block
 block discarded – undo
447 447
 
448 448
   public function setKind($kind)
449 449
   {
450
-    $this->kind = $kind;
450
+	$this->kind = $kind;
451 451
   }
452 452
   public function getKind()
453 453
   {
454
-    return $this->kind;
454
+	return $this->kind;
455 455
   }
456 456
   public function setOobCode($oobCode)
457 457
   {
458
-    $this->oobCode = $oobCode;
458
+	$this->oobCode = $oobCode;
459 459
   }
460 460
   public function getOobCode()
461 461
   {
462
-    return $this->oobCode;
462
+	return $this->oobCode;
463 463
   }
464 464
 }
465 465
 
@@ -474,27 +474,27 @@  discard block
 block discarded – undo
474 474
 
475 475
   public function setKind($kind)
476 476
   {
477
-    $this->kind = $kind;
477
+	$this->kind = $kind;
478 478
   }
479 479
   public function getKind()
480 480
   {
481
-    return $this->kind;
481
+	return $this->kind;
482 482
   }
483 483
   public function setRecaptchaSiteKey($recaptchaSiteKey)
484 484
   {
485
-    $this->recaptchaSiteKey = $recaptchaSiteKey;
485
+	$this->recaptchaSiteKey = $recaptchaSiteKey;
486 486
   }
487 487
   public function getRecaptchaSiteKey()
488 488
   {
489
-    return $this->recaptchaSiteKey;
489
+	return $this->recaptchaSiteKey;
490 490
   }
491 491
   public function setRecaptchaStoken($recaptchaStoken)
492 492
   {
493
-    $this->recaptchaStoken = $recaptchaStoken;
493
+	$this->recaptchaStoken = $recaptchaStoken;
494 494
   }
495 495
   public function getRecaptchaStoken()
496 496
   {
497
-    return $this->recaptchaStoken;
497
+	return $this->recaptchaStoken;
498 498
   }
499 499
 }
500 500
 
@@ -516,83 +516,83 @@  discard block
 block discarded – undo
516 516
 
517 517
   public function setAppId($appId)
518 518
   {
519
-    $this->appId = $appId;
519
+	$this->appId = $appId;
520 520
   }
521 521
   public function getAppId()
522 522
   {
523
-    return $this->appId;
523
+	return $this->appId;
524 524
   }
525 525
   public function setClientId($clientId)
526 526
   {
527
-    $this->clientId = $clientId;
527
+	$this->clientId = $clientId;
528 528
   }
529 529
   public function getClientId()
530 530
   {
531
-    return $this->clientId;
531
+	return $this->clientId;
532 532
   }
533 533
   public function setContext($context)
534 534
   {
535
-    $this->context = $context;
535
+	$this->context = $context;
536 536
   }
537 537
   public function getContext()
538 538
   {
539
-    return $this->context;
539
+	return $this->context;
540 540
   }
541 541
   public function setContinueUri($continueUri)
542 542
   {
543
-    $this->continueUri = $continueUri;
543
+	$this->continueUri = $continueUri;
544 544
   }
545 545
   public function getContinueUri()
546 546
   {
547
-    return $this->continueUri;
547
+	return $this->continueUri;
548 548
   }
549 549
   public function setIdentifier($identifier)
550 550
   {
551
-    $this->identifier = $identifier;
551
+	$this->identifier = $identifier;
552 552
   }
553 553
   public function getIdentifier()
554 554
   {
555
-    return $this->identifier;
555
+	return $this->identifier;
556 556
   }
557 557
   public function setOauthConsumerKey($oauthConsumerKey)
558 558
   {
559
-    $this->oauthConsumerKey = $oauthConsumerKey;
559
+	$this->oauthConsumerKey = $oauthConsumerKey;
560 560
   }
561 561
   public function getOauthConsumerKey()
562 562
   {
563
-    return $this->oauthConsumerKey;
563
+	return $this->oauthConsumerKey;
564 564
   }
565 565
   public function setOauthScope($oauthScope)
566 566
   {
567
-    $this->oauthScope = $oauthScope;
567
+	$this->oauthScope = $oauthScope;
568 568
   }
569 569
   public function getOauthScope()
570 570
   {
571
-    return $this->oauthScope;
571
+	return $this->oauthScope;
572 572
   }
573 573
   public function setOpenidRealm($openidRealm)
574 574
   {
575
-    $this->openidRealm = $openidRealm;
575
+	$this->openidRealm = $openidRealm;
576 576
   }
577 577
   public function getOpenidRealm()
578 578
   {
579
-    return $this->openidRealm;
579
+	return $this->openidRealm;
580 580
   }
581 581
   public function setOtaApp($otaApp)
582 582
   {
583
-    $this->otaApp = $otaApp;
583
+	$this->otaApp = $otaApp;
584 584
   }
585 585
   public function getOtaApp()
586 586
   {
587
-    return $this->otaApp;
587
+	return $this->otaApp;
588 588
   }
589 589
   public function setProviderId($providerId)
590 590
   {
591
-    $this->providerId = $providerId;
591
+	$this->providerId = $providerId;
592 592
   }
593 593
   public function getProviderId()
594 594
   {
595
-    return $this->providerId;
595
+	return $this->providerId;
596 596
   }
597 597
 }
598 598
 
@@ -605,11 +605,11 @@  discard block
 block discarded – undo
605 605
 
606 606
   public function setLocalId($localId)
607 607
   {
608
-    $this->localId = $localId;
608
+	$this->localId = $localId;
609 609
   }
610 610
   public function getLocalId()
611 611
   {
612
-    return $this->localId;
612
+	return $this->localId;
613 613
   }
614 614
 }
615 615
 
@@ -623,19 +623,19 @@  discard block
 block discarded – undo
623 623
 
624 624
   public function setMaxResults($maxResults)
625 625
   {
626
-    $this->maxResults = $maxResults;
626
+	$this->maxResults = $maxResults;
627 627
   }
628 628
   public function getMaxResults()
629 629
   {
630
-    return $this->maxResults;
630
+	return $this->maxResults;
631 631
   }
632 632
   public function setNextPageToken($nextPageToken)
633 633
   {
634
-    $this->nextPageToken = $nextPageToken;
634
+	$this->nextPageToken = $nextPageToken;
635 635
   }
636 636
   public function getNextPageToken()
637 637
   {
638
-    return $this->nextPageToken;
638
+	return $this->nextPageToken;
639 639
   }
640 640
 }
641 641
 
@@ -651,27 +651,27 @@  discard block
 block discarded – undo
651 651
 
652 652
   public function setEmail($email)
653 653
   {
654
-    $this->email = $email;
654
+	$this->email = $email;
655 655
   }
656 656
   public function getEmail()
657 657
   {
658
-    return $this->email;
658
+	return $this->email;
659 659
   }
660 660
   public function setIdToken($idToken)
661 661
   {
662
-    $this->idToken = $idToken;
662
+	$this->idToken = $idToken;
663 663
   }
664 664
   public function getIdToken()
665 665
   {
666
-    return $this->idToken;
666
+	return $this->idToken;
667 667
   }
668 668
   public function setLocalId($localId)
669 669
   {
670
-    $this->localId = $localId;
670
+	$this->localId = $localId;
671 671
   }
672 672
   public function getLocalId()
673 673
   {
674
-    return $this->localId;
674
+	return $this->localId;
675 675
   }
676 676
 }
677 677
 
@@ -691,35 +691,35 @@  discard block
 block discarded – undo
691 691
 
692 692
   public function setEmail($email)
693 693
   {
694
-    $this->email = $email;
694
+	$this->email = $email;
695 695
   }
696 696
   public function getEmail()
697 697
   {
698
-    return $this->email;
698
+	return $this->email;
699 699
   }
700 700
   public function setNewPassword($newPassword)
701 701
   {
702
-    $this->newPassword = $newPassword;
702
+	$this->newPassword = $newPassword;
703 703
   }
704 704
   public function getNewPassword()
705 705
   {
706
-    return $this->newPassword;
706
+	return $this->newPassword;
707 707
   }
708 708
   public function setOldPassword($oldPassword)
709 709
   {
710
-    $this->oldPassword = $oldPassword;
710
+	$this->oldPassword = $oldPassword;
711 711
   }
712 712
   public function getOldPassword()
713 713
   {
714
-    return $this->oldPassword;
714
+	return $this->oldPassword;
715 715
   }
716 716
   public function setOobCode($oobCode)
717 717
   {
718
-    $this->oobCode = $oobCode;
718
+	$this->oobCode = $oobCode;
719 719
   }
720 720
   public function getOobCode()
721 721
   {
722
-    return $this->oobCode;
722
+	return $this->oobCode;
723 723
   }
724 724
 }
725 725
 
@@ -745,107 +745,107 @@  discard block
 block discarded – undo
745 745
 
746 746
   public function setCaptchaChallenge($captchaChallenge)
747 747
   {
748
-    $this->captchaChallenge = $captchaChallenge;
748
+	$this->captchaChallenge = $captchaChallenge;
749 749
   }
750 750
   public function getCaptchaChallenge()
751 751
   {
752
-    return $this->captchaChallenge;
752
+	return $this->captchaChallenge;
753 753
   }
754 754
   public function setCaptchaResponse($captchaResponse)
755 755
   {
756
-    $this->captchaResponse = $captchaResponse;
756
+	$this->captchaResponse = $captchaResponse;
757 757
   }
758 758
   public function getCaptchaResponse()
759 759
   {
760
-    return $this->captchaResponse;
760
+	return $this->captchaResponse;
761 761
   }
762 762
   public function setDisableUser($disableUser)
763 763
   {
764
-    $this->disableUser = $disableUser;
764
+	$this->disableUser = $disableUser;
765 765
   }
766 766
   public function getDisableUser()
767 767
   {
768
-    return $this->disableUser;
768
+	return $this->disableUser;
769 769
   }
770 770
   public function setDisplayName($displayName)
771 771
   {
772
-    $this->displayName = $displayName;
772
+	$this->displayName = $displayName;
773 773
   }
774 774
   public function getDisplayName()
775 775
   {
776
-    return $this->displayName;
776
+	return $this->displayName;
777 777
   }
778 778
   public function setEmail($email)
779 779
   {
780
-    $this->email = $email;
780
+	$this->email = $email;
781 781
   }
782 782
   public function getEmail()
783 783
   {
784
-    return $this->email;
784
+	return $this->email;
785 785
   }
786 786
   public function setEmailVerified($emailVerified)
787 787
   {
788
-    $this->emailVerified = $emailVerified;
788
+	$this->emailVerified = $emailVerified;
789 789
   }
790 790
   public function getEmailVerified()
791 791
   {
792
-    return $this->emailVerified;
792
+	return $this->emailVerified;
793 793
   }
794 794
   public function setIdToken($idToken)
795 795
   {
796
-    $this->idToken = $idToken;
796
+	$this->idToken = $idToken;
797 797
   }
798 798
   public function getIdToken()
799 799
   {
800
-    return $this->idToken;
800
+	return $this->idToken;
801 801
   }
802 802
   public function setLocalId($localId)
803 803
   {
804
-    $this->localId = $localId;
804
+	$this->localId = $localId;
805 805
   }
806 806
   public function getLocalId()
807 807
   {
808
-    return $this->localId;
808
+	return $this->localId;
809 809
   }
810 810
   public function setOobCode($oobCode)
811 811
   {
812
-    $this->oobCode = $oobCode;
812
+	$this->oobCode = $oobCode;
813 813
   }
814 814
   public function getOobCode()
815 815
   {
816
-    return $this->oobCode;
816
+	return $this->oobCode;
817 817
   }
818 818
   public function setPassword($password)
819 819
   {
820
-    $this->password = $password;
820
+	$this->password = $password;
821 821
   }
822 822
   public function getPassword()
823 823
   {
824
-    return $this->password;
824
+	return $this->password;
825 825
   }
826 826
   public function setProvider($provider)
827 827
   {
828
-    $this->provider = $provider;
828
+	$this->provider = $provider;
829 829
   }
830 830
   public function getProvider()
831 831
   {
832
-    return $this->provider;
832
+	return $this->provider;
833 833
   }
834 834
   public function setUpgradeToFederatedLogin($upgradeToFederatedLogin)
835 835
   {
836
-    $this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
836
+	$this->upgradeToFederatedLogin = $upgradeToFederatedLogin;
837 837
   }
838 838
   public function getUpgradeToFederatedLogin()
839 839
   {
840
-    return $this->upgradeToFederatedLogin;
840
+	return $this->upgradeToFederatedLogin;
841 841
   }
842 842
   public function setValidSince($validSince)
843 843
   {
844
-    $this->validSince = $validSince;
844
+	$this->validSince = $validSince;
845 845
   }
846 846
   public function getValidSince()
847 847
   {
848
-    return $this->validSince;
848
+	return $this->validSince;
849 849
   }
850 850
 }
851 851
 
@@ -865,51 +865,51 @@  discard block
 block discarded – undo
865 865
 
866 866
   public function setHashAlgorithm($hashAlgorithm)
867 867
   {
868
-    $this->hashAlgorithm = $hashAlgorithm;
868
+	$this->hashAlgorithm = $hashAlgorithm;
869 869
   }
870 870
   public function getHashAlgorithm()
871 871
   {
872
-    return $this->hashAlgorithm;
872
+	return $this->hashAlgorithm;
873 873
   }
874 874
   public function setMemoryCost($memoryCost)
875 875
   {
876
-    $this->memoryCost = $memoryCost;
876
+	$this->memoryCost = $memoryCost;
877 877
   }
878 878
   public function getMemoryCost()
879 879
   {
880
-    return $this->memoryCost;
880
+	return $this->memoryCost;
881 881
   }
882 882
   public function setRounds($rounds)
883 883
   {
884
-    $this->rounds = $rounds;
884
+	$this->rounds = $rounds;
885 885
   }
886 886
   public function getRounds()
887 887
   {
888
-    return $this->rounds;
888
+	return $this->rounds;
889 889
   }
890 890
   public function setSaltSeparator($saltSeparator)
891 891
   {
892
-    $this->saltSeparator = $saltSeparator;
892
+	$this->saltSeparator = $saltSeparator;
893 893
   }
894 894
   public function getSaltSeparator()
895 895
   {
896
-    return $this->saltSeparator;
896
+	return $this->saltSeparator;
897 897
   }
898 898
   public function setSignerKey($signerKey)
899 899
   {
900
-    $this->signerKey = $signerKey;
900
+	$this->signerKey = $signerKey;
901 901
   }
902 902
   public function getSignerKey()
903 903
   {
904
-    return $this->signerKey;
904
+	return $this->signerKey;
905 905
   }
906 906
   public function setUsers($users)
907 907
   {
908
-    $this->users = $users;
908
+	$this->users = $users;
909 909
   }
910 910
   public function getUsers()
911 911
   {
912
-    return $this->users;
912
+	return $this->users;
913 913
   }
914 914
 }
915 915
 
@@ -925,35 +925,35 @@  discard block
 block discarded – undo
925 925
 
926 926
   public function setPendingIdToken($pendingIdToken)
927 927
   {
928
-    $this->pendingIdToken = $pendingIdToken;
928
+	$this->pendingIdToken = $pendingIdToken;
929 929
   }
930 930
   public function getPendingIdToken()
931 931
   {
932
-    return $this->pendingIdToken;
932
+	return $this->pendingIdToken;
933 933
   }
934 934
   public function setPostBody($postBody)
935 935
   {
936
-    $this->postBody = $postBody;
936
+	$this->postBody = $postBody;
937 937
   }
938 938
   public function getPostBody()
939 939
   {
940
-    return $this->postBody;
940
+	return $this->postBody;
941 941
   }
942 942
   public function setRequestUri($requestUri)
943 943
   {
944
-    $this->requestUri = $requestUri;
944
+	$this->requestUri = $requestUri;
945 945
   }
946 946
   public function getRequestUri()
947 947
   {
948
-    return $this->requestUri;
948
+	return $this->requestUri;
949 949
   }
950 950
   public function setReturnRefreshToken($returnRefreshToken)
951 951
   {
952
-    $this->returnRefreshToken = $returnRefreshToken;
952
+	$this->returnRefreshToken = $returnRefreshToken;
953 953
   }
954 954
   public function getReturnRefreshToken()
955 955
   {
956
-    return $this->returnRefreshToken;
956
+	return $this->returnRefreshToken;
957 957
   }
958 958
 }
959 959
 
@@ -970,43 +970,43 @@  discard block
 block discarded – undo
970 970
 
971 971
   public function setCaptchaChallenge($captchaChallenge)
972 972
   {
973
-    $this->captchaChallenge = $captchaChallenge;
973
+	$this->captchaChallenge = $captchaChallenge;
974 974
   }
975 975
   public function getCaptchaChallenge()
976 976
   {
977
-    return $this->captchaChallenge;
977
+	return $this->captchaChallenge;
978 978
   }
979 979
   public function setCaptchaResponse($captchaResponse)
980 980
   {
981
-    $this->captchaResponse = $captchaResponse;
981
+	$this->captchaResponse = $captchaResponse;
982 982
   }
983 983
   public function getCaptchaResponse()
984 984
   {
985
-    return $this->captchaResponse;
985
+	return $this->captchaResponse;
986 986
   }
987 987
   public function setEmail($email)
988 988
   {
989
-    $this->email = $email;
989
+	$this->email = $email;
990 990
   }
991 991
   public function getEmail()
992 992
   {
993
-    return $this->email;
993
+	return $this->email;
994 994
   }
995 995
   public function setPassword($password)
996 996
   {
997
-    $this->password = $password;
997
+	$this->password = $password;
998 998
   }
999 999
   public function getPassword()
1000 1000
   {
1001
-    return $this->password;
1001
+	return $this->password;
1002 1002
   }
1003 1003
   public function setPendingIdToken($pendingIdToken)
1004 1004
   {
1005
-    $this->pendingIdToken = $pendingIdToken;
1005
+	$this->pendingIdToken = $pendingIdToken;
1006 1006
   }
1007 1007
   public function getPendingIdToken()
1008 1008
   {
1009
-    return $this->pendingIdToken;
1009
+	return $this->pendingIdToken;
1010 1010
   }
1011 1011
 }
1012 1012
 
@@ -1026,67 +1026,67 @@  discard block
 block discarded – undo
1026 1026
 
1027 1027
   public function setCaptchaResp($captchaResp)
1028 1028
   {
1029
-    $this->captchaResp = $captchaResp;
1029
+	$this->captchaResp = $captchaResp;
1030 1030
   }
1031 1031
   public function getCaptchaResp()
1032 1032
   {
1033
-    return $this->captchaResp;
1033
+	return $this->captchaResp;
1034 1034
   }
1035 1035
   public function setChallenge($challenge)
1036 1036
   {
1037
-    $this->challenge = $challenge;
1037
+	$this->challenge = $challenge;
1038 1038
   }
1039 1039
   public function getChallenge()
1040 1040
   {
1041
-    return $this->challenge;
1041
+	return $this->challenge;
1042 1042
   }
1043 1043
   public function setEmail($email)
1044 1044
   {
1045
-    $this->email = $email;
1045
+	$this->email = $email;
1046 1046
   }
1047 1047
   public function getEmail()
1048 1048
   {
1049
-    return $this->email;
1049
+	return $this->email;
1050 1050
   }
1051 1051
   public function setIdToken($idToken)
1052 1052
   {
1053
-    $this->idToken = $idToken;
1053
+	$this->idToken = $idToken;
1054 1054
   }
1055 1055
   public function getIdToken()
1056 1056
   {
1057
-    return $this->idToken;
1057
+	return $this->idToken;
1058 1058
   }
1059 1059
   public function setKind($kind)
1060 1060
   {
1061
-    $this->kind = $kind;
1061
+	$this->kind = $kind;
1062 1062
   }
1063 1063
   public function getKind()
1064 1064
   {
1065
-    return $this->kind;
1065
+	return $this->kind;
1066 1066
   }
1067 1067
   public function setNewEmail($newEmail)
1068 1068
   {
1069
-    $this->newEmail = $newEmail;
1069
+	$this->newEmail = $newEmail;
1070 1070
   }
1071 1071
   public function getNewEmail()
1072 1072
   {
1073
-    return $this->newEmail;
1073
+	return $this->newEmail;
1074 1074
   }
1075 1075
   public function setRequestType($requestType)
1076 1076
   {
1077
-    $this->requestType = $requestType;
1077
+	$this->requestType = $requestType;
1078 1078
   }
1079 1079
   public function getRequestType()
1080 1080
   {
1081
-    return $this->requestType;
1081
+	return $this->requestType;
1082 1082
   }
1083 1083
   public function setUserIp($userIp)
1084 1084
   {
1085
-    $this->userIp = $userIp;
1085
+	$this->userIp = $userIp;
1086 1086
   }
1087 1087
   public function getUserIp()
1088 1088
   {
1089
-    return $this->userIp;
1089
+	return $this->userIp;
1090 1090
   }
1091 1091
 }
1092 1092
 
@@ -1100,19 +1100,19 @@  discard block
 block discarded – undo
1100 1100
 
1101 1101
   public function setEmail($email)
1102 1102
   {
1103
-    $this->email = $email;
1103
+	$this->email = $email;
1104 1104
   }
1105 1105
   public function getEmail()
1106 1106
   {
1107
-    return $this->email;
1107
+	return $this->email;
1108 1108
   }
1109 1109
   public function setKind($kind)
1110 1110
   {
1111
-    $this->kind = $kind;
1111
+	$this->kind = $kind;
1112 1112
   }
1113 1113
   public function getKind()
1114 1114
   {
1115
-    return $this->kind;
1115
+	return $this->kind;
1116 1116
   }
1117 1117
 }
1118 1118
 
@@ -1131,43 +1131,43 @@  discard block
 block discarded – undo
1131 1131
 
1132 1132
   public function setDisplayName($displayName)
1133 1133
   {
1134
-    $this->displayName = $displayName;
1134
+	$this->displayName = $displayName;
1135 1135
   }
1136 1136
   public function getDisplayName()
1137 1137
   {
1138
-    return $this->displayName;
1138
+	return $this->displayName;
1139 1139
   }
1140 1140
   public function setEmail($email)
1141 1141
   {
1142
-    $this->email = $email;
1142
+	$this->email = $email;
1143 1143
   }
1144 1144
   public function getEmail()
1145 1145
   {
1146
-    return $this->email;
1146
+	return $this->email;
1147 1147
   }
1148 1148
   public function setIdToken($idToken)
1149 1149
   {
1150
-    $this->idToken = $idToken;
1150
+	$this->idToken = $idToken;
1151 1151
   }
1152 1152
   public function getIdToken()
1153 1153
   {
1154
-    return $this->idToken;
1154
+	return $this->idToken;
1155 1155
   }
1156 1156
   public function setKind($kind)
1157 1157
   {
1158
-    $this->kind = $kind;
1158
+	$this->kind = $kind;
1159 1159
   }
1160 1160
   public function getKind()
1161 1161
   {
1162
-    return $this->kind;
1162
+	return $this->kind;
1163 1163
   }
1164 1164
   public function setProviderUserInfo($providerUserInfo)
1165 1165
   {
1166
-    $this->providerUserInfo = $providerUserInfo;
1166
+	$this->providerUserInfo = $providerUserInfo;
1167 1167
   }
1168 1168
   public function getProviderUserInfo()
1169 1169
   {
1170
-    return $this->providerUserInfo;
1170
+	return $this->providerUserInfo;
1171 1171
   }
1172 1172
 }
1173 1173
 
@@ -1182,27 +1182,27 @@  discard block
 block discarded – undo
1182 1182
 
1183 1183
   public function setDisplayName($displayName)
1184 1184
   {
1185
-    $this->displayName = $displayName;
1185
+	$this->displayName = $displayName;
1186 1186
   }
1187 1187
   public function getDisplayName()
1188 1188
   {
1189
-    return $this->displayName;
1189
+	return $this->displayName;
1190 1190
   }
1191 1191
   public function setPhotoUrl($photoUrl)
1192 1192
   {
1193
-    $this->photoUrl = $photoUrl;
1193
+	$this->photoUrl = $photoUrl;
1194 1194
   }
1195 1195
   public function getPhotoUrl()
1196 1196
   {
1197
-    return $this->photoUrl;
1197
+	return $this->photoUrl;
1198 1198
   }
1199 1199
   public function setProviderId($providerId)
1200 1200
   {
1201
-    $this->providerId = $providerId;
1201
+	$this->providerId = $providerId;
1202 1202
   }
1203 1203
   public function getProviderId()
1204 1204
   {
1205
-    return $this->providerId;
1205
+	return $this->providerId;
1206 1206
   }
1207 1207
 }
1208 1208
 
@@ -1218,19 +1218,19 @@  discard block
 block discarded – undo
1218 1218
 
1219 1219
   public function setError($error)
1220 1220
   {
1221
-    $this->error = $error;
1221
+	$this->error = $error;
1222 1222
   }
1223 1223
   public function getError()
1224 1224
   {
1225
-    return $this->error;
1225
+	return $this->error;
1226 1226
   }
1227 1227
   public function setKind($kind)
1228 1228
   {
1229
-    $this->kind = $kind;
1229
+	$this->kind = $kind;
1230 1230
   }
1231 1231
   public function getKind()
1232 1232
   {
1233
-    return $this->kind;
1233
+	return $this->kind;
1234 1234
   }
1235 1235
 }
1236 1236
 
@@ -1244,19 +1244,19 @@  discard block
 block discarded – undo
1244 1244
 
1245 1245
   public function setIndex($index)
1246 1246
   {
1247
-    $this->index = $index;
1247
+	$this->index = $index;
1248 1248
   }
1249 1249
   public function getIndex()
1250 1250
   {
1251
-    return $this->index;
1251
+	return $this->index;
1252 1252
   }
1253 1253
   public function setMessage($message)
1254 1254
   {
1255
-    $this->message = $message;
1255
+	$this->message = $message;
1256 1256
   }
1257 1257
   public function getMessage()
1258 1258
   {
1259
-    return $this->message;
1259
+	return $this->message;
1260 1260
   }
1261 1261
 }
1262 1262
 
@@ -1282,99 +1282,99 @@  discard block
 block discarded – undo
1282 1282
 
1283 1283
   public function setDisabled($disabled)
1284 1284
   {
1285
-    $this->disabled = $disabled;
1285
+	$this->disabled = $disabled;
1286 1286
   }
1287 1287
   public function getDisabled()
1288 1288
   {
1289
-    return $this->disabled;
1289
+	return $this->disabled;
1290 1290
   }
1291 1291
   public function setDisplayName($displayName)
1292 1292
   {
1293
-    $this->displayName = $displayName;
1293
+	$this->displayName = $displayName;
1294 1294
   }
1295 1295
   public function getDisplayName()
1296 1296
   {
1297
-    return $this->displayName;
1297
+	return $this->displayName;
1298 1298
   }
1299 1299
   public function setEmail($email)
1300 1300
   {
1301
-    $this->email = $email;
1301
+	$this->email = $email;
1302 1302
   }
1303 1303
   public function getEmail()
1304 1304
   {
1305
-    return $this->email;
1305
+	return $this->email;
1306 1306
   }
1307 1307
   public function setEmailVerified($emailVerified)
1308 1308
   {
1309
-    $this->emailVerified = $emailVerified;
1309
+	$this->emailVerified = $emailVerified;
1310 1310
   }
1311 1311
   public function getEmailVerified()
1312 1312
   {
1313
-    return $this->emailVerified;
1313
+	return $this->emailVerified;
1314 1314
   }
1315 1315
   public function setLocalId($localId)
1316 1316
   {
1317
-    $this->localId = $localId;
1317
+	$this->localId = $localId;
1318 1318
   }
1319 1319
   public function getLocalId()
1320 1320
   {
1321
-    return $this->localId;
1321
+	return $this->localId;
1322 1322
   }
1323 1323
   public function setPasswordHash($passwordHash)
1324 1324
   {
1325
-    $this->passwordHash = $passwordHash;
1325
+	$this->passwordHash = $passwordHash;
1326 1326
   }
1327 1327
   public function getPasswordHash()
1328 1328
   {
1329
-    return $this->passwordHash;
1329
+	return $this->passwordHash;
1330 1330
   }
1331 1331
   public function setPasswordUpdatedAt($passwordUpdatedAt)
1332 1332
   {
1333
-    $this->passwordUpdatedAt = $passwordUpdatedAt;
1333
+	$this->passwordUpdatedAt = $passwordUpdatedAt;
1334 1334
   }
1335 1335
   public function getPasswordUpdatedAt()
1336 1336
   {
1337
-    return $this->passwordUpdatedAt;
1337
+	return $this->passwordUpdatedAt;
1338 1338
   }
1339 1339
   public function setPhotoUrl($photoUrl)
1340 1340
   {
1341
-    $this->photoUrl = $photoUrl;
1341
+	$this->photoUrl = $photoUrl;
1342 1342
   }
1343 1343
   public function getPhotoUrl()
1344 1344
   {
1345
-    return $this->photoUrl;
1345
+	return $this->photoUrl;
1346 1346
   }
1347 1347
   public function setProviderUserInfo($providerUserInfo)
1348 1348
   {
1349
-    $this->providerUserInfo = $providerUserInfo;
1349
+	$this->providerUserInfo = $providerUserInfo;
1350 1350
   }
1351 1351
   public function getProviderUserInfo()
1352 1352
   {
1353
-    return $this->providerUserInfo;
1353
+	return $this->providerUserInfo;
1354 1354
   }
1355 1355
   public function setSalt($salt)
1356 1356
   {
1357
-    $this->salt = $salt;
1357
+	$this->salt = $salt;
1358 1358
   }
1359 1359
   public function getSalt()
1360 1360
   {
1361
-    return $this->salt;
1361
+	return $this->salt;
1362 1362
   }
1363 1363
   public function setValidSince($validSince)
1364 1364
   {
1365
-    $this->validSince = $validSince;
1365
+	$this->validSince = $validSince;
1366 1366
   }
1367 1367
   public function getValidSince()
1368 1368
   {
1369
-    return $this->validSince;
1369
+	return $this->validSince;
1370 1370
   }
1371 1371
   public function setVersion($version)
1372 1372
   {
1373
-    $this->version = $version;
1373
+	$this->version = $version;
1374 1374
   }
1375 1375
   public function getVersion()
1376 1376
   {
1377
-    return $this->version;
1377
+	return $this->version;
1378 1378
   }
1379 1379
 }
1380 1380
 
@@ -1390,35 +1390,35 @@  discard block
 block discarded – undo
1390 1390
 
1391 1391
   public function setDisplayName($displayName)
1392 1392
   {
1393
-    $this->displayName = $displayName;
1393
+	$this->displayName = $displayName;
1394 1394
   }
1395 1395
   public function getDisplayName()
1396 1396
   {
1397
-    return $this->displayName;
1397
+	return $this->displayName;
1398 1398
   }
1399 1399
   public function setFederatedId($federatedId)
1400 1400
   {
1401
-    $this->federatedId = $federatedId;
1401
+	$this->federatedId = $federatedId;
1402 1402
   }
1403 1403
   public function getFederatedId()
1404 1404
   {
1405
-    return $this->federatedId;
1405
+	return $this->federatedId;
1406 1406
   }
1407 1407
   public function setPhotoUrl($photoUrl)
1408 1408
   {
1409
-    $this->photoUrl = $photoUrl;
1409
+	$this->photoUrl = $photoUrl;
1410 1410
   }
1411 1411
   public function getPhotoUrl()
1412 1412
   {
1413
-    return $this->photoUrl;
1413
+	return $this->photoUrl;
1414 1414
   }
1415 1415
   public function setProviderId($providerId)
1416 1416
   {
1417
-    $this->providerId = $providerId;
1417
+	$this->providerId = $providerId;
1418 1418
   }
1419 1419
   public function getProviderId()
1420 1420
   {
1421
-    return $this->providerId;
1421
+	return $this->providerId;
1422 1422
   }
1423 1423
 }
1424 1424
 
@@ -1461,243 +1461,243 @@  discard block
 block discarded – undo
1461 1461
 
1462 1462
   public function setAction($action)
1463 1463
   {
1464
-    $this->action = $action;
1464
+	$this->action = $action;
1465 1465
   }
1466 1466
   public function getAction()
1467 1467
   {
1468
-    return $this->action;
1468
+	return $this->action;
1469 1469
   }
1470 1470
   public function setAppInstallationUrl($appInstallationUrl)
1471 1471
   {
1472
-    $this->appInstallationUrl = $appInstallationUrl;
1472
+	$this->appInstallationUrl = $appInstallationUrl;
1473 1473
   }
1474 1474
   public function getAppInstallationUrl()
1475 1475
   {
1476
-    return $this->appInstallationUrl;
1476
+	return $this->appInstallationUrl;
1477 1477
   }
1478 1478
   public function setAppScheme($appScheme)
1479 1479
   {
1480
-    $this->appScheme = $appScheme;
1480
+	$this->appScheme = $appScheme;
1481 1481
   }
1482 1482
   public function getAppScheme()
1483 1483
   {
1484
-    return $this->appScheme;
1484
+	return $this->appScheme;
1485 1485
   }
1486 1486
   public function setContext($context)
1487 1487
   {
1488
-    $this->context = $context;
1488
+	$this->context = $context;
1489 1489
   }
1490 1490
   public function getContext()
1491 1491
   {
1492
-    return $this->context;
1492
+	return $this->context;
1493 1493
   }
1494 1494
   public function setDateOfBirth($dateOfBirth)
1495 1495
   {
1496
-    $this->dateOfBirth = $dateOfBirth;
1496
+	$this->dateOfBirth = $dateOfBirth;
1497 1497
   }
1498 1498
   public function getDateOfBirth()
1499 1499
   {
1500
-    return $this->dateOfBirth;
1500
+	return $this->dateOfBirth;
1501 1501
   }
1502 1502
   public function setDisplayName($displayName)
1503 1503
   {
1504
-    $this->displayName = $displayName;
1504
+	$this->displayName = $displayName;
1505 1505
   }
1506 1506
   public function getDisplayName()
1507 1507
   {
1508
-    return $this->displayName;
1508
+	return $this->displayName;
1509 1509
   }
1510 1510
   public function setEmail($email)
1511 1511
   {
1512
-    $this->email = $email;
1512
+	$this->email = $email;
1513 1513
   }
1514 1514
   public function getEmail()
1515 1515
   {
1516
-    return $this->email;
1516
+	return $this->email;
1517 1517
   }
1518 1518
   public function setEmailRecycled($emailRecycled)
1519 1519
   {
1520
-    $this->emailRecycled = $emailRecycled;
1520
+	$this->emailRecycled = $emailRecycled;
1521 1521
   }
1522 1522
   public function getEmailRecycled()
1523 1523
   {
1524
-    return $this->emailRecycled;
1524
+	return $this->emailRecycled;
1525 1525
   }
1526 1526
   public function setEmailVerified($emailVerified)
1527 1527
   {
1528
-    $this->emailVerified = $emailVerified;
1528
+	$this->emailVerified = $emailVerified;
1529 1529
   }
1530 1530
   public function getEmailVerified()
1531 1531
   {
1532
-    return $this->emailVerified;
1532
+	return $this->emailVerified;
1533 1533
   }
1534 1534
   public function setFederatedId($federatedId)
1535 1535
   {
1536
-    $this->federatedId = $federatedId;
1536
+	$this->federatedId = $federatedId;
1537 1537
   }
1538 1538
   public function getFederatedId()
1539 1539
   {
1540
-    return $this->federatedId;
1540
+	return $this->federatedId;
1541 1541
   }
1542 1542
   public function setFirstName($firstName)
1543 1543
   {
1544
-    $this->firstName = $firstName;
1544
+	$this->firstName = $firstName;
1545 1545
   }
1546 1546
   public function getFirstName()
1547 1547
   {
1548
-    return $this->firstName;
1548
+	return $this->firstName;
1549 1549
   }
1550 1550
   public function setFullName($fullName)
1551 1551
   {
1552
-    $this->fullName = $fullName;
1552
+	$this->fullName = $fullName;
1553 1553
   }
1554 1554
   public function getFullName()
1555 1555
   {
1556
-    return $this->fullName;
1556
+	return $this->fullName;
1557 1557
   }
1558 1558
   public function setIdToken($idToken)
1559 1559
   {
1560
-    $this->idToken = $idToken;
1560
+	$this->idToken = $idToken;
1561 1561
   }
1562 1562
   public function getIdToken()
1563 1563
   {
1564
-    return $this->idToken;
1564
+	return $this->idToken;
1565 1565
   }
1566 1566
   public function setInputEmail($inputEmail)
1567 1567
   {
1568
-    $this->inputEmail = $inputEmail;
1568
+	$this->inputEmail = $inputEmail;
1569 1569
   }
1570 1570
   public function getInputEmail()
1571 1571
   {
1572
-    return $this->inputEmail;
1572
+	return $this->inputEmail;
1573 1573
   }
1574 1574
   public function setKind($kind)
1575 1575
   {
1576
-    $this->kind = $kind;
1576
+	$this->kind = $kind;
1577 1577
   }
1578 1578
   public function getKind()
1579 1579
   {
1580
-    return $this->kind;
1580
+	return $this->kind;
1581 1581
   }
1582 1582
   public function setLanguage($language)
1583 1583
   {
1584
-    $this->language = $language;
1584
+	$this->language = $language;
1585 1585
   }
1586 1586
   public function getLanguage()
1587 1587
   {
1588
-    return $this->language;
1588
+	return $this->language;
1589 1589
   }
1590 1590
   public function setLastName($lastName)
1591 1591
   {
1592
-    $this->lastName = $lastName;
1592
+	$this->lastName = $lastName;
1593 1593
   }
1594 1594
   public function getLastName()
1595 1595
   {
1596
-    return $this->lastName;
1596
+	return $this->lastName;
1597 1597
   }
1598 1598
   public function setLocalId($localId)
1599 1599
   {
1600
-    $this->localId = $localId;
1600
+	$this->localId = $localId;
1601 1601
   }
1602 1602
   public function getLocalId()
1603 1603
   {
1604
-    return $this->localId;
1604
+	return $this->localId;
1605 1605
   }
1606 1606
   public function setNeedConfirmation($needConfirmation)
1607 1607
   {
1608
-    $this->needConfirmation = $needConfirmation;
1608
+	$this->needConfirmation = $needConfirmation;
1609 1609
   }
1610 1610
   public function getNeedConfirmation()
1611 1611
   {
1612
-    return $this->needConfirmation;
1612
+	return $this->needConfirmation;
1613 1613
   }
1614 1614
   public function setNickName($nickName)
1615 1615
   {
1616
-    $this->nickName = $nickName;
1616
+	$this->nickName = $nickName;
1617 1617
   }
1618 1618
   public function getNickName()
1619 1619
   {
1620
-    return $this->nickName;
1620
+	return $this->nickName;
1621 1621
   }
1622 1622
   public function setOauthAccessToken($oauthAccessToken)
1623 1623
   {
1624
-    $this->oauthAccessToken = $oauthAccessToken;
1624
+	$this->oauthAccessToken = $oauthAccessToken;
1625 1625
   }
1626 1626
   public function getOauthAccessToken()
1627 1627
   {
1628
-    return $this->oauthAccessToken;
1628
+	return $this->oauthAccessToken;
1629 1629
   }
1630 1630
   public function setOauthAuthorizationCode($oauthAuthorizationCode)
1631 1631
   {
1632
-    $this->oauthAuthorizationCode = $oauthAuthorizationCode;
1632
+	$this->oauthAuthorizationCode = $oauthAuthorizationCode;
1633 1633
   }
1634 1634
   public function getOauthAuthorizationCode()
1635 1635
   {
1636
-    return $this->oauthAuthorizationCode;
1636
+	return $this->oauthAuthorizationCode;
1637 1637
   }
1638 1638
   public function setOauthExpireIn($oauthExpireIn)
1639 1639
   {
1640
-    $this->oauthExpireIn = $oauthExpireIn;
1640
+	$this->oauthExpireIn = $oauthExpireIn;
1641 1641
   }
1642 1642
   public function getOauthExpireIn()
1643 1643
   {
1644
-    return $this->oauthExpireIn;
1644
+	return $this->oauthExpireIn;
1645 1645
   }
1646 1646
   public function setOauthRequestToken($oauthRequestToken)
1647 1647
   {
1648
-    $this->oauthRequestToken = $oauthRequestToken;
1648
+	$this->oauthRequestToken = $oauthRequestToken;
1649 1649
   }
1650 1650
   public function getOauthRequestToken()
1651 1651
   {
1652
-    return $this->oauthRequestToken;
1652
+	return $this->oauthRequestToken;
1653 1653
   }
1654 1654
   public function setOauthScope($oauthScope)
1655 1655
   {
1656
-    $this->oauthScope = $oauthScope;
1656
+	$this->oauthScope = $oauthScope;
1657 1657
   }
1658 1658
   public function getOauthScope()
1659 1659
   {
1660
-    return $this->oauthScope;
1660
+	return $this->oauthScope;
1661 1661
   }
1662 1662
   public function setOriginalEmail($originalEmail)
1663 1663
   {
1664
-    $this->originalEmail = $originalEmail;
1664
+	$this->originalEmail = $originalEmail;
1665 1665
   }
1666 1666
   public function getOriginalEmail()
1667 1667
   {
1668
-    return $this->originalEmail;
1668
+	return $this->originalEmail;
1669 1669
   }
1670 1670
   public function setPhotoUrl($photoUrl)
1671 1671
   {
1672
-    $this->photoUrl = $photoUrl;
1672
+	$this->photoUrl = $photoUrl;
1673 1673
   }
1674 1674
   public function getPhotoUrl()
1675 1675
   {
1676
-    return $this->photoUrl;
1676
+	return $this->photoUrl;
1677 1677
   }
1678 1678
   public function setProviderId($providerId)
1679 1679
   {
1680
-    $this->providerId = $providerId;
1680
+	$this->providerId = $providerId;
1681 1681
   }
1682 1682
   public function getProviderId()
1683 1683
   {
1684
-    return $this->providerId;
1684
+	return $this->providerId;
1685 1685
   }
1686 1686
   public function setTimeZone($timeZone)
1687 1687
   {
1688
-    $this->timeZone = $timeZone;
1688
+	$this->timeZone = $timeZone;
1689 1689
   }
1690 1690
   public function getTimeZone()
1691 1691
   {
1692
-    return $this->timeZone;
1692
+	return $this->timeZone;
1693 1693
   }
1694 1694
   public function setVerifiedProvider($verifiedProvider)
1695 1695
   {
1696
-    $this->verifiedProvider = $verifiedProvider;
1696
+	$this->verifiedProvider = $verifiedProvider;
1697 1697
   }
1698 1698
   public function getVerifiedProvider()
1699 1699
   {
1700
-    return $this->verifiedProvider;
1700
+	return $this->verifiedProvider;
1701 1701
   }
1702 1702
 }
1703 1703
 
@@ -1716,58 +1716,58 @@  discard block
 block discarded – undo
1716 1716
 
1717 1717
   public function setDisplayName($displayName)
1718 1718
   {
1719
-    $this->displayName = $displayName;
1719
+	$this->displayName = $displayName;
1720 1720
   }
1721 1721
   public function getDisplayName()
1722 1722
   {
1723
-    return $this->displayName;
1723
+	return $this->displayName;
1724 1724
   }
1725 1725
   public function setEmail($email)
1726 1726
   {
1727
-    $this->email = $email;
1727
+	$this->email = $email;
1728 1728
   }
1729 1729
   public function getEmail()
1730 1730
   {
1731
-    return $this->email;
1731
+	return $this->email;
1732 1732
   }
1733 1733
   public function setIdToken($idToken)
1734 1734
   {
1735
-    $this->idToken = $idToken;
1735
+	$this->idToken = $idToken;
1736 1736
   }
1737 1737
   public function getIdToken()
1738 1738
   {
1739
-    return $this->idToken;
1739
+	return $this->idToken;
1740 1740
   }
1741 1741
   public function setKind($kind)
1742 1742
   {
1743
-    $this->kind = $kind;
1743
+	$this->kind = $kind;
1744 1744
   }
1745 1745
   public function getKind()
1746 1746
   {
1747
-    return $this->kind;
1747
+	return $this->kind;
1748 1748
   }
1749 1749
   public function setLocalId($localId)
1750 1750
   {
1751
-    $this->localId = $localId;
1751
+	$this->localId = $localId;
1752 1752
   }
1753 1753
   public function getLocalId()
1754 1754
   {
1755
-    return $this->localId;
1755
+	return $this->localId;
1756 1756
   }
1757 1757
   public function setPhotoUrl($photoUrl)
1758 1758
   {
1759
-    $this->photoUrl = $photoUrl;
1759
+	$this->photoUrl = $photoUrl;
1760 1760
   }
1761 1761
   public function getPhotoUrl()
1762 1762
   {
1763
-    return $this->photoUrl;
1763
+	return $this->photoUrl;
1764 1764
   }
1765 1765
   public function setRegistered($registered)
1766 1766
   {
1767
-    $this->registered = $registered;
1767
+	$this->registered = $registered;
1768 1768
   }
1769 1769
   public function getRegistered()
1770 1770
   {
1771
-    return $this->registered;
1771
+	return $this->registered;
1772 1772
   }
1773 1773
 }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -58,47 +58,47 @@
 block discarded – undo
58 58
               'path' => 'createAuthUri',
59 59
               'httpMethod' => 'POST',
60 60
               'parameters' => array(),
61
-            ),'deleteAccount' => array(
61
+            ), 'deleteAccount' => array(
62 62
               'path' => 'deleteAccount',
63 63
               'httpMethod' => 'POST',
64 64
               'parameters' => array(),
65
-            ),'downloadAccount' => array(
65
+            ), 'downloadAccount' => array(
66 66
               'path' => 'downloadAccount',
67 67
               'httpMethod' => 'POST',
68 68
               'parameters' => array(),
69
-            ),'getAccountInfo' => array(
69
+            ), 'getAccountInfo' => array(
70 70
               'path' => 'getAccountInfo',
71 71
               'httpMethod' => 'POST',
72 72
               'parameters' => array(),
73
-            ),'getOobConfirmationCode' => array(
73
+            ), 'getOobConfirmationCode' => array(
74 74
               'path' => 'getOobConfirmationCode',
75 75
               'httpMethod' => 'POST',
76 76
               'parameters' => array(),
77
-            ),'getPublicKeys' => array(
77
+            ), 'getPublicKeys' => array(
78 78
               'path' => 'publicKeys',
79 79
               'httpMethod' => 'GET',
80 80
               'parameters' => array(),
81
-            ),'getRecaptchaParam' => array(
81
+            ), 'getRecaptchaParam' => array(
82 82
               'path' => 'getRecaptchaParam',
83 83
               'httpMethod' => 'GET',
84 84
               'parameters' => array(),
85
-            ),'resetPassword' => array(
85
+            ), 'resetPassword' => array(
86 86
               'path' => 'resetPassword',
87 87
               'httpMethod' => 'POST',
88 88
               'parameters' => array(),
89
-            ),'setAccountInfo' => array(
89
+            ), 'setAccountInfo' => array(
90 90
               'path' => 'setAccountInfo',
91 91
               'httpMethod' => 'POST',
92 92
               'parameters' => array(),
93
-            ),'uploadAccount' => array(
93
+            ), 'uploadAccount' => array(
94 94
               'path' => 'uploadAccount',
95 95
               'httpMethod' => 'POST',
96 96
               'parameters' => array(),
97
-            ),'verifyAssertion' => array(
97
+            ), 'verifyAssertion' => array(
98 98
               'path' => 'verifyAssertion',
99 99
               'httpMethod' => 'POST',
100 100
               'parameters' => array(),
101
-            ),'verifyPassword' => array(
101
+            ), 'verifyPassword' => array(
102 102
               'path' => 'verifyPassword',
103 103
               'httpMethod' => 'POST',
104 104
               'parameters' => array(),
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Licensing.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
    *
259 259
    * @param string $productId Name for product
260 260
    * @param string $skuId Name for sku
261
-   * @param Google_LicenseAssignmentInsert $postBody
261
+   * @param Google_Service_Licensing_LicenseAssignmentInsert $postBody
262 262
    * @param array $optParams Optional parameters.
263 263
    * @return Google_Service_Licensing_LicenseAssignment
264 264
    */
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
    * @param string $productId Name for product
322 322
    * @param string $skuId Name for sku for which license would be revoked
323 323
    * @param string $userId email id or unique Id of the user
324
-   * @param Google_LicenseAssignment $postBody
324
+   * @param Google_Service_Licensing_LicenseAssignment $postBody
325 325
    * @param array $optParams Optional parameters.
326 326
    * @return Google_Service_Licensing_LicenseAssignment
327 327
    */
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
    * @param string $productId Name for product
339 339
    * @param string $skuId Name for sku for which license would be revoked
340 340
    * @param string $userId email id or unique Id of the user
341
-   * @param Google_LicenseAssignment $postBody
341
+   * @param Google_Service_Licensing_LicenseAssignment $postBody
342 342
    * @param array $optParams Optional parameters.
343 343
    * @return Google_Service_Licensing_LicenseAssignment
344 344
    */
Please login to merge, or discard this patch.
Indentation   +205 added lines, -205 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View and manage Google Apps licenses for your domain. */
34 34
   const APPS_LICENSING =
35
-      "https://www.googleapis.com/auth/apps.licensing";
35
+	  "https://www.googleapis.com/auth/apps.licensing";
36 36
 
37 37
   public $licenseAssignments;
38 38
   
@@ -44,168 +44,168 @@  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 = 'apps/licensing/v1/product/';
50
-    $this->version = 'v1';
51
-    $this->serviceName = 'licensing';
47
+	parent::__construct($client);
48
+	$this->rootUrl = 'https://www.googleapis.com/';
49
+	$this->servicePath = 'apps/licensing/v1/product/';
50
+	$this->version = 'v1';
51
+	$this->serviceName = 'licensing';
52 52
 
53
-    $this->licenseAssignments = new Google_Service_Licensing_LicenseAssignments_Resource(
54
-        $this,
55
-        $this->serviceName,
56
-        'licenseAssignments',
57
-        array(
58
-          'methods' => array(
59
-            'delete' => array(
60
-              'path' => '{productId}/sku/{skuId}/user/{userId}',
61
-              'httpMethod' => 'DELETE',
62
-              'parameters' => array(
63
-                'productId' => array(
64
-                  'location' => 'path',
65
-                  'type' => 'string',
66
-                  'required' => true,
67
-                ),
68
-                'skuId' => array(
69
-                  'location' => 'path',
70
-                  'type' => 'string',
71
-                  'required' => true,
72
-                ),
73
-                'userId' => array(
74
-                  'location' => 'path',
75
-                  'type' => 'string',
76
-                  'required' => true,
77
-                ),
78
-              ),
79
-            ),'get' => array(
80
-              'path' => '{productId}/sku/{skuId}/user/{userId}',
81
-              'httpMethod' => 'GET',
82
-              'parameters' => array(
83
-                'productId' => array(
84
-                  'location' => 'path',
85
-                  'type' => 'string',
86
-                  'required' => true,
87
-                ),
88
-                'skuId' => array(
89
-                  'location' => 'path',
90
-                  'type' => 'string',
91
-                  'required' => true,
92
-                ),
93
-                'userId' => array(
94
-                  'location' => 'path',
95
-                  'type' => 'string',
96
-                  'required' => true,
97
-                ),
98
-              ),
99
-            ),'insert' => array(
100
-              'path' => '{productId}/sku/{skuId}/user',
101
-              'httpMethod' => 'POST',
102
-              'parameters' => array(
103
-                'productId' => array(
104
-                  'location' => 'path',
105
-                  'type' => 'string',
106
-                  'required' => true,
107
-                ),
108
-                'skuId' => array(
109
-                  'location' => 'path',
110
-                  'type' => 'string',
111
-                  'required' => true,
112
-                ),
113
-              ),
114
-            ),'listForProduct' => array(
115
-              'path' => '{productId}/users',
116
-              'httpMethod' => 'GET',
117
-              'parameters' => array(
118
-                'productId' => array(
119
-                  'location' => 'path',
120
-                  'type' => 'string',
121
-                  'required' => true,
122
-                ),
123
-                'customerId' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                  'required' => true,
127
-                ),
128
-                'pageToken' => array(
129
-                  'location' => 'query',
130
-                  'type' => 'string',
131
-                ),
132
-                'maxResults' => array(
133
-                  'location' => 'query',
134
-                  'type' => 'integer',
135
-                ),
136
-              ),
137
-            ),'listForProductAndSku' => array(
138
-              'path' => '{productId}/sku/{skuId}/users',
139
-              'httpMethod' => 'GET',
140
-              'parameters' => array(
141
-                'productId' => array(
142
-                  'location' => 'path',
143
-                  'type' => 'string',
144
-                  'required' => true,
145
-                ),
146
-                'skuId' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'customerId' => array(
152
-                  'location' => 'query',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-                'pageToken' => array(
157
-                  'location' => 'query',
158
-                  'type' => 'string',
159
-                ),
160
-                'maxResults' => array(
161
-                  'location' => 'query',
162
-                  'type' => 'integer',
163
-                ),
164
-              ),
165
-            ),'patch' => array(
166
-              'path' => '{productId}/sku/{skuId}/user/{userId}',
167
-              'httpMethod' => 'PATCH',
168
-              'parameters' => array(
169
-                'productId' => array(
170
-                  'location' => 'path',
171
-                  'type' => 'string',
172
-                  'required' => true,
173
-                ),
174
-                'skuId' => array(
175
-                  'location' => 'path',
176
-                  'type' => 'string',
177
-                  'required' => true,
178
-                ),
179
-                'userId' => array(
180
-                  'location' => 'path',
181
-                  'type' => 'string',
182
-                  'required' => true,
183
-                ),
184
-              ),
185
-            ),'update' => array(
186
-              'path' => '{productId}/sku/{skuId}/user/{userId}',
187
-              'httpMethod' => 'PUT',
188
-              'parameters' => array(
189
-                'productId' => array(
190
-                  'location' => 'path',
191
-                  'type' => 'string',
192
-                  'required' => true,
193
-                ),
194
-                'skuId' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-                'userId' => array(
200
-                  'location' => 'path',
201
-                  'type' => 'string',
202
-                  'required' => true,
203
-                ),
204
-              ),
205
-            ),
206
-          )
207
-        )
208
-    );
53
+	$this->licenseAssignments = new Google_Service_Licensing_LicenseAssignments_Resource(
54
+		$this,
55
+		$this->serviceName,
56
+		'licenseAssignments',
57
+		array(
58
+		  'methods' => array(
59
+			'delete' => array(
60
+			  'path' => '{productId}/sku/{skuId}/user/{userId}',
61
+			  'httpMethod' => 'DELETE',
62
+			  'parameters' => array(
63
+				'productId' => array(
64
+				  'location' => 'path',
65
+				  'type' => 'string',
66
+				  'required' => true,
67
+				),
68
+				'skuId' => array(
69
+				  'location' => 'path',
70
+				  'type' => 'string',
71
+				  'required' => true,
72
+				),
73
+				'userId' => array(
74
+				  'location' => 'path',
75
+				  'type' => 'string',
76
+				  'required' => true,
77
+				),
78
+			  ),
79
+			),'get' => array(
80
+			  'path' => '{productId}/sku/{skuId}/user/{userId}',
81
+			  'httpMethod' => 'GET',
82
+			  'parameters' => array(
83
+				'productId' => array(
84
+				  'location' => 'path',
85
+				  'type' => 'string',
86
+				  'required' => true,
87
+				),
88
+				'skuId' => array(
89
+				  'location' => 'path',
90
+				  'type' => 'string',
91
+				  'required' => true,
92
+				),
93
+				'userId' => array(
94
+				  'location' => 'path',
95
+				  'type' => 'string',
96
+				  'required' => true,
97
+				),
98
+			  ),
99
+			),'insert' => array(
100
+			  'path' => '{productId}/sku/{skuId}/user',
101
+			  'httpMethod' => 'POST',
102
+			  'parameters' => array(
103
+				'productId' => array(
104
+				  'location' => 'path',
105
+				  'type' => 'string',
106
+				  'required' => true,
107
+				),
108
+				'skuId' => array(
109
+				  'location' => 'path',
110
+				  'type' => 'string',
111
+				  'required' => true,
112
+				),
113
+			  ),
114
+			),'listForProduct' => array(
115
+			  'path' => '{productId}/users',
116
+			  'httpMethod' => 'GET',
117
+			  'parameters' => array(
118
+				'productId' => array(
119
+				  'location' => 'path',
120
+				  'type' => 'string',
121
+				  'required' => true,
122
+				),
123
+				'customerId' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				  'required' => true,
127
+				),
128
+				'pageToken' => array(
129
+				  'location' => 'query',
130
+				  'type' => 'string',
131
+				),
132
+				'maxResults' => array(
133
+				  'location' => 'query',
134
+				  'type' => 'integer',
135
+				),
136
+			  ),
137
+			),'listForProductAndSku' => array(
138
+			  'path' => '{productId}/sku/{skuId}/users',
139
+			  'httpMethod' => 'GET',
140
+			  'parameters' => array(
141
+				'productId' => array(
142
+				  'location' => 'path',
143
+				  'type' => 'string',
144
+				  'required' => true,
145
+				),
146
+				'skuId' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'customerId' => array(
152
+				  'location' => 'query',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+				'pageToken' => array(
157
+				  'location' => 'query',
158
+				  'type' => 'string',
159
+				),
160
+				'maxResults' => array(
161
+				  'location' => 'query',
162
+				  'type' => 'integer',
163
+				),
164
+			  ),
165
+			),'patch' => array(
166
+			  'path' => '{productId}/sku/{skuId}/user/{userId}',
167
+			  'httpMethod' => 'PATCH',
168
+			  'parameters' => array(
169
+				'productId' => array(
170
+				  'location' => 'path',
171
+				  'type' => 'string',
172
+				  'required' => true,
173
+				),
174
+				'skuId' => array(
175
+				  'location' => 'path',
176
+				  'type' => 'string',
177
+				  'required' => true,
178
+				),
179
+				'userId' => array(
180
+				  'location' => 'path',
181
+				  'type' => 'string',
182
+				  'required' => true,
183
+				),
184
+			  ),
185
+			),'update' => array(
186
+			  'path' => '{productId}/sku/{skuId}/user/{userId}',
187
+			  'httpMethod' => 'PUT',
188
+			  'parameters' => array(
189
+				'productId' => array(
190
+				  'location' => 'path',
191
+				  'type' => 'string',
192
+				  'required' => true,
193
+				),
194
+				'skuId' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+				'userId' => array(
200
+				  'location' => 'path',
201
+				  'type' => 'string',
202
+				  'required' => true,
203
+				),
204
+			  ),
205
+			),
206
+		  )
207
+		)
208
+	);
209 209
   }
210 210
 }
211 211
 
@@ -231,9 +231,9 @@  discard block
 block discarded – undo
231 231
    */
232 232
   public function delete($productId, $skuId, $userId, $optParams = array())
233 233
   {
234
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
235
-    $params = array_merge($params, $optParams);
236
-    return $this->call('delete', array($params));
234
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
235
+	$params = array_merge($params, $optParams);
236
+	return $this->call('delete', array($params));
237 237
   }
238 238
 
239 239
   /**
@@ -248,9 +248,9 @@  discard block
 block discarded – undo
248 248
    */
249 249
   public function get($productId, $skuId, $userId, $optParams = array())
250 250
   {
251
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
252
-    $params = array_merge($params, $optParams);
253
-    return $this->call('get', array($params), "Google_Service_Licensing_LicenseAssignment");
251
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId);
252
+	$params = array_merge($params, $optParams);
253
+	return $this->call('get', array($params), "Google_Service_Licensing_LicenseAssignment");
254 254
   }
255 255
 
256 256
   /**
@@ -264,9 +264,9 @@  discard block
 block discarded – undo
264 264
    */
265 265
   public function insert($productId, $skuId, Google_Service_Licensing_LicenseAssignmentInsert $postBody, $optParams = array())
266 266
   {
267
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'postBody' => $postBody);
268
-    $params = array_merge($params, $optParams);
269
-    return $this->call('insert', array($params), "Google_Service_Licensing_LicenseAssignment");
267
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'postBody' => $postBody);
268
+	$params = array_merge($params, $optParams);
269
+	return $this->call('insert', array($params), "Google_Service_Licensing_LicenseAssignment");
270 270
   }
271 271
 
272 272
   /**
@@ -286,9 +286,9 @@  discard block
 block discarded – undo
286 286
    */
287 287
   public function listForProduct($productId, $customerId, $optParams = array())
288 288
   {
289
-    $params = array('productId' => $productId, 'customerId' => $customerId);
290
-    $params = array_merge($params, $optParams);
291
-    return $this->call('listForProduct', array($params), "Google_Service_Licensing_LicenseAssignmentList");
289
+	$params = array('productId' => $productId, 'customerId' => $customerId);
290
+	$params = array_merge($params, $optParams);
291
+	return $this->call('listForProduct', array($params), "Google_Service_Licensing_LicenseAssignmentList");
292 292
   }
293 293
 
294 294
   /**
@@ -309,9 +309,9 @@  discard block
 block discarded – undo
309 309
    */
310 310
   public function listForProductAndSku($productId, $skuId, $customerId, $optParams = array())
311 311
   {
312
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'customerId' => $customerId);
313
-    $params = array_merge($params, $optParams);
314
-    return $this->call('listForProductAndSku', array($params), "Google_Service_Licensing_LicenseAssignmentList");
312
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'customerId' => $customerId);
313
+	$params = array_merge($params, $optParams);
314
+	return $this->call('listForProductAndSku', array($params), "Google_Service_Licensing_LicenseAssignmentList");
315 315
   }
316 316
 
317 317
   /**
@@ -327,9 +327,9 @@  discard block
 block discarded – undo
327 327
    */
328 328
   public function patch($productId, $skuId, $userId, Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array())
329 329
   {
330
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
331
-    $params = array_merge($params, $optParams);
332
-    return $this->call('patch', array($params), "Google_Service_Licensing_LicenseAssignment");
330
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
331
+	$params = array_merge($params, $optParams);
332
+	return $this->call('patch', array($params), "Google_Service_Licensing_LicenseAssignment");
333 333
   }
334 334
 
335 335
   /**
@@ -344,9 +344,9 @@  discard block
 block discarded – undo
344 344
    */
345 345
   public function update($productId, $skuId, $userId, Google_Service_Licensing_LicenseAssignment $postBody, $optParams = array())
346 346
   {
347
-    $params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
348
-    $params = array_merge($params, $optParams);
349
-    return $this->call('update', array($params), "Google_Service_Licensing_LicenseAssignment");
347
+	$params = array('productId' => $productId, 'skuId' => $skuId, 'userId' => $userId, 'postBody' => $postBody);
348
+	$params = array_merge($params, $optParams);
349
+	return $this->call('update', array($params), "Google_Service_Licensing_LicenseAssignment");
350 350
   }
351 351
 }
352 352
 
@@ -367,51 +367,51 @@  discard block
 block discarded – undo
367 367
 
368 368
   public function setEtags($etags)
369 369
   {
370
-    $this->etags = $etags;
370
+	$this->etags = $etags;
371 371
   }
372 372
   public function getEtags()
373 373
   {
374
-    return $this->etags;
374
+	return $this->etags;
375 375
   }
376 376
   public function setKind($kind)
377 377
   {
378
-    $this->kind = $kind;
378
+	$this->kind = $kind;
379 379
   }
380 380
   public function getKind()
381 381
   {
382
-    return $this->kind;
382
+	return $this->kind;
383 383
   }
384 384
   public function setProductId($productId)
385 385
   {
386
-    $this->productId = $productId;
386
+	$this->productId = $productId;
387 387
   }
388 388
   public function getProductId()
389 389
   {
390
-    return $this->productId;
390
+	return $this->productId;
391 391
   }
392 392
   public function setSelfLink($selfLink)
393 393
   {
394
-    $this->selfLink = $selfLink;
394
+	$this->selfLink = $selfLink;
395 395
   }
396 396
   public function getSelfLink()
397 397
   {
398
-    return $this->selfLink;
398
+	return $this->selfLink;
399 399
   }
400 400
   public function setSkuId($skuId)
401 401
   {
402
-    $this->skuId = $skuId;
402
+	$this->skuId = $skuId;
403 403
   }
404 404
   public function getSkuId()
405 405
   {
406
-    return $this->skuId;
406
+	return $this->skuId;
407 407
   }
408 408
   public function setUserId($userId)
409 409
   {
410
-    $this->userId = $userId;
410
+	$this->userId = $userId;
411 411
   }
412 412
   public function getUserId()
413 413
   {
414
-    return $this->userId;
414
+	return $this->userId;
415 415
   }
416 416
 }
417 417
 
@@ -424,11 +424,11 @@  discard block
 block discarded – undo
424 424
 
425 425
   public function setUserId($userId)
426 426
   {
427
-    $this->userId = $userId;
427
+	$this->userId = $userId;
428 428
   }
429 429
   public function getUserId()
430 430
   {
431
-    return $this->userId;
431
+	return $this->userId;
432 432
   }
433 433
 }
434 434
 
@@ -446,34 +446,34 @@  discard block
 block discarded – undo
446 446
 
447 447
   public function setEtag($etag)
448 448
   {
449
-    $this->etag = $etag;
449
+	$this->etag = $etag;
450 450
   }
451 451
   public function getEtag()
452 452
   {
453
-    return $this->etag;
453
+	return $this->etag;
454 454
   }
455 455
   public function setItems($items)
456 456
   {
457
-    $this->items = $items;
457
+	$this->items = $items;
458 458
   }
459 459
   public function getItems()
460 460
   {
461
-    return $this->items;
461
+	return $this->items;
462 462
   }
463 463
   public function setKind($kind)
464 464
   {
465
-    $this->kind = $kind;
465
+	$this->kind = $kind;
466 466
   }
467 467
   public function getKind()
468 468
   {
469
-    return $this->kind;
469
+	return $this->kind;
470 470
   }
471 471
   public function setNextPageToken($nextPageToken)
472 472
   {
473
-    $this->nextPageToken = $nextPageToken;
473
+	$this->nextPageToken = $nextPageToken;
474 474
   }
475 475
   public function getNextPageToken()
476 476
   {
477
-    return $this->nextPageToken;
477
+	return $this->nextPageToken;
478 478
   }
479 479
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
                   'required' => true,
77 77
                 ),
78 78
               ),
79
-            ),'get' => array(
79
+            ), 'get' => array(
80 80
               'path' => '{productId}/sku/{skuId}/user/{userId}',
81 81
               'httpMethod' => 'GET',
82 82
               'parameters' => array(
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
                   'required' => true,
97 97
                 ),
98 98
               ),
99
-            ),'insert' => array(
99
+            ), 'insert' => array(
100 100
               'path' => '{productId}/sku/{skuId}/user',
101 101
               'httpMethod' => 'POST',
102 102
               'parameters' => array(
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
                   'required' => true,
112 112
                 ),
113 113
               ),
114
-            ),'listForProduct' => array(
114
+            ), 'listForProduct' => array(
115 115
               'path' => '{productId}/users',
116 116
               'httpMethod' => 'GET',
117 117
               'parameters' => array(
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
                   'type' => 'integer',
135 135
                 ),
136 136
               ),
137
-            ),'listForProductAndSku' => array(
137
+            ), 'listForProductAndSku' => array(
138 138
               'path' => '{productId}/sku/{skuId}/users',
139 139
               'httpMethod' => 'GET',
140 140
               'parameters' => array(
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
                   'type' => 'integer',
163 163
                 ),
164 164
               ),
165
-            ),'patch' => array(
165
+            ), 'patch' => array(
166 166
               'path' => '{productId}/sku/{skuId}/user/{userId}',
167 167
               'httpMethod' => 'PATCH',
168 168
               'parameters' => array(
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
                   'required' => true,
183 183
                 ),
184 184
               ),
185
-            ),'update' => array(
185
+            ), 'update' => array(
186 186
               'path' => '{productId}/sku/{skuId}/user/{userId}',
187 187
               'httpMethod' => 'PUT',
188 188
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Logging.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -533,7 +533,7 @@  discard block
 block discarded – undo
533 533
    * which to create a sink.
534 534
    * @param string $logServicesId Part of `serviceName`. See documentation of
535 535
    * `projectsId`.
536
-   * @param Google_LogSink $postBody
536
+   * @param Google_Service_Logging_LogSink $postBody
537 537
    * @param array $optParams Optional parameters.
538 538
    * @return Google_Service_Logging_LogSink
539 539
    */
@@ -603,7 +603,7 @@  discard block
 block discarded – undo
603 603
    * @param string $logServicesId Part of `sinkName`. See documentation of
604 604
    * `projectsId`.
605 605
    * @param string $sinksId Part of `sinkName`. See documentation of `projectsId`.
606
-   * @param Google_LogSink $postBody
606
+   * @param Google_Service_Logging_LogSink $postBody
607 607
    * @param array $optParams Optional parameters.
608 608
    * @return Google_Service_Logging_LogSink
609 609
    */
@@ -700,7 +700,7 @@  discard block
 block discarded – undo
700 700
    * @param string $projectsId Part of `logName`. The name of the log resource
701 701
    * into which to insert the log entries.
702 702
    * @param string $logsId Part of `logName`. See documentation of `projectsId`.
703
-   * @param Google_WriteLogEntriesRequest $postBody
703
+   * @param Google_Service_Logging_WriteLogEntriesRequest $postBody
704 704
    * @param array $optParams Optional parameters.
705 705
    * @return Google_Service_Logging_WriteLogEntriesResponse
706 706
    */
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
    * @param string $projectsId Part of `logName`. The log in which to create a
729 729
    * sink resource.
730 730
    * @param string $logsId Part of `logName`. See documentation of `projectsId`.
731
-   * @param Google_LogSink $postBody
731
+   * @param Google_Service_Logging_LogSink $postBody
732 732
    * @param array $optParams Optional parameters.
733 733
    * @return Google_Service_Logging_LogSink
734 734
    */
@@ -794,7 +794,7 @@  discard block
 block discarded – undo
794 794
    * @param string $projectsId Part of `sinkName`. The name of the sink to update.
795 795
    * @param string $logsId Part of `sinkName`. See documentation of `projectsId`.
796 796
    * @param string $sinksId Part of `sinkName`. See documentation of `projectsId`.
797
-   * @param Google_LogSink $postBody
797
+   * @param Google_Service_Logging_LogSink $postBody
798 798
    * @param array $optParams Optional parameters.
799 799
    * @return Google_Service_Logging_LogSink
800 800
    */
Please login to merge, or discard this patch.
Indentation   +481 added lines, -481 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 data across Google Cloud Platform services. */
35 35
   const CLOUD_PLATFORM =
36
-      "https://www.googleapis.com/auth/cloud-platform";
36
+	  "https://www.googleapis.com/auth/cloud-platform";
37 37
 
38 38
   public $projects_logServices;
39 39
   public $projects_logServices_indexes;
@@ -50,365 +50,365 @@  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://logging.googleapis.com/';
55
-    $this->servicePath = '';
56
-    $this->version = 'v1beta3';
57
-    $this->serviceName = 'logging';
58
-
59
-    $this->projects_logServices = new Google_Service_Logging_ProjectsLogServices_Resource(
60
-        $this,
61
-        $this->serviceName,
62
-        'logServices',
63
-        array(
64
-          'methods' => array(
65
-            'list' => array(
66
-              'path' => 'v1beta3/projects/{projectsId}/logServices',
67
-              'httpMethod' => 'GET',
68
-              'parameters' => array(
69
-                'projectsId' => array(
70
-                  'location' => 'path',
71
-                  'type' => 'string',
72
-                  'required' => true,
73
-                ),
74
-                'pageToken' => array(
75
-                  'location' => 'query',
76
-                  'type' => 'string',
77
-                ),
78
-                'log' => array(
79
-                  'location' => 'query',
80
-                  'type' => 'string',
81
-                ),
82
-                'pageSize' => array(
83
-                  'location' => 'query',
84
-                  'type' => 'integer',
85
-                ),
86
-              ),
87
-            ),
88
-          )
89
-        )
90
-    );
91
-    $this->projects_logServices_indexes = new Google_Service_Logging_ProjectsLogServicesIndexes_Resource(
92
-        $this,
93
-        $this->serviceName,
94
-        'indexes',
95
-        array(
96
-          'methods' => array(
97
-            'list' => array(
98
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/indexes',
99
-              'httpMethod' => 'GET',
100
-              'parameters' => array(
101
-                'projectsId' => array(
102
-                  'location' => 'path',
103
-                  'type' => 'string',
104
-                  'required' => true,
105
-                ),
106
-                'logServicesId' => array(
107
-                  'location' => 'path',
108
-                  'type' => 'string',
109
-                  'required' => true,
110
-                ),
111
-                'log' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-                'pageSize' => array(
116
-                  'location' => 'query',
117
-                  'type' => 'integer',
118
-                ),
119
-                'pageToken' => array(
120
-                  'location' => 'query',
121
-                  'type' => 'string',
122
-                ),
123
-                'depth' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'integer',
126
-                ),
127
-                'indexPrefix' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'string',
130
-                ),
131
-              ),
132
-            ),
133
-          )
134
-        )
135
-    );
136
-    $this->projects_logServices_sinks = new Google_Service_Logging_ProjectsLogServicesSinks_Resource(
137
-        $this,
138
-        $this->serviceName,
139
-        'sinks',
140
-        array(
141
-          'methods' => array(
142
-            'create' => array(
143
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks',
144
-              'httpMethod' => 'POST',
145
-              'parameters' => array(
146
-                'projectsId' => array(
147
-                  'location' => 'path',
148
-                  'type' => 'string',
149
-                  'required' => true,
150
-                ),
151
-                'logServicesId' => array(
152
-                  'location' => 'path',
153
-                  'type' => 'string',
154
-                  'required' => true,
155
-                ),
156
-              ),
157
-            ),'delete' => array(
158
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
159
-              'httpMethod' => 'DELETE',
160
-              'parameters' => array(
161
-                'projectsId' => array(
162
-                  'location' => 'path',
163
-                  'type' => 'string',
164
-                  'required' => true,
165
-                ),
166
-                'logServicesId' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'sinksId' => array(
172
-                  'location' => 'path',
173
-                  'type' => 'string',
174
-                  'required' => true,
175
-                ),
176
-              ),
177
-            ),'get' => array(
178
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
179
-              'httpMethod' => 'GET',
180
-              'parameters' => array(
181
-                'projectsId' => array(
182
-                  'location' => 'path',
183
-                  'type' => 'string',
184
-                  'required' => true,
185
-                ),
186
-                'logServicesId' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-                'sinksId' => array(
192
-                  'location' => 'path',
193
-                  'type' => 'string',
194
-                  'required' => true,
195
-                ),
196
-              ),
197
-            ),'list' => array(
198
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks',
199
-              'httpMethod' => 'GET',
200
-              'parameters' => array(
201
-                'projectsId' => array(
202
-                  'location' => 'path',
203
-                  'type' => 'string',
204
-                  'required' => true,
205
-                ),
206
-                'logServicesId' => array(
207
-                  'location' => 'path',
208
-                  'type' => 'string',
209
-                  'required' => true,
210
-                ),
211
-              ),
212
-            ),'update' => array(
213
-              'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
214
-              'httpMethod' => 'PUT',
215
-              'parameters' => array(
216
-                'projectsId' => array(
217
-                  'location' => 'path',
218
-                  'type' => 'string',
219
-                  'required' => true,
220
-                ),
221
-                'logServicesId' => array(
222
-                  'location' => 'path',
223
-                  'type' => 'string',
224
-                  'required' => true,
225
-                ),
226
-                'sinksId' => array(
227
-                  'location' => 'path',
228
-                  'type' => 'string',
229
-                  'required' => true,
230
-                ),
231
-              ),
232
-            ),
233
-          )
234
-        )
235
-    );
236
-    $this->projects_logs = new Google_Service_Logging_ProjectsLogs_Resource(
237
-        $this,
238
-        $this->serviceName,
239
-        'logs',
240
-        array(
241
-          'methods' => array(
242
-            'delete' => array(
243
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}',
244
-              'httpMethod' => 'DELETE',
245
-              'parameters' => array(
246
-                'projectsId' => array(
247
-                  'location' => 'path',
248
-                  'type' => 'string',
249
-                  'required' => true,
250
-                ),
251
-                'logsId' => array(
252
-                  'location' => 'path',
253
-                  'type' => 'string',
254
-                  'required' => true,
255
-                ),
256
-              ),
257
-            ),'list' => array(
258
-              'path' => 'v1beta3/projects/{projectsId}/logs',
259
-              'httpMethod' => 'GET',
260
-              'parameters' => array(
261
-                'projectsId' => array(
262
-                  'location' => 'path',
263
-                  'type' => 'string',
264
-                  'required' => true,
265
-                ),
266
-                'pageToken' => array(
267
-                  'location' => 'query',
268
-                  'type' => 'string',
269
-                ),
270
-                'serviceName' => array(
271
-                  'location' => 'query',
272
-                  'type' => 'string',
273
-                ),
274
-                'serviceIndexPrefix' => array(
275
-                  'location' => 'query',
276
-                  'type' => 'string',
277
-                ),
278
-                'pageSize' => array(
279
-                  'location' => 'query',
280
-                  'type' => 'integer',
281
-                ),
282
-              ),
283
-            ),
284
-          )
285
-        )
286
-    );
287
-    $this->projects_logs_entries = new Google_Service_Logging_ProjectsLogsEntries_Resource(
288
-        $this,
289
-        $this->serviceName,
290
-        'entries',
291
-        array(
292
-          'methods' => array(
293
-            'write' => array(
294
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/entries:write',
295
-              'httpMethod' => 'POST',
296
-              'parameters' => array(
297
-                'projectsId' => array(
298
-                  'location' => 'path',
299
-                  'type' => 'string',
300
-                  'required' => true,
301
-                ),
302
-                'logsId' => array(
303
-                  'location' => 'path',
304
-                  'type' => 'string',
305
-                  'required' => true,
306
-                ),
307
-              ),
308
-            ),
309
-          )
310
-        )
311
-    );
312
-    $this->projects_logs_sinks = new Google_Service_Logging_ProjectsLogsSinks_Resource(
313
-        $this,
314
-        $this->serviceName,
315
-        'sinks',
316
-        array(
317
-          'methods' => array(
318
-            'create' => array(
319
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks',
320
-              'httpMethod' => 'POST',
321
-              'parameters' => array(
322
-                'projectsId' => array(
323
-                  'location' => 'path',
324
-                  'type' => 'string',
325
-                  'required' => true,
326
-                ),
327
-                'logsId' => array(
328
-                  'location' => 'path',
329
-                  'type' => 'string',
330
-                  'required' => true,
331
-                ),
332
-              ),
333
-            ),'delete' => array(
334
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
335
-              'httpMethod' => 'DELETE',
336
-              'parameters' => array(
337
-                'projectsId' => array(
338
-                  'location' => 'path',
339
-                  'type' => 'string',
340
-                  'required' => true,
341
-                ),
342
-                'logsId' => array(
343
-                  'location' => 'path',
344
-                  'type' => 'string',
345
-                  'required' => true,
346
-                ),
347
-                'sinksId' => array(
348
-                  'location' => 'path',
349
-                  'type' => 'string',
350
-                  'required' => true,
351
-                ),
352
-              ),
353
-            ),'get' => array(
354
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
355
-              'httpMethod' => 'GET',
356
-              'parameters' => array(
357
-                'projectsId' => array(
358
-                  'location' => 'path',
359
-                  'type' => 'string',
360
-                  'required' => true,
361
-                ),
362
-                'logsId' => array(
363
-                  'location' => 'path',
364
-                  'type' => 'string',
365
-                  'required' => true,
366
-                ),
367
-                'sinksId' => array(
368
-                  'location' => 'path',
369
-                  'type' => 'string',
370
-                  'required' => true,
371
-                ),
372
-              ),
373
-            ),'list' => array(
374
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks',
375
-              'httpMethod' => 'GET',
376
-              'parameters' => array(
377
-                'projectsId' => array(
378
-                  'location' => 'path',
379
-                  'type' => 'string',
380
-                  'required' => true,
381
-                ),
382
-                'logsId' => array(
383
-                  'location' => 'path',
384
-                  'type' => 'string',
385
-                  'required' => true,
386
-                ),
387
-              ),
388
-            ),'update' => array(
389
-              'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
390
-              'httpMethod' => 'PUT',
391
-              'parameters' => array(
392
-                'projectsId' => array(
393
-                  'location' => 'path',
394
-                  'type' => 'string',
395
-                  'required' => true,
396
-                ),
397
-                'logsId' => array(
398
-                  'location' => 'path',
399
-                  'type' => 'string',
400
-                  'required' => true,
401
-                ),
402
-                'sinksId' => array(
403
-                  'location' => 'path',
404
-                  'type' => 'string',
405
-                  'required' => true,
406
-                ),
407
-              ),
408
-            ),
409
-          )
410
-        )
411
-    );
53
+	parent::__construct($client);
54
+	$this->rootUrl = 'https://logging.googleapis.com/';
55
+	$this->servicePath = '';
56
+	$this->version = 'v1beta3';
57
+	$this->serviceName = 'logging';
58
+
59
+	$this->projects_logServices = new Google_Service_Logging_ProjectsLogServices_Resource(
60
+		$this,
61
+		$this->serviceName,
62
+		'logServices',
63
+		array(
64
+		  'methods' => array(
65
+			'list' => array(
66
+			  'path' => 'v1beta3/projects/{projectsId}/logServices',
67
+			  'httpMethod' => 'GET',
68
+			  'parameters' => array(
69
+				'projectsId' => array(
70
+				  'location' => 'path',
71
+				  'type' => 'string',
72
+				  'required' => true,
73
+				),
74
+				'pageToken' => array(
75
+				  'location' => 'query',
76
+				  'type' => 'string',
77
+				),
78
+				'log' => array(
79
+				  'location' => 'query',
80
+				  'type' => 'string',
81
+				),
82
+				'pageSize' => array(
83
+				  'location' => 'query',
84
+				  'type' => 'integer',
85
+				),
86
+			  ),
87
+			),
88
+		  )
89
+		)
90
+	);
91
+	$this->projects_logServices_indexes = new Google_Service_Logging_ProjectsLogServicesIndexes_Resource(
92
+		$this,
93
+		$this->serviceName,
94
+		'indexes',
95
+		array(
96
+		  'methods' => array(
97
+			'list' => array(
98
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/indexes',
99
+			  'httpMethod' => 'GET',
100
+			  'parameters' => array(
101
+				'projectsId' => array(
102
+				  'location' => 'path',
103
+				  'type' => 'string',
104
+				  'required' => true,
105
+				),
106
+				'logServicesId' => array(
107
+				  'location' => 'path',
108
+				  'type' => 'string',
109
+				  'required' => true,
110
+				),
111
+				'log' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+				'pageSize' => array(
116
+				  'location' => 'query',
117
+				  'type' => 'integer',
118
+				),
119
+				'pageToken' => array(
120
+				  'location' => 'query',
121
+				  'type' => 'string',
122
+				),
123
+				'depth' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'integer',
126
+				),
127
+				'indexPrefix' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'string',
130
+				),
131
+			  ),
132
+			),
133
+		  )
134
+		)
135
+	);
136
+	$this->projects_logServices_sinks = new Google_Service_Logging_ProjectsLogServicesSinks_Resource(
137
+		$this,
138
+		$this->serviceName,
139
+		'sinks',
140
+		array(
141
+		  'methods' => array(
142
+			'create' => array(
143
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks',
144
+			  'httpMethod' => 'POST',
145
+			  'parameters' => array(
146
+				'projectsId' => array(
147
+				  'location' => 'path',
148
+				  'type' => 'string',
149
+				  'required' => true,
150
+				),
151
+				'logServicesId' => array(
152
+				  'location' => 'path',
153
+				  'type' => 'string',
154
+				  'required' => true,
155
+				),
156
+			  ),
157
+			),'delete' => array(
158
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
159
+			  'httpMethod' => 'DELETE',
160
+			  'parameters' => array(
161
+				'projectsId' => array(
162
+				  'location' => 'path',
163
+				  'type' => 'string',
164
+				  'required' => true,
165
+				),
166
+				'logServicesId' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'sinksId' => array(
172
+				  'location' => 'path',
173
+				  'type' => 'string',
174
+				  'required' => true,
175
+				),
176
+			  ),
177
+			),'get' => array(
178
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
179
+			  'httpMethod' => 'GET',
180
+			  'parameters' => array(
181
+				'projectsId' => array(
182
+				  'location' => 'path',
183
+				  'type' => 'string',
184
+				  'required' => true,
185
+				),
186
+				'logServicesId' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+				'sinksId' => array(
192
+				  'location' => 'path',
193
+				  'type' => 'string',
194
+				  'required' => true,
195
+				),
196
+			  ),
197
+			),'list' => array(
198
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks',
199
+			  'httpMethod' => 'GET',
200
+			  'parameters' => array(
201
+				'projectsId' => array(
202
+				  'location' => 'path',
203
+				  'type' => 'string',
204
+				  'required' => true,
205
+				),
206
+				'logServicesId' => array(
207
+				  'location' => 'path',
208
+				  'type' => 'string',
209
+				  'required' => true,
210
+				),
211
+			  ),
212
+			),'update' => array(
213
+			  'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
214
+			  'httpMethod' => 'PUT',
215
+			  'parameters' => array(
216
+				'projectsId' => array(
217
+				  'location' => 'path',
218
+				  'type' => 'string',
219
+				  'required' => true,
220
+				),
221
+				'logServicesId' => array(
222
+				  'location' => 'path',
223
+				  'type' => 'string',
224
+				  'required' => true,
225
+				),
226
+				'sinksId' => array(
227
+				  'location' => 'path',
228
+				  'type' => 'string',
229
+				  'required' => true,
230
+				),
231
+			  ),
232
+			),
233
+		  )
234
+		)
235
+	);
236
+	$this->projects_logs = new Google_Service_Logging_ProjectsLogs_Resource(
237
+		$this,
238
+		$this->serviceName,
239
+		'logs',
240
+		array(
241
+		  'methods' => array(
242
+			'delete' => array(
243
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}',
244
+			  'httpMethod' => 'DELETE',
245
+			  'parameters' => array(
246
+				'projectsId' => array(
247
+				  'location' => 'path',
248
+				  'type' => 'string',
249
+				  'required' => true,
250
+				),
251
+				'logsId' => array(
252
+				  'location' => 'path',
253
+				  'type' => 'string',
254
+				  'required' => true,
255
+				),
256
+			  ),
257
+			),'list' => array(
258
+			  'path' => 'v1beta3/projects/{projectsId}/logs',
259
+			  'httpMethod' => 'GET',
260
+			  'parameters' => array(
261
+				'projectsId' => array(
262
+				  'location' => 'path',
263
+				  'type' => 'string',
264
+				  'required' => true,
265
+				),
266
+				'pageToken' => array(
267
+				  'location' => 'query',
268
+				  'type' => 'string',
269
+				),
270
+				'serviceName' => array(
271
+				  'location' => 'query',
272
+				  'type' => 'string',
273
+				),
274
+				'serviceIndexPrefix' => array(
275
+				  'location' => 'query',
276
+				  'type' => 'string',
277
+				),
278
+				'pageSize' => array(
279
+				  'location' => 'query',
280
+				  'type' => 'integer',
281
+				),
282
+			  ),
283
+			),
284
+		  )
285
+		)
286
+	);
287
+	$this->projects_logs_entries = new Google_Service_Logging_ProjectsLogsEntries_Resource(
288
+		$this,
289
+		$this->serviceName,
290
+		'entries',
291
+		array(
292
+		  'methods' => array(
293
+			'write' => array(
294
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/entries:write',
295
+			  'httpMethod' => 'POST',
296
+			  'parameters' => array(
297
+				'projectsId' => array(
298
+				  'location' => 'path',
299
+				  'type' => 'string',
300
+				  'required' => true,
301
+				),
302
+				'logsId' => array(
303
+				  'location' => 'path',
304
+				  'type' => 'string',
305
+				  'required' => true,
306
+				),
307
+			  ),
308
+			),
309
+		  )
310
+		)
311
+	);
312
+	$this->projects_logs_sinks = new Google_Service_Logging_ProjectsLogsSinks_Resource(
313
+		$this,
314
+		$this->serviceName,
315
+		'sinks',
316
+		array(
317
+		  'methods' => array(
318
+			'create' => array(
319
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks',
320
+			  'httpMethod' => 'POST',
321
+			  'parameters' => array(
322
+				'projectsId' => array(
323
+				  'location' => 'path',
324
+				  'type' => 'string',
325
+				  'required' => true,
326
+				),
327
+				'logsId' => array(
328
+				  'location' => 'path',
329
+				  'type' => 'string',
330
+				  'required' => true,
331
+				),
332
+			  ),
333
+			),'delete' => array(
334
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
335
+			  'httpMethod' => 'DELETE',
336
+			  'parameters' => array(
337
+				'projectsId' => array(
338
+				  'location' => 'path',
339
+				  'type' => 'string',
340
+				  'required' => true,
341
+				),
342
+				'logsId' => array(
343
+				  'location' => 'path',
344
+				  'type' => 'string',
345
+				  'required' => true,
346
+				),
347
+				'sinksId' => array(
348
+				  'location' => 'path',
349
+				  'type' => 'string',
350
+				  'required' => true,
351
+				),
352
+			  ),
353
+			),'get' => array(
354
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
355
+			  'httpMethod' => 'GET',
356
+			  'parameters' => array(
357
+				'projectsId' => array(
358
+				  'location' => 'path',
359
+				  'type' => 'string',
360
+				  'required' => true,
361
+				),
362
+				'logsId' => array(
363
+				  'location' => 'path',
364
+				  'type' => 'string',
365
+				  'required' => true,
366
+				),
367
+				'sinksId' => array(
368
+				  'location' => 'path',
369
+				  'type' => 'string',
370
+				  'required' => true,
371
+				),
372
+			  ),
373
+			),'list' => array(
374
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks',
375
+			  'httpMethod' => 'GET',
376
+			  'parameters' => array(
377
+				'projectsId' => array(
378
+				  'location' => 'path',
379
+				  'type' => 'string',
380
+				  'required' => true,
381
+				),
382
+				'logsId' => array(
383
+				  'location' => 'path',
384
+				  'type' => 'string',
385
+				  'required' => true,
386
+				),
387
+			  ),
388
+			),'update' => array(
389
+			  'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
390
+			  'httpMethod' => 'PUT',
391
+			  'parameters' => array(
392
+				'projectsId' => array(
393
+				  'location' => 'path',
394
+				  'type' => 'string',
395
+				  'required' => true,
396
+				),
397
+				'logsId' => array(
398
+				  'location' => 'path',
399
+				  'type' => 'string',
400
+				  'required' => true,
401
+				),
402
+				'sinksId' => array(
403
+				  'location' => 'path',
404
+				  'type' => 'string',
405
+				  'required' => true,
406
+				),
407
+			  ),
408
+			),
409
+		  )
410
+		)
411
+	);
412 412
   }
413 413
 }
414 414
 
@@ -456,9 +456,9 @@  discard block
 block discarded – undo
456 456
    */
457 457
   public function listProjectsLogServices($projectsId, $optParams = array())
458 458
   {
459
-    $params = array('projectsId' => $projectsId);
460
-    $params = array_merge($params, $optParams);
461
-    return $this->call('list', array($params), "Google_Service_Logging_ListLogServicesResponse");
459
+	$params = array('projectsId' => $projectsId);
460
+	$params = array_merge($params, $optParams);
461
+	return $this->call('list', array($params), "Google_Service_Logging_ListLogServicesResponse");
462 462
   }
463 463
 }
464 464
 
@@ -510,9 +510,9 @@  discard block
 block discarded – undo
510 510
    */
511 511
   public function listProjectsLogServicesIndexes($projectsId, $logServicesId, $optParams = array())
512 512
   {
513
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId);
514
-    $params = array_merge($params, $optParams);
515
-    return $this->call('list', array($params), "Google_Service_Logging_ListLogServiceIndexesResponse");
513
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId);
514
+	$params = array_merge($params, $optParams);
515
+	return $this->call('list', array($params), "Google_Service_Logging_ListLogServiceIndexesResponse");
516 516
   }
517 517
 }
518 518
 /**
@@ -539,9 +539,9 @@  discard block
 block discarded – undo
539 539
    */
540 540
   public function create($projectsId, $logServicesId, Google_Service_Logging_LogSink $postBody, $optParams = array())
541 541
   {
542
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'postBody' => $postBody);
543
-    $params = array_merge($params, $optParams);
544
-    return $this->call('create', array($params), "Google_Service_Logging_LogSink");
542
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'postBody' => $postBody);
543
+	$params = array_merge($params, $optParams);
544
+	return $this->call('create', array($params), "Google_Service_Logging_LogSink");
545 545
   }
546 546
 
547 547
   /**
@@ -556,9 +556,9 @@  discard block
 block discarded – undo
556 556
    */
557 557
   public function delete($projectsId, $logServicesId, $sinksId, $optParams = array())
558 558
   {
559
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId);
560
-    $params = array_merge($params, $optParams);
561
-    return $this->call('delete', array($params), "Google_Service_Logging_Empty");
559
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId);
560
+	$params = array_merge($params, $optParams);
561
+	return $this->call('delete', array($params), "Google_Service_Logging_Empty");
562 562
   }
563 563
 
564 564
   /**
@@ -573,9 +573,9 @@  discard block
 block discarded – undo
573 573
    */
574 574
   public function get($projectsId, $logServicesId, $sinksId, $optParams = array())
575 575
   {
576
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId);
577
-    $params = array_merge($params, $optParams);
578
-    return $this->call('get', array($params), "Google_Service_Logging_LogSink");
576
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId);
577
+	$params = array_merge($params, $optParams);
578
+	return $this->call('get', array($params), "Google_Service_Logging_LogSink");
579 579
   }
580 580
 
581 581
   /**
@@ -591,9 +591,9 @@  discard block
 block discarded – undo
591 591
    */
592 592
   public function listProjectsLogServicesSinks($projectsId, $logServicesId, $optParams = array())
593 593
   {
594
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId);
595
-    $params = array_merge($params, $optParams);
596
-    return $this->call('list', array($params), "Google_Service_Logging_ListLogServiceSinksResponse");
594
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId);
595
+	$params = array_merge($params, $optParams);
596
+	return $this->call('list', array($params), "Google_Service_Logging_ListLogServiceSinksResponse");
597 597
   }
598 598
 
599 599
   /**
@@ -609,9 +609,9 @@  discard block
 block discarded – undo
609 609
    */
610 610
   public function update($projectsId, $logServicesId, $sinksId, Google_Service_Logging_LogSink $postBody, $optParams = array())
611 611
   {
612
-    $params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId, 'postBody' => $postBody);
613
-    $params = array_merge($params, $optParams);
614
-    return $this->call('update', array($params), "Google_Service_Logging_LogSink");
612
+	$params = array('projectsId' => $projectsId, 'logServicesId' => $logServicesId, 'sinksId' => $sinksId, 'postBody' => $postBody);
613
+	$params = array_merge($params, $optParams);
614
+	return $this->call('update', array($params), "Google_Service_Logging_LogSink");
615 615
   }
616 616
 }
617 617
 /**
@@ -636,9 +636,9 @@  discard block
 block discarded – undo
636 636
    */
637 637
   public function delete($projectsId, $logsId, $optParams = array())
638 638
   {
639
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId);
640
-    $params = array_merge($params, $optParams);
641
-    return $this->call('delete', array($params), "Google_Service_Logging_Empty");
639
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId);
640
+	$params = array_merge($params, $optParams);
641
+	return $this->call('delete', array($params), "Google_Service_Logging_Empty");
642 642
   }
643 643
 
644 644
   /**
@@ -671,9 +671,9 @@  discard block
 block discarded – undo
671 671
    */
672 672
   public function listProjectsLogs($projectsId, $optParams = array())
673 673
   {
674
-    $params = array('projectsId' => $projectsId);
675
-    $params = array_merge($params, $optParams);
676
-    return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse");
674
+	$params = array('projectsId' => $projectsId);
675
+	$params = array_merge($params, $optParams);
676
+	return $this->call('list', array($params), "Google_Service_Logging_ListLogsResponse");
677 677
   }
678 678
 }
679 679
 
@@ -706,9 +706,9 @@  discard block
 block discarded – undo
706 706
    */
707 707
   public function write($projectsId, $logsId, Google_Service_Logging_WriteLogEntriesRequest $postBody, $optParams = array())
708 708
   {
709
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'postBody' => $postBody);
710
-    $params = array_merge($params, $optParams);
711
-    return $this->call('write', array($params), "Google_Service_Logging_WriteLogEntriesResponse");
709
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'postBody' => $postBody);
710
+	$params = array_merge($params, $optParams);
711
+	return $this->call('write', array($params), "Google_Service_Logging_WriteLogEntriesResponse");
712 712
   }
713 713
 }
714 714
 /**
@@ -734,9 +734,9 @@  discard block
 block discarded – undo
734 734
    */
735 735
   public function create($projectsId, $logsId, Google_Service_Logging_LogSink $postBody, $optParams = array())
736 736
   {
737
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'postBody' => $postBody);
738
-    $params = array_merge($params, $optParams);
739
-    return $this->call('create', array($params), "Google_Service_Logging_LogSink");
737
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'postBody' => $postBody);
738
+	$params = array_merge($params, $optParams);
739
+	return $this->call('create', array($params), "Google_Service_Logging_LogSink");
740 740
   }
741 741
 
742 742
   /**
@@ -750,9 +750,9 @@  discard block
 block discarded – undo
750 750
    */
751 751
   public function delete($projectsId, $logsId, $sinksId, $optParams = array())
752 752
   {
753
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId);
754
-    $params = array_merge($params, $optParams);
755
-    return $this->call('delete', array($params), "Google_Service_Logging_Empty");
753
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId);
754
+	$params = array_merge($params, $optParams);
755
+	return $this->call('delete', array($params), "Google_Service_Logging_Empty");
756 756
   }
757 757
 
758 758
   /**
@@ -767,9 +767,9 @@  discard block
 block discarded – undo
767 767
    */
768 768
   public function get($projectsId, $logsId, $sinksId, $optParams = array())
769 769
   {
770
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId);
771
-    $params = array_merge($params, $optParams);
772
-    return $this->call('get', array($params), "Google_Service_Logging_LogSink");
770
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId);
771
+	$params = array_merge($params, $optParams);
772
+	return $this->call('get', array($params), "Google_Service_Logging_LogSink");
773 773
   }
774 774
 
775 775
   /**
@@ -783,9 +783,9 @@  discard block
 block discarded – undo
783 783
    */
784 784
   public function listProjectsLogsSinks($projectsId, $logsId, $optParams = array())
785 785
   {
786
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId);
787
-    $params = array_merge($params, $optParams);
788
-    return $this->call('list', array($params), "Google_Service_Logging_ListLogSinksResponse");
786
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId);
787
+	$params = array_merge($params, $optParams);
788
+	return $this->call('list', array($params), "Google_Service_Logging_ListLogSinksResponse");
789 789
   }
790 790
 
791 791
   /**
@@ -800,9 +800,9 @@  discard block
 block discarded – undo
800 800
    */
801 801
   public function update($projectsId, $logsId, $sinksId, Google_Service_Logging_LogSink $postBody, $optParams = array())
802 802
   {
803
-    $params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId, 'postBody' => $postBody);
804
-    $params = array_merge($params, $optParams);
805
-    return $this->call('update', array($params), "Google_Service_Logging_LogSink");
803
+	$params = array('projectsId' => $projectsId, 'logsId' => $logsId, 'sinksId' => $sinksId, 'postBody' => $postBody);
804
+	$params = array_merge($params, $optParams);
805
+	return $this->call('update', array($params), "Google_Service_Logging_LogSink");
806 806
   }
807 807
 }
808 808
 
@@ -824,19 +824,19 @@  discard block
 block discarded – undo
824 824
 
825 825
   public function setNextPageToken($nextPageToken)
826 826
   {
827
-    $this->nextPageToken = $nextPageToken;
827
+	$this->nextPageToken = $nextPageToken;
828 828
   }
829 829
   public function getNextPageToken()
830 830
   {
831
-    return $this->nextPageToken;
831
+	return $this->nextPageToken;
832 832
   }
833 833
   public function setServiceIndexPrefixes($serviceIndexPrefixes)
834 834
   {
835
-    $this->serviceIndexPrefixes = $serviceIndexPrefixes;
835
+	$this->serviceIndexPrefixes = $serviceIndexPrefixes;
836 836
   }
837 837
   public function getServiceIndexPrefixes()
838 838
   {
839
-    return $this->serviceIndexPrefixes;
839
+	return $this->serviceIndexPrefixes;
840 840
   }
841 841
 }
842 842
 
@@ -851,11 +851,11 @@  discard block
 block discarded – undo
851 851
 
852 852
   public function setSinks($sinks)
853 853
   {
854
-    $this->sinks = $sinks;
854
+	$this->sinks = $sinks;
855 855
   }
856 856
   public function getSinks()
857 857
   {
858
-    return $this->sinks;
858
+	return $this->sinks;
859 859
   }
860 860
 }
861 861
 
@@ -871,19 +871,19 @@  discard block
 block discarded – undo
871 871
 
872 872
   public function setLogServices($logServices)
873 873
   {
874
-    $this->logServices = $logServices;
874
+	$this->logServices = $logServices;
875 875
   }
876 876
   public function getLogServices()
877 877
   {
878
-    return $this->logServices;
878
+	return $this->logServices;
879 879
   }
880 880
   public function setNextPageToken($nextPageToken)
881 881
   {
882
-    $this->nextPageToken = $nextPageToken;
882
+	$this->nextPageToken = $nextPageToken;
883 883
   }
884 884
   public function getNextPageToken()
885 885
   {
886
-    return $this->nextPageToken;
886
+	return $this->nextPageToken;
887 887
   }
888 888
 }
889 889
 
@@ -898,11 +898,11 @@  discard block
 block discarded – undo
898 898
 
899 899
   public function setSinks($sinks)
900 900
   {
901
-    $this->sinks = $sinks;
901
+	$this->sinks = $sinks;
902 902
   }
903 903
   public function getSinks()
904 904
   {
905
-    return $this->sinks;
905
+	return $this->sinks;
906 906
   }
907 907
 }
908 908
 
@@ -918,19 +918,19 @@  discard block
 block discarded – undo
918 918
 
919 919
   public function setLogs($logs)
920 920
   {
921
-    $this->logs = $logs;
921
+	$this->logs = $logs;
922 922
   }
923 923
   public function getLogs()
924 924
   {
925
-    return $this->logs;
925
+	return $this->logs;
926 926
   }
927 927
   public function setNextPageToken($nextPageToken)
928 928
   {
929
-    $this->nextPageToken = $nextPageToken;
929
+	$this->nextPageToken = $nextPageToken;
930 930
   }
931 931
   public function getNextPageToken()
932 932
   {
933
-    return $this->nextPageToken;
933
+	return $this->nextPageToken;
934 934
   }
935 935
 }
936 936
 
@@ -945,27 +945,27 @@  discard block
 block discarded – undo
945 945
 
946 946
   public function setDisplayName($displayName)
947 947
   {
948
-    $this->displayName = $displayName;
948
+	$this->displayName = $displayName;
949 949
   }
950 950
   public function getDisplayName()
951 951
   {
952
-    return $this->displayName;
952
+	return $this->displayName;
953 953
   }
954 954
   public function setName($name)
955 955
   {
956
-    $this->name = $name;
956
+	$this->name = $name;
957 957
   }
958 958
   public function getName()
959 959
   {
960
-    return $this->name;
960
+	return $this->name;
961 961
   }
962 962
   public function setPayloadType($payloadType)
963 963
   {
964
-    $this->payloadType = $payloadType;
964
+	$this->payloadType = $payloadType;
965 965
   }
966 966
   public function getPayloadType()
967 967
   {
968
-    return $this->payloadType;
968
+	return $this->payloadType;
969 969
   }
970 970
 }
971 971
 
@@ -984,51 +984,51 @@  discard block
 block discarded – undo
984 984
 
985 985
   public function setInsertId($insertId)
986 986
   {
987
-    $this->insertId = $insertId;
987
+	$this->insertId = $insertId;
988 988
   }
989 989
   public function getInsertId()
990 990
   {
991
-    return $this->insertId;
991
+	return $this->insertId;
992 992
   }
993 993
   public function setLog($log)
994 994
   {
995
-    $this->log = $log;
995
+	$this->log = $log;
996 996
   }
997 997
   public function getLog()
998 998
   {
999
-    return $this->log;
999
+	return $this->log;
1000 1000
   }
1001 1001
   public function setMetadata(Google_Service_Logging_LogEntryMetadata $metadata)
1002 1002
   {
1003
-    $this->metadata = $metadata;
1003
+	$this->metadata = $metadata;
1004 1004
   }
1005 1005
   public function getMetadata()
1006 1006
   {
1007
-    return $this->metadata;
1007
+	return $this->metadata;
1008 1008
   }
1009 1009
   public function setProtoPayload($protoPayload)
1010 1010
   {
1011
-    $this->protoPayload = $protoPayload;
1011
+	$this->protoPayload = $protoPayload;
1012 1012
   }
1013 1013
   public function getProtoPayload()
1014 1014
   {
1015
-    return $this->protoPayload;
1015
+	return $this->protoPayload;
1016 1016
   }
1017 1017
   public function setStructPayload($structPayload)
1018 1018
   {
1019
-    $this->structPayload = $structPayload;
1019
+	$this->structPayload = $structPayload;
1020 1020
   }
1021 1021
   public function getStructPayload()
1022 1022
   {
1023
-    return $this->structPayload;
1023
+	return $this->structPayload;
1024 1024
   }
1025 1025
   public function setTextPayload($textPayload)
1026 1026
   {
1027
-    $this->textPayload = $textPayload;
1027
+	$this->textPayload = $textPayload;
1028 1028
   }
1029 1029
   public function getTextPayload()
1030 1030
   {
1031
-    return $this->textPayload;
1031
+	return $this->textPayload;
1032 1032
   }
1033 1033
 }
1034 1034
 
@@ -1048,67 +1048,67 @@  discard block
 block discarded – undo
1048 1048
 
1049 1049
   public function setLabels($labels)
1050 1050
   {
1051
-    $this->labels = $labels;
1051
+	$this->labels = $labels;
1052 1052
   }
1053 1053
   public function getLabels()
1054 1054
   {
1055
-    return $this->labels;
1055
+	return $this->labels;
1056 1056
   }
1057 1057
   public function setProjectId($projectId)
1058 1058
   {
1059
-    $this->projectId = $projectId;
1059
+	$this->projectId = $projectId;
1060 1060
   }
1061 1061
   public function getProjectId()
1062 1062
   {
1063
-    return $this->projectId;
1063
+	return $this->projectId;
1064 1064
   }
1065 1065
   public function setRegion($region)
1066 1066
   {
1067
-    $this->region = $region;
1067
+	$this->region = $region;
1068 1068
   }
1069 1069
   public function getRegion()
1070 1070
   {
1071
-    return $this->region;
1071
+	return $this->region;
1072 1072
   }
1073 1073
   public function setServiceName($serviceName)
1074 1074
   {
1075
-    $this->serviceName = $serviceName;
1075
+	$this->serviceName = $serviceName;
1076 1076
   }
1077 1077
   public function getServiceName()
1078 1078
   {
1079
-    return $this->serviceName;
1079
+	return $this->serviceName;
1080 1080
   }
1081 1081
   public function setSeverity($severity)
1082 1082
   {
1083
-    $this->severity = $severity;
1083
+	$this->severity = $severity;
1084 1084
   }
1085 1085
   public function getSeverity()
1086 1086
   {
1087
-    return $this->severity;
1087
+	return $this->severity;
1088 1088
   }
1089 1089
   public function setTimestamp($timestamp)
1090 1090
   {
1091
-    $this->timestamp = $timestamp;
1091
+	$this->timestamp = $timestamp;
1092 1092
   }
1093 1093
   public function getTimestamp()
1094 1094
   {
1095
-    return $this->timestamp;
1095
+	return $this->timestamp;
1096 1096
   }
1097 1097
   public function setUserId($userId)
1098 1098
   {
1099
-    $this->userId = $userId;
1099
+	$this->userId = $userId;
1100 1100
   }
1101 1101
   public function getUserId()
1102 1102
   {
1103
-    return $this->userId;
1103
+	return $this->userId;
1104 1104
   }
1105 1105
   public function setZone($zone)
1106 1106
   {
1107
-    $this->zone = $zone;
1107
+	$this->zone = $zone;
1108 1108
   }
1109 1109
   public function getZone()
1110 1110
   {
1111
-    return $this->zone;
1111
+	return $this->zone;
1112 1112
   }
1113 1113
 }
1114 1114
 
@@ -1136,27 +1136,27 @@  discard block
 block discarded – undo
1136 1136
 
1137 1137
   public function setResource($resource)
1138 1138
   {
1139
-    $this->resource = $resource;
1139
+	$this->resource = $resource;
1140 1140
   }
1141 1141
   public function getResource()
1142 1142
   {
1143
-    return $this->resource;
1143
+	return $this->resource;
1144 1144
   }
1145 1145
   public function setStatus(Google_Service_Logging_Status $status)
1146 1146
   {
1147
-    $this->status = $status;
1147
+	$this->status = $status;
1148 1148
   }
1149 1149
   public function getStatus()
1150 1150
   {
1151
-    return $this->status;
1151
+	return $this->status;
1152 1152
   }
1153 1153
   public function setTimeNanos($timeNanos)
1154 1154
   {
1155
-    $this->timeNanos = $timeNanos;
1155
+	$this->timeNanos = $timeNanos;
1156 1156
   }
1157 1157
   public function getTimeNanos()
1158 1158
   {
1159
-    return $this->timeNanos;
1159
+	return $this->timeNanos;
1160 1160
   }
1161 1161
 }
1162 1162
 
@@ -1171,19 +1171,19 @@  discard block
 block discarded – undo
1171 1171
 
1172 1172
   public function setIndexKeys($indexKeys)
1173 1173
   {
1174
-    $this->indexKeys = $indexKeys;
1174
+	$this->indexKeys = $indexKeys;
1175 1175
   }
1176 1176
   public function getIndexKeys()
1177 1177
   {
1178
-    return $this->indexKeys;
1178
+	return $this->indexKeys;
1179 1179
   }
1180 1180
   public function setName($name)
1181 1181
   {
1182
-    $this->name = $name;
1182
+	$this->name = $name;
1183 1183
   }
1184 1184
   public function getName()
1185 1185
   {
1186
-    return $this->name;
1186
+	return $this->name;
1187 1187
   }
1188 1188
 }
1189 1189
 
@@ -1200,27 +1200,27 @@  discard block
 block discarded – undo
1200 1200
 
1201 1201
   public function setDestination($destination)
1202 1202
   {
1203
-    $this->destination = $destination;
1203
+	$this->destination = $destination;
1204 1204
   }
1205 1205
   public function getDestination()
1206 1206
   {
1207
-    return $this->destination;
1207
+	return $this->destination;
1208 1208
   }
1209 1209
   public function setErrors($errors)
1210 1210
   {
1211
-    $this->errors = $errors;
1211
+	$this->errors = $errors;
1212 1212
   }
1213 1213
   public function getErrors()
1214 1214
   {
1215
-    return $this->errors;
1215
+	return $this->errors;
1216 1216
   }
1217 1217
   public function setName($name)
1218 1218
   {
1219
-    $this->name = $name;
1219
+	$this->name = $name;
1220 1220
   }
1221 1221
   public function getName()
1222 1222
   {
1223
-    return $this->name;
1223
+	return $this->name;
1224 1224
   }
1225 1225
 }
1226 1226
 
@@ -1236,27 +1236,27 @@  discard block
 block discarded – undo
1236 1236
 
1237 1237
   public function setCode($code)
1238 1238
   {
1239
-    $this->code = $code;
1239
+	$this->code = $code;
1240 1240
   }
1241 1241
   public function getCode()
1242 1242
   {
1243
-    return $this->code;
1243
+	return $this->code;
1244 1244
   }
1245 1245
   public function setDetails($details)
1246 1246
   {
1247
-    $this->details = $details;
1247
+	$this->details = $details;
1248 1248
   }
1249 1249
   public function getDetails()
1250 1250
   {
1251
-    return $this->details;
1251
+	return $this->details;
1252 1252
   }
1253 1253
   public function setMessage($message)
1254 1254
   {
1255
-    $this->message = $message;
1255
+	$this->message = $message;
1256 1256
   }
1257 1257
   public function getMessage()
1258 1258
   {
1259
-    return $this->message;
1259
+	return $this->message;
1260 1260
   }
1261 1261
 }
1262 1262
 
@@ -1276,19 +1276,19 @@  discard block
 block discarded – undo
1276 1276
 
1277 1277
   public function setCommonLabels($commonLabels)
1278 1278
   {
1279
-    $this->commonLabels = $commonLabels;
1279
+	$this->commonLabels = $commonLabels;
1280 1280
   }
1281 1281
   public function getCommonLabels()
1282 1282
   {
1283
-    return $this->commonLabels;
1283
+	return $this->commonLabels;
1284 1284
   }
1285 1285
   public function setEntries($entries)
1286 1286
   {
1287
-    $this->entries = $entries;
1287
+	$this->entries = $entries;
1288 1288
   }
1289 1289
   public function getEntries()
1290 1290
   {
1291
-    return $this->entries;
1291
+	return $this->entries;
1292 1292
   }
1293 1293
 }
1294 1294
 
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
                   'required' => true,
155 155
                 ),
156 156
               ),
157
-            ),'delete' => array(
157
+            ), 'delete' => array(
158 158
               'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
159 159
               'httpMethod' => 'DELETE',
160 160
               'parameters' => array(
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
                   'required' => true,
175 175
                 ),
176 176
               ),
177
-            ),'get' => array(
177
+            ), 'get' => array(
178 178
               'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
179 179
               'httpMethod' => 'GET',
180 180
               'parameters' => array(
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
                   'required' => true,
195 195
                 ),
196 196
               ),
197
-            ),'list' => array(
197
+            ), 'list' => array(
198 198
               'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks',
199 199
               'httpMethod' => 'GET',
200 200
               'parameters' => array(
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
                   'required' => true,
210 210
                 ),
211 211
               ),
212
-            ),'update' => array(
212
+            ), 'update' => array(
213 213
               'path' => 'v1beta3/projects/{projectsId}/logServices/{logServicesId}/sinks/{sinksId}',
214 214
               'httpMethod' => 'PUT',
215 215
               'parameters' => array(
@@ -254,7 +254,7 @@  discard block
 block discarded – undo
254 254
                   'required' => true,
255 255
                 ),
256 256
               ),
257
-            ),'list' => array(
257
+            ), 'list' => array(
258 258
               'path' => 'v1beta3/projects/{projectsId}/logs',
259 259
               'httpMethod' => 'GET',
260 260
               'parameters' => array(
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
                   'required' => true,
331 331
                 ),
332 332
               ),
333
-            ),'delete' => array(
333
+            ), 'delete' => array(
334 334
               'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
335 335
               'httpMethod' => 'DELETE',
336 336
               'parameters' => array(
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
                   'required' => true,
351 351
                 ),
352 352
               ),
353
-            ),'get' => array(
353
+            ), 'get' => array(
354 354
               'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
355 355
               'httpMethod' => 'GET',
356 356
               'parameters' => array(
@@ -370,7 +370,7 @@  discard block
 block discarded – undo
370 370
                   'required' => true,
371 371
                 ),
372 372
               ),
373
-            ),'list' => array(
373
+            ), 'list' => array(
374 374
               'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks',
375 375
               'httpMethod' => 'GET',
376 376
               'parameters' => array(
@@ -385,7 +385,7 @@  discard block
 block discarded – undo
385 385
                   'required' => true,
386 386
                 ),
387 387
               ),
388
-            ),'update' => array(
388
+            ), 'update' => array(
389 389
               'path' => 'v1beta3/projects/{projectsId}/logs/{logsId}/sinks/{sinksId}',
390 390
               'httpMethod' => 'PUT',
391 391
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Manager.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
    *
275 275
    * @param string $projectId
276 276
    * @param string $region
277
-   * @param Google_Deployment $postBody
277
+   * @param Google_Service_Manager_Deployment $postBody
278 278
    * @param array $optParams Optional parameters.
279 279
    * @return Google_Service_Manager_Deployment
280 280
    */
@@ -351,7 +351,7 @@  discard block
 block discarded – undo
351 351
    * (templates.insert)
352 352
    *
353 353
    * @param string $projectId
354
-   * @param Google_Template $postBody
354
+   * @param Google_Service_Manager_Template $postBody
355 355
    * @param array $optParams Optional parameters.
356 356
    * @return Google_Service_Manager_Template
357 357
    */
Please login to merge, or discard this patch.
Indentation   +444 added lines, -444 removed lines patch added patch discarded remove patch
@@ -33,22 +33,22 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your applications deployed on Google App Engine. */
35 35
   const APPENGINE_ADMIN =
36
-      "https://www.googleapis.com/auth/appengine.admin";
36
+	  "https://www.googleapis.com/auth/appengine.admin";
37 37
   /** View and manage your data across Google Cloud Platform services. */
38 38
   const CLOUD_PLATFORM =
39
-      "https://www.googleapis.com/auth/cloud-platform";
39
+	  "https://www.googleapis.com/auth/cloud-platform";
40 40
   /** View and manage your Google Compute Engine resources. */
41 41
   const COMPUTE =
42
-      "https://www.googleapis.com/auth/compute";
42
+	  "https://www.googleapis.com/auth/compute";
43 43
   /** Manage your data in Google Cloud Storage. */
44 44
   const DEVSTORAGE_READ_WRITE =
45
-      "https://www.googleapis.com/auth/devstorage.read_write";
45
+	  "https://www.googleapis.com/auth/devstorage.read_write";
46 46
   /** View and manage your Google Cloud Platform management resources and deployment status information. */
47 47
   const NDEV_CLOUDMAN =
48
-      "https://www.googleapis.com/auth/ndev.cloudman";
48
+	  "https://www.googleapis.com/auth/ndev.cloudman";
49 49
   /** View your Google Cloud Platform management resources and deployment status information. */
50 50
   const NDEV_CLOUDMAN_READONLY =
51
-      "https://www.googleapis.com/auth/ndev.cloudman.readonly";
51
+	  "https://www.googleapis.com/auth/ndev.cloudman.readonly";
52 52
 
53 53
   public $deployments;
54 54
   public $templates;
@@ -61,168 +61,168 @@  discard block
 block discarded – undo
61 61
    */
62 62
   public function __construct(Google_Client $client)
63 63
   {
64
-    parent::__construct($client);
65
-    $this->rootUrl = 'https://www.googleapis.com/';
66
-    $this->servicePath = 'manager/v1beta2/projects/';
67
-    $this->version = 'v1beta2';
68
-    $this->serviceName = 'manager';
69
-
70
-    $this->deployments = new Google_Service_Manager_Deployments_Resource(
71
-        $this,
72
-        $this->serviceName,
73
-        'deployments',
74
-        array(
75
-          'methods' => array(
76
-            'delete' => array(
77
-              'path' => '{projectId}/regions/{region}/deployments/{deploymentName}',
78
-              'httpMethod' => 'DELETE',
79
-              'parameters' => array(
80
-                'projectId' => array(
81
-                  'location' => 'path',
82
-                  'type' => 'string',
83
-                  'required' => true,
84
-                ),
85
-                'region' => array(
86
-                  'location' => 'path',
87
-                  'type' => 'string',
88
-                  'required' => true,
89
-                ),
90
-                'deploymentName' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-              ),
96
-            ),'get' => array(
97
-              'path' => '{projectId}/regions/{region}/deployments/{deploymentName}',
98
-              'httpMethod' => 'GET',
99
-              'parameters' => array(
100
-                'projectId' => array(
101
-                  'location' => 'path',
102
-                  'type' => 'string',
103
-                  'required' => true,
104
-                ),
105
-                'region' => array(
106
-                  'location' => 'path',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'deploymentName' => array(
111
-                  'location' => 'path',
112
-                  'type' => 'string',
113
-                  'required' => true,
114
-                ),
115
-              ),
116
-            ),'insert' => array(
117
-              'path' => '{projectId}/regions/{region}/deployments',
118
-              'httpMethod' => 'POST',
119
-              'parameters' => array(
120
-                'projectId' => array(
121
-                  'location' => 'path',
122
-                  'type' => 'string',
123
-                  'required' => true,
124
-                ),
125
-                'region' => array(
126
-                  'location' => 'path',
127
-                  'type' => 'string',
128
-                  'required' => true,
129
-                ),
130
-              ),
131
-            ),'list' => array(
132
-              'path' => '{projectId}/regions/{region}/deployments',
133
-              'httpMethod' => 'GET',
134
-              'parameters' => array(
135
-                'projectId' => array(
136
-                  'location' => 'path',
137
-                  'type' => 'string',
138
-                  'required' => true,
139
-                ),
140
-                'region' => array(
141
-                  'location' => 'path',
142
-                  'type' => 'string',
143
-                  'required' => true,
144
-                ),
145
-                'pageToken' => array(
146
-                  'location' => 'query',
147
-                  'type' => 'string',
148
-                ),
149
-                'maxResults' => array(
150
-                  'location' => 'query',
151
-                  'type' => 'integer',
152
-                ),
153
-              ),
154
-            ),
155
-          )
156
-        )
157
-    );
158
-    $this->templates = new Google_Service_Manager_Templates_Resource(
159
-        $this,
160
-        $this->serviceName,
161
-        'templates',
162
-        array(
163
-          'methods' => array(
164
-            'delete' => array(
165
-              'path' => '{projectId}/templates/{templateName}',
166
-              'httpMethod' => 'DELETE',
167
-              'parameters' => array(
168
-                'projectId' => array(
169
-                  'location' => 'path',
170
-                  'type' => 'string',
171
-                  'required' => true,
172
-                ),
173
-                'templateName' => array(
174
-                  'location' => 'path',
175
-                  'type' => 'string',
176
-                  'required' => true,
177
-                ),
178
-              ),
179
-            ),'get' => array(
180
-              'path' => '{projectId}/templates/{templateName}',
181
-              'httpMethod' => 'GET',
182
-              'parameters' => array(
183
-                'projectId' => array(
184
-                  'location' => 'path',
185
-                  'type' => 'string',
186
-                  'required' => true,
187
-                ),
188
-                'templateName' => array(
189
-                  'location' => 'path',
190
-                  'type' => 'string',
191
-                  'required' => true,
192
-                ),
193
-              ),
194
-            ),'insert' => array(
195
-              'path' => '{projectId}/templates',
196
-              'httpMethod' => 'POST',
197
-              'parameters' => array(
198
-                'projectId' => array(
199
-                  'location' => 'path',
200
-                  'type' => 'string',
201
-                  'required' => true,
202
-                ),
203
-              ),
204
-            ),'list' => array(
205
-              'path' => '{projectId}/templates',
206
-              'httpMethod' => 'GET',
207
-              'parameters' => array(
208
-                'projectId' => array(
209
-                  'location' => 'path',
210
-                  'type' => 'string',
211
-                  'required' => true,
212
-                ),
213
-                'pageToken' => array(
214
-                  'location' => 'query',
215
-                  'type' => 'string',
216
-                ),
217
-                'maxResults' => array(
218
-                  'location' => 'query',
219
-                  'type' => 'integer',
220
-                ),
221
-              ),
222
-            ),
223
-          )
224
-        )
225
-    );
64
+	parent::__construct($client);
65
+	$this->rootUrl = 'https://www.googleapis.com/';
66
+	$this->servicePath = 'manager/v1beta2/projects/';
67
+	$this->version = 'v1beta2';
68
+	$this->serviceName = 'manager';
69
+
70
+	$this->deployments = new Google_Service_Manager_Deployments_Resource(
71
+		$this,
72
+		$this->serviceName,
73
+		'deployments',
74
+		array(
75
+		  'methods' => array(
76
+			'delete' => array(
77
+			  'path' => '{projectId}/regions/{region}/deployments/{deploymentName}',
78
+			  'httpMethod' => 'DELETE',
79
+			  'parameters' => array(
80
+				'projectId' => array(
81
+				  'location' => 'path',
82
+				  'type' => 'string',
83
+				  'required' => true,
84
+				),
85
+				'region' => array(
86
+				  'location' => 'path',
87
+				  'type' => 'string',
88
+				  'required' => true,
89
+				),
90
+				'deploymentName' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+			  ),
96
+			),'get' => array(
97
+			  'path' => '{projectId}/regions/{region}/deployments/{deploymentName}',
98
+			  'httpMethod' => 'GET',
99
+			  'parameters' => array(
100
+				'projectId' => array(
101
+				  'location' => 'path',
102
+				  'type' => 'string',
103
+				  'required' => true,
104
+				),
105
+				'region' => array(
106
+				  'location' => 'path',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'deploymentName' => array(
111
+				  'location' => 'path',
112
+				  'type' => 'string',
113
+				  'required' => true,
114
+				),
115
+			  ),
116
+			),'insert' => array(
117
+			  'path' => '{projectId}/regions/{region}/deployments',
118
+			  'httpMethod' => 'POST',
119
+			  'parameters' => array(
120
+				'projectId' => array(
121
+				  'location' => 'path',
122
+				  'type' => 'string',
123
+				  'required' => true,
124
+				),
125
+				'region' => array(
126
+				  'location' => 'path',
127
+				  'type' => 'string',
128
+				  'required' => true,
129
+				),
130
+			  ),
131
+			),'list' => array(
132
+			  'path' => '{projectId}/regions/{region}/deployments',
133
+			  'httpMethod' => 'GET',
134
+			  'parameters' => array(
135
+				'projectId' => array(
136
+				  'location' => 'path',
137
+				  'type' => 'string',
138
+				  'required' => true,
139
+				),
140
+				'region' => array(
141
+				  'location' => 'path',
142
+				  'type' => 'string',
143
+				  'required' => true,
144
+				),
145
+				'pageToken' => array(
146
+				  'location' => 'query',
147
+				  'type' => 'string',
148
+				),
149
+				'maxResults' => array(
150
+				  'location' => 'query',
151
+				  'type' => 'integer',
152
+				),
153
+			  ),
154
+			),
155
+		  )
156
+		)
157
+	);
158
+	$this->templates = new Google_Service_Manager_Templates_Resource(
159
+		$this,
160
+		$this->serviceName,
161
+		'templates',
162
+		array(
163
+		  'methods' => array(
164
+			'delete' => array(
165
+			  'path' => '{projectId}/templates/{templateName}',
166
+			  'httpMethod' => 'DELETE',
167
+			  'parameters' => array(
168
+				'projectId' => array(
169
+				  'location' => 'path',
170
+				  'type' => 'string',
171
+				  'required' => true,
172
+				),
173
+				'templateName' => array(
174
+				  'location' => 'path',
175
+				  'type' => 'string',
176
+				  'required' => true,
177
+				),
178
+			  ),
179
+			),'get' => array(
180
+			  'path' => '{projectId}/templates/{templateName}',
181
+			  'httpMethod' => 'GET',
182
+			  'parameters' => array(
183
+				'projectId' => array(
184
+				  'location' => 'path',
185
+				  'type' => 'string',
186
+				  'required' => true,
187
+				),
188
+				'templateName' => array(
189
+				  'location' => 'path',
190
+				  'type' => 'string',
191
+				  'required' => true,
192
+				),
193
+			  ),
194
+			),'insert' => array(
195
+			  'path' => '{projectId}/templates',
196
+			  'httpMethod' => 'POST',
197
+			  'parameters' => array(
198
+				'projectId' => array(
199
+				  'location' => 'path',
200
+				  'type' => 'string',
201
+				  'required' => true,
202
+				),
203
+			  ),
204
+			),'list' => array(
205
+			  'path' => '{projectId}/templates',
206
+			  'httpMethod' => 'GET',
207
+			  'parameters' => array(
208
+				'projectId' => array(
209
+				  'location' => 'path',
210
+				  'type' => 'string',
211
+				  'required' => true,
212
+				),
213
+				'pageToken' => array(
214
+				  'location' => 'query',
215
+				  'type' => 'string',
216
+				),
217
+				'maxResults' => array(
218
+				  'location' => 'query',
219
+				  'type' => 'integer',
220
+				),
221
+			  ),
222
+			),
223
+		  )
224
+		)
225
+	);
226 226
   }
227 227
 }
228 228
 
@@ -248,9 +248,9 @@  discard block
 block discarded – undo
248 248
    */
249 249
   public function delete($projectId, $region, $deploymentName, $optParams = array())
250 250
   {
251
-    $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
252
-    $params = array_merge($params, $optParams);
253
-    return $this->call('delete', array($params));
251
+	$params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
252
+	$params = array_merge($params, $optParams);
253
+	return $this->call('delete', array($params));
254 254
   }
255 255
 
256 256
   /**
@@ -264,9 +264,9 @@  discard block
 block discarded – undo
264 264
    */
265 265
   public function get($projectId, $region, $deploymentName, $optParams = array())
266 266
   {
267
-    $params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
268
-    $params = array_merge($params, $optParams);
269
-    return $this->call('get', array($params), "Google_Service_Manager_Deployment");
267
+	$params = array('projectId' => $projectId, 'region' => $region, 'deploymentName' => $deploymentName);
268
+	$params = array_merge($params, $optParams);
269
+	return $this->call('get', array($params), "Google_Service_Manager_Deployment");
270 270
   }
271 271
 
272 272
   /**
@@ -280,9 +280,9 @@  discard block
 block discarded – undo
280 280
    */
281 281
   public function insert($projectId, $region, Google_Service_Manager_Deployment $postBody, $optParams = array())
282 282
   {
283
-    $params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody);
284
-    $params = array_merge($params, $optParams);
285
-    return $this->call('insert', array($params), "Google_Service_Manager_Deployment");
283
+	$params = array('projectId' => $projectId, 'region' => $region, 'postBody' => $postBody);
284
+	$params = array_merge($params, $optParams);
285
+	return $this->call('insert', array($params), "Google_Service_Manager_Deployment");
286 286
   }
287 287
 
288 288
   /**
@@ -301,9 +301,9 @@  discard block
 block discarded – undo
301 301
    */
302 302
   public function listDeployments($projectId, $region, $optParams = array())
303 303
   {
304
-    $params = array('projectId' => $projectId, 'region' => $region);
305
-    $params = array_merge($params, $optParams);
306
-    return $this->call('list', array($params), "Google_Service_Manager_DeploymentsListResponse");
304
+	$params = array('projectId' => $projectId, 'region' => $region);
305
+	$params = array_merge($params, $optParams);
306
+	return $this->call('list', array($params), "Google_Service_Manager_DeploymentsListResponse");
307 307
   }
308 308
 }
309 309
 
@@ -327,9 +327,9 @@  discard block
 block discarded – undo
327 327
    */
328 328
   public function delete($projectId, $templateName, $optParams = array())
329 329
   {
330
-    $params = array('projectId' => $projectId, 'templateName' => $templateName);
331
-    $params = array_merge($params, $optParams);
332
-    return $this->call('delete', array($params));
330
+	$params = array('projectId' => $projectId, 'templateName' => $templateName);
331
+	$params = array_merge($params, $optParams);
332
+	return $this->call('delete', array($params));
333 333
   }
334 334
 
335 335
   /**
@@ -342,9 +342,9 @@  discard block
 block discarded – undo
342 342
    */
343 343
   public function get($projectId, $templateName, $optParams = array())
344 344
   {
345
-    $params = array('projectId' => $projectId, 'templateName' => $templateName);
346
-    $params = array_merge($params, $optParams);
347
-    return $this->call('get', array($params), "Google_Service_Manager_Template");
345
+	$params = array('projectId' => $projectId, 'templateName' => $templateName);
346
+	$params = array_merge($params, $optParams);
347
+	return $this->call('get', array($params), "Google_Service_Manager_Template");
348 348
   }
349 349
 
350 350
   /**
@@ -357,9 +357,9 @@  discard block
 block discarded – undo
357 357
    */
358 358
   public function insert($projectId, Google_Service_Manager_Template $postBody, $optParams = array())
359 359
   {
360
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
361
-    $params = array_merge($params, $optParams);
362
-    return $this->call('insert', array($params), "Google_Service_Manager_Template");
360
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
361
+	$params = array_merge($params, $optParams);
362
+	return $this->call('insert', array($params), "Google_Service_Manager_Template");
363 363
   }
364 364
 
365 365
   /**
@@ -377,9 +377,9 @@  discard block
 block discarded – undo
377 377
    */
378 378
   public function listTemplates($projectId, $optParams = array())
379 379
   {
380
-    $params = array('projectId' => $projectId);
381
-    $params = array_merge($params, $optParams);
382
-    return $this->call('list', array($params), "Google_Service_Manager_TemplatesListResponse");
380
+	$params = array('projectId' => $projectId);
381
+	$params = array_merge($params, $optParams);
382
+	return $this->call('list', array($params), "Google_Service_Manager_TemplatesListResponse");
383 383
   }
384 384
 }
385 385
 
@@ -397,27 +397,27 @@  discard block
 block discarded – undo
397 397
 
398 398
   public function setName($name)
399 399
   {
400
-    $this->name = $name;
400
+	$this->name = $name;
401 401
   }
402 402
   public function getName()
403 403
   {
404
-    return $this->name;
404
+	return $this->name;
405 405
   }
406 406
   public function setNatIp($natIp)
407 407
   {
408
-    $this->natIp = $natIp;
408
+	$this->natIp = $natIp;
409 409
   }
410 410
   public function getNatIp()
411 411
   {
412
-    return $this->natIp;
412
+	return $this->natIp;
413 413
   }
414 414
   public function setType($type)
415 415
   {
416
-    $this->type = $type;
416
+	$this->type = $type;
417 417
   }
418 418
   public function getType()
419 419
   {
420
-    return $this->type;
420
+	return $this->type;
421 421
   }
422 422
 }
423 423
 
@@ -432,19 +432,19 @@  discard block
 block discarded – undo
432 432
 
433 433
   public function setCommands($commands)
434 434
   {
435
-    $this->commands = $commands;
435
+	$this->commands = $commands;
436 436
   }
437 437
   public function getCommands()
438 438
   {
439
-    return $this->commands;
439
+	return $this->commands;
440 440
   }
441 441
   public function setTimeoutMs($timeoutMs)
442 442
   {
443
-    $this->timeoutMs = $timeoutMs;
443
+	$this->timeoutMs = $timeoutMs;
444 444
   }
445 445
   public function getTimeoutMs()
446 446
   {
447
-    return $this->timeoutMs;
447
+	return $this->timeoutMs;
448 448
   }
449 449
 }
450 450
 
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
 {
453 453
   protected $collection_key = 'ports';
454 454
   protected $internal_gapi_mappings = array(
455
-        "iPProtocol" => "IPProtocol",
455
+		"iPProtocol" => "IPProtocol",
456 456
   );
457 457
   public $iPProtocol;
458 458
   public $ports;
@@ -460,19 +460,19 @@  discard block
 block discarded – undo
460 460
 
461 461
   public function setIPProtocol($iPProtocol)
462 462
   {
463
-    $this->iPProtocol = $iPProtocol;
463
+	$this->iPProtocol = $iPProtocol;
464 464
   }
465 465
   public function getIPProtocol()
466 466
   {
467
-    return $this->iPProtocol;
467
+	return $this->iPProtocol;
468 468
   }
469 469
   public function setPorts($ports)
470 470
   {
471
-    $this->ports = $ports;
471
+	$this->ports = $ports;
472 472
   }
473 473
   public function getPorts()
474 474
   {
475
-    return $this->ports;
475
+	return $this->ports;
476 476
   }
477 477
 }
478 478
 
@@ -491,59 +491,59 @@  discard block
 block discarded – undo
491 491
 
492 492
   public function setCoolDownPeriodSec($coolDownPeriodSec)
493 493
   {
494
-    $this->coolDownPeriodSec = $coolDownPeriodSec;
494
+	$this->coolDownPeriodSec = $coolDownPeriodSec;
495 495
   }
496 496
   public function getCoolDownPeriodSec()
497 497
   {
498
-    return $this->coolDownPeriodSec;
498
+	return $this->coolDownPeriodSec;
499 499
   }
500 500
   public function setDescription($description)
501 501
   {
502
-    $this->description = $description;
502
+	$this->description = $description;
503 503
   }
504 504
   public function getDescription()
505 505
   {
506
-    return $this->description;
506
+	return $this->description;
507 507
   }
508 508
   public function setMaxNumReplicas($maxNumReplicas)
509 509
   {
510
-    $this->maxNumReplicas = $maxNumReplicas;
510
+	$this->maxNumReplicas = $maxNumReplicas;
511 511
   }
512 512
   public function getMaxNumReplicas()
513 513
   {
514
-    return $this->maxNumReplicas;
514
+	return $this->maxNumReplicas;
515 515
   }
516 516
   public function setMinNumReplicas($minNumReplicas)
517 517
   {
518
-    $this->minNumReplicas = $minNumReplicas;
518
+	$this->minNumReplicas = $minNumReplicas;
519 519
   }
520 520
   public function getMinNumReplicas()
521 521
   {
522
-    return $this->minNumReplicas;
522
+	return $this->minNumReplicas;
523 523
   }
524 524
   public function setSignalType($signalType)
525 525
   {
526
-    $this->signalType = $signalType;
526
+	$this->signalType = $signalType;
527 527
   }
528 528
   public function getSignalType()
529 529
   {
530
-    return $this->signalType;
530
+	return $this->signalType;
531 531
   }
532 532
   public function setTargetModule($targetModule)
533 533
   {
534
-    $this->targetModule = $targetModule;
534
+	$this->targetModule = $targetModule;
535 535
   }
536 536
   public function getTargetModule()
537 537
   {
538
-    return $this->targetModule;
538
+	return $this->targetModule;
539 539
   }
540 540
   public function setTargetUtilization($targetUtilization)
541 541
   {
542
-    $this->targetUtilization = $targetUtilization;
542
+	$this->targetUtilization = $targetUtilization;
543 543
   }
544 544
   public function getTargetUtilization()
545 545
   {
546
-    return $this->targetUtilization;
546
+	return $this->targetUtilization;
547 547
   }
548 548
 }
549 549
 
@@ -556,11 +556,11 @@  discard block
 block discarded – undo
556 556
 
557 557
   public function setAutoscalingConfigUrl($autoscalingConfigUrl)
558 558
   {
559
-    $this->autoscalingConfigUrl = $autoscalingConfigUrl;
559
+	$this->autoscalingConfigUrl = $autoscalingConfigUrl;
560 560
   }
561 561
   public function getAutoscalingConfigUrl()
562 562
   {
563
-    return $this->autoscalingConfigUrl;
563
+	return $this->autoscalingConfigUrl;
564 564
   }
565 565
 }
566 566
 
@@ -574,19 +574,19 @@  discard block
 block discarded – undo
574 574
 
575 575
   public function setDetails($details)
576 576
   {
577
-    $this->details = $details;
577
+	$this->details = $details;
578 578
   }
579 579
   public function getDetails()
580 580
   {
581
-    return $this->details;
581
+	return $this->details;
582 582
   }
583 583
   public function setStatus($status)
584 584
   {
585
-    $this->status = $status;
585
+	$this->status = $status;
586 586
   }
587 587
   public function getStatus()
588 588
   {
589
-    return $this->status;
589
+	return $this->status;
590 590
   }
591 591
 }
592 592
 
@@ -609,59 +609,59 @@  discard block
 block discarded – undo
609 609
 
610 610
   public function setCreationDate($creationDate)
611 611
   {
612
-    $this->creationDate = $creationDate;
612
+	$this->creationDate = $creationDate;
613 613
   }
614 614
   public function getCreationDate()
615 615
   {
616
-    return $this->creationDate;
616
+	return $this->creationDate;
617 617
   }
618 618
   public function setDescription($description)
619 619
   {
620
-    $this->description = $description;
620
+	$this->description = $description;
621 621
   }
622 622
   public function getDescription()
623 623
   {
624
-    return $this->description;
624
+	return $this->description;
625 625
   }
626 626
   public function setModules($modules)
627 627
   {
628
-    $this->modules = $modules;
628
+	$this->modules = $modules;
629 629
   }
630 630
   public function getModules()
631 631
   {
632
-    return $this->modules;
632
+	return $this->modules;
633 633
   }
634 634
   public function setName($name)
635 635
   {
636
-    $this->name = $name;
636
+	$this->name = $name;
637 637
   }
638 638
   public function getName()
639 639
   {
640
-    return $this->name;
640
+	return $this->name;
641 641
   }
642 642
   public function setOverrides($overrides)
643 643
   {
644
-    $this->overrides = $overrides;
644
+	$this->overrides = $overrides;
645 645
   }
646 646
   public function getOverrides()
647 647
   {
648
-    return $this->overrides;
648
+	return $this->overrides;
649 649
   }
650 650
   public function setState(Google_Service_Manager_DeployState $state)
651 651
   {
652
-    $this->state = $state;
652
+	$this->state = $state;
653 653
   }
654 654
   public function getState()
655 655
   {
656
-    return $this->state;
656
+	return $this->state;
657 657
   }
658 658
   public function setTemplateName($templateName)
659 659
   {
660
-    $this->templateName = $templateName;
660
+	$this->templateName = $templateName;
661 661
   }
662 662
   public function getTemplateName()
663 663
   {
664
-    return $this->templateName;
664
+	return $this->templateName;
665 665
   }
666 666
 }
667 667
 
@@ -681,19 +681,19 @@  discard block
 block discarded – undo
681 681
 
682 682
   public function setNextPageToken($nextPageToken)
683 683
   {
684
-    $this->nextPageToken = $nextPageToken;
684
+	$this->nextPageToken = $nextPageToken;
685 685
   }
686 686
   public function getNextPageToken()
687 687
   {
688
-    return $this->nextPageToken;
688
+	return $this->nextPageToken;
689 689
   }
690 690
   public function setResources($resources)
691 691
   {
692
-    $this->resources = $resources;
692
+	$this->resources = $resources;
693 693
   }
694 694
   public function getResources()
695 695
   {
696
-    return $this->resources;
696
+	return $this->resources;
697 697
   }
698 698
 }
699 699
 
@@ -707,19 +707,19 @@  discard block
 block discarded – undo
707 707
 
708 708
   public function setDeviceName($deviceName)
709 709
   {
710
-    $this->deviceName = $deviceName;
710
+	$this->deviceName = $deviceName;
711 711
   }
712 712
   public function getDeviceName()
713 713
   {
714
-    return $this->deviceName;
714
+	return $this->deviceName;
715 715
   }
716 716
   public function setIndex($index)
717 717
   {
718
-    $this->index = $index;
718
+	$this->index = $index;
719 719
   }
720 720
   public function getIndex()
721 721
   {
722
-    return $this->index;
722
+	return $this->index;
723 723
   }
724 724
 }
725 725
 
@@ -733,19 +733,19 @@  discard block
 block discarded – undo
733 733
 
734 734
   public function setHidden($hidden)
735 735
   {
736
-    $this->hidden = $hidden;
736
+	$this->hidden = $hidden;
737 737
   }
738 738
   public function getHidden()
739 739
   {
740
-    return $this->hidden;
740
+	return $this->hidden;
741 741
   }
742 742
   public function setValue($value)
743 743
   {
744
-    $this->value = $value;
744
+	$this->value = $value;
745 745
   }
746 746
   public function getValue()
747 747
   {
748
-    return $this->value;
748
+	return $this->value;
749 749
   }
750 750
 }
751 751
 
@@ -760,19 +760,19 @@  discard block
 block discarded – undo
760 760
 
761 761
   public function setAttachment(Google_Service_Manager_DiskAttachment $attachment)
762 762
   {
763
-    $this->attachment = $attachment;
763
+	$this->attachment = $attachment;
764 764
   }
765 765
   public function getAttachment()
766 766
   {
767
-    return $this->attachment;
767
+	return $this->attachment;
768 768
   }
769 769
   public function setSource($source)
770 770
   {
771
-    $this->source = $source;
771
+	$this->source = $source;
772 772
   }
773 773
   public function getSource()
774 774
   {
775
-    return $this->source;
775
+	return $this->source;
776 776
   }
777 777
 }
778 778
 
@@ -792,51 +792,51 @@  discard block
 block discarded – undo
792 792
 
793 793
   public function setAllowed($allowed)
794 794
   {
795
-    $this->allowed = $allowed;
795
+	$this->allowed = $allowed;
796 796
   }
797 797
   public function getAllowed()
798 798
   {
799
-    return $this->allowed;
799
+	return $this->allowed;
800 800
   }
801 801
   public function setDescription($description)
802 802
   {
803
-    $this->description = $description;
803
+	$this->description = $description;
804 804
   }
805 805
   public function getDescription()
806 806
   {
807
-    return $this->description;
807
+	return $this->description;
808 808
   }
809 809
   public function setNetwork($network)
810 810
   {
811
-    $this->network = $network;
811
+	$this->network = $network;
812 812
   }
813 813
   public function getNetwork()
814 814
   {
815
-    return $this->network;
815
+	return $this->network;
816 816
   }
817 817
   public function setSourceRanges($sourceRanges)
818 818
   {
819
-    $this->sourceRanges = $sourceRanges;
819
+	$this->sourceRanges = $sourceRanges;
820 820
   }
821 821
   public function getSourceRanges()
822 822
   {
823
-    return $this->sourceRanges;
823
+	return $this->sourceRanges;
824 824
   }
825 825
   public function setSourceTags($sourceTags)
826 826
   {
827
-    $this->sourceTags = $sourceTags;
827
+	$this->sourceTags = $sourceTags;
828 828
   }
829 829
   public function getSourceTags()
830 830
   {
831
-    return $this->sourceTags;
831
+	return $this->sourceTags;
832 832
   }
833 833
   public function setTargetTags($targetTags)
834 834
   {
835
-    $this->targetTags = $targetTags;
835
+	$this->targetTags = $targetTags;
836 836
   }
837 837
   public function getTargetTags()
838 838
   {
839
-    return $this->targetTags;
839
+	return $this->targetTags;
840 840
   }
841 841
 }
842 842
 
@@ -849,11 +849,11 @@  discard block
 block discarded – undo
849 849
 
850 850
   public function setFirewallUrl($firewallUrl)
851 851
   {
852
-    $this->firewallUrl = $firewallUrl;
852
+	$this->firewallUrl = $firewallUrl;
853 853
   }
854 854
   public function getFirewallUrl()
855 855
   {
856
-    return $this->firewallUrl;
856
+	return $this->firewallUrl;
857 857
   }
858 858
 }
859 859
 
@@ -873,67 +873,67 @@  discard block
 block discarded – undo
873 873
 
874 874
   public function setCheckIntervalSec($checkIntervalSec)
875 875
   {
876
-    $this->checkIntervalSec = $checkIntervalSec;
876
+	$this->checkIntervalSec = $checkIntervalSec;
877 877
   }
878 878
   public function getCheckIntervalSec()
879 879
   {
880
-    return $this->checkIntervalSec;
880
+	return $this->checkIntervalSec;
881 881
   }
882 882
   public function setDescription($description)
883 883
   {
884
-    $this->description = $description;
884
+	$this->description = $description;
885 885
   }
886 886
   public function getDescription()
887 887
   {
888
-    return $this->description;
888
+	return $this->description;
889 889
   }
890 890
   public function setHealthyThreshold($healthyThreshold)
891 891
   {
892
-    $this->healthyThreshold = $healthyThreshold;
892
+	$this->healthyThreshold = $healthyThreshold;
893 893
   }
894 894
   public function getHealthyThreshold()
895 895
   {
896
-    return $this->healthyThreshold;
896
+	return $this->healthyThreshold;
897 897
   }
898 898
   public function setHost($host)
899 899
   {
900
-    $this->host = $host;
900
+	$this->host = $host;
901 901
   }
902 902
   public function getHost()
903 903
   {
904
-    return $this->host;
904
+	return $this->host;
905 905
   }
906 906
   public function setPath($path)
907 907
   {
908
-    $this->path = $path;
908
+	$this->path = $path;
909 909
   }
910 910
   public function getPath()
911 911
   {
912
-    return $this->path;
912
+	return $this->path;
913 913
   }
914 914
   public function setPort($port)
915 915
   {
916
-    $this->port = $port;
916
+	$this->port = $port;
917 917
   }
918 918
   public function getPort()
919 919
   {
920
-    return $this->port;
920
+	return $this->port;
921 921
   }
922 922
   public function setTimeoutSec($timeoutSec)
923 923
   {
924
-    $this->timeoutSec = $timeoutSec;
924
+	$this->timeoutSec = $timeoutSec;
925 925
   }
926 926
   public function getTimeoutSec()
927 927
   {
928
-    return $this->timeoutSec;
928
+	return $this->timeoutSec;
929 929
   }
930 930
   public function setUnhealthyThreshold($unhealthyThreshold)
931 931
   {
932
-    $this->unhealthyThreshold = $unhealthyThreshold;
932
+	$this->unhealthyThreshold = $unhealthyThreshold;
933 933
   }
934 934
   public function getUnhealthyThreshold()
935 935
   {
936
-    return $this->unhealthyThreshold;
936
+	return $this->unhealthyThreshold;
937 937
   }
938 938
 }
939 939
 
@@ -946,11 +946,11 @@  discard block
 block discarded – undo
946 946
 
947 947
   public function setHealthCheckUrl($healthCheckUrl)
948 948
   {
949
-    $this->healthCheckUrl = $healthCheckUrl;
949
+	$this->healthCheckUrl = $healthCheckUrl;
950 950
   }
951 951
   public function getHealthCheckUrl()
952 952
   {
953
-    return $this->healthCheckUrl;
953
+	return $this->healthCheckUrl;
954 954
   }
955 955
 }
956 956
 
@@ -970,59 +970,59 @@  discard block
 block discarded – undo
970 970
 
971 971
   public function setDescription($description)
972 972
   {
973
-    $this->description = $description;
973
+	$this->description = $description;
974 974
   }
975 975
   public function getDescription()
976 976
   {
977
-    return $this->description;
977
+	return $this->description;
978 978
   }
979 979
   public function setHealthChecks($healthChecks)
980 980
   {
981
-    $this->healthChecks = $healthChecks;
981
+	$this->healthChecks = $healthChecks;
982 982
   }
983 983
   public function getHealthChecks()
984 984
   {
985
-    return $this->healthChecks;
985
+	return $this->healthChecks;
986 986
   }
987 987
   public function setIpAddress($ipAddress)
988 988
   {
989
-    $this->ipAddress = $ipAddress;
989
+	$this->ipAddress = $ipAddress;
990 990
   }
991 991
   public function getIpAddress()
992 992
   {
993
-    return $this->ipAddress;
993
+	return $this->ipAddress;
994 994
   }
995 995
   public function setIpProtocol($ipProtocol)
996 996
   {
997
-    $this->ipProtocol = $ipProtocol;
997
+	$this->ipProtocol = $ipProtocol;
998 998
   }
999 999
   public function getIpProtocol()
1000 1000
   {
1001
-    return $this->ipProtocol;
1001
+	return $this->ipProtocol;
1002 1002
   }
1003 1003
   public function setPortRange($portRange)
1004 1004
   {
1005
-    $this->portRange = $portRange;
1005
+	$this->portRange = $portRange;
1006 1006
   }
1007 1007
   public function getPortRange()
1008 1008
   {
1009
-    return $this->portRange;
1009
+	return $this->portRange;
1010 1010
   }
1011 1011
   public function setSessionAffinity($sessionAffinity)
1012 1012
   {
1013
-    $this->sessionAffinity = $sessionAffinity;
1013
+	$this->sessionAffinity = $sessionAffinity;
1014 1014
   }
1015 1015
   public function getSessionAffinity()
1016 1016
   {
1017
-    return $this->sessionAffinity;
1017
+	return $this->sessionAffinity;
1018 1018
   }
1019 1019
   public function setTargetModules($targetModules)
1020 1020
   {
1021
-    $this->targetModules = $targetModules;
1021
+	$this->targetModules = $targetModules;
1022 1022
   }
1023 1023
   public function getTargetModules()
1024 1024
   {
1025
-    return $this->targetModules;
1025
+	return $this->targetModules;
1026 1026
   }
1027 1027
 }
1028 1028
 
@@ -1036,19 +1036,19 @@  discard block
 block discarded – undo
1036 1036
 
1037 1037
   public function setForwardingRuleUrl($forwardingRuleUrl)
1038 1038
   {
1039
-    $this->forwardingRuleUrl = $forwardingRuleUrl;
1039
+	$this->forwardingRuleUrl = $forwardingRuleUrl;
1040 1040
   }
1041 1041
   public function getForwardingRuleUrl()
1042 1042
   {
1043
-    return $this->forwardingRuleUrl;
1043
+	return $this->forwardingRuleUrl;
1044 1044
   }
1045 1045
   public function setTargetPoolUrl($targetPoolUrl)
1046 1046
   {
1047
-    $this->targetPoolUrl = $targetPoolUrl;
1047
+	$this->targetPoolUrl = $targetPoolUrl;
1048 1048
   }
1049 1049
   public function getTargetPoolUrl()
1050 1050
   {
1051
-    return $this->targetPoolUrl;
1051
+	return $this->targetPoolUrl;
1052 1052
   }
1053 1053
 }
1054 1054
 
@@ -1064,19 +1064,19 @@  discard block
 block discarded – undo
1064 1064
 
1065 1065
   public function setFingerPrint($fingerPrint)
1066 1066
   {
1067
-    $this->fingerPrint = $fingerPrint;
1067
+	$this->fingerPrint = $fingerPrint;
1068 1068
   }
1069 1069
   public function getFingerPrint()
1070 1070
   {
1071
-    return $this->fingerPrint;
1071
+	return $this->fingerPrint;
1072 1072
   }
1073 1073
   public function setItems($items)
1074 1074
   {
1075
-    $this->items = $items;
1075
+	$this->items = $items;
1076 1076
   }
1077 1077
   public function getItems()
1078 1078
   {
1079
-    return $this->items;
1079
+	return $this->items;
1080 1080
   }
1081 1081
 }
1082 1082
 
@@ -1090,19 +1090,19 @@  discard block
 block discarded – undo
1090 1090
 
1091 1091
   public function setKey($key)
1092 1092
   {
1093
-    $this->key = $key;
1093
+	$this->key = $key;
1094 1094
   }
1095 1095
   public function getKey()
1096 1096
   {
1097
-    return $this->key;
1097
+	return $this->key;
1098 1098
   }
1099 1099
   public function setValue($value)
1100 1100
   {
1101
-    $this->value = $value;
1101
+	$this->value = $value;
1102 1102
   }
1103 1103
   public function getValue()
1104 1104
   {
1105
-    return $this->value;
1105
+	return $this->value;
1106 1106
   }
1107 1107
 }
1108 1108
 
@@ -1127,59 +1127,59 @@  discard block
 block discarded – undo
1127 1127
 
1128 1128
   public function setAutoscalingModule(Google_Service_Manager_AutoscalingModule $autoscalingModule)
1129 1129
   {
1130
-    $this->autoscalingModule = $autoscalingModule;
1130
+	$this->autoscalingModule = $autoscalingModule;
1131 1131
   }
1132 1132
   public function getAutoscalingModule()
1133 1133
   {
1134
-    return $this->autoscalingModule;
1134
+	return $this->autoscalingModule;
1135 1135
   }
1136 1136
   public function setFirewallModule(Google_Service_Manager_FirewallModule $firewallModule)
1137 1137
   {
1138
-    $this->firewallModule = $firewallModule;
1138
+	$this->firewallModule = $firewallModule;
1139 1139
   }
1140 1140
   public function getFirewallModule()
1141 1141
   {
1142
-    return $this->firewallModule;
1142
+	return $this->firewallModule;
1143 1143
   }
1144 1144
   public function setHealthCheckModule(Google_Service_Manager_HealthCheckModule $healthCheckModule)
1145 1145
   {
1146
-    $this->healthCheckModule = $healthCheckModule;
1146
+	$this->healthCheckModule = $healthCheckModule;
1147 1147
   }
1148 1148
   public function getHealthCheckModule()
1149 1149
   {
1150
-    return $this->healthCheckModule;
1150
+	return $this->healthCheckModule;
1151 1151
   }
1152 1152
   public function setLbModule(Google_Service_Manager_LbModule $lbModule)
1153 1153
   {
1154
-    $this->lbModule = $lbModule;
1154
+	$this->lbModule = $lbModule;
1155 1155
   }
1156 1156
   public function getLbModule()
1157 1157
   {
1158
-    return $this->lbModule;
1158
+	return $this->lbModule;
1159 1159
   }
1160 1160
   public function setNetworkModule(Google_Service_Manager_NetworkModule $networkModule)
1161 1161
   {
1162
-    $this->networkModule = $networkModule;
1162
+	$this->networkModule = $networkModule;
1163 1163
   }
1164 1164
   public function getNetworkModule()
1165 1165
   {
1166
-    return $this->networkModule;
1166
+	return $this->networkModule;
1167 1167
   }
1168 1168
   public function setReplicaPoolModule(Google_Service_Manager_ReplicaPoolModule $replicaPoolModule)
1169 1169
   {
1170
-    $this->replicaPoolModule = $replicaPoolModule;
1170
+	$this->replicaPoolModule = $replicaPoolModule;
1171 1171
   }
1172 1172
   public function getReplicaPoolModule()
1173 1173
   {
1174
-    return $this->replicaPoolModule;
1174
+	return $this->replicaPoolModule;
1175 1175
   }
1176 1176
   public function setType($type)
1177 1177
   {
1178
-    $this->type = $type;
1178
+	$this->type = $type;
1179 1179
   }
1180 1180
   public function getType()
1181 1181
   {
1182
-    return $this->type;
1182
+	return $this->type;
1183 1183
   }
1184 1184
 }
1185 1185
 
@@ -1206,67 +1206,67 @@  discard block
 block discarded – undo
1206 1206
 
1207 1207
   public function setAutoscalingModuleStatus(Google_Service_Manager_AutoscalingModuleStatus $autoscalingModuleStatus)
1208 1208
   {
1209
-    $this->autoscalingModuleStatus = $autoscalingModuleStatus;
1209
+	$this->autoscalingModuleStatus = $autoscalingModuleStatus;
1210 1210
   }
1211 1211
   public function getAutoscalingModuleStatus()
1212 1212
   {
1213
-    return $this->autoscalingModuleStatus;
1213
+	return $this->autoscalingModuleStatus;
1214 1214
   }
1215 1215
   public function setFirewallModuleStatus(Google_Service_Manager_FirewallModuleStatus $firewallModuleStatus)
1216 1216
   {
1217
-    $this->firewallModuleStatus = $firewallModuleStatus;
1217
+	$this->firewallModuleStatus = $firewallModuleStatus;
1218 1218
   }
1219 1219
   public function getFirewallModuleStatus()
1220 1220
   {
1221
-    return $this->firewallModuleStatus;
1221
+	return $this->firewallModuleStatus;
1222 1222
   }
1223 1223
   public function setHealthCheckModuleStatus(Google_Service_Manager_HealthCheckModuleStatus $healthCheckModuleStatus)
1224 1224
   {
1225
-    $this->healthCheckModuleStatus = $healthCheckModuleStatus;
1225
+	$this->healthCheckModuleStatus = $healthCheckModuleStatus;
1226 1226
   }
1227 1227
   public function getHealthCheckModuleStatus()
1228 1228
   {
1229
-    return $this->healthCheckModuleStatus;
1229
+	return $this->healthCheckModuleStatus;
1230 1230
   }
1231 1231
   public function setLbModuleStatus(Google_Service_Manager_LbModuleStatus $lbModuleStatus)
1232 1232
   {
1233
-    $this->lbModuleStatus = $lbModuleStatus;
1233
+	$this->lbModuleStatus = $lbModuleStatus;
1234 1234
   }
1235 1235
   public function getLbModuleStatus()
1236 1236
   {
1237
-    return $this->lbModuleStatus;
1237
+	return $this->lbModuleStatus;
1238 1238
   }
1239 1239
   public function setNetworkModuleStatus(Google_Service_Manager_NetworkModuleStatus $networkModuleStatus)
1240 1240
   {
1241
-    $this->networkModuleStatus = $networkModuleStatus;
1241
+	$this->networkModuleStatus = $networkModuleStatus;
1242 1242
   }
1243 1243
   public function getNetworkModuleStatus()
1244 1244
   {
1245
-    return $this->networkModuleStatus;
1245
+	return $this->networkModuleStatus;
1246 1246
   }
1247 1247
   public function setReplicaPoolModuleStatus(Google_Service_Manager_ReplicaPoolModuleStatus $replicaPoolModuleStatus)
1248 1248
   {
1249
-    $this->replicaPoolModuleStatus = $replicaPoolModuleStatus;
1249
+	$this->replicaPoolModuleStatus = $replicaPoolModuleStatus;
1250 1250
   }
1251 1251
   public function getReplicaPoolModuleStatus()
1252 1252
   {
1253
-    return $this->replicaPoolModuleStatus;
1253
+	return $this->replicaPoolModuleStatus;
1254 1254
   }
1255 1255
   public function setState(Google_Service_Manager_DeployState $state)
1256 1256
   {
1257
-    $this->state = $state;
1257
+	$this->state = $state;
1258 1258
   }
1259 1259
   public function getState()
1260 1260
   {
1261
-    return $this->state;
1261
+	return $this->state;
1262 1262
   }
1263 1263
   public function setType($type)
1264 1264
   {
1265
-    $this->type = $type;
1265
+	$this->type = $type;
1266 1266
   }
1267 1267
   public function getType()
1268 1268
   {
1269
-    return $this->type;
1269
+	return $this->type;
1270 1270
   }
1271 1271
 }
1272 1272
 
@@ -1284,42 +1284,42 @@  discard block
 block discarded – undo
1284 1284
 
1285 1285
   public function setAccessConfigs($accessConfigs)
1286 1286
   {
1287
-    $this->accessConfigs = $accessConfigs;
1287
+	$this->accessConfigs = $accessConfigs;
1288 1288
   }
1289 1289
   public function getAccessConfigs()
1290 1290
   {
1291
-    return $this->accessConfigs;
1291
+	return $this->accessConfigs;
1292 1292
   }
1293 1293
   public function setName($name)
1294 1294
   {
1295
-    $this->name = $name;
1295
+	$this->name = $name;
1296 1296
   }
1297 1297
   public function getName()
1298 1298
   {
1299
-    return $this->name;
1299
+	return $this->name;
1300 1300
   }
1301 1301
   public function setNetwork($network)
1302 1302
   {
1303
-    $this->network = $network;
1303
+	$this->network = $network;
1304 1304
   }
1305 1305
   public function getNetwork()
1306 1306
   {
1307
-    return $this->network;
1307
+	return $this->network;
1308 1308
   }
1309 1309
   public function setNetworkIp($networkIp)
1310 1310
   {
1311
-    $this->networkIp = $networkIp;
1311
+	$this->networkIp = $networkIp;
1312 1312
   }
1313 1313
   public function getNetworkIp()
1314 1314
   {
1315
-    return $this->networkIp;
1315
+	return $this->networkIp;
1316 1316
   }
1317 1317
 }
1318 1318
 
1319 1319
 class Google_Service_Manager_NetworkModule extends Google_Model
1320 1320
 {
1321 1321
   protected $internal_gapi_mappings = array(
1322
-        "iPv4Range" => "IPv4Range",
1322
+		"iPv4Range" => "IPv4Range",
1323 1323
   );
1324 1324
   public $iPv4Range;
1325 1325
   public $description;
@@ -1328,27 +1328,27 @@  discard block
 block discarded – undo
1328 1328
 
1329 1329
   public function setIPv4Range($iPv4Range)
1330 1330
   {
1331
-    $this->iPv4Range = $iPv4Range;
1331
+	$this->iPv4Range = $iPv4Range;
1332 1332
   }
1333 1333
   public function getIPv4Range()
1334 1334
   {
1335
-    return $this->iPv4Range;
1335
+	return $this->iPv4Range;
1336 1336
   }
1337 1337
   public function setDescription($description)
1338 1338
   {
1339
-    $this->description = $description;
1339
+	$this->description = $description;
1340 1340
   }
1341 1341
   public function getDescription()
1342 1342
   {
1343
-    return $this->description;
1343
+	return $this->description;
1344 1344
   }
1345 1345
   public function setGatewayIPv4($gatewayIPv4)
1346 1346
   {
1347
-    $this->gatewayIPv4 = $gatewayIPv4;
1347
+	$this->gatewayIPv4 = $gatewayIPv4;
1348 1348
   }
1349 1349
   public function getGatewayIPv4()
1350 1350
   {
1351
-    return $this->gatewayIPv4;
1351
+	return $this->gatewayIPv4;
1352 1352
   }
1353 1353
 }
1354 1354
 
@@ -1361,11 +1361,11 @@  discard block
 block discarded – undo
1361 1361
 
1362 1362
   public function setNetworkUrl($networkUrl)
1363 1363
   {
1364
-    $this->networkUrl = $networkUrl;
1364
+	$this->networkUrl = $networkUrl;
1365 1365
   }
1366 1366
   public function getNetworkUrl()
1367 1367
   {
1368
-    return $this->networkUrl;
1368
+	return $this->networkUrl;
1369 1369
   }
1370 1370
 }
1371 1371
 
@@ -1383,35 +1383,35 @@  discard block
 block discarded – undo
1383 1383
 
1384 1384
   public function setAttachment(Google_Service_Manager_DiskAttachment $attachment)
1385 1385
   {
1386
-    $this->attachment = $attachment;
1386
+	$this->attachment = $attachment;
1387 1387
   }
1388 1388
   public function getAttachment()
1389 1389
   {
1390
-    return $this->attachment;
1390
+	return $this->attachment;
1391 1391
   }
1392 1392
   public function setAutoDelete($autoDelete)
1393 1393
   {
1394
-    $this->autoDelete = $autoDelete;
1394
+	$this->autoDelete = $autoDelete;
1395 1395
   }
1396 1396
   public function getAutoDelete()
1397 1397
   {
1398
-    return $this->autoDelete;
1398
+	return $this->autoDelete;
1399 1399
   }
1400 1400
   public function setBoot($boot)
1401 1401
   {
1402
-    $this->boot = $boot;
1402
+	$this->boot = $boot;
1403 1403
   }
1404 1404
   public function getBoot()
1405 1405
   {
1406
-    return $this->boot;
1406
+	return $this->boot;
1407 1407
   }
1408 1408
   public function setInitializeParams(Google_Service_Manager_NewDiskInitializeParams $initializeParams)
1409 1409
   {
1410
-    $this->initializeParams = $initializeParams;
1410
+	$this->initializeParams = $initializeParams;
1411 1411
   }
1412 1412
   public function getInitializeParams()
1413 1413
   {
1414
-    return $this->initializeParams;
1414
+	return $this->initializeParams;
1415 1415
   }
1416 1416
 }
1417 1417
 
@@ -1426,27 +1426,27 @@  discard block
 block discarded – undo
1426 1426
 
1427 1427
   public function setDiskSizeGb($diskSizeGb)
1428 1428
   {
1429
-    $this->diskSizeGb = $diskSizeGb;
1429
+	$this->diskSizeGb = $diskSizeGb;
1430 1430
   }
1431 1431
   public function getDiskSizeGb()
1432 1432
   {
1433
-    return $this->diskSizeGb;
1433
+	return $this->diskSizeGb;
1434 1434
   }
1435 1435
   public function setDiskType($diskType)
1436 1436
   {
1437
-    $this->diskType = $diskType;
1437
+	$this->diskType = $diskType;
1438 1438
   }
1439 1439
   public function getDiskType()
1440 1440
   {
1441
-    return $this->diskType;
1441
+	return $this->diskType;
1442 1442
   }
1443 1443
   public function setSourceImage($sourceImage)
1444 1444
   {
1445
-    $this->sourceImage = $sourceImage;
1445
+	$this->sourceImage = $sourceImage;
1446 1446
   }
1447 1447
   public function getSourceImage()
1448 1448
   {
1449
-    return $this->sourceImage;
1449
+	return $this->sourceImage;
1450 1450
   }
1451 1451
 }
1452 1452
 
@@ -1460,19 +1460,19 @@  discard block
 block discarded – undo
1460 1460
 
1461 1461
   public function setPath($path)
1462 1462
   {
1463
-    $this->path = $path;
1463
+	$this->path = $path;
1464 1464
   }
1465 1465
   public function getPath()
1466 1466
   {
1467
-    return $this->path;
1467
+	return $this->path;
1468 1468
   }
1469 1469
   public function setValue($value)
1470 1470
   {
1471
-    $this->value = $value;
1471
+	$this->value = $value;
1472 1472
   }
1473 1473
   public function getValue()
1474 1474
   {
1475
-    return $this->value;
1475
+	return $this->value;
1476 1476
   }
1477 1477
 }
1478 1478
 
@@ -1492,43 +1492,43 @@  discard block
 block discarded – undo
1492 1492
 
1493 1493
   public function setEnvVariables($envVariables)
1494 1494
   {
1495
-    $this->envVariables = $envVariables;
1495
+	$this->envVariables = $envVariables;
1496 1496
   }
1497 1497
   public function getEnvVariables()
1498 1498
   {
1499
-    return $this->envVariables;
1499
+	return $this->envVariables;
1500 1500
   }
1501 1501
   public function setHealthChecks($healthChecks)
1502 1502
   {
1503
-    $this->healthChecks = $healthChecks;
1503
+	$this->healthChecks = $healthChecks;
1504 1504
   }
1505 1505
   public function getHealthChecks()
1506 1506
   {
1507
-    return $this->healthChecks;
1507
+	return $this->healthChecks;
1508 1508
   }
1509 1509
   public function setNumReplicas($numReplicas)
1510 1510
   {
1511
-    $this->numReplicas = $numReplicas;
1511
+	$this->numReplicas = $numReplicas;
1512 1512
   }
1513 1513
   public function getNumReplicas()
1514 1514
   {
1515
-    return $this->numReplicas;
1515
+	return $this->numReplicas;
1516 1516
   }
1517 1517
   public function setReplicaPoolParams(Google_Service_Manager_ReplicaPoolParams $replicaPoolParams)
1518 1518
   {
1519
-    $this->replicaPoolParams = $replicaPoolParams;
1519
+	$this->replicaPoolParams = $replicaPoolParams;
1520 1520
   }
1521 1521
   public function getReplicaPoolParams()
1522 1522
   {
1523
-    return $this->replicaPoolParams;
1523
+	return $this->replicaPoolParams;
1524 1524
   }
1525 1525
   public function setResourceView($resourceView)
1526 1526
   {
1527
-    $this->resourceView = $resourceView;
1527
+	$this->resourceView = $resourceView;
1528 1528
   }
1529 1529
   public function getResourceView()
1530 1530
   {
1531
-    return $this->resourceView;
1531
+	return $this->resourceView;
1532 1532
   }
1533 1533
 }
1534 1534
 
@@ -1546,19 +1546,19 @@  discard block
 block discarded – undo
1546 1546
 
1547 1547
   public function setReplicaPoolUrl($replicaPoolUrl)
1548 1548
   {
1549
-    $this->replicaPoolUrl = $replicaPoolUrl;
1549
+	$this->replicaPoolUrl = $replicaPoolUrl;
1550 1550
   }
1551 1551
   public function getReplicaPoolUrl()
1552 1552
   {
1553
-    return $this->replicaPoolUrl;
1553
+	return $this->replicaPoolUrl;
1554 1554
   }
1555 1555
   public function setResourceViewUrl($resourceViewUrl)
1556 1556
   {
1557
-    $this->resourceViewUrl = $resourceViewUrl;
1557
+	$this->resourceViewUrl = $resourceViewUrl;
1558 1558
   }
1559 1559
   public function getResourceViewUrl()
1560 1560
   {
1561
-    return $this->resourceViewUrl;
1561
+	return $this->resourceViewUrl;
1562 1562
   }
1563 1563
 }
1564 1564
 
@@ -1572,11 +1572,11 @@  discard block
 block discarded – undo
1572 1572
 
1573 1573
   public function setV1beta1(Google_Service_Manager_ReplicaPoolParamsV1Beta1 $v1beta1)
1574 1574
   {
1575
-    $this->v1beta1 = $v1beta1;
1575
+	$this->v1beta1 = $v1beta1;
1576 1576
   }
1577 1577
   public function getV1beta1()
1578 1578
   {
1579
-    return $this->v1beta1;
1579
+	return $this->v1beta1;
1580 1580
   }
1581 1581
 }
1582 1582
 
@@ -1609,115 +1609,115 @@  discard block
 block discarded – undo
1609 1609
 
1610 1610
   public function setAutoRestart($autoRestart)
1611 1611
   {
1612
-    $this->autoRestart = $autoRestart;
1612
+	$this->autoRestart = $autoRestart;
1613 1613
   }
1614 1614
   public function getAutoRestart()
1615 1615
   {
1616
-    return $this->autoRestart;
1616
+	return $this->autoRestart;
1617 1617
   }
1618 1618
   public function setBaseInstanceName($baseInstanceName)
1619 1619
   {
1620
-    $this->baseInstanceName = $baseInstanceName;
1620
+	$this->baseInstanceName = $baseInstanceName;
1621 1621
   }
1622 1622
   public function getBaseInstanceName()
1623 1623
   {
1624
-    return $this->baseInstanceName;
1624
+	return $this->baseInstanceName;
1625 1625
   }
1626 1626
   public function setCanIpForward($canIpForward)
1627 1627
   {
1628
-    $this->canIpForward = $canIpForward;
1628
+	$this->canIpForward = $canIpForward;
1629 1629
   }
1630 1630
   public function getCanIpForward()
1631 1631
   {
1632
-    return $this->canIpForward;
1632
+	return $this->canIpForward;
1633 1633
   }
1634 1634
   public function setDescription($description)
1635 1635
   {
1636
-    $this->description = $description;
1636
+	$this->description = $description;
1637 1637
   }
1638 1638
   public function getDescription()
1639 1639
   {
1640
-    return $this->description;
1640
+	return $this->description;
1641 1641
   }
1642 1642
   public function setDisksToAttach($disksToAttach)
1643 1643
   {
1644
-    $this->disksToAttach = $disksToAttach;
1644
+	$this->disksToAttach = $disksToAttach;
1645 1645
   }
1646 1646
   public function getDisksToAttach()
1647 1647
   {
1648
-    return $this->disksToAttach;
1648
+	return $this->disksToAttach;
1649 1649
   }
1650 1650
   public function setDisksToCreate($disksToCreate)
1651 1651
   {
1652
-    $this->disksToCreate = $disksToCreate;
1652
+	$this->disksToCreate = $disksToCreate;
1653 1653
   }
1654 1654
   public function getDisksToCreate()
1655 1655
   {
1656
-    return $this->disksToCreate;
1656
+	return $this->disksToCreate;
1657 1657
   }
1658 1658
   public function setInitAction($initAction)
1659 1659
   {
1660
-    $this->initAction = $initAction;
1660
+	$this->initAction = $initAction;
1661 1661
   }
1662 1662
   public function getInitAction()
1663 1663
   {
1664
-    return $this->initAction;
1664
+	return $this->initAction;
1665 1665
   }
1666 1666
   public function setMachineType($machineType)
1667 1667
   {
1668
-    $this->machineType = $machineType;
1668
+	$this->machineType = $machineType;
1669 1669
   }
1670 1670
   public function getMachineType()
1671 1671
   {
1672
-    return $this->machineType;
1672
+	return $this->machineType;
1673 1673
   }
1674 1674
   public function setMetadata(Google_Service_Manager_Metadata $metadata)
1675 1675
   {
1676
-    $this->metadata = $metadata;
1676
+	$this->metadata = $metadata;
1677 1677
   }
1678 1678
   public function getMetadata()
1679 1679
   {
1680
-    return $this->metadata;
1680
+	return $this->metadata;
1681 1681
   }
1682 1682
   public function setNetworkInterfaces($networkInterfaces)
1683 1683
   {
1684
-    $this->networkInterfaces = $networkInterfaces;
1684
+	$this->networkInterfaces = $networkInterfaces;
1685 1685
   }
1686 1686
   public function getNetworkInterfaces()
1687 1687
   {
1688
-    return $this->networkInterfaces;
1688
+	return $this->networkInterfaces;
1689 1689
   }
1690 1690
   public function setOnHostMaintenance($onHostMaintenance)
1691 1691
   {
1692
-    $this->onHostMaintenance = $onHostMaintenance;
1692
+	$this->onHostMaintenance = $onHostMaintenance;
1693 1693
   }
1694 1694
   public function getOnHostMaintenance()
1695 1695
   {
1696
-    return $this->onHostMaintenance;
1696
+	return $this->onHostMaintenance;
1697 1697
   }
1698 1698
   public function setServiceAccounts($serviceAccounts)
1699 1699
   {
1700
-    $this->serviceAccounts = $serviceAccounts;
1700
+	$this->serviceAccounts = $serviceAccounts;
1701 1701
   }
1702 1702
   public function getServiceAccounts()
1703 1703
   {
1704
-    return $this->serviceAccounts;
1704
+	return $this->serviceAccounts;
1705 1705
   }
1706 1706
   public function setTags(Google_Service_Manager_Tag $tags)
1707 1707
   {
1708
-    $this->tags = $tags;
1708
+	$this->tags = $tags;
1709 1709
   }
1710 1710
   public function getTags()
1711 1711
   {
1712
-    return $this->tags;
1712
+	return $this->tags;
1713 1713
   }
1714 1714
   public function setZone($zone)
1715 1715
   {
1716
-    $this->zone = $zone;
1716
+	$this->zone = $zone;
1717 1717
   }
1718 1718
   public function getZone()
1719 1719
   {
1720
-    return $this->zone;
1720
+	return $this->zone;
1721 1721
   }
1722 1722
 }
1723 1723
 
@@ -1732,19 +1732,19 @@  discard block
 block discarded – undo
1732 1732
 
1733 1733
   public function setEmail($email)
1734 1734
   {
1735
-    $this->email = $email;
1735
+	$this->email = $email;
1736 1736
   }
1737 1737
   public function getEmail()
1738 1738
   {
1739
-    return $this->email;
1739
+	return $this->email;
1740 1740
   }
1741 1741
   public function setScopes($scopes)
1742 1742
   {
1743
-    $this->scopes = $scopes;
1743
+	$this->scopes = $scopes;
1744 1744
   }
1745 1745
   public function getScopes()
1746 1746
   {
1747
-    return $this->scopes;
1747
+	return $this->scopes;
1748 1748
   }
1749 1749
 }
1750 1750
 
@@ -1759,19 +1759,19 @@  discard block
 block discarded – undo
1759 1759
 
1760 1760
   public function setFingerPrint($fingerPrint)
1761 1761
   {
1762
-    $this->fingerPrint = $fingerPrint;
1762
+	$this->fingerPrint = $fingerPrint;
1763 1763
   }
1764 1764
   public function getFingerPrint()
1765 1765
   {
1766
-    return $this->fingerPrint;
1766
+	return $this->fingerPrint;
1767 1767
   }
1768 1768
   public function setItems($items)
1769 1769
   {
1770
-    $this->items = $items;
1770
+	$this->items = $items;
1771 1771
   }
1772 1772
   public function getItems()
1773 1773
   {
1774
-    return $this->items;
1774
+	return $this->items;
1775 1775
   }
1776 1776
 }
1777 1777
 
@@ -1789,35 +1789,35 @@  discard block
 block discarded – undo
1789 1789
 
1790 1790
   public function setActions($actions)
1791 1791
   {
1792
-    $this->actions = $actions;
1792
+	$this->actions = $actions;
1793 1793
   }
1794 1794
   public function getActions()
1795 1795
   {
1796
-    return $this->actions;
1796
+	return $this->actions;
1797 1797
   }
1798 1798
   public function setDescription($description)
1799 1799
   {
1800
-    $this->description = $description;
1800
+	$this->description = $description;
1801 1801
   }
1802 1802
   public function getDescription()
1803 1803
   {
1804
-    return $this->description;
1804
+	return $this->description;
1805 1805
   }
1806 1806
   public function setModules($modules)
1807 1807
   {
1808
-    $this->modules = $modules;
1808
+	$this->modules = $modules;
1809 1809
   }
1810 1810
   public function getModules()
1811 1811
   {
1812
-    return $this->modules;
1812
+	return $this->modules;
1813 1813
   }
1814 1814
   public function setName($name)
1815 1815
   {
1816
-    $this->name = $name;
1816
+	$this->name = $name;
1817 1817
   }
1818 1818
   public function getName()
1819 1819
   {
1820
-    return $this->name;
1820
+	return $this->name;
1821 1821
   }
1822 1822
 }
1823 1823
 
@@ -1841,18 +1841,18 @@  discard block
 block discarded – undo
1841 1841
 
1842 1842
   public function setNextPageToken($nextPageToken)
1843 1843
   {
1844
-    $this->nextPageToken = $nextPageToken;
1844
+	$this->nextPageToken = $nextPageToken;
1845 1845
   }
1846 1846
   public function getNextPageToken()
1847 1847
   {
1848
-    return $this->nextPageToken;
1848
+	return $this->nextPageToken;
1849 1849
   }
1850 1850
   public function setResources($resources)
1851 1851
   {
1852
-    $this->resources = $resources;
1852
+	$this->resources = $resources;
1853 1853
   }
1854 1854
   public function getResources()
1855 1855
   {
1856
-    return $this->resources;
1856
+	return $this->resources;
1857 1857
   }
1858 1858
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
                   'required' => true,
94 94
                 ),
95 95
               ),
96
-            ),'get' => array(
96
+            ), 'get' => array(
97 97
               'path' => '{projectId}/regions/{region}/deployments/{deploymentName}',
98 98
               'httpMethod' => 'GET',
99 99
               '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' => '{projectId}/regions/{region}/deployments',
118 118
               'httpMethod' => 'POST',
119 119
               'parameters' => array(
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                   'required' => true,
129 129
                 ),
130 130
               ),
131
-            ),'list' => array(
131
+            ), 'list' => array(
132 132
               'path' => '{projectId}/regions/{region}/deployments',
133 133
               'httpMethod' => 'GET',
134 134
               'parameters' => array(
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
                   'required' => true,
177 177
                 ),
178 178
               ),
179
-            ),'get' => array(
179
+            ), 'get' => array(
180 180
               'path' => '{projectId}/templates/{templateName}',
181 181
               'httpMethod' => 'GET',
182 182
               'parameters' => array(
@@ -191,7 +191,7 @@  discard block
 block discarded – undo
191 191
                   'required' => true,
192 192
                 ),
193 193
               ),
194
-            ),'insert' => array(
194
+            ), 'insert' => array(
195 195
               'path' => '{projectId}/templates',
196 196
               'httpMethod' => 'POST',
197 197
               'parameters' => array(
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
                   'required' => true,
202 202
                 ),
203 203
               ),
204
-            ),'list' => array(
204
+            ), 'list' => array(
205 205
               'path' => '{projectId}/templates',
206 206
               'httpMethod' => 'GET',
207 207
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/MapsEngine.php 3 patches
Doc Comments   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1677,7 +1677,7 @@  discard block
 block discarded – undo
1677 1677
   /**
1678 1678
    * Create a layer asset. (layers.create)
1679 1679
    *
1680
-   * @param Google_Layer $postBody
1680
+   * @param Google_Service_MapsEngine_Layer $postBody
1681 1681
    * @param array $optParams Optional parameters.
1682 1682
    *
1683 1683
    * @opt_param bool process Whether to queue the created layer for processing.
@@ -1814,7 +1814,7 @@  discard block
 block discarded – undo
1814 1814
    * Mutate a layer asset. (layers.patch)
1815 1815
    *
1816 1816
    * @param string $id The ID of the layer.
1817
-   * @param Google_Layer $postBody
1817
+   * @param Google_Service_MapsEngine_Layer $postBody
1818 1818
    * @param array $optParams Optional parameters.
1819 1819
    */
1820 1820
   public function patch($id, Google_Service_MapsEngine_Layer $postBody, $optParams = array())
@@ -1918,7 +1918,7 @@  discard block
 block discarded – undo
1918 1918
    * (permissions.batchDelete)
1919 1919
    *
1920 1920
    * @param string $id The ID of the asset from which permissions will be removed.
1921
-   * @param Google_PermissionsBatchDeleteRequest $postBody
1921
+   * @param Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody
1922 1922
    * @param array $optParams Optional parameters.
1923 1923
    * @return Google_Service_MapsEngine_PermissionsBatchDeleteResponse
1924 1924
    */
@@ -1936,7 +1936,7 @@  discard block
 block discarded – undo
1936 1936
    * request is atomic. (permissions.batchUpdate)
1937 1937
    *
1938 1938
    * @param string $id The ID of the asset to which permissions will be added.
1939
-   * @param Google_PermissionsBatchUpdateRequest $postBody
1939
+   * @param Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody
1940 1940
    * @param array $optParams Optional parameters.
1941 1941
    * @return Google_Service_MapsEngine_PermissionsBatchUpdateResponse
1942 1942
    */
@@ -1977,7 +1977,7 @@  discard block
 block discarded – undo
1977 1977
   /**
1978 1978
    * Create a map asset. (maps.create)
1979 1979
    *
1980
-   * @param Google_Map $postBody
1980
+   * @param Google_Service_MapsEngine_Map $postBody
1981 1981
    * @param array $optParams Optional parameters.
1982 1982
    * @return Google_Service_MapsEngine_Map
1983 1983
    */
@@ -2110,7 +2110,7 @@  discard block
 block discarded – undo
2110 2110
    * Mutate a map asset. (maps.patch)
2111 2111
    *
2112 2112
    * @param string $id The ID of the map.
2113
-   * @param Google_Map $postBody
2113
+   * @param Google_Service_MapsEngine_Map $postBody
2114 2114
    * @param array $optParams Optional parameters.
2115 2115
    */
2116 2116
   public function patch($id, Google_Service_MapsEngine_Map $postBody, $optParams = array())
@@ -2169,7 +2169,7 @@  discard block
 block discarded – undo
2169 2169
    * (permissions.batchDelete)
2170 2170
    *
2171 2171
    * @param string $id The ID of the asset from which permissions will be removed.
2172
-   * @param Google_PermissionsBatchDeleteRequest $postBody
2172
+   * @param Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody
2173 2173
    * @param array $optParams Optional parameters.
2174 2174
    * @return Google_Service_MapsEngine_PermissionsBatchDeleteResponse
2175 2175
    */
@@ -2187,7 +2187,7 @@  discard block
 block discarded – undo
2187 2187
    * request is atomic. (permissions.batchUpdate)
2188 2188
    *
2189 2189
    * @param string $id The ID of the asset to which permissions will be added.
2190
-   * @param Google_PermissionsBatchUpdateRequest $postBody
2190
+   * @param Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody
2191 2191
    * @param array $optParams Optional parameters.
2192 2192
    * @return Google_Service_MapsEngine_PermissionsBatchUpdateResponse
2193 2193
    */
@@ -2254,7 +2254,7 @@  discard block
 block discarded – undo
2254 2254
    * Create an icon. (icons.create)
2255 2255
    *
2256 2256
    * @param string $projectId The ID of the project.
2257
-   * @param Google_Icon $postBody
2257
+   * @param Google_Service_MapsEngine_Icon $postBody
2258 2258
    * @param array $optParams Optional parameters.
2259 2259
    * @return Google_Service_MapsEngine_Icon
2260 2260
    */
@@ -2330,7 +2330,7 @@  discard block
 block discarded – undo
2330 2330
   /**
2331 2331
    * Create a raster collection asset. (rasterCollections.create)
2332 2332
    *
2333
-   * @param Google_RasterCollection $postBody
2333
+   * @param Google_Service_MapsEngine_RasterCollection $postBody
2334 2334
    * @param array $optParams Optional parameters.
2335 2335
    * @return Google_Service_MapsEngine_RasterCollection
2336 2336
    */
@@ -2423,7 +2423,7 @@  discard block
 block discarded – undo
2423 2423
    * Mutate a raster collection asset. (rasterCollections.patch)
2424 2424
    *
2425 2425
    * @param string $id The ID of the raster collection.
2426
-   * @param Google_RasterCollection $postBody
2426
+   * @param Google_Service_MapsEngine_RasterCollection $postBody
2427 2427
    * @param array $optParams Optional parameters.
2428 2428
    */
2429 2429
   public function patch($id, Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
@@ -2497,7 +2497,7 @@  discard block
 block discarded – undo
2497 2497
    * (permissions.batchDelete)
2498 2498
    *
2499 2499
    * @param string $id The ID of the asset from which permissions will be removed.
2500
-   * @param Google_PermissionsBatchDeleteRequest $postBody
2500
+   * @param Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody
2501 2501
    * @param array $optParams Optional parameters.
2502 2502
    * @return Google_Service_MapsEngine_PermissionsBatchDeleteResponse
2503 2503
    */
@@ -2515,7 +2515,7 @@  discard block
 block discarded – undo
2515 2515
    * request is atomic. (permissions.batchUpdate)
2516 2516
    *
2517 2517
    * @param string $id The ID of the asset to which permissions will be added.
2518
-   * @param Google_PermissionsBatchUpdateRequest $postBody
2518
+   * @param Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody
2519 2519
    * @param array $optParams Optional parameters.
2520 2520
    * @return Google_Service_MapsEngine_PermissionsBatchUpdateResponse
2521 2521
    */
@@ -2560,7 +2560,7 @@  discard block
 block discarded – undo
2560 2560
    *
2561 2561
    * @param string $id The ID of the raster collection to which these rasters
2562 2562
    * belong.
2563
-   * @param Google_RasterCollectionsRasterBatchDeleteRequest $postBody
2563
+   * @param Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest $postBody
2564 2564
    * @param array $optParams Optional parameters.
2565 2565
    * @return Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse
2566 2566
    */
@@ -2580,7 +2580,7 @@  discard block
 block discarded – undo
2580 2580
    *
2581 2581
    * @param string $id The ID of the raster collection to which these rasters
2582 2582
    * belong.
2583
-   * @param Google_RasterCollectionsRastersBatchInsertRequest $postBody
2583
+   * @param Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest $postBody
2584 2584
    * @param array $optParams Optional parameters.
2585 2585
    * @return Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse
2586 2586
    */
@@ -2728,7 +2728,7 @@  discard block
 block discarded – undo
2728 2728
    * Mutate a raster asset. (rasters.patch)
2729 2729
    *
2730 2730
    * @param string $id The ID of the raster.
2731
-   * @param Google_Raster $postBody
2731
+   * @param Google_Service_MapsEngine_Raster $postBody
2732 2732
    * @param array $optParams Optional parameters.
2733 2733
    */
2734 2734
   public function patch($id, Google_Service_MapsEngine_Raster $postBody, $optParams = array())
@@ -2755,7 +2755,7 @@  discard block
 block discarded – undo
2755 2755
   /**
2756 2756
    * Create a skeleton raster asset for upload. (rasters.upload)
2757 2757
    *
2758
-   * @param Google_Raster $postBody
2758
+   * @param Google_Service_MapsEngine_Raster $postBody
2759 2759
    * @param array $optParams Optional parameters.
2760 2760
    * @return Google_Service_MapsEngine_Raster
2761 2761
    */
@@ -2839,7 +2839,7 @@  discard block
 block discarded – undo
2839 2839
    * (permissions.batchDelete)
2840 2840
    *
2841 2841
    * @param string $id The ID of the asset from which permissions will be removed.
2842
-   * @param Google_PermissionsBatchDeleteRequest $postBody
2842
+   * @param Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody
2843 2843
    * @param array $optParams Optional parameters.
2844 2844
    * @return Google_Service_MapsEngine_PermissionsBatchDeleteResponse
2845 2845
    */
@@ -2857,7 +2857,7 @@  discard block
 block discarded – undo
2857 2857
    * request is atomic. (permissions.batchUpdate)
2858 2858
    *
2859 2859
    * @param string $id The ID of the asset to which permissions will be added.
2860
-   * @param Google_PermissionsBatchUpdateRequest $postBody
2860
+   * @param Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody
2861 2861
    * @param array $optParams Optional parameters.
2862 2862
    * @return Google_Service_MapsEngine_PermissionsBatchUpdateResponse
2863 2863
    */
@@ -2898,7 +2898,7 @@  discard block
 block discarded – undo
2898 2898
   /**
2899 2899
    * Create a table asset. (tables.create)
2900 2900
    *
2901
-   * @param Google_Table $postBody
2901
+   * @param Google_Service_MapsEngine_Table $postBody
2902 2902
    * @param array $optParams Optional parameters.
2903 2903
    * @return Google_Service_MapsEngine_Table
2904 2904
    */
@@ -2991,7 +2991,7 @@  discard block
 block discarded – undo
2991 2991
    * Mutate a table asset. (tables.patch)
2992 2992
    *
2993 2993
    * @param string $id The ID of the table.
2994
-   * @param Google_Table $postBody
2994
+   * @param Google_Service_MapsEngine_Table $postBody
2995 2995
    * @param array $optParams Optional parameters.
2996 2996
    */
2997 2997
   public function patch($id, Google_Service_MapsEngine_Table $postBody, $optParams = array())
@@ -3022,7 +3022,7 @@  discard block
 block discarded – undo
3022 3022
    * endpoint. See Table Upload in the Developer's Guide or Table.files: insert in
3023 3023
    * the reference documentation for more information. (tables.upload)
3024 3024
    *
3025
-   * @param Google_Table $postBody
3025
+   * @param Google_Service_MapsEngine_Table $postBody
3026 3026
    * @param array $optParams Optional parameters.
3027 3027
    * @return Google_Service_MapsEngine_Table
3028 3028
    */
@@ -3050,7 +3050,7 @@  discard block
 block discarded – undo
3050 3050
    *
3051 3051
    * @param string $id The ID of the table that contains the features to be
3052 3052
    * deleted.
3053
-   * @param Google_FeaturesBatchDeleteRequest $postBody
3053
+   * @param Google_Service_MapsEngine_FeaturesBatchDeleteRequest $postBody
3054 3054
    * @param array $optParams Optional parameters.
3055 3055
    */
3056 3056
   public function batchDelete($id, Google_Service_MapsEngine_FeaturesBatchDeleteRequest $postBody, $optParams = array())
@@ -3074,7 +3074,7 @@  discard block
 block discarded – undo
3074 3074
    * Google Maps Engine developer's guide. (features.batchInsert)
3075 3075
    *
3076 3076
    * @param string $id The ID of the table to append the features to.
3077
-   * @param Google_FeaturesBatchInsertRequest $postBody
3077
+   * @param Google_Service_MapsEngine_FeaturesBatchInsertRequest $postBody
3078 3078
    * @param array $optParams Optional parameters.
3079 3079
    */
3080 3080
   public function batchInsert($id, Google_Service_MapsEngine_FeaturesBatchInsertRequest $postBody, $optParams = array())
@@ -3105,7 +3105,7 @@  discard block
 block discarded – undo
3105 3105
    * features in the Google Maps Engine developer's guide. (features.batchPatch)
3106 3106
    *
3107 3107
    * @param string $id The ID of the table containing the features to be patched.
3108
-   * @param Google_FeaturesBatchPatchRequest $postBody
3108
+   * @param Google_Service_MapsEngine_FeaturesBatchPatchRequest $postBody
3109 3109
    * @param array $optParams Optional parameters.
3110 3110
    */
3111 3111
   public function batchPatch($id, Google_Service_MapsEngine_FeaturesBatchPatchRequest $postBody, $optParams = array())
@@ -3246,7 +3246,7 @@  discard block
 block discarded – undo
3246 3246
    * (permissions.batchDelete)
3247 3247
    *
3248 3248
    * @param string $id The ID of the asset from which permissions will be removed.
3249
-   * @param Google_PermissionsBatchDeleteRequest $postBody
3249
+   * @param Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody
3250 3250
    * @param array $optParams Optional parameters.
3251 3251
    * @return Google_Service_MapsEngine_PermissionsBatchDeleteResponse
3252 3252
    */
@@ -3264,7 +3264,7 @@  discard block
 block discarded – undo
3264 3264
    * request is atomic. (permissions.batchUpdate)
3265 3265
    *
3266 3266
    * @param string $id The ID of the asset to which permissions will be added.
3267
-   * @param Google_PermissionsBatchUpdateRequest $postBody
3267
+   * @param Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody
3268 3268
    * @param array $optParams Optional parameters.
3269 3269
    * @return Google_Service_MapsEngine_PermissionsBatchUpdateResponse
3270 3270
    */
Please login to merge, or discard this patch.
Indentation   +2224 added lines, -2224 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@  discard block
 block discarded – undo
33 33
 {
34 34
   /** View and manage your Google My Maps data. */
35 35
   const MAPSENGINE =
36
-      "https://www.googleapis.com/auth/mapsengine";
36
+	  "https://www.googleapis.com/auth/mapsengine";
37 37
   /** View your Google My Maps data. */
38 38
   const MAPSENGINE_READONLY =
39
-      "https://www.googleapis.com/auth/mapsengine.readonly";
39
+	  "https://www.googleapis.com/auth/mapsengine.readonly";
40 40
 
41 41
   public $assets;
42 42
   public $assets_parents;
@@ -70,1448 +70,1448 @@  discard block
 block discarded – undo
70 70
    */
71 71
   public function __construct(Google_Client $client)
72 72
   {
73
-    parent::__construct($client);
74
-    $this->rootUrl = 'https://www.googleapis.com/';
75
-    $this->servicePath = 'mapsengine/v1/';
76
-    $this->version = 'v1';
77
-    $this->serviceName = 'mapsengine';
78
-
79
-    $this->assets = new Google_Service_MapsEngine_Assets_Resource(
80
-        $this,
81
-        $this->serviceName,
82
-        'assets',
83
-        array(
84
-          'methods' => array(
85
-            'get' => array(
86
-              'path' => 'assets/{id}',
87
-              'httpMethod' => 'GET',
88
-              'parameters' => array(
89
-                'id' => array(
90
-                  'location' => 'path',
91
-                  'type' => 'string',
92
-                  'required' => true,
93
-                ),
94
-              ),
95
-            ),'list' => array(
96
-              'path' => 'assets',
97
-              'httpMethod' => 'GET',
98
-              'parameters' => array(
99
-                'modifiedAfter' => array(
100
-                  'location' => 'query',
101
-                  'type' => 'string',
102
-                ),
103
-                'createdAfter' => array(
104
-                  'location' => 'query',
105
-                  'type' => 'string',
106
-                ),
107
-                'tags' => array(
108
-                  'location' => 'query',
109
-                  'type' => 'string',
110
-                ),
111
-                'projectId' => array(
112
-                  'location' => 'query',
113
-                  'type' => 'string',
114
-                ),
115
-                'search' => array(
116
-                  'location' => 'query',
117
-                  'type' => 'string',
118
-                ),
119
-                'maxResults' => array(
120
-                  'location' => 'query',
121
-                  'type' => 'integer',
122
-                ),
123
-                'pageToken' => array(
124
-                  'location' => 'query',
125
-                  'type' => 'string',
126
-                ),
127
-                'creatorEmail' => array(
128
-                  'location' => 'query',
129
-                  'type' => 'string',
130
-                ),
131
-                'bbox' => array(
132
-                  'location' => 'query',
133
-                  'type' => 'string',
134
-                ),
135
-                'modifiedBefore' => array(
136
-                  'location' => 'query',
137
-                  'type' => 'string',
138
-                ),
139
-                'createdBefore' => array(
140
-                  'location' => 'query',
141
-                  'type' => 'string',
142
-                ),
143
-                'role' => array(
144
-                  'location' => 'query',
145
-                  'type' => 'string',
146
-                ),
147
-                'type' => array(
148
-                  'location' => 'query',
149
-                  'type' => 'string',
150
-                ),
151
-              ),
152
-            ),
153
-          )
154
-        )
155
-    );
156
-    $this->assets_parents = new Google_Service_MapsEngine_AssetsParents_Resource(
157
-        $this,
158
-        $this->serviceName,
159
-        'parents',
160
-        array(
161
-          'methods' => array(
162
-            'list' => array(
163
-              'path' => 'assets/{id}/parents',
164
-              'httpMethod' => 'GET',
165
-              'parameters' => array(
166
-                'id' => array(
167
-                  'location' => 'path',
168
-                  'type' => 'string',
169
-                  'required' => true,
170
-                ),
171
-                'pageToken' => array(
172
-                  'location' => 'query',
173
-                  'type' => 'string',
174
-                ),
175
-                'maxResults' => array(
176
-                  'location' => 'query',
177
-                  'type' => 'integer',
178
-                ),
179
-              ),
180
-            ),
181
-          )
182
-        )
183
-    );
184
-    $this->assets_permissions = new Google_Service_MapsEngine_AssetsPermissions_Resource(
185
-        $this,
186
-        $this->serviceName,
187
-        'permissions',
188
-        array(
189
-          'methods' => array(
190
-            'list' => array(
191
-              'path' => 'assets/{id}/permissions',
192
-              'httpMethod' => 'GET',
193
-              'parameters' => array(
194
-                'id' => array(
195
-                  'location' => 'path',
196
-                  'type' => 'string',
197
-                  'required' => true,
198
-                ),
199
-              ),
200
-            ),
201
-          )
202
-        )
203
-    );
204
-    $this->layers = new Google_Service_MapsEngine_Layers_Resource(
205
-        $this,
206
-        $this->serviceName,
207
-        'layers',
208
-        array(
209
-          'methods' => array(
210
-            'cancelProcessing' => array(
211
-              'path' => 'layers/{id}/cancelProcessing',
212
-              'httpMethod' => 'POST',
213
-              'parameters' => array(
214
-                'id' => array(
215
-                  'location' => 'path',
216
-                  'type' => 'string',
217
-                  'required' => true,
218
-                ),
219
-              ),
220
-            ),'create' => array(
221
-              'path' => 'layers',
222
-              'httpMethod' => 'POST',
223
-              'parameters' => array(
224
-                'process' => array(
225
-                  'location' => 'query',
226
-                  'type' => 'boolean',
227
-                ),
228
-              ),
229
-            ),'delete' => array(
230
-              'path' => 'layers/{id}',
231
-              'httpMethod' => 'DELETE',
232
-              'parameters' => array(
233
-                'id' => array(
234
-                  'location' => 'path',
235
-                  'type' => 'string',
236
-                  'required' => true,
237
-                ),
238
-              ),
239
-            ),'get' => array(
240
-              'path' => 'layers/{id}',
241
-              'httpMethod' => 'GET',
242
-              'parameters' => array(
243
-                'id' => array(
244
-                  'location' => 'path',
245
-                  'type' => 'string',
246
-                  'required' => true,
247
-                ),
248
-                'version' => array(
249
-                  'location' => 'query',
250
-                  'type' => 'string',
251
-                ),
252
-              ),
253
-            ),'getPublished' => array(
254
-              'path' => 'layers/{id}/published',
255
-              'httpMethod' => 'GET',
256
-              'parameters' => array(
257
-                'id' => array(
258
-                  'location' => 'path',
259
-                  'type' => 'string',
260
-                  'required' => true,
261
-                ),
262
-              ),
263
-            ),'list' => array(
264
-              'path' => 'layers',
265
-              'httpMethod' => 'GET',
266
-              'parameters' => array(
267
-                'modifiedAfter' => array(
268
-                  'location' => 'query',
269
-                  'type' => 'string',
270
-                ),
271
-                'createdAfter' => array(
272
-                  'location' => 'query',
273
-                  'type' => 'string',
274
-                ),
275
-                'processingStatus' => array(
276
-                  'location' => 'query',
277
-                  'type' => 'string',
278
-                ),
279
-                'projectId' => array(
280
-                  'location' => 'query',
281
-                  'type' => 'string',
282
-                ),
283
-                'tags' => array(
284
-                  'location' => 'query',
285
-                  'type' => 'string',
286
-                ),
287
-                'search' => array(
288
-                  'location' => 'query',
289
-                  'type' => 'string',
290
-                ),
291
-                'maxResults' => array(
292
-                  'location' => 'query',
293
-                  'type' => 'integer',
294
-                ),
295
-                'pageToken' => array(
296
-                  'location' => 'query',
297
-                  'type' => 'string',
298
-                ),
299
-                'creatorEmail' => array(
300
-                  'location' => 'query',
301
-                  'type' => 'string',
302
-                ),
303
-                'bbox' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'string',
306
-                ),
307
-                'modifiedBefore' => array(
308
-                  'location' => 'query',
309
-                  'type' => 'string',
310
-                ),
311
-                'createdBefore' => array(
312
-                  'location' => 'query',
313
-                  'type' => 'string',
314
-                ),
315
-                'role' => array(
316
-                  'location' => 'query',
317
-                  'type' => 'string',
318
-                ),
319
-              ),
320
-            ),'listPublished' => array(
321
-              'path' => 'layers/published',
322
-              'httpMethod' => 'GET',
323
-              'parameters' => array(
324
-                'pageToken' => array(
325
-                  'location' => 'query',
326
-                  'type' => 'string',
327
-                ),
328
-                'maxResults' => array(
329
-                  'location' => 'query',
330
-                  'type' => 'integer',
331
-                ),
332
-                'projectId' => array(
333
-                  'location' => 'query',
334
-                  'type' => 'string',
335
-                ),
336
-              ),
337
-            ),'patch' => array(
338
-              'path' => 'layers/{id}',
339
-              'httpMethod' => 'PATCH',
340
-              'parameters' => array(
341
-                'id' => array(
342
-                  'location' => 'path',
343
-                  'type' => 'string',
344
-                  'required' => true,
345
-                ),
346
-              ),
347
-            ),'process' => array(
348
-              'path' => 'layers/{id}/process',
349
-              'httpMethod' => 'POST',
350
-              'parameters' => array(
351
-                'id' => array(
352
-                  'location' => 'path',
353
-                  'type' => 'string',
354
-                  'required' => true,
355
-                ),
356
-              ),
357
-            ),'publish' => array(
358
-              'path' => 'layers/{id}/publish',
359
-              'httpMethod' => 'POST',
360
-              'parameters' => array(
361
-                'id' => array(
362
-                  'location' => 'path',
363
-                  'type' => 'string',
364
-                  'required' => true,
365
-                ),
366
-                'force' => array(
367
-                  'location' => 'query',
368
-                  'type' => 'boolean',
369
-                ),
370
-              ),
371
-            ),'unpublish' => array(
372
-              'path' => 'layers/{id}/unpublish',
373
-              'httpMethod' => 'POST',
374
-              'parameters' => array(
375
-                'id' => array(
376
-                  'location' => 'path',
377
-                  'type' => 'string',
378
-                  'required' => true,
379
-                ),
380
-              ),
381
-            ),
382
-          )
383
-        )
384
-    );
385
-    $this->layers_parents = new Google_Service_MapsEngine_LayersParents_Resource(
386
-        $this,
387
-        $this->serviceName,
388
-        'parents',
389
-        array(
390
-          'methods' => array(
391
-            'list' => array(
392
-              'path' => 'layers/{id}/parents',
393
-              'httpMethod' => 'GET',
394
-              'parameters' => array(
395
-                'id' => array(
396
-                  'location' => 'path',
397
-                  'type' => 'string',
398
-                  'required' => true,
399
-                ),
400
-                'pageToken' => array(
401
-                  'location' => 'query',
402
-                  'type' => 'string',
403
-                ),
404
-                'maxResults' => array(
405
-                  'location' => 'query',
406
-                  'type' => 'integer',
407
-                ),
408
-              ),
409
-            ),
410
-          )
411
-        )
412
-    );
413
-    $this->layers_permissions = new Google_Service_MapsEngine_LayersPermissions_Resource(
414
-        $this,
415
-        $this->serviceName,
416
-        'permissions',
417
-        array(
418
-          'methods' => array(
419
-            'batchDelete' => array(
420
-              'path' => 'layers/{id}/permissions/batchDelete',
421
-              'httpMethod' => 'POST',
422
-              'parameters' => array(
423
-                'id' => array(
424
-                  'location' => 'path',
425
-                  'type' => 'string',
426
-                  'required' => true,
427
-                ),
428
-              ),
429
-            ),'batchUpdate' => array(
430
-              'path' => 'layers/{id}/permissions/batchUpdate',
431
-              'httpMethod' => 'POST',
432
-              'parameters' => array(
433
-                'id' => array(
434
-                  'location' => 'path',
435
-                  'type' => 'string',
436
-                  'required' => true,
437
-                ),
438
-              ),
439
-            ),'list' => array(
440
-              'path' => 'layers/{id}/permissions',
441
-              'httpMethod' => 'GET',
442
-              'parameters' => array(
443
-                'id' => array(
444
-                  'location' => 'path',
445
-                  'type' => 'string',
446
-                  'required' => true,
447
-                ),
448
-              ),
449
-            ),
450
-          )
451
-        )
452
-    );
453
-    $this->maps = new Google_Service_MapsEngine_Maps_Resource(
454
-        $this,
455
-        $this->serviceName,
456
-        'maps',
457
-        array(
458
-          'methods' => array(
459
-            'create' => array(
460
-              'path' => 'maps',
461
-              'httpMethod' => 'POST',
462
-              'parameters' => array(),
463
-            ),'delete' => array(
464
-              'path' => 'maps/{id}',
465
-              'httpMethod' => 'DELETE',
466
-              'parameters' => array(
467
-                'id' => array(
468
-                  'location' => 'path',
469
-                  'type' => 'string',
470
-                  'required' => true,
471
-                ),
472
-              ),
473
-            ),'get' => array(
474
-              'path' => 'maps/{id}',
475
-              'httpMethod' => 'GET',
476
-              'parameters' => array(
477
-                'id' => array(
478
-                  'location' => 'path',
479
-                  'type' => 'string',
480
-                  'required' => true,
481
-                ),
482
-                'version' => array(
483
-                  'location' => 'query',
484
-                  'type' => 'string',
485
-                ),
486
-              ),
487
-            ),'getPublished' => array(
488
-              'path' => 'maps/{id}/published',
489
-              'httpMethod' => 'GET',
490
-              'parameters' => array(
491
-                'id' => array(
492
-                  'location' => 'path',
493
-                  'type' => 'string',
494
-                  'required' => true,
495
-                ),
496
-              ),
497
-            ),'list' => array(
498
-              'path' => 'maps',
499
-              'httpMethod' => 'GET',
500
-              'parameters' => array(
501
-                'modifiedAfter' => array(
502
-                  'location' => 'query',
503
-                  'type' => 'string',
504
-                ),
505
-                'createdAfter' => array(
506
-                  'location' => 'query',
507
-                  'type' => 'string',
508
-                ),
509
-                'processingStatus' => array(
510
-                  'location' => 'query',
511
-                  'type' => 'string',
512
-                ),
513
-                'projectId' => array(
514
-                  'location' => 'query',
515
-                  'type' => 'string',
516
-                ),
517
-                'tags' => array(
518
-                  'location' => 'query',
519
-                  'type' => 'string',
520
-                ),
521
-                'search' => array(
522
-                  'location' => 'query',
523
-                  'type' => 'string',
524
-                ),
525
-                'maxResults' => array(
526
-                  'location' => 'query',
527
-                  'type' => 'integer',
528
-                ),
529
-                'pageToken' => array(
530
-                  'location' => 'query',
531
-                  'type' => 'string',
532
-                ),
533
-                'creatorEmail' => array(
534
-                  'location' => 'query',
535
-                  'type' => 'string',
536
-                ),
537
-                'bbox' => array(
538
-                  'location' => 'query',
539
-                  'type' => 'string',
540
-                ),
541
-                'modifiedBefore' => array(
542
-                  'location' => 'query',
543
-                  'type' => 'string',
544
-                ),
545
-                'createdBefore' => array(
546
-                  'location' => 'query',
547
-                  'type' => 'string',
548
-                ),
549
-                'role' => array(
550
-                  'location' => 'query',
551
-                  'type' => 'string',
552
-                ),
553
-              ),
554
-            ),'listPublished' => array(
555
-              'path' => 'maps/published',
556
-              'httpMethod' => 'GET',
557
-              'parameters' => array(
558
-                'pageToken' => array(
559
-                  'location' => 'query',
560
-                  'type' => 'string',
561
-                ),
562
-                'maxResults' => array(
563
-                  'location' => 'query',
564
-                  'type' => 'integer',
565
-                ),
566
-                'projectId' => array(
567
-                  'location' => 'query',
568
-                  'type' => 'string',
569
-                ),
570
-              ),
571
-            ),'patch' => array(
572
-              'path' => 'maps/{id}',
573
-              'httpMethod' => 'PATCH',
574
-              'parameters' => array(
575
-                'id' => array(
576
-                  'location' => 'path',
577
-                  'type' => 'string',
578
-                  'required' => true,
579
-                ),
580
-              ),
581
-            ),'publish' => array(
582
-              'path' => 'maps/{id}/publish',
583
-              'httpMethod' => 'POST',
584
-              'parameters' => array(
585
-                'id' => array(
586
-                  'location' => 'path',
587
-                  'type' => 'string',
588
-                  'required' => true,
589
-                ),
590
-                'force' => array(
591
-                  'location' => 'query',
592
-                  'type' => 'boolean',
593
-                ),
594
-              ),
595
-            ),'unpublish' => array(
596
-              'path' => 'maps/{id}/unpublish',
597
-              'httpMethod' => 'POST',
598
-              'parameters' => array(
599
-                'id' => array(
600
-                  'location' => 'path',
601
-                  'type' => 'string',
602
-                  'required' => true,
603
-                ),
604
-              ),
605
-            ),
606
-          )
607
-        )
608
-    );
609
-    $this->maps_permissions = new Google_Service_MapsEngine_MapsPermissions_Resource(
610
-        $this,
611
-        $this->serviceName,
612
-        'permissions',
613
-        array(
614
-          'methods' => array(
615
-            'batchDelete' => array(
616
-              'path' => 'maps/{id}/permissions/batchDelete',
617
-              'httpMethod' => 'POST',
618
-              'parameters' => array(
619
-                'id' => array(
620
-                  'location' => 'path',
621
-                  'type' => 'string',
622
-                  'required' => true,
623
-                ),
624
-              ),
625
-            ),'batchUpdate' => array(
626
-              'path' => 'maps/{id}/permissions/batchUpdate',
627
-              'httpMethod' => 'POST',
628
-              'parameters' => array(
629
-                'id' => array(
630
-                  'location' => 'path',
631
-                  'type' => 'string',
632
-                  'required' => true,
633
-                ),
634
-              ),
635
-            ),'list' => array(
636
-              'path' => 'maps/{id}/permissions',
637
-              'httpMethod' => 'GET',
638
-              'parameters' => array(
639
-                'id' => array(
640
-                  'location' => 'path',
641
-                  'type' => 'string',
642
-                  'required' => true,
643
-                ),
644
-              ),
645
-            ),
646
-          )
647
-        )
648
-    );
649
-    $this->projects = new Google_Service_MapsEngine_Projects_Resource(
650
-        $this,
651
-        $this->serviceName,
652
-        'projects',
653
-        array(
654
-          'methods' => array(
655
-            'list' => array(
656
-              'path' => 'projects',
657
-              'httpMethod' => 'GET',
658
-              'parameters' => array(),
659
-            ),
660
-          )
661
-        )
662
-    );
663
-    $this->projects_icons = new Google_Service_MapsEngine_ProjectsIcons_Resource(
664
-        $this,
665
-        $this->serviceName,
666
-        'icons',
667
-        array(
668
-          'methods' => array(
669
-            'create' => array(
670
-              'path' => 'projects/{projectId}/icons',
671
-              'httpMethod' => 'POST',
672
-              'parameters' => array(
673
-                'projectId' => array(
674
-                  'location' => 'path',
675
-                  'type' => 'string',
676
-                  'required' => true,
677
-                ),
678
-              ),
679
-            ),'get' => array(
680
-              'path' => 'projects/{projectId}/icons/{id}',
681
-              'httpMethod' => 'GET',
682
-              'parameters' => array(
683
-                'projectId' => array(
684
-                  'location' => 'path',
685
-                  'type' => 'string',
686
-                  'required' => true,
687
-                ),
688
-                'id' => array(
689
-                  'location' => 'path',
690
-                  'type' => 'string',
691
-                  'required' => true,
692
-                ),
693
-              ),
694
-            ),'list' => array(
695
-              'path' => 'projects/{projectId}/icons',
696
-              'httpMethod' => 'GET',
697
-              'parameters' => array(
698
-                'projectId' => array(
699
-                  'location' => 'path',
700
-                  'type' => 'string',
701
-                  'required' => true,
702
-                ),
703
-                'pageToken' => array(
704
-                  'location' => 'query',
705
-                  'type' => 'string',
706
-                ),
707
-                'maxResults' => array(
708
-                  'location' => 'query',
709
-                  'type' => 'integer',
710
-                ),
711
-              ),
712
-            ),
713
-          )
714
-        )
715
-    );
716
-    $this->rasterCollections = new Google_Service_MapsEngine_RasterCollections_Resource(
717
-        $this,
718
-        $this->serviceName,
719
-        'rasterCollections',
720
-        array(
721
-          'methods' => array(
722
-            'cancelProcessing' => array(
723
-              'path' => 'rasterCollections/{id}/cancelProcessing',
724
-              'httpMethod' => 'POST',
725
-              'parameters' => array(
726
-                'id' => array(
727
-                  'location' => 'path',
728
-                  'type' => 'string',
729
-                  'required' => true,
730
-                ),
731
-              ),
732
-            ),'create' => array(
733
-              'path' => 'rasterCollections',
734
-              'httpMethod' => 'POST',
735
-              'parameters' => array(),
736
-            ),'delete' => array(
737
-              'path' => 'rasterCollections/{id}',
738
-              'httpMethod' => 'DELETE',
739
-              'parameters' => array(
740
-                'id' => array(
741
-                  'location' => 'path',
742
-                  'type' => 'string',
743
-                  'required' => true,
744
-                ),
745
-              ),
746
-            ),'get' => array(
747
-              'path' => 'rasterCollections/{id}',
748
-              'httpMethod' => 'GET',
749
-              'parameters' => array(
750
-                'id' => array(
751
-                  'location' => 'path',
752
-                  'type' => 'string',
753
-                  'required' => true,
754
-                ),
755
-              ),
756
-            ),'list' => array(
757
-              'path' => 'rasterCollections',
758
-              'httpMethod' => 'GET',
759
-              'parameters' => array(
760
-                'modifiedAfter' => array(
761
-                  'location' => 'query',
762
-                  'type' => 'string',
763
-                ),
764
-                'createdAfter' => array(
765
-                  'location' => 'query',
766
-                  'type' => 'string',
767
-                ),
768
-                'processingStatus' => array(
769
-                  'location' => 'query',
770
-                  'type' => 'string',
771
-                ),
772
-                'projectId' => array(
773
-                  'location' => 'query',
774
-                  'type' => 'string',
775
-                ),
776
-                'tags' => array(
777
-                  'location' => 'query',
778
-                  'type' => 'string',
779
-                ),
780
-                'search' => array(
781
-                  'location' => 'query',
782
-                  'type' => 'string',
783
-                ),
784
-                'maxResults' => array(
785
-                  'location' => 'query',
786
-                  'type' => 'integer',
787
-                ),
788
-                'pageToken' => array(
789
-                  'location' => 'query',
790
-                  'type' => 'string',
791
-                ),
792
-                'creatorEmail' => array(
793
-                  'location' => 'query',
794
-                  'type' => 'string',
795
-                ),
796
-                'bbox' => array(
797
-                  'location' => 'query',
798
-                  'type' => 'string',
799
-                ),
800
-                'modifiedBefore' => array(
801
-                  'location' => 'query',
802
-                  'type' => 'string',
803
-                ),
804
-                'createdBefore' => array(
805
-                  'location' => 'query',
806
-                  'type' => 'string',
807
-                ),
808
-                'role' => array(
809
-                  'location' => 'query',
810
-                  'type' => 'string',
811
-                ),
812
-              ),
813
-            ),'patch' => array(
814
-              'path' => 'rasterCollections/{id}',
815
-              'httpMethod' => 'PATCH',
816
-              'parameters' => array(
817
-                'id' => array(
818
-                  'location' => 'path',
819
-                  'type' => 'string',
820
-                  'required' => true,
821
-                ),
822
-              ),
823
-            ),'process' => array(
824
-              'path' => 'rasterCollections/{id}/process',
825
-              'httpMethod' => 'POST',
826
-              'parameters' => array(
827
-                'id' => array(
828
-                  'location' => 'path',
829
-                  'type' => 'string',
830
-                  'required' => true,
831
-                ),
832
-              ),
833
-            ),
834
-          )
835
-        )
836
-    );
837
-    $this->rasterCollections_parents = new Google_Service_MapsEngine_RasterCollectionsParents_Resource(
838
-        $this,
839
-        $this->serviceName,
840
-        'parents',
841
-        array(
842
-          'methods' => array(
843
-            'list' => array(
844
-              'path' => 'rasterCollections/{id}/parents',
845
-              'httpMethod' => 'GET',
846
-              'parameters' => array(
847
-                'id' => array(
848
-                  'location' => 'path',
849
-                  'type' => 'string',
850
-                  'required' => true,
851
-                ),
852
-                'pageToken' => array(
853
-                  'location' => 'query',
854
-                  'type' => 'string',
855
-                ),
856
-                'maxResults' => array(
857
-                  'location' => 'query',
858
-                  'type' => 'integer',
859
-                ),
860
-              ),
861
-            ),
862
-          )
863
-        )
864
-    );
865
-    $this->rasterCollections_permissions = new Google_Service_MapsEngine_RasterCollectionsPermissions_Resource(
866
-        $this,
867
-        $this->serviceName,
868
-        'permissions',
869
-        array(
870
-          'methods' => array(
871
-            'batchDelete' => array(
872
-              'path' => 'rasterCollections/{id}/permissions/batchDelete',
873
-              'httpMethod' => 'POST',
874
-              'parameters' => array(
875
-                'id' => array(
876
-                  'location' => 'path',
877
-                  'type' => 'string',
878
-                  'required' => true,
879
-                ),
880
-              ),
881
-            ),'batchUpdate' => array(
882
-              'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883
-              'httpMethod' => 'POST',
884
-              'parameters' => array(
885
-                'id' => array(
886
-                  'location' => 'path',
887
-                  'type' => 'string',
888
-                  'required' => true,
889
-                ),
890
-              ),
891
-            ),'list' => array(
892
-              'path' => 'rasterCollections/{id}/permissions',
893
-              'httpMethod' => 'GET',
894
-              'parameters' => array(
895
-                'id' => array(
896
-                  'location' => 'path',
897
-                  'type' => 'string',
898
-                  'required' => true,
899
-                ),
900
-              ),
901
-            ),
902
-          )
903
-        )
904
-    );
905
-    $this->rasterCollections_rasters = new Google_Service_MapsEngine_RasterCollectionsRasters_Resource(
906
-        $this,
907
-        $this->serviceName,
908
-        'rasters',
909
-        array(
910
-          'methods' => array(
911
-            'batchDelete' => array(
912
-              'path' => 'rasterCollections/{id}/rasters/batchDelete',
913
-              'httpMethod' => 'POST',
914
-              'parameters' => array(
915
-                'id' => array(
916
-                  'location' => 'path',
917
-                  'type' => 'string',
918
-                  'required' => true,
919
-                ),
920
-              ),
921
-            ),'batchInsert' => array(
922
-              'path' => 'rasterCollections/{id}/rasters/batchInsert',
923
-              'httpMethod' => 'POST',
924
-              'parameters' => array(
925
-                'id' => array(
926
-                  'location' => 'path',
927
-                  'type' => 'string',
928
-                  'required' => true,
929
-                ),
930
-              ),
931
-            ),'list' => array(
932
-              'path' => 'rasterCollections/{id}/rasters',
933
-              'httpMethod' => 'GET',
934
-              'parameters' => array(
935
-                'id' => array(
936
-                  'location' => 'path',
937
-                  'type' => 'string',
938
-                  'required' => true,
939
-                ),
940
-                'modifiedAfter' => array(
941
-                  'location' => 'query',
942
-                  'type' => 'string',
943
-                ),
944
-                'createdAfter' => array(
945
-                  'location' => 'query',
946
-                  'type' => 'string',
947
-                ),
948
-                'tags' => array(
949
-                  'location' => 'query',
950
-                  'type' => 'string',
951
-                ),
952
-                'search' => array(
953
-                  'location' => 'query',
954
-                  'type' => 'string',
955
-                ),
956
-                'maxResults' => array(
957
-                  'location' => 'query',
958
-                  'type' => 'integer',
959
-                ),
960
-                'pageToken' => array(
961
-                  'location' => 'query',
962
-                  'type' => 'string',
963
-                ),
964
-                'creatorEmail' => array(
965
-                  'location' => 'query',
966
-                  'type' => 'string',
967
-                ),
968
-                'bbox' => array(
969
-                  'location' => 'query',
970
-                  'type' => 'string',
971
-                ),
972
-                'modifiedBefore' => array(
973
-                  'location' => 'query',
974
-                  'type' => 'string',
975
-                ),
976
-                'createdBefore' => array(
977
-                  'location' => 'query',
978
-                  'type' => 'string',
979
-                ),
980
-                'role' => array(
981
-                  'location' => 'query',
982
-                  'type' => 'string',
983
-                ),
984
-              ),
985
-            ),
986
-          )
987
-        )
988
-    );
989
-    $this->rasters = new Google_Service_MapsEngine_Rasters_Resource(
990
-        $this,
991
-        $this->serviceName,
992
-        'rasters',
993
-        array(
994
-          'methods' => array(
995
-            'delete' => array(
996
-              'path' => 'rasters/{id}',
997
-              'httpMethod' => 'DELETE',
998
-              'parameters' => array(
999
-                'id' => array(
1000
-                  'location' => 'path',
1001
-                  'type' => 'string',
1002
-                  'required' => true,
1003
-                ),
1004
-              ),
1005
-            ),'get' => array(
1006
-              'path' => 'rasters/{id}',
1007
-              'httpMethod' => 'GET',
1008
-              'parameters' => array(
1009
-                'id' => array(
1010
-                  'location' => 'path',
1011
-                  'type' => 'string',
1012
-                  'required' => true,
1013
-                ),
1014
-              ),
1015
-            ),'list' => array(
1016
-              'path' => 'rasters',
1017
-              'httpMethod' => 'GET',
1018
-              'parameters' => array(
1019
-                'projectId' => array(
1020
-                  'location' => 'query',
1021
-                  'type' => 'string',
1022
-                  'required' => true,
1023
-                ),
1024
-                'modifiedAfter' => array(
1025
-                  'location' => 'query',
1026
-                  'type' => 'string',
1027
-                ),
1028
-                'createdAfter' => array(
1029
-                  'location' => 'query',
1030
-                  'type' => 'string',
1031
-                ),
1032
-                'processingStatus' => array(
1033
-                  'location' => 'query',
1034
-                  'type' => 'string',
1035
-                ),
1036
-                'tags' => array(
1037
-                  'location' => 'query',
1038
-                  'type' => 'string',
1039
-                ),
1040
-                'search' => array(
1041
-                  'location' => 'query',
1042
-                  'type' => 'string',
1043
-                ),
1044
-                'maxResults' => array(
1045
-                  'location' => 'query',
1046
-                  'type' => 'integer',
1047
-                ),
1048
-                'pageToken' => array(
1049
-                  'location' => 'query',
1050
-                  'type' => 'string',
1051
-                ),
1052
-                'creatorEmail' => array(
1053
-                  'location' => 'query',
1054
-                  'type' => 'string',
1055
-                ),
1056
-                'bbox' => array(
1057
-                  'location' => 'query',
1058
-                  'type' => 'string',
1059
-                ),
1060
-                'modifiedBefore' => array(
1061
-                  'location' => 'query',
1062
-                  'type' => 'string',
1063
-                ),
1064
-                'createdBefore' => array(
1065
-                  'location' => 'query',
1066
-                  'type' => 'string',
1067
-                ),
1068
-                'role' => array(
1069
-                  'location' => 'query',
1070
-                  'type' => 'string',
1071
-                ),
1072
-              ),
1073
-            ),'patch' => array(
1074
-              'path' => 'rasters/{id}',
1075
-              'httpMethod' => 'PATCH',
1076
-              'parameters' => array(
1077
-                'id' => array(
1078
-                  'location' => 'path',
1079
-                  'type' => 'string',
1080
-                  'required' => true,
1081
-                ),
1082
-              ),
1083
-            ),'process' => array(
1084
-              'path' => 'rasters/{id}/process',
1085
-              'httpMethod' => 'POST',
1086
-              'parameters' => array(
1087
-                'id' => array(
1088
-                  'location' => 'path',
1089
-                  'type' => 'string',
1090
-                  'required' => true,
1091
-                ),
1092
-              ),
1093
-            ),'upload' => array(
1094
-              'path' => 'rasters/upload',
1095
-              'httpMethod' => 'POST',
1096
-              'parameters' => array(),
1097
-            ),
1098
-          )
1099
-        )
1100
-    );
1101
-    $this->rasters_files = new Google_Service_MapsEngine_RastersFiles_Resource(
1102
-        $this,
1103
-        $this->serviceName,
1104
-        'files',
1105
-        array(
1106
-          'methods' => array(
1107
-            'insert' => array(
1108
-              'path' => 'rasters/{id}/files',
1109
-              'httpMethod' => 'POST',
1110
-              'parameters' => array(
1111
-                'id' => array(
1112
-                  'location' => 'path',
1113
-                  'type' => 'string',
1114
-                  'required' => true,
1115
-                ),
1116
-                'filename' => array(
1117
-                  'location' => 'query',
1118
-                  'type' => 'string',
1119
-                  'required' => true,
1120
-                ),
1121
-              ),
1122
-            ),
1123
-          )
1124
-        )
1125
-    );
1126
-    $this->rasters_parents = new Google_Service_MapsEngine_RastersParents_Resource(
1127
-        $this,
1128
-        $this->serviceName,
1129
-        'parents',
1130
-        array(
1131
-          'methods' => array(
1132
-            'list' => array(
1133
-              'path' => 'rasters/{id}/parents',
1134
-              'httpMethod' => 'GET',
1135
-              'parameters' => array(
1136
-                'id' => array(
1137
-                  'location' => 'path',
1138
-                  'type' => 'string',
1139
-                  'required' => true,
1140
-                ),
1141
-                'pageToken' => array(
1142
-                  'location' => 'query',
1143
-                  'type' => 'string',
1144
-                ),
1145
-                'maxResults' => array(
1146
-                  'location' => 'query',
1147
-                  'type' => 'integer',
1148
-                ),
1149
-              ),
1150
-            ),
1151
-          )
1152
-        )
1153
-    );
1154
-    $this->rasters_permissions = new Google_Service_MapsEngine_RastersPermissions_Resource(
1155
-        $this,
1156
-        $this->serviceName,
1157
-        'permissions',
1158
-        array(
1159
-          'methods' => array(
1160
-            'batchDelete' => array(
1161
-              'path' => 'rasters/{id}/permissions/batchDelete',
1162
-              'httpMethod' => 'POST',
1163
-              'parameters' => array(
1164
-                'id' => array(
1165
-                  'location' => 'path',
1166
-                  'type' => 'string',
1167
-                  'required' => true,
1168
-                ),
1169
-              ),
1170
-            ),'batchUpdate' => array(
1171
-              'path' => 'rasters/{id}/permissions/batchUpdate',
1172
-              'httpMethod' => 'POST',
1173
-              'parameters' => array(
1174
-                'id' => array(
1175
-                  'location' => 'path',
1176
-                  'type' => 'string',
1177
-                  'required' => true,
1178
-                ),
1179
-              ),
1180
-            ),'list' => array(
1181
-              'path' => 'rasters/{id}/permissions',
1182
-              'httpMethod' => 'GET',
1183
-              'parameters' => array(
1184
-                'id' => array(
1185
-                  'location' => 'path',
1186
-                  'type' => 'string',
1187
-                  'required' => true,
1188
-                ),
1189
-              ),
1190
-            ),
1191
-          )
1192
-        )
1193
-    );
1194
-    $this->tables = new Google_Service_MapsEngine_Tables_Resource(
1195
-        $this,
1196
-        $this->serviceName,
1197
-        'tables',
1198
-        array(
1199
-          'methods' => array(
1200
-            'create' => array(
1201
-              'path' => 'tables',
1202
-              'httpMethod' => 'POST',
1203
-              'parameters' => array(),
1204
-            ),'delete' => array(
1205
-              'path' => 'tables/{id}',
1206
-              'httpMethod' => 'DELETE',
1207
-              'parameters' => array(
1208
-                'id' => array(
1209
-                  'location' => 'path',
1210
-                  'type' => 'string',
1211
-                  'required' => true,
1212
-                ),
1213
-              ),
1214
-            ),'get' => array(
1215
-              'path' => 'tables/{id}',
1216
-              'httpMethod' => 'GET',
1217
-              'parameters' => array(
1218
-                'id' => array(
1219
-                  'location' => 'path',
1220
-                  'type' => 'string',
1221
-                  'required' => true,
1222
-                ),
1223
-                'version' => array(
1224
-                  'location' => 'query',
1225
-                  'type' => 'string',
1226
-                ),
1227
-              ),
1228
-            ),'list' => array(
1229
-              'path' => 'tables',
1230
-              'httpMethod' => 'GET',
1231
-              'parameters' => array(
1232
-                'modifiedAfter' => array(
1233
-                  'location' => 'query',
1234
-                  'type' => 'string',
1235
-                ),
1236
-                'createdAfter' => array(
1237
-                  'location' => 'query',
1238
-                  'type' => 'string',
1239
-                ),
1240
-                'processingStatus' => array(
1241
-                  'location' => 'query',
1242
-                  'type' => 'string',
1243
-                ),
1244
-                'projectId' => array(
1245
-                  'location' => 'query',
1246
-                  'type' => 'string',
1247
-                ),
1248
-                'tags' => array(
1249
-                  'location' => 'query',
1250
-                  'type' => 'string',
1251
-                ),
1252
-                'search' => array(
1253
-                  'location' => 'query',
1254
-                  'type' => 'string',
1255
-                ),
1256
-                'maxResults' => array(
1257
-                  'location' => 'query',
1258
-                  'type' => 'integer',
1259
-                ),
1260
-                'pageToken' => array(
1261
-                  'location' => 'query',
1262
-                  'type' => 'string',
1263
-                ),
1264
-                'creatorEmail' => array(
1265
-                  'location' => 'query',
1266
-                  'type' => 'string',
1267
-                ),
1268
-                'bbox' => array(
1269
-                  'location' => 'query',
1270
-                  'type' => 'string',
1271
-                ),
1272
-                'modifiedBefore' => array(
1273
-                  'location' => 'query',
1274
-                  'type' => 'string',
1275
-                ),
1276
-                'createdBefore' => array(
1277
-                  'location' => 'query',
1278
-                  'type' => 'string',
1279
-                ),
1280
-                'role' => array(
1281
-                  'location' => 'query',
1282
-                  'type' => 'string',
1283
-                ),
1284
-              ),
1285
-            ),'patch' => array(
1286
-              'path' => 'tables/{id}',
1287
-              'httpMethod' => 'PATCH',
1288
-              'parameters' => array(
1289
-                'id' => array(
1290
-                  'location' => 'path',
1291
-                  'type' => 'string',
1292
-                  'required' => true,
1293
-                ),
1294
-              ),
1295
-            ),'process' => array(
1296
-              'path' => 'tables/{id}/process',
1297
-              'httpMethod' => 'POST',
1298
-              'parameters' => array(
1299
-                'id' => array(
1300
-                  'location' => 'path',
1301
-                  'type' => 'string',
1302
-                  'required' => true,
1303
-                ),
1304
-              ),
1305
-            ),'upload' => array(
1306
-              'path' => 'tables/upload',
1307
-              'httpMethod' => 'POST',
1308
-              'parameters' => array(),
1309
-            ),
1310
-          )
1311
-        )
1312
-    );
1313
-    $this->tables_features = new Google_Service_MapsEngine_TablesFeatures_Resource(
1314
-        $this,
1315
-        $this->serviceName,
1316
-        'features',
1317
-        array(
1318
-          'methods' => array(
1319
-            'batchDelete' => array(
1320
-              'path' => 'tables/{id}/features/batchDelete',
1321
-              'httpMethod' => 'POST',
1322
-              'parameters' => array(
1323
-                'id' => array(
1324
-                  'location' => 'path',
1325
-                  'type' => 'string',
1326
-                  'required' => true,
1327
-                ),
1328
-              ),
1329
-            ),'batchInsert' => array(
1330
-              'path' => 'tables/{id}/features/batchInsert',
1331
-              'httpMethod' => 'POST',
1332
-              'parameters' => array(
1333
-                'id' => array(
1334
-                  'location' => 'path',
1335
-                  'type' => 'string',
1336
-                  'required' => true,
1337
-                ),
1338
-              ),
1339
-            ),'batchPatch' => array(
1340
-              'path' => 'tables/{id}/features/batchPatch',
1341
-              'httpMethod' => 'POST',
1342
-              'parameters' => array(
1343
-                'id' => array(
1344
-                  'location' => 'path',
1345
-                  'type' => 'string',
1346
-                  'required' => true,
1347
-                ),
1348
-              ),
1349
-            ),'get' => array(
1350
-              'path' => 'tables/{tableId}/features/{id}',
1351
-              'httpMethod' => 'GET',
1352
-              'parameters' => array(
1353
-                'tableId' => array(
1354
-                  'location' => 'path',
1355
-                  'type' => 'string',
1356
-                  'required' => true,
1357
-                ),
1358
-                'id' => array(
1359
-                  'location' => 'path',
1360
-                  'type' => 'string',
1361
-                  'required' => true,
1362
-                ),
1363
-                'version' => array(
1364
-                  'location' => 'query',
1365
-                  'type' => 'string',
1366
-                ),
1367
-                'select' => array(
1368
-                  'location' => 'query',
1369
-                  'type' => 'string',
1370
-                ),
1371
-              ),
1372
-            ),'list' => array(
1373
-              'path' => 'tables/{id}/features',
1374
-              'httpMethod' => 'GET',
1375
-              'parameters' => array(
1376
-                'id' => array(
1377
-                  'location' => 'path',
1378
-                  'type' => 'string',
1379
-                  'required' => true,
1380
-                ),
1381
-                'orderBy' => array(
1382
-                  'location' => 'query',
1383
-                  'type' => 'string',
1384
-                ),
1385
-                'intersects' => array(
1386
-                  'location' => 'query',
1387
-                  'type' => 'string',
1388
-                ),
1389
-                'maxResults' => array(
1390
-                  'location' => 'query',
1391
-                  'type' => 'integer',
1392
-                ),
1393
-                'pageToken' => array(
1394
-                  'location' => 'query',
1395
-                  'type' => 'string',
1396
-                ),
1397
-                'version' => array(
1398
-                  'location' => 'query',
1399
-                  'type' => 'string',
1400
-                ),
1401
-                'limit' => array(
1402
-                  'location' => 'query',
1403
-                  'type' => 'integer',
1404
-                ),
1405
-                'include' => array(
1406
-                  'location' => 'query',
1407
-                  'type' => 'string',
1408
-                ),
1409
-                'where' => array(
1410
-                  'location' => 'query',
1411
-                  'type' => 'string',
1412
-                ),
1413
-                'select' => array(
1414
-                  'location' => 'query',
1415
-                  'type' => 'string',
1416
-                ),
1417
-              ),
1418
-            ),
1419
-          )
1420
-        )
1421
-    );
1422
-    $this->tables_files = new Google_Service_MapsEngine_TablesFiles_Resource(
1423
-        $this,
1424
-        $this->serviceName,
1425
-        'files',
1426
-        array(
1427
-          'methods' => array(
1428
-            'insert' => array(
1429
-              'path' => 'tables/{id}/files',
1430
-              'httpMethod' => 'POST',
1431
-              'parameters' => array(
1432
-                'id' => array(
1433
-                  'location' => 'path',
1434
-                  'type' => 'string',
1435
-                  'required' => true,
1436
-                ),
1437
-                'filename' => array(
1438
-                  'location' => 'query',
1439
-                  'type' => 'string',
1440
-                  'required' => true,
1441
-                ),
1442
-              ),
1443
-            ),
1444
-          )
1445
-        )
1446
-    );
1447
-    $this->tables_parents = new Google_Service_MapsEngine_TablesParents_Resource(
1448
-        $this,
1449
-        $this->serviceName,
1450
-        'parents',
1451
-        array(
1452
-          'methods' => array(
1453
-            'list' => array(
1454
-              'path' => 'tables/{id}/parents',
1455
-              'httpMethod' => 'GET',
1456
-              'parameters' => array(
1457
-                'id' => array(
1458
-                  'location' => 'path',
1459
-                  'type' => 'string',
1460
-                  'required' => true,
1461
-                ),
1462
-                'pageToken' => array(
1463
-                  'location' => 'query',
1464
-                  'type' => 'string',
1465
-                ),
1466
-                'maxResults' => array(
1467
-                  'location' => 'query',
1468
-                  'type' => 'integer',
1469
-                ),
1470
-              ),
1471
-            ),
1472
-          )
1473
-        )
1474
-    );
1475
-    $this->tables_permissions = new Google_Service_MapsEngine_TablesPermissions_Resource(
1476
-        $this,
1477
-        $this->serviceName,
1478
-        'permissions',
1479
-        array(
1480
-          'methods' => array(
1481
-            'batchDelete' => array(
1482
-              'path' => 'tables/{id}/permissions/batchDelete',
1483
-              'httpMethod' => 'POST',
1484
-              'parameters' => array(
1485
-                'id' => array(
1486
-                  'location' => 'path',
1487
-                  'type' => 'string',
1488
-                  'required' => true,
1489
-                ),
1490
-              ),
1491
-            ),'batchUpdate' => array(
1492
-              'path' => 'tables/{id}/permissions/batchUpdate',
1493
-              'httpMethod' => 'POST',
1494
-              'parameters' => array(
1495
-                'id' => array(
1496
-                  'location' => 'path',
1497
-                  'type' => 'string',
1498
-                  'required' => true,
1499
-                ),
1500
-              ),
1501
-            ),'list' => array(
1502
-              'path' => 'tables/{id}/permissions',
1503
-              'httpMethod' => 'GET',
1504
-              'parameters' => array(
1505
-                'id' => array(
1506
-                  'location' => 'path',
1507
-                  'type' => 'string',
1508
-                  'required' => true,
1509
-                ),
1510
-              ),
1511
-            ),
1512
-          )
1513
-        )
1514
-    );
73
+	parent::__construct($client);
74
+	$this->rootUrl = 'https://www.googleapis.com/';
75
+	$this->servicePath = 'mapsengine/v1/';
76
+	$this->version = 'v1';
77
+	$this->serviceName = 'mapsengine';
78
+
79
+	$this->assets = new Google_Service_MapsEngine_Assets_Resource(
80
+		$this,
81
+		$this->serviceName,
82
+		'assets',
83
+		array(
84
+		  'methods' => array(
85
+			'get' => array(
86
+			  'path' => 'assets/{id}',
87
+			  'httpMethod' => 'GET',
88
+			  'parameters' => array(
89
+				'id' => array(
90
+				  'location' => 'path',
91
+				  'type' => 'string',
92
+				  'required' => true,
93
+				),
94
+			  ),
95
+			),'list' => array(
96
+			  'path' => 'assets',
97
+			  'httpMethod' => 'GET',
98
+			  'parameters' => array(
99
+				'modifiedAfter' => array(
100
+				  'location' => 'query',
101
+				  'type' => 'string',
102
+				),
103
+				'createdAfter' => array(
104
+				  'location' => 'query',
105
+				  'type' => 'string',
106
+				),
107
+				'tags' => array(
108
+				  'location' => 'query',
109
+				  'type' => 'string',
110
+				),
111
+				'projectId' => array(
112
+				  'location' => 'query',
113
+				  'type' => 'string',
114
+				),
115
+				'search' => array(
116
+				  'location' => 'query',
117
+				  'type' => 'string',
118
+				),
119
+				'maxResults' => array(
120
+				  'location' => 'query',
121
+				  'type' => 'integer',
122
+				),
123
+				'pageToken' => array(
124
+				  'location' => 'query',
125
+				  'type' => 'string',
126
+				),
127
+				'creatorEmail' => array(
128
+				  'location' => 'query',
129
+				  'type' => 'string',
130
+				),
131
+				'bbox' => array(
132
+				  'location' => 'query',
133
+				  'type' => 'string',
134
+				),
135
+				'modifiedBefore' => array(
136
+				  'location' => 'query',
137
+				  'type' => 'string',
138
+				),
139
+				'createdBefore' => array(
140
+				  'location' => 'query',
141
+				  'type' => 'string',
142
+				),
143
+				'role' => array(
144
+				  'location' => 'query',
145
+				  'type' => 'string',
146
+				),
147
+				'type' => array(
148
+				  'location' => 'query',
149
+				  'type' => 'string',
150
+				),
151
+			  ),
152
+			),
153
+		  )
154
+		)
155
+	);
156
+	$this->assets_parents = new Google_Service_MapsEngine_AssetsParents_Resource(
157
+		$this,
158
+		$this->serviceName,
159
+		'parents',
160
+		array(
161
+		  'methods' => array(
162
+			'list' => array(
163
+			  'path' => 'assets/{id}/parents',
164
+			  'httpMethod' => 'GET',
165
+			  'parameters' => array(
166
+				'id' => array(
167
+				  'location' => 'path',
168
+				  'type' => 'string',
169
+				  'required' => true,
170
+				),
171
+				'pageToken' => array(
172
+				  'location' => 'query',
173
+				  'type' => 'string',
174
+				),
175
+				'maxResults' => array(
176
+				  'location' => 'query',
177
+				  'type' => 'integer',
178
+				),
179
+			  ),
180
+			),
181
+		  )
182
+		)
183
+	);
184
+	$this->assets_permissions = new Google_Service_MapsEngine_AssetsPermissions_Resource(
185
+		$this,
186
+		$this->serviceName,
187
+		'permissions',
188
+		array(
189
+		  'methods' => array(
190
+			'list' => array(
191
+			  'path' => 'assets/{id}/permissions',
192
+			  'httpMethod' => 'GET',
193
+			  'parameters' => array(
194
+				'id' => array(
195
+				  'location' => 'path',
196
+				  'type' => 'string',
197
+				  'required' => true,
198
+				),
199
+			  ),
200
+			),
201
+		  )
202
+		)
203
+	);
204
+	$this->layers = new Google_Service_MapsEngine_Layers_Resource(
205
+		$this,
206
+		$this->serviceName,
207
+		'layers',
208
+		array(
209
+		  'methods' => array(
210
+			'cancelProcessing' => array(
211
+			  'path' => 'layers/{id}/cancelProcessing',
212
+			  'httpMethod' => 'POST',
213
+			  'parameters' => array(
214
+				'id' => array(
215
+				  'location' => 'path',
216
+				  'type' => 'string',
217
+				  'required' => true,
218
+				),
219
+			  ),
220
+			),'create' => array(
221
+			  'path' => 'layers',
222
+			  'httpMethod' => 'POST',
223
+			  'parameters' => array(
224
+				'process' => array(
225
+				  'location' => 'query',
226
+				  'type' => 'boolean',
227
+				),
228
+			  ),
229
+			),'delete' => array(
230
+			  'path' => 'layers/{id}',
231
+			  'httpMethod' => 'DELETE',
232
+			  'parameters' => array(
233
+				'id' => array(
234
+				  'location' => 'path',
235
+				  'type' => 'string',
236
+				  'required' => true,
237
+				),
238
+			  ),
239
+			),'get' => array(
240
+			  'path' => 'layers/{id}',
241
+			  'httpMethod' => 'GET',
242
+			  'parameters' => array(
243
+				'id' => array(
244
+				  'location' => 'path',
245
+				  'type' => 'string',
246
+				  'required' => true,
247
+				),
248
+				'version' => array(
249
+				  'location' => 'query',
250
+				  'type' => 'string',
251
+				),
252
+			  ),
253
+			),'getPublished' => array(
254
+			  'path' => 'layers/{id}/published',
255
+			  'httpMethod' => 'GET',
256
+			  'parameters' => array(
257
+				'id' => array(
258
+				  'location' => 'path',
259
+				  'type' => 'string',
260
+				  'required' => true,
261
+				),
262
+			  ),
263
+			),'list' => array(
264
+			  'path' => 'layers',
265
+			  'httpMethod' => 'GET',
266
+			  'parameters' => array(
267
+				'modifiedAfter' => array(
268
+				  'location' => 'query',
269
+				  'type' => 'string',
270
+				),
271
+				'createdAfter' => array(
272
+				  'location' => 'query',
273
+				  'type' => 'string',
274
+				),
275
+				'processingStatus' => array(
276
+				  'location' => 'query',
277
+				  'type' => 'string',
278
+				),
279
+				'projectId' => array(
280
+				  'location' => 'query',
281
+				  'type' => 'string',
282
+				),
283
+				'tags' => array(
284
+				  'location' => 'query',
285
+				  'type' => 'string',
286
+				),
287
+				'search' => array(
288
+				  'location' => 'query',
289
+				  'type' => 'string',
290
+				),
291
+				'maxResults' => array(
292
+				  'location' => 'query',
293
+				  'type' => 'integer',
294
+				),
295
+				'pageToken' => array(
296
+				  'location' => 'query',
297
+				  'type' => 'string',
298
+				),
299
+				'creatorEmail' => array(
300
+				  'location' => 'query',
301
+				  'type' => 'string',
302
+				),
303
+				'bbox' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'string',
306
+				),
307
+				'modifiedBefore' => array(
308
+				  'location' => 'query',
309
+				  'type' => 'string',
310
+				),
311
+				'createdBefore' => array(
312
+				  'location' => 'query',
313
+				  'type' => 'string',
314
+				),
315
+				'role' => array(
316
+				  'location' => 'query',
317
+				  'type' => 'string',
318
+				),
319
+			  ),
320
+			),'listPublished' => array(
321
+			  'path' => 'layers/published',
322
+			  'httpMethod' => 'GET',
323
+			  'parameters' => array(
324
+				'pageToken' => array(
325
+				  'location' => 'query',
326
+				  'type' => 'string',
327
+				),
328
+				'maxResults' => array(
329
+				  'location' => 'query',
330
+				  'type' => 'integer',
331
+				),
332
+				'projectId' => array(
333
+				  'location' => 'query',
334
+				  'type' => 'string',
335
+				),
336
+			  ),
337
+			),'patch' => array(
338
+			  'path' => 'layers/{id}',
339
+			  'httpMethod' => 'PATCH',
340
+			  'parameters' => array(
341
+				'id' => array(
342
+				  'location' => 'path',
343
+				  'type' => 'string',
344
+				  'required' => true,
345
+				),
346
+			  ),
347
+			),'process' => array(
348
+			  'path' => 'layers/{id}/process',
349
+			  'httpMethod' => 'POST',
350
+			  'parameters' => array(
351
+				'id' => array(
352
+				  'location' => 'path',
353
+				  'type' => 'string',
354
+				  'required' => true,
355
+				),
356
+			  ),
357
+			),'publish' => array(
358
+			  'path' => 'layers/{id}/publish',
359
+			  'httpMethod' => 'POST',
360
+			  'parameters' => array(
361
+				'id' => array(
362
+				  'location' => 'path',
363
+				  'type' => 'string',
364
+				  'required' => true,
365
+				),
366
+				'force' => array(
367
+				  'location' => 'query',
368
+				  'type' => 'boolean',
369
+				),
370
+			  ),
371
+			),'unpublish' => array(
372
+			  'path' => 'layers/{id}/unpublish',
373
+			  'httpMethod' => 'POST',
374
+			  'parameters' => array(
375
+				'id' => array(
376
+				  'location' => 'path',
377
+				  'type' => 'string',
378
+				  'required' => true,
379
+				),
380
+			  ),
381
+			),
382
+		  )
383
+		)
384
+	);
385
+	$this->layers_parents = new Google_Service_MapsEngine_LayersParents_Resource(
386
+		$this,
387
+		$this->serviceName,
388
+		'parents',
389
+		array(
390
+		  'methods' => array(
391
+			'list' => array(
392
+			  'path' => 'layers/{id}/parents',
393
+			  'httpMethod' => 'GET',
394
+			  'parameters' => array(
395
+				'id' => array(
396
+				  'location' => 'path',
397
+				  'type' => 'string',
398
+				  'required' => true,
399
+				),
400
+				'pageToken' => array(
401
+				  'location' => 'query',
402
+				  'type' => 'string',
403
+				),
404
+				'maxResults' => array(
405
+				  'location' => 'query',
406
+				  'type' => 'integer',
407
+				),
408
+			  ),
409
+			),
410
+		  )
411
+		)
412
+	);
413
+	$this->layers_permissions = new Google_Service_MapsEngine_LayersPermissions_Resource(
414
+		$this,
415
+		$this->serviceName,
416
+		'permissions',
417
+		array(
418
+		  'methods' => array(
419
+			'batchDelete' => array(
420
+			  'path' => 'layers/{id}/permissions/batchDelete',
421
+			  'httpMethod' => 'POST',
422
+			  'parameters' => array(
423
+				'id' => array(
424
+				  'location' => 'path',
425
+				  'type' => 'string',
426
+				  'required' => true,
427
+				),
428
+			  ),
429
+			),'batchUpdate' => array(
430
+			  'path' => 'layers/{id}/permissions/batchUpdate',
431
+			  'httpMethod' => 'POST',
432
+			  'parameters' => array(
433
+				'id' => array(
434
+				  'location' => 'path',
435
+				  'type' => 'string',
436
+				  'required' => true,
437
+				),
438
+			  ),
439
+			),'list' => array(
440
+			  'path' => 'layers/{id}/permissions',
441
+			  'httpMethod' => 'GET',
442
+			  'parameters' => array(
443
+				'id' => array(
444
+				  'location' => 'path',
445
+				  'type' => 'string',
446
+				  'required' => true,
447
+				),
448
+			  ),
449
+			),
450
+		  )
451
+		)
452
+	);
453
+	$this->maps = new Google_Service_MapsEngine_Maps_Resource(
454
+		$this,
455
+		$this->serviceName,
456
+		'maps',
457
+		array(
458
+		  'methods' => array(
459
+			'create' => array(
460
+			  'path' => 'maps',
461
+			  'httpMethod' => 'POST',
462
+			  'parameters' => array(),
463
+			),'delete' => array(
464
+			  'path' => 'maps/{id}',
465
+			  'httpMethod' => 'DELETE',
466
+			  'parameters' => array(
467
+				'id' => array(
468
+				  'location' => 'path',
469
+				  'type' => 'string',
470
+				  'required' => true,
471
+				),
472
+			  ),
473
+			),'get' => array(
474
+			  'path' => 'maps/{id}',
475
+			  'httpMethod' => 'GET',
476
+			  'parameters' => array(
477
+				'id' => array(
478
+				  'location' => 'path',
479
+				  'type' => 'string',
480
+				  'required' => true,
481
+				),
482
+				'version' => array(
483
+				  'location' => 'query',
484
+				  'type' => 'string',
485
+				),
486
+			  ),
487
+			),'getPublished' => array(
488
+			  'path' => 'maps/{id}/published',
489
+			  'httpMethod' => 'GET',
490
+			  'parameters' => array(
491
+				'id' => array(
492
+				  'location' => 'path',
493
+				  'type' => 'string',
494
+				  'required' => true,
495
+				),
496
+			  ),
497
+			),'list' => array(
498
+			  'path' => 'maps',
499
+			  'httpMethod' => 'GET',
500
+			  'parameters' => array(
501
+				'modifiedAfter' => array(
502
+				  'location' => 'query',
503
+				  'type' => 'string',
504
+				),
505
+				'createdAfter' => array(
506
+				  'location' => 'query',
507
+				  'type' => 'string',
508
+				),
509
+				'processingStatus' => array(
510
+				  'location' => 'query',
511
+				  'type' => 'string',
512
+				),
513
+				'projectId' => array(
514
+				  'location' => 'query',
515
+				  'type' => 'string',
516
+				),
517
+				'tags' => array(
518
+				  'location' => 'query',
519
+				  'type' => 'string',
520
+				),
521
+				'search' => array(
522
+				  'location' => 'query',
523
+				  'type' => 'string',
524
+				),
525
+				'maxResults' => array(
526
+				  'location' => 'query',
527
+				  'type' => 'integer',
528
+				),
529
+				'pageToken' => array(
530
+				  'location' => 'query',
531
+				  'type' => 'string',
532
+				),
533
+				'creatorEmail' => array(
534
+				  'location' => 'query',
535
+				  'type' => 'string',
536
+				),
537
+				'bbox' => array(
538
+				  'location' => 'query',
539
+				  'type' => 'string',
540
+				),
541
+				'modifiedBefore' => array(
542
+				  'location' => 'query',
543
+				  'type' => 'string',
544
+				),
545
+				'createdBefore' => array(
546
+				  'location' => 'query',
547
+				  'type' => 'string',
548
+				),
549
+				'role' => array(
550
+				  'location' => 'query',
551
+				  'type' => 'string',
552
+				),
553
+			  ),
554
+			),'listPublished' => array(
555
+			  'path' => 'maps/published',
556
+			  'httpMethod' => 'GET',
557
+			  'parameters' => array(
558
+				'pageToken' => array(
559
+				  'location' => 'query',
560
+				  'type' => 'string',
561
+				),
562
+				'maxResults' => array(
563
+				  'location' => 'query',
564
+				  'type' => 'integer',
565
+				),
566
+				'projectId' => array(
567
+				  'location' => 'query',
568
+				  'type' => 'string',
569
+				),
570
+			  ),
571
+			),'patch' => array(
572
+			  'path' => 'maps/{id}',
573
+			  'httpMethod' => 'PATCH',
574
+			  'parameters' => array(
575
+				'id' => array(
576
+				  'location' => 'path',
577
+				  'type' => 'string',
578
+				  'required' => true,
579
+				),
580
+			  ),
581
+			),'publish' => array(
582
+			  'path' => 'maps/{id}/publish',
583
+			  'httpMethod' => 'POST',
584
+			  'parameters' => array(
585
+				'id' => array(
586
+				  'location' => 'path',
587
+				  'type' => 'string',
588
+				  'required' => true,
589
+				),
590
+				'force' => array(
591
+				  'location' => 'query',
592
+				  'type' => 'boolean',
593
+				),
594
+			  ),
595
+			),'unpublish' => array(
596
+			  'path' => 'maps/{id}/unpublish',
597
+			  'httpMethod' => 'POST',
598
+			  'parameters' => array(
599
+				'id' => array(
600
+				  'location' => 'path',
601
+				  'type' => 'string',
602
+				  'required' => true,
603
+				),
604
+			  ),
605
+			),
606
+		  )
607
+		)
608
+	);
609
+	$this->maps_permissions = new Google_Service_MapsEngine_MapsPermissions_Resource(
610
+		$this,
611
+		$this->serviceName,
612
+		'permissions',
613
+		array(
614
+		  'methods' => array(
615
+			'batchDelete' => array(
616
+			  'path' => 'maps/{id}/permissions/batchDelete',
617
+			  'httpMethod' => 'POST',
618
+			  'parameters' => array(
619
+				'id' => array(
620
+				  'location' => 'path',
621
+				  'type' => 'string',
622
+				  'required' => true,
623
+				),
624
+			  ),
625
+			),'batchUpdate' => array(
626
+			  'path' => 'maps/{id}/permissions/batchUpdate',
627
+			  'httpMethod' => 'POST',
628
+			  'parameters' => array(
629
+				'id' => array(
630
+				  'location' => 'path',
631
+				  'type' => 'string',
632
+				  'required' => true,
633
+				),
634
+			  ),
635
+			),'list' => array(
636
+			  'path' => 'maps/{id}/permissions',
637
+			  'httpMethod' => 'GET',
638
+			  'parameters' => array(
639
+				'id' => array(
640
+				  'location' => 'path',
641
+				  'type' => 'string',
642
+				  'required' => true,
643
+				),
644
+			  ),
645
+			),
646
+		  )
647
+		)
648
+	);
649
+	$this->projects = new Google_Service_MapsEngine_Projects_Resource(
650
+		$this,
651
+		$this->serviceName,
652
+		'projects',
653
+		array(
654
+		  'methods' => array(
655
+			'list' => array(
656
+			  'path' => 'projects',
657
+			  'httpMethod' => 'GET',
658
+			  'parameters' => array(),
659
+			),
660
+		  )
661
+		)
662
+	);
663
+	$this->projects_icons = new Google_Service_MapsEngine_ProjectsIcons_Resource(
664
+		$this,
665
+		$this->serviceName,
666
+		'icons',
667
+		array(
668
+		  'methods' => array(
669
+			'create' => array(
670
+			  'path' => 'projects/{projectId}/icons',
671
+			  'httpMethod' => 'POST',
672
+			  'parameters' => array(
673
+				'projectId' => array(
674
+				  'location' => 'path',
675
+				  'type' => 'string',
676
+				  'required' => true,
677
+				),
678
+			  ),
679
+			),'get' => array(
680
+			  'path' => 'projects/{projectId}/icons/{id}',
681
+			  'httpMethod' => 'GET',
682
+			  'parameters' => array(
683
+				'projectId' => array(
684
+				  'location' => 'path',
685
+				  'type' => 'string',
686
+				  'required' => true,
687
+				),
688
+				'id' => array(
689
+				  'location' => 'path',
690
+				  'type' => 'string',
691
+				  'required' => true,
692
+				),
693
+			  ),
694
+			),'list' => array(
695
+			  'path' => 'projects/{projectId}/icons',
696
+			  'httpMethod' => 'GET',
697
+			  'parameters' => array(
698
+				'projectId' => array(
699
+				  'location' => 'path',
700
+				  'type' => 'string',
701
+				  'required' => true,
702
+				),
703
+				'pageToken' => array(
704
+				  'location' => 'query',
705
+				  'type' => 'string',
706
+				),
707
+				'maxResults' => array(
708
+				  'location' => 'query',
709
+				  'type' => 'integer',
710
+				),
711
+			  ),
712
+			),
713
+		  )
714
+		)
715
+	);
716
+	$this->rasterCollections = new Google_Service_MapsEngine_RasterCollections_Resource(
717
+		$this,
718
+		$this->serviceName,
719
+		'rasterCollections',
720
+		array(
721
+		  'methods' => array(
722
+			'cancelProcessing' => array(
723
+			  'path' => 'rasterCollections/{id}/cancelProcessing',
724
+			  'httpMethod' => 'POST',
725
+			  'parameters' => array(
726
+				'id' => array(
727
+				  'location' => 'path',
728
+				  'type' => 'string',
729
+				  'required' => true,
730
+				),
731
+			  ),
732
+			),'create' => array(
733
+			  'path' => 'rasterCollections',
734
+			  'httpMethod' => 'POST',
735
+			  'parameters' => array(),
736
+			),'delete' => array(
737
+			  'path' => 'rasterCollections/{id}',
738
+			  'httpMethod' => 'DELETE',
739
+			  'parameters' => array(
740
+				'id' => array(
741
+				  'location' => 'path',
742
+				  'type' => 'string',
743
+				  'required' => true,
744
+				),
745
+			  ),
746
+			),'get' => array(
747
+			  'path' => 'rasterCollections/{id}',
748
+			  'httpMethod' => 'GET',
749
+			  'parameters' => array(
750
+				'id' => array(
751
+				  'location' => 'path',
752
+				  'type' => 'string',
753
+				  'required' => true,
754
+				),
755
+			  ),
756
+			),'list' => array(
757
+			  'path' => 'rasterCollections',
758
+			  'httpMethod' => 'GET',
759
+			  'parameters' => array(
760
+				'modifiedAfter' => array(
761
+				  'location' => 'query',
762
+				  'type' => 'string',
763
+				),
764
+				'createdAfter' => array(
765
+				  'location' => 'query',
766
+				  'type' => 'string',
767
+				),
768
+				'processingStatus' => array(
769
+				  'location' => 'query',
770
+				  'type' => 'string',
771
+				),
772
+				'projectId' => array(
773
+				  'location' => 'query',
774
+				  'type' => 'string',
775
+				),
776
+				'tags' => array(
777
+				  'location' => 'query',
778
+				  'type' => 'string',
779
+				),
780
+				'search' => array(
781
+				  'location' => 'query',
782
+				  'type' => 'string',
783
+				),
784
+				'maxResults' => array(
785
+				  'location' => 'query',
786
+				  'type' => 'integer',
787
+				),
788
+				'pageToken' => array(
789
+				  'location' => 'query',
790
+				  'type' => 'string',
791
+				),
792
+				'creatorEmail' => array(
793
+				  'location' => 'query',
794
+				  'type' => 'string',
795
+				),
796
+				'bbox' => array(
797
+				  'location' => 'query',
798
+				  'type' => 'string',
799
+				),
800
+				'modifiedBefore' => array(
801
+				  'location' => 'query',
802
+				  'type' => 'string',
803
+				),
804
+				'createdBefore' => array(
805
+				  'location' => 'query',
806
+				  'type' => 'string',
807
+				),
808
+				'role' => array(
809
+				  'location' => 'query',
810
+				  'type' => 'string',
811
+				),
812
+			  ),
813
+			),'patch' => array(
814
+			  'path' => 'rasterCollections/{id}',
815
+			  'httpMethod' => 'PATCH',
816
+			  'parameters' => array(
817
+				'id' => array(
818
+				  'location' => 'path',
819
+				  'type' => 'string',
820
+				  'required' => true,
821
+				),
822
+			  ),
823
+			),'process' => array(
824
+			  'path' => 'rasterCollections/{id}/process',
825
+			  'httpMethod' => 'POST',
826
+			  'parameters' => array(
827
+				'id' => array(
828
+				  'location' => 'path',
829
+				  'type' => 'string',
830
+				  'required' => true,
831
+				),
832
+			  ),
833
+			),
834
+		  )
835
+		)
836
+	);
837
+	$this->rasterCollections_parents = new Google_Service_MapsEngine_RasterCollectionsParents_Resource(
838
+		$this,
839
+		$this->serviceName,
840
+		'parents',
841
+		array(
842
+		  'methods' => array(
843
+			'list' => array(
844
+			  'path' => 'rasterCollections/{id}/parents',
845
+			  'httpMethod' => 'GET',
846
+			  'parameters' => array(
847
+				'id' => array(
848
+				  'location' => 'path',
849
+				  'type' => 'string',
850
+				  'required' => true,
851
+				),
852
+				'pageToken' => array(
853
+				  'location' => 'query',
854
+				  'type' => 'string',
855
+				),
856
+				'maxResults' => array(
857
+				  'location' => 'query',
858
+				  'type' => 'integer',
859
+				),
860
+			  ),
861
+			),
862
+		  )
863
+		)
864
+	);
865
+	$this->rasterCollections_permissions = new Google_Service_MapsEngine_RasterCollectionsPermissions_Resource(
866
+		$this,
867
+		$this->serviceName,
868
+		'permissions',
869
+		array(
870
+		  'methods' => array(
871
+			'batchDelete' => array(
872
+			  'path' => 'rasterCollections/{id}/permissions/batchDelete',
873
+			  'httpMethod' => 'POST',
874
+			  'parameters' => array(
875
+				'id' => array(
876
+				  'location' => 'path',
877
+				  'type' => 'string',
878
+				  'required' => true,
879
+				),
880
+			  ),
881
+			),'batchUpdate' => array(
882
+			  'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883
+			  'httpMethod' => 'POST',
884
+			  'parameters' => array(
885
+				'id' => array(
886
+				  'location' => 'path',
887
+				  'type' => 'string',
888
+				  'required' => true,
889
+				),
890
+			  ),
891
+			),'list' => array(
892
+			  'path' => 'rasterCollections/{id}/permissions',
893
+			  'httpMethod' => 'GET',
894
+			  'parameters' => array(
895
+				'id' => array(
896
+				  'location' => 'path',
897
+				  'type' => 'string',
898
+				  'required' => true,
899
+				),
900
+			  ),
901
+			),
902
+		  )
903
+		)
904
+	);
905
+	$this->rasterCollections_rasters = new Google_Service_MapsEngine_RasterCollectionsRasters_Resource(
906
+		$this,
907
+		$this->serviceName,
908
+		'rasters',
909
+		array(
910
+		  'methods' => array(
911
+			'batchDelete' => array(
912
+			  'path' => 'rasterCollections/{id}/rasters/batchDelete',
913
+			  'httpMethod' => 'POST',
914
+			  'parameters' => array(
915
+				'id' => array(
916
+				  'location' => 'path',
917
+				  'type' => 'string',
918
+				  'required' => true,
919
+				),
920
+			  ),
921
+			),'batchInsert' => array(
922
+			  'path' => 'rasterCollections/{id}/rasters/batchInsert',
923
+			  'httpMethod' => 'POST',
924
+			  'parameters' => array(
925
+				'id' => array(
926
+				  'location' => 'path',
927
+				  'type' => 'string',
928
+				  'required' => true,
929
+				),
930
+			  ),
931
+			),'list' => array(
932
+			  'path' => 'rasterCollections/{id}/rasters',
933
+			  'httpMethod' => 'GET',
934
+			  'parameters' => array(
935
+				'id' => array(
936
+				  'location' => 'path',
937
+				  'type' => 'string',
938
+				  'required' => true,
939
+				),
940
+				'modifiedAfter' => array(
941
+				  'location' => 'query',
942
+				  'type' => 'string',
943
+				),
944
+				'createdAfter' => array(
945
+				  'location' => 'query',
946
+				  'type' => 'string',
947
+				),
948
+				'tags' => array(
949
+				  'location' => 'query',
950
+				  'type' => 'string',
951
+				),
952
+				'search' => array(
953
+				  'location' => 'query',
954
+				  'type' => 'string',
955
+				),
956
+				'maxResults' => array(
957
+				  'location' => 'query',
958
+				  'type' => 'integer',
959
+				),
960
+				'pageToken' => array(
961
+				  'location' => 'query',
962
+				  'type' => 'string',
963
+				),
964
+				'creatorEmail' => array(
965
+				  'location' => 'query',
966
+				  'type' => 'string',
967
+				),
968
+				'bbox' => array(
969
+				  'location' => 'query',
970
+				  'type' => 'string',
971
+				),
972
+				'modifiedBefore' => array(
973
+				  'location' => 'query',
974
+				  'type' => 'string',
975
+				),
976
+				'createdBefore' => array(
977
+				  'location' => 'query',
978
+				  'type' => 'string',
979
+				),
980
+				'role' => array(
981
+				  'location' => 'query',
982
+				  'type' => 'string',
983
+				),
984
+			  ),
985
+			),
986
+		  )
987
+		)
988
+	);
989
+	$this->rasters = new Google_Service_MapsEngine_Rasters_Resource(
990
+		$this,
991
+		$this->serviceName,
992
+		'rasters',
993
+		array(
994
+		  'methods' => array(
995
+			'delete' => array(
996
+			  'path' => 'rasters/{id}',
997
+			  'httpMethod' => 'DELETE',
998
+			  'parameters' => array(
999
+				'id' => array(
1000
+				  'location' => 'path',
1001
+				  'type' => 'string',
1002
+				  'required' => true,
1003
+				),
1004
+			  ),
1005
+			),'get' => array(
1006
+			  'path' => 'rasters/{id}',
1007
+			  'httpMethod' => 'GET',
1008
+			  'parameters' => array(
1009
+				'id' => array(
1010
+				  'location' => 'path',
1011
+				  'type' => 'string',
1012
+				  'required' => true,
1013
+				),
1014
+			  ),
1015
+			),'list' => array(
1016
+			  'path' => 'rasters',
1017
+			  'httpMethod' => 'GET',
1018
+			  'parameters' => array(
1019
+				'projectId' => array(
1020
+				  'location' => 'query',
1021
+				  'type' => 'string',
1022
+				  'required' => true,
1023
+				),
1024
+				'modifiedAfter' => array(
1025
+				  'location' => 'query',
1026
+				  'type' => 'string',
1027
+				),
1028
+				'createdAfter' => array(
1029
+				  'location' => 'query',
1030
+				  'type' => 'string',
1031
+				),
1032
+				'processingStatus' => array(
1033
+				  'location' => 'query',
1034
+				  'type' => 'string',
1035
+				),
1036
+				'tags' => array(
1037
+				  'location' => 'query',
1038
+				  'type' => 'string',
1039
+				),
1040
+				'search' => array(
1041
+				  'location' => 'query',
1042
+				  'type' => 'string',
1043
+				),
1044
+				'maxResults' => array(
1045
+				  'location' => 'query',
1046
+				  'type' => 'integer',
1047
+				),
1048
+				'pageToken' => array(
1049
+				  'location' => 'query',
1050
+				  'type' => 'string',
1051
+				),
1052
+				'creatorEmail' => array(
1053
+				  'location' => 'query',
1054
+				  'type' => 'string',
1055
+				),
1056
+				'bbox' => array(
1057
+				  'location' => 'query',
1058
+				  'type' => 'string',
1059
+				),
1060
+				'modifiedBefore' => array(
1061
+				  'location' => 'query',
1062
+				  'type' => 'string',
1063
+				),
1064
+				'createdBefore' => array(
1065
+				  'location' => 'query',
1066
+				  'type' => 'string',
1067
+				),
1068
+				'role' => array(
1069
+				  'location' => 'query',
1070
+				  'type' => 'string',
1071
+				),
1072
+			  ),
1073
+			),'patch' => array(
1074
+			  'path' => 'rasters/{id}',
1075
+			  'httpMethod' => 'PATCH',
1076
+			  'parameters' => array(
1077
+				'id' => array(
1078
+				  'location' => 'path',
1079
+				  'type' => 'string',
1080
+				  'required' => true,
1081
+				),
1082
+			  ),
1083
+			),'process' => array(
1084
+			  'path' => 'rasters/{id}/process',
1085
+			  'httpMethod' => 'POST',
1086
+			  'parameters' => array(
1087
+				'id' => array(
1088
+				  'location' => 'path',
1089
+				  'type' => 'string',
1090
+				  'required' => true,
1091
+				),
1092
+			  ),
1093
+			),'upload' => array(
1094
+			  'path' => 'rasters/upload',
1095
+			  'httpMethod' => 'POST',
1096
+			  'parameters' => array(),
1097
+			),
1098
+		  )
1099
+		)
1100
+	);
1101
+	$this->rasters_files = new Google_Service_MapsEngine_RastersFiles_Resource(
1102
+		$this,
1103
+		$this->serviceName,
1104
+		'files',
1105
+		array(
1106
+		  'methods' => array(
1107
+			'insert' => array(
1108
+			  'path' => 'rasters/{id}/files',
1109
+			  'httpMethod' => 'POST',
1110
+			  'parameters' => array(
1111
+				'id' => array(
1112
+				  'location' => 'path',
1113
+				  'type' => 'string',
1114
+				  'required' => true,
1115
+				),
1116
+				'filename' => array(
1117
+				  'location' => 'query',
1118
+				  'type' => 'string',
1119
+				  'required' => true,
1120
+				),
1121
+			  ),
1122
+			),
1123
+		  )
1124
+		)
1125
+	);
1126
+	$this->rasters_parents = new Google_Service_MapsEngine_RastersParents_Resource(
1127
+		$this,
1128
+		$this->serviceName,
1129
+		'parents',
1130
+		array(
1131
+		  'methods' => array(
1132
+			'list' => array(
1133
+			  'path' => 'rasters/{id}/parents',
1134
+			  'httpMethod' => 'GET',
1135
+			  'parameters' => array(
1136
+				'id' => array(
1137
+				  'location' => 'path',
1138
+				  'type' => 'string',
1139
+				  'required' => true,
1140
+				),
1141
+				'pageToken' => array(
1142
+				  'location' => 'query',
1143
+				  'type' => 'string',
1144
+				),
1145
+				'maxResults' => array(
1146
+				  'location' => 'query',
1147
+				  'type' => 'integer',
1148
+				),
1149
+			  ),
1150
+			),
1151
+		  )
1152
+		)
1153
+	);
1154
+	$this->rasters_permissions = new Google_Service_MapsEngine_RastersPermissions_Resource(
1155
+		$this,
1156
+		$this->serviceName,
1157
+		'permissions',
1158
+		array(
1159
+		  'methods' => array(
1160
+			'batchDelete' => array(
1161
+			  'path' => 'rasters/{id}/permissions/batchDelete',
1162
+			  'httpMethod' => 'POST',
1163
+			  'parameters' => array(
1164
+				'id' => array(
1165
+				  'location' => 'path',
1166
+				  'type' => 'string',
1167
+				  'required' => true,
1168
+				),
1169
+			  ),
1170
+			),'batchUpdate' => array(
1171
+			  'path' => 'rasters/{id}/permissions/batchUpdate',
1172
+			  'httpMethod' => 'POST',
1173
+			  'parameters' => array(
1174
+				'id' => array(
1175
+				  'location' => 'path',
1176
+				  'type' => 'string',
1177
+				  'required' => true,
1178
+				),
1179
+			  ),
1180
+			),'list' => array(
1181
+			  'path' => 'rasters/{id}/permissions',
1182
+			  'httpMethod' => 'GET',
1183
+			  'parameters' => array(
1184
+				'id' => array(
1185
+				  'location' => 'path',
1186
+				  'type' => 'string',
1187
+				  'required' => true,
1188
+				),
1189
+			  ),
1190
+			),
1191
+		  )
1192
+		)
1193
+	);
1194
+	$this->tables = new Google_Service_MapsEngine_Tables_Resource(
1195
+		$this,
1196
+		$this->serviceName,
1197
+		'tables',
1198
+		array(
1199
+		  'methods' => array(
1200
+			'create' => array(
1201
+			  'path' => 'tables',
1202
+			  'httpMethod' => 'POST',
1203
+			  'parameters' => array(),
1204
+			),'delete' => array(
1205
+			  'path' => 'tables/{id}',
1206
+			  'httpMethod' => 'DELETE',
1207
+			  'parameters' => array(
1208
+				'id' => array(
1209
+				  'location' => 'path',
1210
+				  'type' => 'string',
1211
+				  'required' => true,
1212
+				),
1213
+			  ),
1214
+			),'get' => array(
1215
+			  'path' => 'tables/{id}',
1216
+			  'httpMethod' => 'GET',
1217
+			  'parameters' => array(
1218
+				'id' => array(
1219
+				  'location' => 'path',
1220
+				  'type' => 'string',
1221
+				  'required' => true,
1222
+				),
1223
+				'version' => array(
1224
+				  'location' => 'query',
1225
+				  'type' => 'string',
1226
+				),
1227
+			  ),
1228
+			),'list' => array(
1229
+			  'path' => 'tables',
1230
+			  'httpMethod' => 'GET',
1231
+			  'parameters' => array(
1232
+				'modifiedAfter' => array(
1233
+				  'location' => 'query',
1234
+				  'type' => 'string',
1235
+				),
1236
+				'createdAfter' => array(
1237
+				  'location' => 'query',
1238
+				  'type' => 'string',
1239
+				),
1240
+				'processingStatus' => array(
1241
+				  'location' => 'query',
1242
+				  'type' => 'string',
1243
+				),
1244
+				'projectId' => array(
1245
+				  'location' => 'query',
1246
+				  'type' => 'string',
1247
+				),
1248
+				'tags' => array(
1249
+				  'location' => 'query',
1250
+				  'type' => 'string',
1251
+				),
1252
+				'search' => array(
1253
+				  'location' => 'query',
1254
+				  'type' => 'string',
1255
+				),
1256
+				'maxResults' => array(
1257
+				  'location' => 'query',
1258
+				  'type' => 'integer',
1259
+				),
1260
+				'pageToken' => array(
1261
+				  'location' => 'query',
1262
+				  'type' => 'string',
1263
+				),
1264
+				'creatorEmail' => array(
1265
+				  'location' => 'query',
1266
+				  'type' => 'string',
1267
+				),
1268
+				'bbox' => array(
1269
+				  'location' => 'query',
1270
+				  'type' => 'string',
1271
+				),
1272
+				'modifiedBefore' => array(
1273
+				  'location' => 'query',
1274
+				  'type' => 'string',
1275
+				),
1276
+				'createdBefore' => array(
1277
+				  'location' => 'query',
1278
+				  'type' => 'string',
1279
+				),
1280
+				'role' => array(
1281
+				  'location' => 'query',
1282
+				  'type' => 'string',
1283
+				),
1284
+			  ),
1285
+			),'patch' => array(
1286
+			  'path' => 'tables/{id}',
1287
+			  'httpMethod' => 'PATCH',
1288
+			  'parameters' => array(
1289
+				'id' => array(
1290
+				  'location' => 'path',
1291
+				  'type' => 'string',
1292
+				  'required' => true,
1293
+				),
1294
+			  ),
1295
+			),'process' => array(
1296
+			  'path' => 'tables/{id}/process',
1297
+			  'httpMethod' => 'POST',
1298
+			  'parameters' => array(
1299
+				'id' => array(
1300
+				  'location' => 'path',
1301
+				  'type' => 'string',
1302
+				  'required' => true,
1303
+				),
1304
+			  ),
1305
+			),'upload' => array(
1306
+			  'path' => 'tables/upload',
1307
+			  'httpMethod' => 'POST',
1308
+			  'parameters' => array(),
1309
+			),
1310
+		  )
1311
+		)
1312
+	);
1313
+	$this->tables_features = new Google_Service_MapsEngine_TablesFeatures_Resource(
1314
+		$this,
1315
+		$this->serviceName,
1316
+		'features',
1317
+		array(
1318
+		  'methods' => array(
1319
+			'batchDelete' => array(
1320
+			  'path' => 'tables/{id}/features/batchDelete',
1321
+			  'httpMethod' => 'POST',
1322
+			  'parameters' => array(
1323
+				'id' => array(
1324
+				  'location' => 'path',
1325
+				  'type' => 'string',
1326
+				  'required' => true,
1327
+				),
1328
+			  ),
1329
+			),'batchInsert' => array(
1330
+			  'path' => 'tables/{id}/features/batchInsert',
1331
+			  'httpMethod' => 'POST',
1332
+			  'parameters' => array(
1333
+				'id' => array(
1334
+				  'location' => 'path',
1335
+				  'type' => 'string',
1336
+				  'required' => true,
1337
+				),
1338
+			  ),
1339
+			),'batchPatch' => array(
1340
+			  'path' => 'tables/{id}/features/batchPatch',
1341
+			  'httpMethod' => 'POST',
1342
+			  'parameters' => array(
1343
+				'id' => array(
1344
+				  'location' => 'path',
1345
+				  'type' => 'string',
1346
+				  'required' => true,
1347
+				),
1348
+			  ),
1349
+			),'get' => array(
1350
+			  'path' => 'tables/{tableId}/features/{id}',
1351
+			  'httpMethod' => 'GET',
1352
+			  'parameters' => array(
1353
+				'tableId' => array(
1354
+				  'location' => 'path',
1355
+				  'type' => 'string',
1356
+				  'required' => true,
1357
+				),
1358
+				'id' => array(
1359
+				  'location' => 'path',
1360
+				  'type' => 'string',
1361
+				  'required' => true,
1362
+				),
1363
+				'version' => array(
1364
+				  'location' => 'query',
1365
+				  'type' => 'string',
1366
+				),
1367
+				'select' => array(
1368
+				  'location' => 'query',
1369
+				  'type' => 'string',
1370
+				),
1371
+			  ),
1372
+			),'list' => array(
1373
+			  'path' => 'tables/{id}/features',
1374
+			  'httpMethod' => 'GET',
1375
+			  'parameters' => array(
1376
+				'id' => array(
1377
+				  'location' => 'path',
1378
+				  'type' => 'string',
1379
+				  'required' => true,
1380
+				),
1381
+				'orderBy' => array(
1382
+				  'location' => 'query',
1383
+				  'type' => 'string',
1384
+				),
1385
+				'intersects' => array(
1386
+				  'location' => 'query',
1387
+				  'type' => 'string',
1388
+				),
1389
+				'maxResults' => array(
1390
+				  'location' => 'query',
1391
+				  'type' => 'integer',
1392
+				),
1393
+				'pageToken' => array(
1394
+				  'location' => 'query',
1395
+				  'type' => 'string',
1396
+				),
1397
+				'version' => array(
1398
+				  'location' => 'query',
1399
+				  'type' => 'string',
1400
+				),
1401
+				'limit' => array(
1402
+				  'location' => 'query',
1403
+				  'type' => 'integer',
1404
+				),
1405
+				'include' => array(
1406
+				  'location' => 'query',
1407
+				  'type' => 'string',
1408
+				),
1409
+				'where' => array(
1410
+				  'location' => 'query',
1411
+				  'type' => 'string',
1412
+				),
1413
+				'select' => array(
1414
+				  'location' => 'query',
1415
+				  'type' => 'string',
1416
+				),
1417
+			  ),
1418
+			),
1419
+		  )
1420
+		)
1421
+	);
1422
+	$this->tables_files = new Google_Service_MapsEngine_TablesFiles_Resource(
1423
+		$this,
1424
+		$this->serviceName,
1425
+		'files',
1426
+		array(
1427
+		  'methods' => array(
1428
+			'insert' => array(
1429
+			  'path' => 'tables/{id}/files',
1430
+			  'httpMethod' => 'POST',
1431
+			  'parameters' => array(
1432
+				'id' => array(
1433
+				  'location' => 'path',
1434
+				  'type' => 'string',
1435
+				  'required' => true,
1436
+				),
1437
+				'filename' => array(
1438
+				  'location' => 'query',
1439
+				  'type' => 'string',
1440
+				  'required' => true,
1441
+				),
1442
+			  ),
1443
+			),
1444
+		  )
1445
+		)
1446
+	);
1447
+	$this->tables_parents = new Google_Service_MapsEngine_TablesParents_Resource(
1448
+		$this,
1449
+		$this->serviceName,
1450
+		'parents',
1451
+		array(
1452
+		  'methods' => array(
1453
+			'list' => array(
1454
+			  'path' => 'tables/{id}/parents',
1455
+			  'httpMethod' => 'GET',
1456
+			  'parameters' => array(
1457
+				'id' => array(
1458
+				  'location' => 'path',
1459
+				  'type' => 'string',
1460
+				  'required' => true,
1461
+				),
1462
+				'pageToken' => array(
1463
+				  'location' => 'query',
1464
+				  'type' => 'string',
1465
+				),
1466
+				'maxResults' => array(
1467
+				  'location' => 'query',
1468
+				  'type' => 'integer',
1469
+				),
1470
+			  ),
1471
+			),
1472
+		  )
1473
+		)
1474
+	);
1475
+	$this->tables_permissions = new Google_Service_MapsEngine_TablesPermissions_Resource(
1476
+		$this,
1477
+		$this->serviceName,
1478
+		'permissions',
1479
+		array(
1480
+		  'methods' => array(
1481
+			'batchDelete' => array(
1482
+			  'path' => 'tables/{id}/permissions/batchDelete',
1483
+			  'httpMethod' => 'POST',
1484
+			  'parameters' => array(
1485
+				'id' => array(
1486
+				  'location' => 'path',
1487
+				  'type' => 'string',
1488
+				  'required' => true,
1489
+				),
1490
+			  ),
1491
+			),'batchUpdate' => array(
1492
+			  'path' => 'tables/{id}/permissions/batchUpdate',
1493
+			  'httpMethod' => 'POST',
1494
+			  'parameters' => array(
1495
+				'id' => array(
1496
+				  'location' => 'path',
1497
+				  'type' => 'string',
1498
+				  'required' => true,
1499
+				),
1500
+			  ),
1501
+			),'list' => array(
1502
+			  'path' => 'tables/{id}/permissions',
1503
+			  'httpMethod' => 'GET',
1504
+			  'parameters' => array(
1505
+				'id' => array(
1506
+				  'location' => 'path',
1507
+				  'type' => 'string',
1508
+				  'required' => true,
1509
+				),
1510
+			  ),
1511
+			),
1512
+		  )
1513
+		)
1514
+	);
1515 1515
   }
1516 1516
 }
1517 1517
 
@@ -1536,9 +1536,9 @@  discard block
 block discarded – undo
1536 1536
    */
1537 1537
   public function get($id, $optParams = array())
1538 1538
   {
1539
-    $params = array('id' => $id);
1540
-    $params = array_merge($params, $optParams);
1541
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Asset");
1539
+	$params = array('id' => $id);
1540
+	$params = array_merge($params, $optParams);
1541
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Asset");
1542 1542
   }
1543 1543
 
1544 1544
   /**
@@ -1585,9 +1585,9 @@  discard block
 block discarded – undo
1585 1585
    */
1586 1586
   public function listAssets($optParams = array())
1587 1587
   {
1588
-    $params = array();
1589
-    $params = array_merge($params, $optParams);
1590
-    return $this->call('list', array($params), "Google_Service_MapsEngine_AssetsListResponse");
1588
+	$params = array();
1589
+	$params = array_merge($params, $optParams);
1590
+	return $this->call('list', array($params), "Google_Service_MapsEngine_AssetsListResponse");
1591 1591
   }
1592 1592
 }
1593 1593
 
@@ -1617,9 +1617,9 @@  discard block
 block discarded – undo
1617 1617
    */
1618 1618
   public function listAssetsParents($id, $optParams = array())
1619 1619
   {
1620
-    $params = array('id' => $id);
1621
-    $params = array_merge($params, $optParams);
1622
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1620
+	$params = array('id' => $id);
1621
+	$params = array_merge($params, $optParams);
1622
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1623 1623
   }
1624 1624
 }
1625 1625
 /**
@@ -1643,9 +1643,9 @@  discard block
 block discarded – undo
1643 1643
    */
1644 1644
   public function listAssetsPermissions($id, $optParams = array())
1645 1645
   {
1646
-    $params = array('id' => $id);
1647
-    $params = array_merge($params, $optParams);
1648
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1646
+	$params = array('id' => $id);
1647
+	$params = array_merge($params, $optParams);
1648
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1649 1649
   }
1650 1650
 }
1651 1651
 
@@ -1669,9 +1669,9 @@  discard block
 block discarded – undo
1669 1669
    */
1670 1670
   public function cancelProcessing($id, $optParams = array())
1671 1671
   {
1672
-    $params = array('id' => $id);
1673
-    $params = array_merge($params, $optParams);
1674
-    return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
1672
+	$params = array('id' => $id);
1673
+	$params = array_merge($params, $optParams);
1674
+	return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
1675 1675
   }
1676 1676
 
1677 1677
   /**
@@ -1685,9 +1685,9 @@  discard block
 block discarded – undo
1685 1685
    */
1686 1686
   public function create(Google_Service_MapsEngine_Layer $postBody, $optParams = array())
1687 1687
   {
1688
-    $params = array('postBody' => $postBody);
1689
-    $params = array_merge($params, $optParams);
1690
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Layer");
1688
+	$params = array('postBody' => $postBody);
1689
+	$params = array_merge($params, $optParams);
1690
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Layer");
1691 1691
   }
1692 1692
 
1693 1693
   /**
@@ -1701,9 +1701,9 @@  discard block
 block discarded – undo
1701 1701
    */
1702 1702
   public function delete($id, $optParams = array())
1703 1703
   {
1704
-    $params = array('id' => $id);
1705
-    $params = array_merge($params, $optParams);
1706
-    return $this->call('delete', array($params));
1704
+	$params = array('id' => $id);
1705
+	$params = array_merge($params, $optParams);
1706
+	return $this->call('delete', array($params));
1707 1707
   }
1708 1708
 
1709 1709
   /**
@@ -1720,9 +1720,9 @@  discard block
 block discarded – undo
1720 1720
    */
1721 1721
   public function get($id, $optParams = array())
1722 1722
   {
1723
-    $params = array('id' => $id);
1724
-    $params = array_merge($params, $optParams);
1725
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Layer");
1723
+	$params = array('id' => $id);
1724
+	$params = array_merge($params, $optParams);
1725
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Layer");
1726 1726
   }
1727 1727
 
1728 1728
   /**
@@ -1734,9 +1734,9 @@  discard block
 block discarded – undo
1734 1734
    */
1735 1735
   public function getPublished($id, $optParams = array())
1736 1736
   {
1737
-    $params = array('id' => $id);
1738
-    $params = array_merge($params, $optParams);
1739
-    return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedLayer");
1737
+	$params = array('id' => $id);
1738
+	$params = array_merge($params, $optParams);
1739
+	return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedLayer");
1740 1740
   }
1741 1741
 
1742 1742
   /**
@@ -1781,9 +1781,9 @@  discard block
 block discarded – undo
1781 1781
    */
1782 1782
   public function listLayers($optParams = array())
1783 1783
   {
1784
-    $params = array();
1785
-    $params = array_merge($params, $optParams);
1786
-    return $this->call('list', array($params), "Google_Service_MapsEngine_LayersListResponse");
1784
+	$params = array();
1785
+	$params = array_merge($params, $optParams);
1786
+	return $this->call('list', array($params), "Google_Service_MapsEngine_LayersListResponse");
1787 1787
   }
1788 1788
 
1789 1789
   /**
@@ -1805,9 +1805,9 @@  discard block
 block discarded – undo
1805 1805
    */
1806 1806
   public function listPublished($optParams = array())
1807 1807
   {
1808
-    $params = array();
1809
-    $params = array_merge($params, $optParams);
1810
-    return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedLayersListResponse");
1808
+	$params = array();
1809
+	$params = array_merge($params, $optParams);
1810
+	return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedLayersListResponse");
1811 1811
   }
1812 1812
 
1813 1813
   /**
@@ -1819,9 +1819,9 @@  discard block
 block discarded – undo
1819 1819
    */
1820 1820
   public function patch($id, Google_Service_MapsEngine_Layer $postBody, $optParams = array())
1821 1821
   {
1822
-    $params = array('id' => $id, 'postBody' => $postBody);
1823
-    $params = array_merge($params, $optParams);
1824
-    return $this->call('patch', array($params));
1822
+	$params = array('id' => $id, 'postBody' => $postBody);
1823
+	$params = array_merge($params, $optParams);
1824
+	return $this->call('patch', array($params));
1825 1825
   }
1826 1826
 
1827 1827
   /**
@@ -1833,9 +1833,9 @@  discard block
 block discarded – undo
1833 1833
    */
1834 1834
   public function process($id, $optParams = array())
1835 1835
   {
1836
-    $params = array('id' => $id);
1837
-    $params = array_merge($params, $optParams);
1838
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
1836
+	$params = array('id' => $id);
1837
+	$params = array_merge($params, $optParams);
1838
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
1839 1839
   }
1840 1840
 
1841 1841
   /**
@@ -1851,9 +1851,9 @@  discard block
 block discarded – undo
1851 1851
    */
1852 1852
   public function publish($id, $optParams = array())
1853 1853
   {
1854
-    $params = array('id' => $id);
1855
-    $params = array_merge($params, $optParams);
1856
-    return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
1854
+	$params = array('id' => $id);
1855
+	$params = array_merge($params, $optParams);
1856
+	return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
1857 1857
   }
1858 1858
 
1859 1859
   /**
@@ -1865,9 +1865,9 @@  discard block
 block discarded – undo
1865 1865
    */
1866 1866
   public function unpublish($id, $optParams = array())
1867 1867
   {
1868
-    $params = array('id' => $id);
1869
-    $params = array_merge($params, $optParams);
1870
-    return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
1868
+	$params = array('id' => $id);
1869
+	$params = array_merge($params, $optParams);
1870
+	return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
1871 1871
   }
1872 1872
 }
1873 1873
 
@@ -1897,9 +1897,9 @@  discard block
 block discarded – undo
1897 1897
    */
1898 1898
   public function listLayersParents($id, $optParams = array())
1899 1899
   {
1900
-    $params = array('id' => $id);
1901
-    $params = array_merge($params, $optParams);
1902
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1900
+	$params = array('id' => $id);
1901
+	$params = array_merge($params, $optParams);
1902
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
1903 1903
   }
1904 1904
 }
1905 1905
 /**
@@ -1924,9 +1924,9 @@  discard block
 block discarded – undo
1924 1924
    */
1925 1925
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
1926 1926
   {
1927
-    $params = array('id' => $id, 'postBody' => $postBody);
1928
-    $params = array_merge($params, $optParams);
1929
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
1927
+	$params = array('id' => $id, 'postBody' => $postBody);
1928
+	$params = array_merge($params, $optParams);
1929
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
1930 1930
   }
1931 1931
 
1932 1932
   /**
@@ -1942,9 +1942,9 @@  discard block
 block discarded – undo
1942 1942
    */
1943 1943
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
1944 1944
   {
1945
-    $params = array('id' => $id, 'postBody' => $postBody);
1946
-    $params = array_merge($params, $optParams);
1947
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
1945
+	$params = array('id' => $id, 'postBody' => $postBody);
1946
+	$params = array_merge($params, $optParams);
1947
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
1948 1948
   }
1949 1949
 
1950 1950
   /**
@@ -1957,9 +1957,9 @@  discard block
 block discarded – undo
1957 1957
    */
1958 1958
   public function listLayersPermissions($id, $optParams = array())
1959 1959
   {
1960
-    $params = array('id' => $id);
1961
-    $params = array_merge($params, $optParams);
1962
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1960
+	$params = array('id' => $id);
1961
+	$params = array_merge($params, $optParams);
1962
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
1963 1963
   }
1964 1964
 }
1965 1965
 
@@ -1983,9 +1983,9 @@  discard block
 block discarded – undo
1983 1983
    */
1984 1984
   public function create(Google_Service_MapsEngine_Map $postBody, $optParams = array())
1985 1985
   {
1986
-    $params = array('postBody' => $postBody);
1987
-    $params = array_merge($params, $optParams);
1988
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Map");
1986
+	$params = array('postBody' => $postBody);
1987
+	$params = array_merge($params, $optParams);
1988
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Map");
1989 1989
   }
1990 1990
 
1991 1991
   /**
@@ -1998,9 +1998,9 @@  discard block
 block discarded – undo
1998 1998
    */
1999 1999
   public function delete($id, $optParams = array())
2000 2000
   {
2001
-    $params = array('id' => $id);
2002
-    $params = array_merge($params, $optParams);
2003
-    return $this->call('delete', array($params));
2001
+	$params = array('id' => $id);
2002
+	$params = array_merge($params, $optParams);
2003
+	return $this->call('delete', array($params));
2004 2004
   }
2005 2005
 
2006 2006
   /**
@@ -2017,9 +2017,9 @@  discard block
 block discarded – undo
2017 2017
    */
2018 2018
   public function get($id, $optParams = array())
2019 2019
   {
2020
-    $params = array('id' => $id);
2021
-    $params = array_merge($params, $optParams);
2022
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Map");
2020
+	$params = array('id' => $id);
2021
+	$params = array_merge($params, $optParams);
2022
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Map");
2023 2023
   }
2024 2024
 
2025 2025
   /**
@@ -2031,9 +2031,9 @@  discard block
 block discarded – undo
2031 2031
    */
2032 2032
   public function getPublished($id, $optParams = array())
2033 2033
   {
2034
-    $params = array('id' => $id);
2035
-    $params = array_merge($params, $optParams);
2036
-    return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedMap");
2034
+	$params = array('id' => $id);
2035
+	$params = array_merge($params, $optParams);
2036
+	return $this->call('getPublished', array($params), "Google_Service_MapsEngine_PublishedMap");
2037 2037
   }
2038 2038
 
2039 2039
   /**
@@ -2078,9 +2078,9 @@  discard block
 block discarded – undo
2078 2078
    */
2079 2079
   public function listMaps($optParams = array())
2080 2080
   {
2081
-    $params = array();
2082
-    $params = array_merge($params, $optParams);
2083
-    return $this->call('list', array($params), "Google_Service_MapsEngine_MapsListResponse");
2081
+	$params = array();
2082
+	$params = array_merge($params, $optParams);
2083
+	return $this->call('list', array($params), "Google_Service_MapsEngine_MapsListResponse");
2084 2084
   }
2085 2085
 
2086 2086
   /**
@@ -2101,9 +2101,9 @@  discard block
 block discarded – undo
2101 2101
    */
2102 2102
   public function listPublished($optParams = array())
2103 2103
   {
2104
-    $params = array();
2105
-    $params = array_merge($params, $optParams);
2106
-    return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedMapsListResponse");
2104
+	$params = array();
2105
+	$params = array_merge($params, $optParams);
2106
+	return $this->call('listPublished', array($params), "Google_Service_MapsEngine_PublishedMapsListResponse");
2107 2107
   }
2108 2108
 
2109 2109
   /**
@@ -2115,9 +2115,9 @@  discard block
 block discarded – undo
2115 2115
    */
2116 2116
   public function patch($id, Google_Service_MapsEngine_Map $postBody, $optParams = array())
2117 2117
   {
2118
-    $params = array('id' => $id, 'postBody' => $postBody);
2119
-    $params = array_merge($params, $optParams);
2120
-    return $this->call('patch', array($params));
2118
+	$params = array('id' => $id, 'postBody' => $postBody);
2119
+	$params = array_merge($params, $optParams);
2120
+	return $this->call('patch', array($params));
2121 2121
   }
2122 2122
 
2123 2123
   /**
@@ -2133,9 +2133,9 @@  discard block
 block discarded – undo
2133 2133
    */
2134 2134
   public function publish($id, $optParams = array())
2135 2135
   {
2136
-    $params = array('id' => $id);
2137
-    $params = array_merge($params, $optParams);
2138
-    return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
2136
+	$params = array('id' => $id);
2137
+	$params = array_merge($params, $optParams);
2138
+	return $this->call('publish', array($params), "Google_Service_MapsEngine_PublishResponse");
2139 2139
   }
2140 2140
 
2141 2141
   /**
@@ -2147,9 +2147,9 @@  discard block
 block discarded – undo
2147 2147
    */
2148 2148
   public function unpublish($id, $optParams = array())
2149 2149
   {
2150
-    $params = array('id' => $id);
2151
-    $params = array_merge($params, $optParams);
2152
-    return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
2150
+	$params = array('id' => $id);
2151
+	$params = array_merge($params, $optParams);
2152
+	return $this->call('unpublish', array($params), "Google_Service_MapsEngine_PublishResponse");
2153 2153
   }
2154 2154
 }
2155 2155
 
@@ -2175,9 +2175,9 @@  discard block
 block discarded – undo
2175 2175
    */
2176 2176
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2177 2177
   {
2178
-    $params = array('id' => $id, 'postBody' => $postBody);
2179
-    $params = array_merge($params, $optParams);
2180
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2178
+	$params = array('id' => $id, 'postBody' => $postBody);
2179
+	$params = array_merge($params, $optParams);
2180
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2181 2181
   }
2182 2182
 
2183 2183
   /**
@@ -2193,9 +2193,9 @@  discard block
 block discarded – undo
2193 2193
    */
2194 2194
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2195 2195
   {
2196
-    $params = array('id' => $id, 'postBody' => $postBody);
2197
-    $params = array_merge($params, $optParams);
2198
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2196
+	$params = array('id' => $id, 'postBody' => $postBody);
2197
+	$params = array_merge($params, $optParams);
2198
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2199 2199
   }
2200 2200
 
2201 2201
   /**
@@ -2208,9 +2208,9 @@  discard block
 block discarded – undo
2208 2208
    */
2209 2209
   public function listMapsPermissions($id, $optParams = array())
2210 2210
   {
2211
-    $params = array('id' => $id);
2212
-    $params = array_merge($params, $optParams);
2213
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2211
+	$params = array('id' => $id);
2212
+	$params = array_merge($params, $optParams);
2213
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2214 2214
   }
2215 2215
 }
2216 2216
 
@@ -2233,9 +2233,9 @@  discard block
 block discarded – undo
2233 2233
    */
2234 2234
   public function listProjects($optParams = array())
2235 2235
   {
2236
-    $params = array();
2237
-    $params = array_merge($params, $optParams);
2238
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ProjectsListResponse");
2236
+	$params = array();
2237
+	$params = array_merge($params, $optParams);
2238
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ProjectsListResponse");
2239 2239
   }
2240 2240
 }
2241 2241
 
@@ -2260,9 +2260,9 @@  discard block
 block discarded – undo
2260 2260
    */
2261 2261
   public function create($projectId, Google_Service_MapsEngine_Icon $postBody, $optParams = array())
2262 2262
   {
2263
-    $params = array('projectId' => $projectId, 'postBody' => $postBody);
2264
-    $params = array_merge($params, $optParams);
2265
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Icon");
2263
+	$params = array('projectId' => $projectId, 'postBody' => $postBody);
2264
+	$params = array_merge($params, $optParams);
2265
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Icon");
2266 2266
   }
2267 2267
 
2268 2268
   /**
@@ -2275,9 +2275,9 @@  discard block
 block discarded – undo
2275 2275
    */
2276 2276
   public function get($projectId, $id, $optParams = array())
2277 2277
   {
2278
-    $params = array('projectId' => $projectId, 'id' => $id);
2279
-    $params = array_merge($params, $optParams);
2280
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Icon");
2278
+	$params = array('projectId' => $projectId, 'id' => $id);
2279
+	$params = array_merge($params, $optParams);
2280
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Icon");
2281 2281
   }
2282 2282
 
2283 2283
   /**
@@ -2295,9 +2295,9 @@  discard block
 block discarded – undo
2295 2295
    */
2296 2296
   public function listProjectsIcons($projectId, $optParams = array())
2297 2297
   {
2298
-    $params = array('projectId' => $projectId);
2299
-    $params = array_merge($params, $optParams);
2300
-    return $this->call('list', array($params), "Google_Service_MapsEngine_IconsListResponse");
2298
+	$params = array('projectId' => $projectId);
2299
+	$params = array_merge($params, $optParams);
2300
+	return $this->call('list', array($params), "Google_Service_MapsEngine_IconsListResponse");
2301 2301
   }
2302 2302
 }
2303 2303
 
@@ -2322,9 +2322,9 @@  discard block
 block discarded – undo
2322 2322
    */
2323 2323
   public function cancelProcessing($id, $optParams = array())
2324 2324
   {
2325
-    $params = array('id' => $id);
2326
-    $params = array_merge($params, $optParams);
2327
-    return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
2325
+	$params = array('id' => $id);
2326
+	$params = array_merge($params, $optParams);
2327
+	return $this->call('cancelProcessing', array($params), "Google_Service_MapsEngine_ProcessResponse");
2328 2328
   }
2329 2329
 
2330 2330
   /**
@@ -2336,9 +2336,9 @@  discard block
 block discarded – undo
2336 2336
    */
2337 2337
   public function create(Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
2338 2338
   {
2339
-    $params = array('postBody' => $postBody);
2340
-    $params = array_merge($params, $optParams);
2341
-    return $this->call('create', array($params), "Google_Service_MapsEngine_RasterCollection");
2339
+	$params = array('postBody' => $postBody);
2340
+	$params = array_merge($params, $optParams);
2341
+	return $this->call('create', array($params), "Google_Service_MapsEngine_RasterCollection");
2342 2342
   }
2343 2343
 
2344 2344
   /**
@@ -2352,9 +2352,9 @@  discard block
 block discarded – undo
2352 2352
    */
2353 2353
   public function delete($id, $optParams = array())
2354 2354
   {
2355
-    $params = array('id' => $id);
2356
-    $params = array_merge($params, $optParams);
2357
-    return $this->call('delete', array($params));
2355
+	$params = array('id' => $id);
2356
+	$params = array_merge($params, $optParams);
2357
+	return $this->call('delete', array($params));
2358 2358
   }
2359 2359
 
2360 2360
   /**
@@ -2366,9 +2366,9 @@  discard block
 block discarded – undo
2366 2366
    */
2367 2367
   public function get($id, $optParams = array())
2368 2368
   {
2369
-    $params = array('id' => $id);
2370
-    $params = array_merge($params, $optParams);
2371
-    return $this->call('get', array($params), "Google_Service_MapsEngine_RasterCollection");
2369
+	$params = array('id' => $id);
2370
+	$params = array_merge($params, $optParams);
2371
+	return $this->call('get', array($params), "Google_Service_MapsEngine_RasterCollection");
2372 2372
   }
2373 2373
 
2374 2374
   /**
@@ -2414,9 +2414,9 @@  discard block
 block discarded – undo
2414 2414
    */
2415 2415
   public function listRasterCollections($optParams = array())
2416 2416
   {
2417
-    $params = array();
2418
-    $params = array_merge($params, $optParams);
2419
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsListResponse");
2417
+	$params = array();
2418
+	$params = array_merge($params, $optParams);
2419
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsListResponse");
2420 2420
   }
2421 2421
 
2422 2422
   /**
@@ -2428,9 +2428,9 @@  discard block
 block discarded – undo
2428 2428
    */
2429 2429
   public function patch($id, Google_Service_MapsEngine_RasterCollection $postBody, $optParams = array())
2430 2430
   {
2431
-    $params = array('id' => $id, 'postBody' => $postBody);
2432
-    $params = array_merge($params, $optParams);
2433
-    return $this->call('patch', array($params));
2431
+	$params = array('id' => $id, 'postBody' => $postBody);
2432
+	$params = array_merge($params, $optParams);
2433
+	return $this->call('patch', array($params));
2434 2434
   }
2435 2435
 
2436 2436
   /**
@@ -2442,9 +2442,9 @@  discard block
 block discarded – undo
2442 2442
    */
2443 2443
   public function process($id, $optParams = array())
2444 2444
   {
2445
-    $params = array('id' => $id);
2446
-    $params = array_merge($params, $optParams);
2447
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2445
+	$params = array('id' => $id);
2446
+	$params = array_merge($params, $optParams);
2447
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2448 2448
   }
2449 2449
 }
2450 2450
 
@@ -2476,9 +2476,9 @@  discard block
 block discarded – undo
2476 2476
    */
2477 2477
   public function listRasterCollectionsParents($id, $optParams = array())
2478 2478
   {
2479
-    $params = array('id' => $id);
2480
-    $params = array_merge($params, $optParams);
2481
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2479
+	$params = array('id' => $id);
2480
+	$params = array_merge($params, $optParams);
2481
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2482 2482
   }
2483 2483
 }
2484 2484
 /**
@@ -2503,9 +2503,9 @@  discard block
 block discarded – undo
2503 2503
    */
2504 2504
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2505 2505
   {
2506
-    $params = array('id' => $id, 'postBody' => $postBody);
2507
-    $params = array_merge($params, $optParams);
2508
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2506
+	$params = array('id' => $id, 'postBody' => $postBody);
2507
+	$params = array_merge($params, $optParams);
2508
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2509 2509
   }
2510 2510
 
2511 2511
   /**
@@ -2521,9 +2521,9 @@  discard block
 block discarded – undo
2521 2521
    */
2522 2522
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2523 2523
   {
2524
-    $params = array('id' => $id, 'postBody' => $postBody);
2525
-    $params = array_merge($params, $optParams);
2526
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2524
+	$params = array('id' => $id, 'postBody' => $postBody);
2525
+	$params = array_merge($params, $optParams);
2526
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2527 2527
   }
2528 2528
 
2529 2529
   /**
@@ -2536,9 +2536,9 @@  discard block
 block discarded – undo
2536 2536
    */
2537 2537
   public function listRasterCollectionsPermissions($id, $optParams = array())
2538 2538
   {
2539
-    $params = array('id' => $id);
2540
-    $params = array_merge($params, $optParams);
2541
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2539
+	$params = array('id' => $id);
2540
+	$params = array_merge($params, $optParams);
2541
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2542 2542
   }
2543 2543
 }
2544 2544
 /**
@@ -2566,9 +2566,9 @@  discard block
 block discarded – undo
2566 2566
    */
2567 2567
   public function batchDelete($id, Google_Service_MapsEngine_RasterCollectionsRasterBatchDeleteRequest $postBody, $optParams = array())
2568 2568
   {
2569
-    $params = array('id' => $id, 'postBody' => $postBody);
2570
-    $params = array_merge($params, $optParams);
2571
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse");
2569
+	$params = array('id' => $id, 'postBody' => $postBody);
2570
+	$params = array_merge($params, $optParams);
2571
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchDeleteResponse");
2572 2572
   }
2573 2573
 
2574 2574
   /**
@@ -2586,9 +2586,9 @@  discard block
 block discarded – undo
2586 2586
    */
2587 2587
   public function batchInsert($id, Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertRequest $postBody, $optParams = array())
2588 2588
   {
2589
-    $params = array('id' => $id, 'postBody' => $postBody);
2590
-    $params = array_merge($params, $optParams);
2591
-    return $this->call('batchInsert', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse");
2589
+	$params = array('id' => $id, 'postBody' => $postBody);
2590
+	$params = array_merge($params, $optParams);
2591
+	return $this->call('batchInsert', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersBatchInsertResponse");
2592 2592
   }
2593 2593
 
2594 2594
   /**
@@ -2631,9 +2631,9 @@  discard block
 block discarded – undo
2631 2631
    */
2632 2632
   public function listRasterCollectionsRasters($id, $optParams = array())
2633 2633
   {
2634
-    $params = array('id' => $id);
2635
-    $params = array_merge($params, $optParams);
2636
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersListResponse");
2634
+	$params = array('id' => $id);
2635
+	$params = array_merge($params, $optParams);
2636
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RasterCollectionsRastersListResponse");
2637 2637
   }
2638 2638
 }
2639 2639
 
@@ -2658,9 +2658,9 @@  discard block
 block discarded – undo
2658 2658
    */
2659 2659
   public function delete($id, $optParams = array())
2660 2660
   {
2661
-    $params = array('id' => $id);
2662
-    $params = array_merge($params, $optParams);
2663
-    return $this->call('delete', array($params));
2661
+	$params = array('id' => $id);
2662
+	$params = array_merge($params, $optParams);
2663
+	return $this->call('delete', array($params));
2664 2664
   }
2665 2665
 
2666 2666
   /**
@@ -2672,9 +2672,9 @@  discard block
 block discarded – undo
2672 2672
    */
2673 2673
   public function get($id, $optParams = array())
2674 2674
   {
2675
-    $params = array('id' => $id);
2676
-    $params = array_merge($params, $optParams);
2677
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Raster");
2675
+	$params = array('id' => $id);
2676
+	$params = array_merge($params, $optParams);
2677
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Raster");
2678 2678
   }
2679 2679
 
2680 2680
   /**
@@ -2719,9 +2719,9 @@  discard block
 block discarded – undo
2719 2719
    */
2720 2720
   public function listRasters($projectId, $optParams = array())
2721 2721
   {
2722
-    $params = array('projectId' => $projectId);
2723
-    $params = array_merge($params, $optParams);
2724
-    return $this->call('list', array($params), "Google_Service_MapsEngine_RastersListResponse");
2722
+	$params = array('projectId' => $projectId);
2723
+	$params = array_merge($params, $optParams);
2724
+	return $this->call('list', array($params), "Google_Service_MapsEngine_RastersListResponse");
2725 2725
   }
2726 2726
 
2727 2727
   /**
@@ -2733,9 +2733,9 @@  discard block
 block discarded – undo
2733 2733
    */
2734 2734
   public function patch($id, Google_Service_MapsEngine_Raster $postBody, $optParams = array())
2735 2735
   {
2736
-    $params = array('id' => $id, 'postBody' => $postBody);
2737
-    $params = array_merge($params, $optParams);
2738
-    return $this->call('patch', array($params));
2736
+	$params = array('id' => $id, 'postBody' => $postBody);
2737
+	$params = array_merge($params, $optParams);
2738
+	return $this->call('patch', array($params));
2739 2739
   }
2740 2740
 
2741 2741
   /**
@@ -2747,9 +2747,9 @@  discard block
 block discarded – undo
2747 2747
    */
2748 2748
   public function process($id, $optParams = array())
2749 2749
   {
2750
-    $params = array('id' => $id);
2751
-    $params = array_merge($params, $optParams);
2752
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2750
+	$params = array('id' => $id);
2751
+	$params = array_merge($params, $optParams);
2752
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
2753 2753
   }
2754 2754
 
2755 2755
   /**
@@ -2761,9 +2761,9 @@  discard block
 block discarded – undo
2761 2761
    */
2762 2762
   public function upload(Google_Service_MapsEngine_Raster $postBody, $optParams = array())
2763 2763
   {
2764
-    $params = array('postBody' => $postBody);
2765
-    $params = array_merge($params, $optParams);
2766
-    return $this->call('upload', array($params), "Google_Service_MapsEngine_Raster");
2764
+	$params = array('postBody' => $postBody);
2765
+	$params = array_merge($params, $optParams);
2766
+	return $this->call('upload', array($params), "Google_Service_MapsEngine_Raster");
2767 2767
   }
2768 2768
 }
2769 2769
 
@@ -2787,9 +2787,9 @@  discard block
 block discarded – undo
2787 2787
    */
2788 2788
   public function insert($id, $filename, $optParams = array())
2789 2789
   {
2790
-    $params = array('id' => $id, 'filename' => $filename);
2791
-    $params = array_merge($params, $optParams);
2792
-    return $this->call('insert', array($params));
2790
+	$params = array('id' => $id, 'filename' => $filename);
2791
+	$params = array_merge($params, $optParams);
2792
+	return $this->call('insert', array($params));
2793 2793
   }
2794 2794
 }
2795 2795
 /**
@@ -2818,9 +2818,9 @@  discard block
 block discarded – undo
2818 2818
    */
2819 2819
   public function listRastersParents($id, $optParams = array())
2820 2820
   {
2821
-    $params = array('id' => $id);
2822
-    $params = array_merge($params, $optParams);
2823
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2821
+	$params = array('id' => $id);
2822
+	$params = array_merge($params, $optParams);
2823
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
2824 2824
   }
2825 2825
 }
2826 2826
 /**
@@ -2845,9 +2845,9 @@  discard block
 block discarded – undo
2845 2845
    */
2846 2846
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
2847 2847
   {
2848
-    $params = array('id' => $id, 'postBody' => $postBody);
2849
-    $params = array_merge($params, $optParams);
2850
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2848
+	$params = array('id' => $id, 'postBody' => $postBody);
2849
+	$params = array_merge($params, $optParams);
2850
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
2851 2851
   }
2852 2852
 
2853 2853
   /**
@@ -2863,9 +2863,9 @@  discard block
 block discarded – undo
2863 2863
    */
2864 2864
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
2865 2865
   {
2866
-    $params = array('id' => $id, 'postBody' => $postBody);
2867
-    $params = array_merge($params, $optParams);
2868
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2866
+	$params = array('id' => $id, 'postBody' => $postBody);
2867
+	$params = array_merge($params, $optParams);
2868
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
2869 2869
   }
2870 2870
 
2871 2871
   /**
@@ -2878,9 +2878,9 @@  discard block
 block discarded – undo
2878 2878
    */
2879 2879
   public function listRastersPermissions($id, $optParams = array())
2880 2880
   {
2881
-    $params = array('id' => $id);
2882
-    $params = array_merge($params, $optParams);
2883
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2881
+	$params = array('id' => $id);
2882
+	$params = array_merge($params, $optParams);
2883
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
2884 2884
   }
2885 2885
 }
2886 2886
 
@@ -2904,9 +2904,9 @@  discard block
 block discarded – undo
2904 2904
    */
2905 2905
   public function create(Google_Service_MapsEngine_Table $postBody, $optParams = array())
2906 2906
   {
2907
-    $params = array('postBody' => $postBody);
2908
-    $params = array_merge($params, $optParams);
2909
-    return $this->call('create', array($params), "Google_Service_MapsEngine_Table");
2907
+	$params = array('postBody' => $postBody);
2908
+	$params = array_merge($params, $optParams);
2909
+	return $this->call('create', array($params), "Google_Service_MapsEngine_Table");
2910 2910
   }
2911 2911
 
2912 2912
   /**
@@ -2919,9 +2919,9 @@  discard block
 block discarded – undo
2919 2919
    */
2920 2920
   public function delete($id, $optParams = array())
2921 2921
   {
2922
-    $params = array('id' => $id);
2923
-    $params = array_merge($params, $optParams);
2924
-    return $this->call('delete', array($params));
2922
+	$params = array('id' => $id);
2923
+	$params = array_merge($params, $optParams);
2924
+	return $this->call('delete', array($params));
2925 2925
   }
2926 2926
 
2927 2927
   /**
@@ -2935,9 +2935,9 @@  discard block
 block discarded – undo
2935 2935
    */
2936 2936
   public function get($id, $optParams = array())
2937 2937
   {
2938
-    $params = array('id' => $id);
2939
-    $params = array_merge($params, $optParams);
2940
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Table");
2938
+	$params = array('id' => $id);
2939
+	$params = array_merge($params, $optParams);
2940
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Table");
2941 2941
   }
2942 2942
 
2943 2943
   /**
@@ -2982,9 +2982,9 @@  discard block
 block discarded – undo
2982 2982
    */
2983 2983
   public function listTables($optParams = array())
2984 2984
   {
2985
-    $params = array();
2986
-    $params = array_merge($params, $optParams);
2987
-    return $this->call('list', array($params), "Google_Service_MapsEngine_TablesListResponse");
2985
+	$params = array();
2986
+	$params = array_merge($params, $optParams);
2987
+	return $this->call('list', array($params), "Google_Service_MapsEngine_TablesListResponse");
2988 2988
   }
2989 2989
 
2990 2990
   /**
@@ -2996,9 +2996,9 @@  discard block
 block discarded – undo
2996 2996
    */
2997 2997
   public function patch($id, Google_Service_MapsEngine_Table $postBody, $optParams = array())
2998 2998
   {
2999
-    $params = array('id' => $id, 'postBody' => $postBody);
3000
-    $params = array_merge($params, $optParams);
3001
-    return $this->call('patch', array($params));
2999
+	$params = array('id' => $id, 'postBody' => $postBody);
3000
+	$params = array_merge($params, $optParams);
3001
+	return $this->call('patch', array($params));
3002 3002
   }
3003 3003
 
3004 3004
   /**
@@ -3010,9 +3010,9 @@  discard block
 block discarded – undo
3010 3010
    */
3011 3011
   public function process($id, $optParams = array())
3012 3012
   {
3013
-    $params = array('id' => $id);
3014
-    $params = array_merge($params, $optParams);
3015
-    return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
3013
+	$params = array('id' => $id);
3014
+	$params = array_merge($params, $optParams);
3015
+	return $this->call('process', array($params), "Google_Service_MapsEngine_ProcessResponse");
3016 3016
   }
3017 3017
 
3018 3018
   /**
@@ -3028,9 +3028,9 @@  discard block
 block discarded – undo
3028 3028
    */
3029 3029
   public function upload(Google_Service_MapsEngine_Table $postBody, $optParams = array())
3030 3030
   {
3031
-    $params = array('postBody' => $postBody);
3032
-    $params = array_merge($params, $optParams);
3033
-    return $this->call('upload', array($params), "Google_Service_MapsEngine_Table");
3031
+	$params = array('postBody' => $postBody);
3032
+	$params = array_merge($params, $optParams);
3033
+	return $this->call('upload', array($params), "Google_Service_MapsEngine_Table");
3034 3034
   }
3035 3035
 }
3036 3036
 
@@ -3055,9 +3055,9 @@  discard block
 block discarded – undo
3055 3055
    */
3056 3056
   public function batchDelete($id, Google_Service_MapsEngine_FeaturesBatchDeleteRequest $postBody, $optParams = array())
3057 3057
   {
3058
-    $params = array('id' => $id, 'postBody' => $postBody);
3059
-    $params = array_merge($params, $optParams);
3060
-    return $this->call('batchDelete', array($params));
3058
+	$params = array('id' => $id, 'postBody' => $postBody);
3059
+	$params = array_merge($params, $optParams);
3060
+	return $this->call('batchDelete', array($params));
3061 3061
   }
3062 3062
 
3063 3063
   /**
@@ -3079,9 +3079,9 @@  discard block
 block discarded – undo
3079 3079
    */
3080 3080
   public function batchInsert($id, Google_Service_MapsEngine_FeaturesBatchInsertRequest $postBody, $optParams = array())
3081 3081
   {
3082
-    $params = array('id' => $id, 'postBody' => $postBody);
3083
-    $params = array_merge($params, $optParams);
3084
-    return $this->call('batchInsert', array($params));
3082
+	$params = array('id' => $id, 'postBody' => $postBody);
3083
+	$params = array_merge($params, $optParams);
3084
+	return $this->call('batchInsert', array($params));
3085 3085
   }
3086 3086
 
3087 3087
   /**
@@ -3110,9 +3110,9 @@  discard block
 block discarded – undo
3110 3110
    */
3111 3111
   public function batchPatch($id, Google_Service_MapsEngine_FeaturesBatchPatchRequest $postBody, $optParams = array())
3112 3112
   {
3113
-    $params = array('id' => $id, 'postBody' => $postBody);
3114
-    $params = array_merge($params, $optParams);
3115
-    return $this->call('batchPatch', array($params));
3113
+	$params = array('id' => $id, 'postBody' => $postBody);
3114
+	$params = array_merge($params, $optParams);
3115
+	return $this->call('batchPatch', array($params));
3116 3116
   }
3117 3117
 
3118 3118
   /**
@@ -3131,9 +3131,9 @@  discard block
 block discarded – undo
3131 3131
    */
3132 3132
   public function get($tableId, $id, $optParams = array())
3133 3133
   {
3134
-    $params = array('tableId' => $tableId, 'id' => $id);
3135
-    $params = array_merge($params, $optParams);
3136
-    return $this->call('get', array($params), "Google_Service_MapsEngine_Feature");
3134
+	$params = array('tableId' => $tableId, 'id' => $id);
3135
+	$params = array_merge($params, $optParams);
3136
+	return $this->call('get', array($params), "Google_Service_MapsEngine_Feature");
3137 3137
   }
3138 3138
 
3139 3139
   /**
@@ -3166,9 +3166,9 @@  discard block
 block discarded – undo
3166 3166
    */
3167 3167
   public function listTablesFeatures($id, $optParams = array())
3168 3168
   {
3169
-    $params = array('id' => $id);
3170
-    $params = array_merge($params, $optParams);
3171
-    return $this->call('list', array($params), "Google_Service_MapsEngine_FeaturesListResponse");
3169
+	$params = array('id' => $id);
3170
+	$params = array_merge($params, $optParams);
3171
+	return $this->call('list', array($params), "Google_Service_MapsEngine_FeaturesListResponse");
3172 3172
   }
3173 3173
 }
3174 3174
 /**
@@ -3194,9 +3194,9 @@  discard block
 block discarded – undo
3194 3194
    */
3195 3195
   public function insert($id, $filename, $optParams = array())
3196 3196
   {
3197
-    $params = array('id' => $id, 'filename' => $filename);
3198
-    $params = array_merge($params, $optParams);
3199
-    return $this->call('insert', array($params));
3197
+	$params = array('id' => $id, 'filename' => $filename);
3198
+	$params = array_merge($params, $optParams);
3199
+	return $this->call('insert', array($params));
3200 3200
   }
3201 3201
 }
3202 3202
 /**
@@ -3225,9 +3225,9 @@  discard block
 block discarded – undo
3225 3225
    */
3226 3226
   public function listTablesParents($id, $optParams = array())
3227 3227
   {
3228
-    $params = array('id' => $id);
3229
-    $params = array_merge($params, $optParams);
3230
-    return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
3228
+	$params = array('id' => $id);
3229
+	$params = array_merge($params, $optParams);
3230
+	return $this->call('list', array($params), "Google_Service_MapsEngine_ParentsListResponse");
3231 3231
   }
3232 3232
 }
3233 3233
 /**
@@ -3252,9 +3252,9 @@  discard block
 block discarded – undo
3252 3252
    */
3253 3253
   public function batchDelete($id, Google_Service_MapsEngine_PermissionsBatchDeleteRequest $postBody, $optParams = array())
3254 3254
   {
3255
-    $params = array('id' => $id, 'postBody' => $postBody);
3256
-    $params = array_merge($params, $optParams);
3257
-    return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
3255
+	$params = array('id' => $id, 'postBody' => $postBody);
3256
+	$params = array_merge($params, $optParams);
3257
+	return $this->call('batchDelete', array($params), "Google_Service_MapsEngine_PermissionsBatchDeleteResponse");
3258 3258
   }
3259 3259
 
3260 3260
   /**
@@ -3270,9 +3270,9 @@  discard block
 block discarded – undo
3270 3270
    */
3271 3271
   public function batchUpdate($id, Google_Service_MapsEngine_PermissionsBatchUpdateRequest $postBody, $optParams = array())
3272 3272
   {
3273
-    $params = array('id' => $id, 'postBody' => $postBody);
3274
-    $params = array_merge($params, $optParams);
3275
-    return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
3273
+	$params = array('id' => $id, 'postBody' => $postBody);
3274
+	$params = array_merge($params, $optParams);
3275
+	return $this->call('batchUpdate', array($params), "Google_Service_MapsEngine_PermissionsBatchUpdateResponse");
3276 3276
   }
3277 3277
 
3278 3278
   /**
@@ -3285,9 +3285,9 @@  discard block
 block discarded – undo
3285 3285
    */
3286 3286
   public function listTablesPermissions($id, $optParams = array())
3287 3287
   {
3288
-    $params = array('id' => $id);
3289
-    $params = array_merge($params, $optParams);
3290
-    return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
3288
+	$params = array('id' => $id);
3289
+	$params = array_merge($params, $optParams);
3290
+	return $this->call('list', array($params), "Google_Service_MapsEngine_PermissionsListResponse");
3291 3291
   }
3292 3292
 }
3293 3293
 
@@ -3305,27 +3305,27 @@  discard block
 block discarded – undo
3305 3305
 
3306 3306
   public function setEnd($end)
3307 3307
   {
3308
-    $this->end = $end;
3308
+	$this->end = $end;
3309 3309
   }
3310 3310
   public function getEnd()
3311 3311
   {
3312
-    return $this->end;
3312
+	return $this->end;
3313 3313
   }
3314 3314
   public function setPrecision($precision)
3315 3315
   {
3316
-    $this->precision = $precision;
3316
+	$this->precision = $precision;
3317 3317
   }
3318 3318
   public function getPrecision()
3319 3319
   {
3320
-    return $this->precision;
3320
+	return $this->precision;
3321 3321
   }
3322 3322
   public function setStart($start)
3323 3323
   {
3324
-    $this->start = $start;
3324
+	$this->start = $start;
3325 3325
   }
3326 3326
   public function getStart()
3327 3327
   {
3328
-    return $this->start;
3328
+	return $this->start;
3329 3329
   }
3330 3330
 }
3331 3331
 
@@ -3352,115 +3352,115 @@  discard block
 block discarded – undo
3352 3352
 
3353 3353
   public function setBbox($bbox)
3354 3354
   {
3355
-    $this->bbox = $bbox;
3355
+	$this->bbox = $bbox;
3356 3356
   }
3357 3357
   public function getBbox()
3358 3358
   {
3359
-    return $this->bbox;
3359
+	return $this->bbox;
3360 3360
   }
3361 3361
   public function setCreationTime($creationTime)
3362 3362
   {
3363
-    $this->creationTime = $creationTime;
3363
+	$this->creationTime = $creationTime;
3364 3364
   }
3365 3365
   public function getCreationTime()
3366 3366
   {
3367
-    return $this->creationTime;
3367
+	return $this->creationTime;
3368 3368
   }
3369 3369
   public function setCreatorEmail($creatorEmail)
3370 3370
   {
3371
-    $this->creatorEmail = $creatorEmail;
3371
+	$this->creatorEmail = $creatorEmail;
3372 3372
   }
3373 3373
   public function getCreatorEmail()
3374 3374
   {
3375
-    return $this->creatorEmail;
3375
+	return $this->creatorEmail;
3376 3376
   }
3377 3377
   public function setDescription($description)
3378 3378
   {
3379
-    $this->description = $description;
3379
+	$this->description = $description;
3380 3380
   }
3381 3381
   public function getDescription()
3382 3382
   {
3383
-    return $this->description;
3383
+	return $this->description;
3384 3384
   }
3385 3385
   public function setEtag($etag)
3386 3386
   {
3387
-    $this->etag = $etag;
3387
+	$this->etag = $etag;
3388 3388
   }
3389 3389
   public function getEtag()
3390 3390
   {
3391
-    return $this->etag;
3391
+	return $this->etag;
3392 3392
   }
3393 3393
   public function setId($id)
3394 3394
   {
3395
-    $this->id = $id;
3395
+	$this->id = $id;
3396 3396
   }
3397 3397
   public function getId()
3398 3398
   {
3399
-    return $this->id;
3399
+	return $this->id;
3400 3400
   }
3401 3401
   public function setLastModifiedTime($lastModifiedTime)
3402 3402
   {
3403
-    $this->lastModifiedTime = $lastModifiedTime;
3403
+	$this->lastModifiedTime = $lastModifiedTime;
3404 3404
   }
3405 3405
   public function getLastModifiedTime()
3406 3406
   {
3407
-    return $this->lastModifiedTime;
3407
+	return $this->lastModifiedTime;
3408 3408
   }
3409 3409
   public function setLastModifierEmail($lastModifierEmail)
3410 3410
   {
3411
-    $this->lastModifierEmail = $lastModifierEmail;
3411
+	$this->lastModifierEmail = $lastModifierEmail;
3412 3412
   }
3413 3413
   public function getLastModifierEmail()
3414 3414
   {
3415
-    return $this->lastModifierEmail;
3415
+	return $this->lastModifierEmail;
3416 3416
   }
3417 3417
   public function setName($name)
3418 3418
   {
3419
-    $this->name = $name;
3419
+	$this->name = $name;
3420 3420
   }
3421 3421
   public function getName()
3422 3422
   {
3423
-    return $this->name;
3423
+	return $this->name;
3424 3424
   }
3425 3425
   public function setProjectId($projectId)
3426 3426
   {
3427
-    $this->projectId = $projectId;
3427
+	$this->projectId = $projectId;
3428 3428
   }
3429 3429
   public function getProjectId()
3430 3430
   {
3431
-    return $this->projectId;
3431
+	return $this->projectId;
3432 3432
   }
3433 3433
   public function setResource($resource)
3434 3434
   {
3435
-    $this->resource = $resource;
3435
+	$this->resource = $resource;
3436 3436
   }
3437 3437
   public function getResource()
3438 3438
   {
3439
-    return $this->resource;
3439
+	return $this->resource;
3440 3440
   }
3441 3441
   public function setTags($tags)
3442 3442
   {
3443
-    $this->tags = $tags;
3443
+	$this->tags = $tags;
3444 3444
   }
3445 3445
   public function getTags()
3446 3446
   {
3447
-    return $this->tags;
3447
+	return $this->tags;
3448 3448
   }
3449 3449
   public function setType($type)
3450 3450
   {
3451
-    $this->type = $type;
3451
+	$this->type = $type;
3452 3452
   }
3453 3453
   public function getType()
3454 3454
   {
3455
-    return $this->type;
3455
+	return $this->type;
3456 3456
   }
3457 3457
   public function setWritersCanEditPermissions($writersCanEditPermissions)
3458 3458
   {
3459
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
3459
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
3460 3460
   }
3461 3461
   public function getWritersCanEditPermissions()
3462 3462
   {
3463
-    return $this->writersCanEditPermissions;
3463
+	return $this->writersCanEditPermissions;
3464 3464
   }
3465 3465
 }
3466 3466
 
@@ -3476,19 +3476,19 @@  discard block
 block discarded – undo
3476 3476
 
3477 3477
   public function setAssets($assets)
3478 3478
   {
3479
-    $this->assets = $assets;
3479
+	$this->assets = $assets;
3480 3480
   }
3481 3481
   public function getAssets()
3482 3482
   {
3483
-    return $this->assets;
3483
+	return $this->assets;
3484 3484
   }
3485 3485
   public function setNextPageToken($nextPageToken)
3486 3486
   {
3487
-    $this->nextPageToken = $nextPageToken;
3487
+	$this->nextPageToken = $nextPageToken;
3488 3488
   }
3489 3489
   public function getNextPageToken()
3490 3490
   {
3491
-    return $this->nextPageToken;
3491
+	return $this->nextPageToken;
3492 3492
   }
3493 3493
 }
3494 3494
 
@@ -3503,27 +3503,27 @@  discard block
 block discarded – undo
3503 3503
 
3504 3504
   public function setColor($color)
3505 3505
   {
3506
-    $this->color = $color;
3506
+	$this->color = $color;
3507 3507
   }
3508 3508
   public function getColor()
3509 3509
   {
3510
-    return $this->color;
3510
+	return $this->color;
3511 3511
   }
3512 3512
   public function setOpacity($opacity)
3513 3513
   {
3514
-    $this->opacity = $opacity;
3514
+	$this->opacity = $opacity;
3515 3515
   }
3516 3516
   public function getOpacity()
3517 3517
   {
3518
-    return $this->opacity;
3518
+	return $this->opacity;
3519 3519
   }
3520 3520
   public function setWidth($width)
3521 3521
   {
3522
-    $this->width = $width;
3522
+	$this->width = $width;
3523 3523
   }
3524 3524
   public function getWidth()
3525 3525
   {
3526
-    return $this->width;
3526
+	return $this->width;
3527 3527
   }
3528 3528
 }
3529 3529
 
@@ -3537,19 +3537,19 @@  discard block
 block discarded – undo
3537 3537
 
3538 3538
   public function setColor($color)
3539 3539
   {
3540
-    $this->color = $color;
3540
+	$this->color = $color;
3541 3541
   }
3542 3542
   public function getColor()
3543 3543
   {
3544
-    return $this->color;
3544
+	return $this->color;
3545 3545
   }
3546 3546
   public function setOpacity($opacity)
3547 3547
   {
3548
-    $this->opacity = $opacity;
3548
+	$this->opacity = $opacity;
3549 3549
   }
3550 3550
   public function getOpacity()
3551 3551
   {
3552
-    return $this->opacity;
3552
+	return $this->opacity;
3553 3553
   }
3554 3554
 }
3555 3555
 
@@ -3562,11 +3562,11 @@  discard block
 block discarded – undo
3562 3562
 
3563 3563
   public function setId($id)
3564 3564
   {
3565
-    $this->id = $id;
3565
+	$this->id = $id;
3566 3566
   }
3567 3567
   public function getId()
3568 3568
   {
3569
-    return $this->id;
3569
+	return $this->id;
3570 3570
   }
3571 3571
 }
3572 3572
 
@@ -3590,51 +3590,51 @@  discard block
 block discarded – undo
3590 3590
 
3591 3591
   public function setFilters($filters)
3592 3592
   {
3593
-    $this->filters = $filters;
3593
+	$this->filters = $filters;
3594 3594
   }
3595 3595
   public function getFilters()
3596 3596
   {
3597
-    return $this->filters;
3597
+	return $this->filters;
3598 3598
   }
3599 3599
   public function setLineOptions(Google_Service_MapsEngine_LineStyle $lineOptions)
3600 3600
   {
3601
-    $this->lineOptions = $lineOptions;
3601
+	$this->lineOptions = $lineOptions;
3602 3602
   }
3603 3603
   public function getLineOptions()
3604 3604
   {
3605
-    return $this->lineOptions;
3605
+	return $this->lineOptions;
3606 3606
   }
3607 3607
   public function setName($name)
3608 3608
   {
3609
-    $this->name = $name;
3609
+	$this->name = $name;
3610 3610
   }
3611 3611
   public function getName()
3612 3612
   {
3613
-    return $this->name;
3613
+	return $this->name;
3614 3614
   }
3615 3615
   public function setPointOptions(Google_Service_MapsEngine_PointStyle $pointOptions)
3616 3616
   {
3617
-    $this->pointOptions = $pointOptions;
3617
+	$this->pointOptions = $pointOptions;
3618 3618
   }
3619 3619
   public function getPointOptions()
3620 3620
   {
3621
-    return $this->pointOptions;
3621
+	return $this->pointOptions;
3622 3622
   }
3623 3623
   public function setPolygonOptions(Google_Service_MapsEngine_PolygonStyle $polygonOptions)
3624 3624
   {
3625
-    $this->polygonOptions = $polygonOptions;
3625
+	$this->polygonOptions = $polygonOptions;
3626 3626
   }
3627 3627
   public function getPolygonOptions()
3628 3628
   {
3629
-    return $this->polygonOptions;
3629
+	return $this->polygonOptions;
3630 3630
   }
3631 3631
   public function setZoomLevels(Google_Service_MapsEngine_ZoomLevels $zoomLevels)
3632 3632
   {
3633
-    $this->zoomLevels = $zoomLevels;
3633
+	$this->zoomLevels = $zoomLevels;
3634 3634
   }
3635 3635
   public function getZoomLevels()
3636 3636
   {
3637
-    return $this->zoomLevels;
3637
+	return $this->zoomLevels;
3638 3638
   }
3639 3639
 }
3640 3640
 
@@ -3650,27 +3650,27 @@  discard block
 block discarded – undo
3650 3650
 
3651 3651
   public function setGeometry(Google_Service_MapsEngine_GeoJsonGeometry $geometry)
3652 3652
   {
3653
-    $this->geometry = $geometry;
3653
+	$this->geometry = $geometry;
3654 3654
   }
3655 3655
   public function getGeometry()
3656 3656
   {
3657
-    return $this->geometry;
3657
+	return $this->geometry;
3658 3658
   }
3659 3659
   public function setProperties($properties)
3660 3660
   {
3661
-    $this->properties = $properties;
3661
+	$this->properties = $properties;
3662 3662
   }
3663 3663
   public function getProperties()
3664 3664
   {
3665
-    return $this->properties;
3665
+	return $this->properties;
3666 3666
   }
3667 3667
   public function setType($type)
3668 3668
   {
3669
-    $this->type = $type;
3669
+	$this->type = $type;
3670 3670
   }
3671 3671
   public function getType()
3672 3672
   {
3673
-    return $this->type;
3673
+	return $this->type;
3674 3674
   }
3675 3675
 }
3676 3676
 
@@ -3683,11 +3683,11 @@  discard block
 block discarded – undo
3683 3683
 
3684 3684
   public function setContent($content)
3685 3685
   {
3686
-    $this->content = $content;
3686
+	$this->content = $content;
3687 3687
   }
3688 3688
   public function getContent()
3689 3689
   {
3690
-    return $this->content;
3690
+	return $this->content;
3691 3691
   }
3692 3692
 }
3693 3693
 
@@ -3695,7 +3695,7 @@  discard block
 block discarded – undo
3695 3695
 {
3696 3696
   protected $collection_key = 'primaryKeys';
3697 3697
   protected $internal_gapi_mappings = array(
3698
-        "gxIds" => "gx_ids",
3698
+		"gxIds" => "gx_ids",
3699 3699
   );
3700 3700
   public $gxIds;
3701 3701
   public $primaryKeys;
@@ -3703,19 +3703,19 @@  discard block
 block discarded – undo
3703 3703
 
3704 3704
   public function setGxIds($gxIds)
3705 3705
   {
3706
-    $this->gxIds = $gxIds;
3706
+	$this->gxIds = $gxIds;
3707 3707
   }
3708 3708
   public function getGxIds()
3709 3709
   {
3710
-    return $this->gxIds;
3710
+	return $this->gxIds;
3711 3711
   }
3712 3712
   public function setPrimaryKeys($primaryKeys)
3713 3713
   {
3714
-    $this->primaryKeys = $primaryKeys;
3714
+	$this->primaryKeys = $primaryKeys;
3715 3715
   }
3716 3716
   public function getPrimaryKeys()
3717 3717
   {
3718
-    return $this->primaryKeys;
3718
+	return $this->primaryKeys;
3719 3719
   }
3720 3720
 }
3721 3721
 
@@ -3731,19 +3731,19 @@  discard block
 block discarded – undo
3731 3731
 
3732 3732
   public function setFeatures($features)
3733 3733
   {
3734
-    $this->features = $features;
3734
+	$this->features = $features;
3735 3735
   }
3736 3736
   public function getFeatures()
3737 3737
   {
3738
-    return $this->features;
3738
+	return $this->features;
3739 3739
   }
3740 3740
   public function setNormalizeGeometries($normalizeGeometries)
3741 3741
   {
3742
-    $this->normalizeGeometries = $normalizeGeometries;
3742
+	$this->normalizeGeometries = $normalizeGeometries;
3743 3743
   }
3744 3744
   public function getNormalizeGeometries()
3745 3745
   {
3746
-    return $this->normalizeGeometries;
3746
+	return $this->normalizeGeometries;
3747 3747
   }
3748 3748
 }
3749 3749
 
@@ -3759,19 +3759,19 @@  discard block
 block discarded – undo
3759 3759
 
3760 3760
   public function setFeatures($features)
3761 3761
   {
3762
-    $this->features = $features;
3762
+	$this->features = $features;
3763 3763
   }
3764 3764
   public function getFeatures()
3765 3765
   {
3766
-    return $this->features;
3766
+	return $this->features;
3767 3767
   }
3768 3768
   public function setNormalizeGeometries($normalizeGeometries)
3769 3769
   {
3770
-    $this->normalizeGeometries = $normalizeGeometries;
3770
+	$this->normalizeGeometries = $normalizeGeometries;
3771 3771
   }
3772 3772
   public function getNormalizeGeometries()
3773 3773
   {
3774
-    return $this->normalizeGeometries;
3774
+	return $this->normalizeGeometries;
3775 3775
   }
3776 3776
 }
3777 3777
 
@@ -3791,43 +3791,43 @@  discard block
 block discarded – undo
3791 3791
 
3792 3792
   public function setAllowedQueriesPerSecond($allowedQueriesPerSecond)
3793 3793
   {
3794
-    $this->allowedQueriesPerSecond = $allowedQueriesPerSecond;
3794
+	$this->allowedQueriesPerSecond = $allowedQueriesPerSecond;
3795 3795
   }
3796 3796
   public function getAllowedQueriesPerSecond()
3797 3797
   {
3798
-    return $this->allowedQueriesPerSecond;
3798
+	return $this->allowedQueriesPerSecond;
3799 3799
   }
3800 3800
   public function setFeatures($features)
3801 3801
   {
3802
-    $this->features = $features;
3802
+	$this->features = $features;
3803 3803
   }
3804 3804
   public function getFeatures()
3805 3805
   {
3806
-    return $this->features;
3806
+	return $this->features;
3807 3807
   }
3808 3808
   public function setNextPageToken($nextPageToken)
3809 3809
   {
3810
-    $this->nextPageToken = $nextPageToken;
3810
+	$this->nextPageToken = $nextPageToken;
3811 3811
   }
3812 3812
   public function getNextPageToken()
3813 3813
   {
3814
-    return $this->nextPageToken;
3814
+	return $this->nextPageToken;
3815 3815
   }
3816 3816
   public function setSchema(Google_Service_MapsEngine_Schema $schema)
3817 3817
   {
3818
-    $this->schema = $schema;
3818
+	$this->schema = $schema;
3819 3819
   }
3820 3820
   public function getSchema()
3821 3821
   {
3822
-    return $this->schema;
3822
+	return $this->schema;
3823 3823
   }
3824 3824
   public function setType($type)
3825 3825
   {
3826
-    $this->type = $type;
3826
+	$this->type = $type;
3827 3827
   }
3828 3828
   public function getType()
3829 3829
   {
3830
-    return $this->type;
3830
+	return $this->type;
3831 3831
   }
3832 3832
 }
3833 3833
 
@@ -3842,27 +3842,27 @@  discard block
 block discarded – undo
3842 3842
 
3843 3843
   public function setColumn($column)
3844 3844
   {
3845
-    $this->column = $column;
3845
+	$this->column = $column;
3846 3846
   }
3847 3847
   public function getColumn()
3848 3848
   {
3849
-    return $this->column;
3849
+	return $this->column;
3850 3850
   }
3851 3851
   public function setOperator($operator)
3852 3852
   {
3853
-    $this->operator = $operator;
3853
+	$this->operator = $operator;
3854 3854
   }
3855 3855
   public function getOperator()
3856 3856
   {
3857
-    return $this->operator;
3857
+	return $this->operator;
3858 3858
   }
3859 3859
   public function setValue($value)
3860 3860
   {
3861
-    $this->value = $value;
3861
+	$this->value = $value;
3862 3862
   }
3863 3863
   public function getValue()
3864 3864
   {
3865
-    return $this->value;
3865
+	return $this->value;
3866 3866
   }
3867 3867
 }
3868 3868
 
@@ -3875,11 +3875,11 @@  discard block
 block discarded – undo
3875 3875
 
3876 3876
   public function setType($type)
3877 3877
   {
3878
-    $this->type = $type;
3878
+	$this->type = $type;
3879 3879
   }
3880 3880
   public function getType()
3881 3881
   {
3882
-    return $this->type;
3882
+	return $this->type;
3883 3883
   }
3884 3884
 }
3885 3885
 
@@ -3892,16 +3892,16 @@  discard block
 block discarded – undo
3892 3892
   protected $geometriesDataType = 'array';
3893 3893
   protected function gapiInit()
3894 3894
   {
3895
-    $this->type = 'GeometryCollection';
3895
+	$this->type = 'GeometryCollection';
3896 3896
   }
3897 3897
 
3898 3898
   public function setGeometries($geometries)
3899 3899
   {
3900
-    $this->geometries = $geometries;
3900
+	$this->geometries = $geometries;
3901 3901
   }
3902 3902
   public function getGeometries()
3903 3903
   {
3904
-    return $this->geometries;
3904
+	return $this->geometries;
3905 3905
   }
3906 3906
 }
3907 3907
 
@@ -3913,16 +3913,16 @@  discard block
 block discarded – undo
3913 3913
   public $coordinates;
3914 3914
   protected function gapiInit()
3915 3915
   {
3916
-    $this->type = 'LineString';
3916
+	$this->type = 'LineString';
3917 3917
   }
3918 3918
 
3919 3919
   public function setCoordinates($coordinates)
3920 3920
   {
3921
-    $this->coordinates = $coordinates;
3921
+	$this->coordinates = $coordinates;
3922 3922
   }
3923 3923
   public function getCoordinates()
3924 3924
   {
3925
-    return $this->coordinates;
3925
+	return $this->coordinates;
3926 3926
   }
3927 3927
 }
3928 3928
 
@@ -3934,16 +3934,16 @@  discard block
 block discarded – undo
3934 3934
   public $coordinates;
3935 3935
   protected function gapiInit()
3936 3936
   {
3937
-    $this->type = 'MultiLineString';
3937
+	$this->type = 'MultiLineString';
3938 3938
   }
3939 3939
 
3940 3940
   public function setCoordinates($coordinates)
3941 3941
   {
3942
-    $this->coordinates = $coordinates;
3942
+	$this->coordinates = $coordinates;
3943 3943
   }
3944 3944
   public function getCoordinates()
3945 3945
   {
3946
-    return $this->coordinates;
3946
+	return $this->coordinates;
3947 3947
   }
3948 3948
 }
3949 3949
 
@@ -3955,16 +3955,16 @@  discard block
 block discarded – undo
3955 3955
   public $coordinates;
3956 3956
   protected function gapiInit()
3957 3957
   {
3958
-    $this->type = 'MultiPoint';
3958
+	$this->type = 'MultiPoint';
3959 3959
   }
3960 3960
 
3961 3961
   public function setCoordinates($coordinates)
3962 3962
   {
3963
-    $this->coordinates = $coordinates;
3963
+	$this->coordinates = $coordinates;
3964 3964
   }
3965 3965
   public function getCoordinates()
3966 3966
   {
3967
-    return $this->coordinates;
3967
+	return $this->coordinates;
3968 3968
   }
3969 3969
 }
3970 3970
 
@@ -3976,16 +3976,16 @@  discard block
 block discarded – undo
3976 3976
   public $coordinates;
3977 3977
   protected function gapiInit()
3978 3978
   {
3979
-    $this->type = 'MultiPolygon';
3979
+	$this->type = 'MultiPolygon';
3980 3980
   }
3981 3981
 
3982 3982
   public function setCoordinates($coordinates)
3983 3983
   {
3984
-    $this->coordinates = $coordinates;
3984
+	$this->coordinates = $coordinates;
3985 3985
   }
3986 3986
   public function getCoordinates()
3987 3987
   {
3988
-    return $this->coordinates;
3988
+	return $this->coordinates;
3989 3989
   }
3990 3990
 }
3991 3991
 
@@ -3997,16 +3997,16 @@  discard block
 block discarded – undo
3997 3997
   public $coordinates;
3998 3998
   protected function gapiInit()
3999 3999
   {
4000
-    $this->type = 'Point';
4000
+	$this->type = 'Point';
4001 4001
   }
4002 4002
 
4003 4003
   public function setCoordinates($coordinates)
4004 4004
   {
4005
-    $this->coordinates = $coordinates;
4005
+	$this->coordinates = $coordinates;
4006 4006
   }
4007 4007
   public function getCoordinates()
4008 4008
   {
4009
-    return $this->coordinates;
4009
+	return $this->coordinates;
4010 4010
   }
4011 4011
 }
4012 4012
 
@@ -4018,16 +4018,16 @@  discard block
 block discarded – undo
4018 4018
   public $coordinates;
4019 4019
   protected function gapiInit()
4020 4020
   {
4021
-    $this->type = 'Polygon';
4021
+	$this->type = 'Polygon';
4022 4022
   }
4023 4023
 
4024 4024
   public function setCoordinates($coordinates)
4025 4025
   {
4026
-    $this->coordinates = $coordinates;
4026
+	$this->coordinates = $coordinates;
4027 4027
   }
4028 4028
   public function getCoordinates()
4029 4029
   {
4030
-    return $this->coordinates;
4030
+	return $this->coordinates;
4031 4031
   }
4032 4032
 }
4033 4033
 
@@ -4046,27 +4046,27 @@  discard block
 block discarded – undo
4046 4046
 
4047 4047
   public function setDescription($description)
4048 4048
   {
4049
-    $this->description = $description;
4049
+	$this->description = $description;
4050 4050
   }
4051 4051
   public function getDescription()
4052 4052
   {
4053
-    return $this->description;
4053
+	return $this->description;
4054 4054
   }
4055 4055
   public function setId($id)
4056 4056
   {
4057
-    $this->id = $id;
4057
+	$this->id = $id;
4058 4058
   }
4059 4059
   public function getId()
4060 4060
   {
4061
-    return $this->id;
4061
+	return $this->id;
4062 4062
   }
4063 4063
   public function setName($name)
4064 4064
   {
4065
-    $this->name = $name;
4065
+	$this->name = $name;
4066 4066
   }
4067 4067
   public function getName()
4068 4068
   {
4069
-    return $this->name;
4069
+	return $this->name;
4070 4070
   }
4071 4071
 }
4072 4072
 
@@ -4084,35 +4084,35 @@  discard block
 block discarded – undo
4084 4084
 
4085 4085
   public function setId($id)
4086 4086
   {
4087
-    $this->id = $id;
4087
+	$this->id = $id;
4088 4088
   }
4089 4089
   public function getId()
4090 4090
   {
4091
-    return $this->id;
4091
+	return $this->id;
4092 4092
   }
4093 4093
   public function setName($name)
4094 4094
   {
4095
-    $this->name = $name;
4095
+	$this->name = $name;
4096 4096
   }
4097 4097
   public function getName()
4098 4098
   {
4099
-    return $this->name;
4099
+	return $this->name;
4100 4100
   }
4101 4101
   public function setScaledShape(Google_Service_MapsEngine_ScaledShape $scaledShape)
4102 4102
   {
4103
-    $this->scaledShape = $scaledShape;
4103
+	$this->scaledShape = $scaledShape;
4104 4104
   }
4105 4105
   public function getScaledShape()
4106 4106
   {
4107
-    return $this->scaledShape;
4107
+	return $this->scaledShape;
4108 4108
   }
4109 4109
   public function setScalingFunction(Google_Service_MapsEngine_ScalingFunction $scalingFunction)
4110 4110
   {
4111
-    $this->scalingFunction = $scalingFunction;
4111
+	$this->scalingFunction = $scalingFunction;
4112 4112
   }
4113 4113
   public function getScalingFunction()
4114 4114
   {
4115
-    return $this->scalingFunction;
4115
+	return $this->scalingFunction;
4116 4116
   }
4117 4117
 }
4118 4118
 
@@ -4128,19 +4128,19 @@  discard block
 block discarded – undo
4128 4128
 
4129 4129
   public function setIcons($icons)
4130 4130
   {
4131
-    $this->icons = $icons;
4131
+	$this->icons = $icons;
4132 4132
   }
4133 4133
   public function getIcons()
4134 4134
   {
4135
-    return $this->icons;
4135
+	return $this->icons;
4136 4136
   }
4137 4137
   public function setNextPageToken($nextPageToken)
4138 4138
   {
4139
-    $this->nextPageToken = $nextPageToken;
4139
+	$this->nextPageToken = $nextPageToken;
4140 4140
   }
4141 4141
   public function getNextPageToken()
4142 4142
   {
4143
-    return $this->nextPageToken;
4143
+	return $this->nextPageToken;
4144 4144
   }
4145 4145
 }
4146 4146
 
@@ -4160,59 +4160,59 @@  discard block
 block discarded – undo
4160 4160
 
4161 4161
   public function setColor($color)
4162 4162
   {
4163
-    $this->color = $color;
4163
+	$this->color = $color;
4164 4164
   }
4165 4165
   public function getColor()
4166 4166
   {
4167
-    return $this->color;
4167
+	return $this->color;
4168 4168
   }
4169 4169
   public function setColumn($column)
4170 4170
   {
4171
-    $this->column = $column;
4171
+	$this->column = $column;
4172 4172
   }
4173 4173
   public function getColumn()
4174 4174
   {
4175
-    return $this->column;
4175
+	return $this->column;
4176 4176
   }
4177 4177
   public function setFontStyle($fontStyle)
4178 4178
   {
4179
-    $this->fontStyle = $fontStyle;
4179
+	$this->fontStyle = $fontStyle;
4180 4180
   }
4181 4181
   public function getFontStyle()
4182 4182
   {
4183
-    return $this->fontStyle;
4183
+	return $this->fontStyle;
4184 4184
   }
4185 4185
   public function setFontWeight($fontWeight)
4186 4186
   {
4187
-    $this->fontWeight = $fontWeight;
4187
+	$this->fontWeight = $fontWeight;
4188 4188
   }
4189 4189
   public function getFontWeight()
4190 4190
   {
4191
-    return $this->fontWeight;
4191
+	return $this->fontWeight;
4192 4192
   }
4193 4193
   public function setOpacity($opacity)
4194 4194
   {
4195
-    $this->opacity = $opacity;
4195
+	$this->opacity = $opacity;
4196 4196
   }
4197 4197
   public function getOpacity()
4198 4198
   {
4199
-    return $this->opacity;
4199
+	return $this->opacity;
4200 4200
   }
4201 4201
   public function setOutline(Google_Service_MapsEngine_Color $outline)
4202 4202
   {
4203
-    $this->outline = $outline;
4203
+	$this->outline = $outline;
4204 4204
   }
4205 4205
   public function getOutline()
4206 4206
   {
4207
-    return $this->outline;
4207
+	return $this->outline;
4208 4208
   }
4209 4209
   public function setSize($size)
4210 4210
   {
4211
-    $this->size = $size;
4211
+	$this->size = $size;
4212 4212
   }
4213 4213
   public function getSize()
4214 4214
   {
4215
-    return $this->size;
4215
+	return $this->size;
4216 4216
   }
4217 4217
 }
4218 4218
 
@@ -4247,163 +4247,163 @@  discard block
 block discarded – undo
4247 4247
 
4248 4248
   public function setBbox($bbox)
4249 4249
   {
4250
-    $this->bbox = $bbox;
4250
+	$this->bbox = $bbox;
4251 4251
   }
4252 4252
   public function getBbox()
4253 4253
   {
4254
-    return $this->bbox;
4254
+	return $this->bbox;
4255 4255
   }
4256 4256
   public function setCreationTime($creationTime)
4257 4257
   {
4258
-    $this->creationTime = $creationTime;
4258
+	$this->creationTime = $creationTime;
4259 4259
   }
4260 4260
   public function getCreationTime()
4261 4261
   {
4262
-    return $this->creationTime;
4262
+	return $this->creationTime;
4263 4263
   }
4264 4264
   public function setCreatorEmail($creatorEmail)
4265 4265
   {
4266
-    $this->creatorEmail = $creatorEmail;
4266
+	$this->creatorEmail = $creatorEmail;
4267 4267
   }
4268 4268
   public function getCreatorEmail()
4269 4269
   {
4270
-    return $this->creatorEmail;
4270
+	return $this->creatorEmail;
4271 4271
   }
4272 4272
   public function setDatasourceType($datasourceType)
4273 4273
   {
4274
-    $this->datasourceType = $datasourceType;
4274
+	$this->datasourceType = $datasourceType;
4275 4275
   }
4276 4276
   public function getDatasourceType()
4277 4277
   {
4278
-    return $this->datasourceType;
4278
+	return $this->datasourceType;
4279 4279
   }
4280 4280
   public function setDatasources(Google_Service_MapsEngine_Datasource $datasources)
4281 4281
   {
4282
-    $this->datasources = $datasources;
4282
+	$this->datasources = $datasources;
4283 4283
   }
4284 4284
   public function getDatasources()
4285 4285
   {
4286
-    return $this->datasources;
4286
+	return $this->datasources;
4287 4287
   }
4288 4288
   public function setDescription($description)
4289 4289
   {
4290
-    $this->description = $description;
4290
+	$this->description = $description;
4291 4291
   }
4292 4292
   public function getDescription()
4293 4293
   {
4294
-    return $this->description;
4294
+	return $this->description;
4295 4295
   }
4296 4296
   public function setDraftAccessList($draftAccessList)
4297 4297
   {
4298
-    $this->draftAccessList = $draftAccessList;
4298
+	$this->draftAccessList = $draftAccessList;
4299 4299
   }
4300 4300
   public function getDraftAccessList()
4301 4301
   {
4302
-    return $this->draftAccessList;
4302
+	return $this->draftAccessList;
4303 4303
   }
4304 4304
   public function setEtag($etag)
4305 4305
   {
4306
-    $this->etag = $etag;
4306
+	$this->etag = $etag;
4307 4307
   }
4308 4308
   public function getEtag()
4309 4309
   {
4310
-    return $this->etag;
4310
+	return $this->etag;
4311 4311
   }
4312 4312
   public function setId($id)
4313 4313
   {
4314
-    $this->id = $id;
4314
+	$this->id = $id;
4315 4315
   }
4316 4316
   public function getId()
4317 4317
   {
4318
-    return $this->id;
4318
+	return $this->id;
4319 4319
   }
4320 4320
   public function setLastModifiedTime($lastModifiedTime)
4321 4321
   {
4322
-    $this->lastModifiedTime = $lastModifiedTime;
4322
+	$this->lastModifiedTime = $lastModifiedTime;
4323 4323
   }
4324 4324
   public function getLastModifiedTime()
4325 4325
   {
4326
-    return $this->lastModifiedTime;
4326
+	return $this->lastModifiedTime;
4327 4327
   }
4328 4328
   public function setLastModifierEmail($lastModifierEmail)
4329 4329
   {
4330
-    $this->lastModifierEmail = $lastModifierEmail;
4330
+	$this->lastModifierEmail = $lastModifierEmail;
4331 4331
   }
4332 4332
   public function getLastModifierEmail()
4333 4333
   {
4334
-    return $this->lastModifierEmail;
4334
+	return $this->lastModifierEmail;
4335 4335
   }
4336 4336
   public function setLayerType($layerType)
4337 4337
   {
4338
-    $this->layerType = $layerType;
4338
+	$this->layerType = $layerType;
4339 4339
   }
4340 4340
   public function getLayerType()
4341 4341
   {
4342
-    return $this->layerType;
4342
+	return $this->layerType;
4343 4343
   }
4344 4344
   public function setName($name)
4345 4345
   {
4346
-    $this->name = $name;
4346
+	$this->name = $name;
4347 4347
   }
4348 4348
   public function getName()
4349 4349
   {
4350
-    return $this->name;
4350
+	return $this->name;
4351 4351
   }
4352 4352
   public function setProcessingStatus($processingStatus)
4353 4353
   {
4354
-    $this->processingStatus = $processingStatus;
4354
+	$this->processingStatus = $processingStatus;
4355 4355
   }
4356 4356
   public function getProcessingStatus()
4357 4357
   {
4358
-    return $this->processingStatus;
4358
+	return $this->processingStatus;
4359 4359
   }
4360 4360
   public function setProjectId($projectId)
4361 4361
   {
4362
-    $this->projectId = $projectId;
4362
+	$this->projectId = $projectId;
4363 4363
   }
4364 4364
   public function getProjectId()
4365 4365
   {
4366
-    return $this->projectId;
4366
+	return $this->projectId;
4367 4367
   }
4368 4368
   public function setPublishedAccessList($publishedAccessList)
4369 4369
   {
4370
-    $this->publishedAccessList = $publishedAccessList;
4370
+	$this->publishedAccessList = $publishedAccessList;
4371 4371
   }
4372 4372
   public function getPublishedAccessList()
4373 4373
   {
4374
-    return $this->publishedAccessList;
4374
+	return $this->publishedAccessList;
4375 4375
   }
4376 4376
   public function setPublishingStatus($publishingStatus)
4377 4377
   {
4378
-    $this->publishingStatus = $publishingStatus;
4378
+	$this->publishingStatus = $publishingStatus;
4379 4379
   }
4380 4380
   public function getPublishingStatus()
4381 4381
   {
4382
-    return $this->publishingStatus;
4382
+	return $this->publishingStatus;
4383 4383
   }
4384 4384
   public function setStyle(Google_Service_MapsEngine_VectorStyle $style)
4385 4385
   {
4386
-    $this->style = $style;
4386
+	$this->style = $style;
4387 4387
   }
4388 4388
   public function getStyle()
4389 4389
   {
4390
-    return $this->style;
4390
+	return $this->style;
4391 4391
   }
4392 4392
   public function setTags($tags)
4393 4393
   {
4394
-    $this->tags = $tags;
4394
+	$this->tags = $tags;
4395 4395
   }
4396 4396
   public function getTags()
4397 4397
   {
4398
-    return $this->tags;
4398
+	return $this->tags;
4399 4399
   }
4400 4400
   public function setWritersCanEditPermissions($writersCanEditPermissions)
4401 4401
   {
4402
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
4402
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
4403 4403
   }
4404 4404
   public function getWritersCanEditPermissions()
4405 4405
   {
4406
-    return $this->writersCanEditPermissions;
4406
+	return $this->writersCanEditPermissions;
4407 4407
   }
4408 4408
 }
4409 4409
 
@@ -4419,19 +4419,19 @@  discard block
 block discarded – undo
4419 4419
 
4420 4420
   public function setLayers($layers)
4421 4421
   {
4422
-    $this->layers = $layers;
4422
+	$this->layers = $layers;
4423 4423
   }
4424 4424
   public function getLayers()
4425 4425
   {
4426
-    return $this->layers;
4426
+	return $this->layers;
4427 4427
   }
4428 4428
   public function setNextPageToken($nextPageToken)
4429 4429
   {
4430
-    $this->nextPageToken = $nextPageToken;
4430
+	$this->nextPageToken = $nextPageToken;
4431 4431
   }
4432 4432
   public function getNextPageToken()
4433 4433
   {
4434
-    return $this->nextPageToken;
4434
+	return $this->nextPageToken;
4435 4435
   }
4436 4436
 }
4437 4437
 
@@ -4451,35 +4451,35 @@  discard block
 block discarded – undo
4451 4451
 
4452 4452
   public function setBorder(Google_Service_MapsEngine_Border $border)
4453 4453
   {
4454
-    $this->border = $border;
4454
+	$this->border = $border;
4455 4455
   }
4456 4456
   public function getBorder()
4457 4457
   {
4458
-    return $this->border;
4458
+	return $this->border;
4459 4459
   }
4460 4460
   public function setDash($dash)
4461 4461
   {
4462
-    $this->dash = $dash;
4462
+	$this->dash = $dash;
4463 4463
   }
4464 4464
   public function getDash()
4465 4465
   {
4466
-    return $this->dash;
4466
+	return $this->dash;
4467 4467
   }
4468 4468
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
4469 4469
   {
4470
-    $this->label = $label;
4470
+	$this->label = $label;
4471 4471
   }
4472 4472
   public function getLabel()
4473 4473
   {
4474
-    return $this->label;
4474
+	return $this->label;
4475 4475
   }
4476 4476
   public function setStroke(Google_Service_MapsEngine_LineStyleStroke $stroke)
4477 4477
   {
4478
-    $this->stroke = $stroke;
4478
+	$this->stroke = $stroke;
4479 4479
   }
4480 4480
   public function getStroke()
4481 4481
   {
4482
-    return $this->stroke;
4482
+	return $this->stroke;
4483 4483
   }
4484 4484
 }
4485 4485
 
@@ -4494,27 +4494,27 @@  discard block
 block discarded – undo
4494 4494
 
4495 4495
   public function setColor($color)
4496 4496
   {
4497
-    $this->color = $color;
4497
+	$this->color = $color;
4498 4498
   }
4499 4499
   public function getColor()
4500 4500
   {
4501
-    return $this->color;
4501
+	return $this->color;
4502 4502
   }
4503 4503
   public function setOpacity($opacity)
4504 4504
   {
4505
-    $this->opacity = $opacity;
4505
+	$this->opacity = $opacity;
4506 4506
   }
4507 4507
   public function getOpacity()
4508 4508
   {
4509
-    return $this->opacity;
4509
+	return $this->opacity;
4510 4510
   }
4511 4511
   public function setWidth($width)
4512 4512
   {
4513
-    $this->width = $width;
4513
+	$this->width = $width;
4514 4514
   }
4515 4515
   public function getWidth()
4516 4516
   {
4517
-    return $this->width;
4517
+	return $this->width;
4518 4518
   }
4519 4519
 }
4520 4520
 
@@ -4547,155 +4547,155 @@  discard block
 block discarded – undo
4547 4547
 
4548 4548
   public function setBbox($bbox)
4549 4549
   {
4550
-    $this->bbox = $bbox;
4550
+	$this->bbox = $bbox;
4551 4551
   }
4552 4552
   public function getBbox()
4553 4553
   {
4554
-    return $this->bbox;
4554
+	return $this->bbox;
4555 4555
   }
4556 4556
   public function setContents(Google_Service_MapsEngine_MapItem $contents)
4557 4557
   {
4558
-    $this->contents = $contents;
4558
+	$this->contents = $contents;
4559 4559
   }
4560 4560
   public function getContents()
4561 4561
   {
4562
-    return $this->contents;
4562
+	return $this->contents;
4563 4563
   }
4564 4564
   public function setCreationTime($creationTime)
4565 4565
   {
4566
-    $this->creationTime = $creationTime;
4566
+	$this->creationTime = $creationTime;
4567 4567
   }
4568 4568
   public function getCreationTime()
4569 4569
   {
4570
-    return $this->creationTime;
4570
+	return $this->creationTime;
4571 4571
   }
4572 4572
   public function setCreatorEmail($creatorEmail)
4573 4573
   {
4574
-    $this->creatorEmail = $creatorEmail;
4574
+	$this->creatorEmail = $creatorEmail;
4575 4575
   }
4576 4576
   public function getCreatorEmail()
4577 4577
   {
4578
-    return $this->creatorEmail;
4578
+	return $this->creatorEmail;
4579 4579
   }
4580 4580
   public function setDefaultViewport($defaultViewport)
4581 4581
   {
4582
-    $this->defaultViewport = $defaultViewport;
4582
+	$this->defaultViewport = $defaultViewport;
4583 4583
   }
4584 4584
   public function getDefaultViewport()
4585 4585
   {
4586
-    return $this->defaultViewport;
4586
+	return $this->defaultViewport;
4587 4587
   }
4588 4588
   public function setDescription($description)
4589 4589
   {
4590
-    $this->description = $description;
4590
+	$this->description = $description;
4591 4591
   }
4592 4592
   public function getDescription()
4593 4593
   {
4594
-    return $this->description;
4594
+	return $this->description;
4595 4595
   }
4596 4596
   public function setDraftAccessList($draftAccessList)
4597 4597
   {
4598
-    $this->draftAccessList = $draftAccessList;
4598
+	$this->draftAccessList = $draftAccessList;
4599 4599
   }
4600 4600
   public function getDraftAccessList()
4601 4601
   {
4602
-    return $this->draftAccessList;
4602
+	return $this->draftAccessList;
4603 4603
   }
4604 4604
   public function setEtag($etag)
4605 4605
   {
4606
-    $this->etag = $etag;
4606
+	$this->etag = $etag;
4607 4607
   }
4608 4608
   public function getEtag()
4609 4609
   {
4610
-    return $this->etag;
4610
+	return $this->etag;
4611 4611
   }
4612 4612
   public function setId($id)
4613 4613
   {
4614
-    $this->id = $id;
4614
+	$this->id = $id;
4615 4615
   }
4616 4616
   public function getId()
4617 4617
   {
4618
-    return $this->id;
4618
+	return $this->id;
4619 4619
   }
4620 4620
   public function setLastModifiedTime($lastModifiedTime)
4621 4621
   {
4622
-    $this->lastModifiedTime = $lastModifiedTime;
4622
+	$this->lastModifiedTime = $lastModifiedTime;
4623 4623
   }
4624 4624
   public function getLastModifiedTime()
4625 4625
   {
4626
-    return $this->lastModifiedTime;
4626
+	return $this->lastModifiedTime;
4627 4627
   }
4628 4628
   public function setLastModifierEmail($lastModifierEmail)
4629 4629
   {
4630
-    $this->lastModifierEmail = $lastModifierEmail;
4630
+	$this->lastModifierEmail = $lastModifierEmail;
4631 4631
   }
4632 4632
   public function getLastModifierEmail()
4633 4633
   {
4634
-    return $this->lastModifierEmail;
4634
+	return $this->lastModifierEmail;
4635 4635
   }
4636 4636
   public function setName($name)
4637 4637
   {
4638
-    $this->name = $name;
4638
+	$this->name = $name;
4639 4639
   }
4640 4640
   public function getName()
4641 4641
   {
4642
-    return $this->name;
4642
+	return $this->name;
4643 4643
   }
4644 4644
   public function setProcessingStatus($processingStatus)
4645 4645
   {
4646
-    $this->processingStatus = $processingStatus;
4646
+	$this->processingStatus = $processingStatus;
4647 4647
   }
4648 4648
   public function getProcessingStatus()
4649 4649
   {
4650
-    return $this->processingStatus;
4650
+	return $this->processingStatus;
4651 4651
   }
4652 4652
   public function setProjectId($projectId)
4653 4653
   {
4654
-    $this->projectId = $projectId;
4654
+	$this->projectId = $projectId;
4655 4655
   }
4656 4656
   public function getProjectId()
4657 4657
   {
4658
-    return $this->projectId;
4658
+	return $this->projectId;
4659 4659
   }
4660 4660
   public function setPublishedAccessList($publishedAccessList)
4661 4661
   {
4662
-    $this->publishedAccessList = $publishedAccessList;
4662
+	$this->publishedAccessList = $publishedAccessList;
4663 4663
   }
4664 4664
   public function getPublishedAccessList()
4665 4665
   {
4666
-    return $this->publishedAccessList;
4666
+	return $this->publishedAccessList;
4667 4667
   }
4668 4668
   public function setPublishingStatus($publishingStatus)
4669 4669
   {
4670
-    $this->publishingStatus = $publishingStatus;
4670
+	$this->publishingStatus = $publishingStatus;
4671 4671
   }
4672 4672
   public function getPublishingStatus()
4673 4673
   {
4674
-    return $this->publishingStatus;
4674
+	return $this->publishingStatus;
4675 4675
   }
4676 4676
   public function setTags($tags)
4677 4677
   {
4678
-    $this->tags = $tags;
4678
+	$this->tags = $tags;
4679 4679
   }
4680 4680
   public function getTags()
4681 4681
   {
4682
-    return $this->tags;
4682
+	return $this->tags;
4683 4683
   }
4684 4684
   public function setVersions($versions)
4685 4685
   {
4686
-    $this->versions = $versions;
4686
+	$this->versions = $versions;
4687 4687
   }
4688 4688
   public function getVersions()
4689 4689
   {
4690
-    return $this->versions;
4690
+	return $this->versions;
4691 4691
   }
4692 4692
   public function setWritersCanEditPermissions($writersCanEditPermissions)
4693 4693
   {
4694
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
4694
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
4695 4695
   }
4696 4696
   public function getWritersCanEditPermissions()
4697 4697
   {
4698
-    return $this->writersCanEditPermissions;
4698
+	return $this->writersCanEditPermissions;
4699 4699
   }
4700 4700
 }
4701 4701
 
@@ -4713,56 +4713,56 @@  discard block
 block discarded – undo
4713 4713
   public $visibility;
4714 4714
   protected function gapiInit()
4715 4715
   {
4716
-    $this->type = 'folder';
4716
+	$this->type = 'folder';
4717 4717
   }
4718 4718
 
4719 4719
   public function setContents($contents)
4720 4720
   {
4721
-    $this->contents = $contents;
4721
+	$this->contents = $contents;
4722 4722
   }
4723 4723
   public function getContents()
4724 4724
   {
4725
-    return $this->contents;
4725
+	return $this->contents;
4726 4726
   }
4727 4727
   public function setDefaultViewport($defaultViewport)
4728 4728
   {
4729
-    $this->defaultViewport = $defaultViewport;
4729
+	$this->defaultViewport = $defaultViewport;
4730 4730
   }
4731 4731
   public function getDefaultViewport()
4732 4732
   {
4733
-    return $this->defaultViewport;
4733
+	return $this->defaultViewport;
4734 4734
   }
4735 4735
   public function setExpandable($expandable)
4736 4736
   {
4737
-    $this->expandable = $expandable;
4737
+	$this->expandable = $expandable;
4738 4738
   }
4739 4739
   public function getExpandable()
4740 4740
   {
4741
-    return $this->expandable;
4741
+	return $this->expandable;
4742 4742
   }
4743 4743
   public function setKey($key)
4744 4744
   {
4745
-    $this->key = $key;
4745
+	$this->key = $key;
4746 4746
   }
4747 4747
   public function getKey()
4748 4748
   {
4749
-    return $this->key;
4749
+	return $this->key;
4750 4750
   }
4751 4751
   public function setName($name)
4752 4752
   {
4753
-    $this->name = $name;
4753
+	$this->name = $name;
4754 4754
   }
4755 4755
   public function getName()
4756 4756
   {
4757
-    return $this->name;
4757
+	return $this->name;
4758 4758
   }
4759 4759
   public function setVisibility($visibility)
4760 4760
   {
4761
-    $this->visibility = $visibility;
4761
+	$this->visibility = $visibility;
4762 4762
   }
4763 4763
   public function getVisibility()
4764 4764
   {
4765
-    return $this->visibility;
4765
+	return $this->visibility;
4766 4766
   }
4767 4767
 }
4768 4768
 
@@ -4775,11 +4775,11 @@  discard block
 block discarded – undo
4775 4775
 
4776 4776
   public function setType($type)
4777 4777
   {
4778
-    $this->type = $type;
4778
+	$this->type = $type;
4779 4779
   }
4780 4780
   public function getType()
4781 4781
   {
4782
-    return $this->type;
4782
+	return $this->type;
4783 4783
   }
4784 4784
 }
4785 4785
 
@@ -4794,40 +4794,40 @@  discard block
 block discarded – undo
4794 4794
   public $visibility;
4795 4795
   protected function gapiInit()
4796 4796
   {
4797
-    $this->type = 'kmlLink';
4797
+	$this->type = 'kmlLink';
4798 4798
   }
4799 4799
 
4800 4800
   public function setDefaultViewport($defaultViewport)
4801 4801
   {
4802
-    $this->defaultViewport = $defaultViewport;
4802
+	$this->defaultViewport = $defaultViewport;
4803 4803
   }
4804 4804
   public function getDefaultViewport()
4805 4805
   {
4806
-    return $this->defaultViewport;
4806
+	return $this->defaultViewport;
4807 4807
   }
4808 4808
   public function setKmlUrl($kmlUrl)
4809 4809
   {
4810
-    $this->kmlUrl = $kmlUrl;
4810
+	$this->kmlUrl = $kmlUrl;
4811 4811
   }
4812 4812
   public function getKmlUrl()
4813 4813
   {
4814
-    return $this->kmlUrl;
4814
+	return $this->kmlUrl;
4815 4815
   }
4816 4816
   public function setName($name)
4817 4817
   {
4818
-    $this->name = $name;
4818
+	$this->name = $name;
4819 4819
   }
4820 4820
   public function getName()
4821 4821
   {
4822
-    return $this->name;
4822
+	return $this->name;
4823 4823
   }
4824 4824
   public function setVisibility($visibility)
4825 4825
   {
4826
-    $this->visibility = $visibility;
4826
+	$this->visibility = $visibility;
4827 4827
   }
4828 4828
   public function getVisibility()
4829 4829
   {
4830
-    return $this->visibility;
4830
+	return $this->visibility;
4831 4831
   }
4832 4832
 }
4833 4833
 
@@ -4843,48 +4843,48 @@  discard block
 block discarded – undo
4843 4843
   public $visibility;
4844 4844
   protected function gapiInit()
4845 4845
   {
4846
-    $this->type = 'layer';
4846
+	$this->type = 'layer';
4847 4847
   }
4848 4848
 
4849 4849
   public function setDefaultViewport($defaultViewport)
4850 4850
   {
4851
-    $this->defaultViewport = $defaultViewport;
4851
+	$this->defaultViewport = $defaultViewport;
4852 4852
   }
4853 4853
   public function getDefaultViewport()
4854 4854
   {
4855
-    return $this->defaultViewport;
4855
+	return $this->defaultViewport;
4856 4856
   }
4857 4857
   public function setId($id)
4858 4858
   {
4859
-    $this->id = $id;
4859
+	$this->id = $id;
4860 4860
   }
4861 4861
   public function getId()
4862 4862
   {
4863
-    return $this->id;
4863
+	return $this->id;
4864 4864
   }
4865 4865
   public function setKey($key)
4866 4866
   {
4867
-    $this->key = $key;
4867
+	$this->key = $key;
4868 4868
   }
4869 4869
   public function getKey()
4870 4870
   {
4871
-    return $this->key;
4871
+	return $this->key;
4872 4872
   }
4873 4873
   public function setName($name)
4874 4874
   {
4875
-    $this->name = $name;
4875
+	$this->name = $name;
4876 4876
   }
4877 4877
   public function getName()
4878 4878
   {
4879
-    return $this->name;
4879
+	return $this->name;
4880 4880
   }
4881 4881
   public function setVisibility($visibility)
4882 4882
   {
4883
-    $this->visibility = $visibility;
4883
+	$this->visibility = $visibility;
4884 4884
   }
4885 4885
   public function getVisibility()
4886 4886
   {
4887
-    return $this->visibility;
4887
+	return $this->visibility;
4888 4888
   }
4889 4889
 }
4890 4890
 
@@ -4900,19 +4900,19 @@  discard block
 block discarded – undo
4900 4900
 
4901 4901
   public function setMaps($maps)
4902 4902
   {
4903
-    $this->maps = $maps;
4903
+	$this->maps = $maps;
4904 4904
   }
4905 4905
   public function getMaps()
4906 4906
   {
4907
-    return $this->maps;
4907
+	return $this->maps;
4908 4908
   }
4909 4909
   public function setNextPageToken($nextPageToken)
4910 4910
   {
4911
-    $this->nextPageToken = $nextPageToken;
4911
+	$this->nextPageToken = $nextPageToken;
4912 4912
   }
4913 4913
   public function getNextPageToken()
4914 4914
   {
4915
-    return $this->nextPageToken;
4915
+	return $this->nextPageToken;
4916 4916
   }
4917 4917
 }
4918 4918
 
@@ -4927,27 +4927,27 @@  discard block
 block discarded – undo
4927 4927
 
4928 4928
   public function setFilename($filename)
4929 4929
   {
4930
-    $this->filename = $filename;
4930
+	$this->filename = $filename;
4931 4931
   }
4932 4932
   public function getFilename()
4933 4933
   {
4934
-    return $this->filename;
4934
+	return $this->filename;
4935 4935
   }
4936 4936
   public function setSize($size)
4937 4937
   {
4938
-    $this->size = $size;
4938
+	$this->size = $size;
4939 4939
   }
4940 4940
   public function getSize()
4941 4941
   {
4942
-    return $this->size;
4942
+	return $this->size;
4943 4943
   }
4944 4944
   public function setUploadStatus($uploadStatus)
4945 4945
   {
4946
-    $this->uploadStatus = $uploadStatus;
4946
+	$this->uploadStatus = $uploadStatus;
4947 4947
   }
4948 4948
   public function getUploadStatus()
4949 4949
   {
4950
-    return $this->uploadStatus;
4950
+	return $this->uploadStatus;
4951 4951
   }
4952 4952
 }
4953 4953
 
@@ -4960,11 +4960,11 @@  discard block
 block discarded – undo
4960 4960
 
4961 4961
   public function setId($id)
4962 4962
   {
4963
-    $this->id = $id;
4963
+	$this->id = $id;
4964 4964
   }
4965 4965
   public function getId()
4966 4966
   {
4967
-    return $this->id;
4967
+	return $this->id;
4968 4968
   }
4969 4969
 }
4970 4970
 
@@ -4980,19 +4980,19 @@  discard block
 block discarded – undo
4980 4980
 
4981 4981
   public function setNextPageToken($nextPageToken)
4982 4982
   {
4983
-    $this->nextPageToken = $nextPageToken;
4983
+	$this->nextPageToken = $nextPageToken;
4984 4984
   }
4985 4985
   public function getNextPageToken()
4986 4986
   {
4987
-    return $this->nextPageToken;
4987
+	return $this->nextPageToken;
4988 4988
   }
4989 4989
   public function setParents($parents)
4990 4990
   {
4991
-    $this->parents = $parents;
4991
+	$this->parents = $parents;
4992 4992
   }
4993 4993
   public function getParents()
4994 4994
   {
4995
-    return $this->parents;
4995
+	return $this->parents;
4996 4996
   }
4997 4997
 }
4998 4998
 
@@ -5008,35 +5008,35 @@  discard block
 block discarded – undo
5008 5008
 
5009 5009
   public function setDiscoverable($discoverable)
5010 5010
   {
5011
-    $this->discoverable = $discoverable;
5011
+	$this->discoverable = $discoverable;
5012 5012
   }
5013 5013
   public function getDiscoverable()
5014 5014
   {
5015
-    return $this->discoverable;
5015
+	return $this->discoverable;
5016 5016
   }
5017 5017
   public function setId($id)
5018 5018
   {
5019
-    $this->id = $id;
5019
+	$this->id = $id;
5020 5020
   }
5021 5021
   public function getId()
5022 5022
   {
5023
-    return $this->id;
5023
+	return $this->id;
5024 5024
   }
5025 5025
   public function setRole($role)
5026 5026
   {
5027
-    $this->role = $role;
5027
+	$this->role = $role;
5028 5028
   }
5029 5029
   public function getRole()
5030 5030
   {
5031
-    return $this->role;
5031
+	return $this->role;
5032 5032
   }
5033 5033
   public function setType($type)
5034 5034
   {
5035
-    $this->type = $type;
5035
+	$this->type = $type;
5036 5036
   }
5037 5037
   public function getType()
5038 5038
   {
5039
-    return $this->type;
5039
+	return $this->type;
5040 5040
   }
5041 5041
 }
5042 5042
 
@@ -5050,11 +5050,11 @@  discard block
 block discarded – undo
5050 5050
 
5051 5051
   public function setIds($ids)
5052 5052
   {
5053
-    $this->ids = $ids;
5053
+	$this->ids = $ids;
5054 5054
   }
5055 5055
   public function getIds()
5056 5056
   {
5057
-    return $this->ids;
5057
+	return $this->ids;
5058 5058
   }
5059 5059
 }
5060 5060
 
@@ -5073,11 +5073,11 @@  discard block
 block discarded – undo
5073 5073
 
5074 5074
   public function setPermissions($permissions)
5075 5075
   {
5076
-    $this->permissions = $permissions;
5076
+	$this->permissions = $permissions;
5077 5077
   }
5078 5078
   public function getPermissions()
5079 5079
   {
5080
-    return $this->permissions;
5080
+	return $this->permissions;
5081 5081
   }
5082 5082
 }
5083 5083
 
@@ -5096,11 +5096,11 @@  discard block
 block discarded – undo
5096 5096
 
5097 5097
   public function setPermissions($permissions)
5098 5098
   {
5099
-    $this->permissions = $permissions;
5099
+	$this->permissions = $permissions;
5100 5100
   }
5101 5101
   public function getPermissions()
5102 5102
   {
5103
-    return $this->permissions;
5103
+	return $this->permissions;
5104 5104
   }
5105 5105
 }
5106 5106
 
@@ -5116,19 +5116,19 @@  discard block
 block discarded – undo
5116 5116
 
5117 5117
   public function setIcon(Google_Service_MapsEngine_IconStyle $icon)
5118 5118
   {
5119
-    $this->icon = $icon;
5119
+	$this->icon = $icon;
5120 5120
   }
5121 5121
   public function getIcon()
5122 5122
   {
5123
-    return $this->icon;
5123
+	return $this->icon;
5124 5124
   }
5125 5125
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
5126 5126
   {
5127
-    $this->label = $label;
5127
+	$this->label = $label;
5128 5128
   }
5129 5129
   public function getLabel()
5130 5130
   {
5131
-    return $this->label;
5131
+	return $this->label;
5132 5132
   }
5133 5133
 }
5134 5134
 
@@ -5146,27 +5146,27 @@  discard block
 block discarded – undo
5146 5146
 
5147 5147
   public function setFill(Google_Service_MapsEngine_Color $fill)
5148 5148
   {
5149
-    $this->fill = $fill;
5149
+	$this->fill = $fill;
5150 5150
   }
5151 5151
   public function getFill()
5152 5152
   {
5153
-    return $this->fill;
5153
+	return $this->fill;
5154 5154
   }
5155 5155
   public function setLabel(Google_Service_MapsEngine_LabelStyle $label)
5156 5156
   {
5157
-    $this->label = $label;
5157
+	$this->label = $label;
5158 5158
   }
5159 5159
   public function getLabel()
5160 5160
   {
5161
-    return $this->label;
5161
+	return $this->label;
5162 5162
   }
5163 5163
   public function setStroke(Google_Service_MapsEngine_Border $stroke)
5164 5164
   {
5165
-    $this->stroke = $stroke;
5165
+	$this->stroke = $stroke;
5166 5166
   }
5167 5167
   public function getStroke()
5168 5168
   {
5169
-    return $this->stroke;
5169
+	return $this->stroke;
5170 5170
   }
5171 5171
 }
5172 5172
 
@@ -5184,19 +5184,19 @@  discard block
 block discarded – undo
5184 5184
 
5185 5185
   public function setId($id)
5186 5186
   {
5187
-    $this->id = $id;
5187
+	$this->id = $id;
5188 5188
   }
5189 5189
   public function getId()
5190 5190
   {
5191
-    return $this->id;
5191
+	return $this->id;
5192 5192
   }
5193 5193
   public function setName($name)
5194 5194
   {
5195
-    $this->name = $name;
5195
+	$this->name = $name;
5196 5196
   }
5197 5197
   public function getName()
5198 5198
   {
5199
-    return $this->name;
5199
+	return $this->name;
5200 5200
   }
5201 5201
 }
5202 5202
 
@@ -5211,11 +5211,11 @@  discard block
 block discarded – undo
5211 5211
 
5212 5212
   public function setProjects($projects)
5213 5213
   {
5214
-    $this->projects = $projects;
5214
+	$this->projects = $projects;
5215 5215
   }
5216 5216
   public function getProjects()
5217 5217
   {
5218
-    return $this->projects;
5218
+	return $this->projects;
5219 5219
   }
5220 5220
 }
5221 5221
 
@@ -5236,43 +5236,43 @@  discard block
 block discarded – undo
5236 5236
 
5237 5237
   public function setDescription($description)
5238 5238
   {
5239
-    $this->description = $description;
5239
+	$this->description = $description;
5240 5240
   }
5241 5241
   public function getDescription()
5242 5242
   {
5243
-    return $this->description;
5243
+	return $this->description;
5244 5244
   }
5245 5245
   public function setId($id)
5246 5246
   {
5247
-    $this->id = $id;
5247
+	$this->id = $id;
5248 5248
   }
5249 5249
   public function getId()
5250 5250
   {
5251
-    return $this->id;
5251
+	return $this->id;
5252 5252
   }
5253 5253
   public function setLayerType($layerType)
5254 5254
   {
5255
-    $this->layerType = $layerType;
5255
+	$this->layerType = $layerType;
5256 5256
   }
5257 5257
   public function getLayerType()
5258 5258
   {
5259
-    return $this->layerType;
5259
+	return $this->layerType;
5260 5260
   }
5261 5261
   public function setName($name)
5262 5262
   {
5263
-    $this->name = $name;
5263
+	$this->name = $name;
5264 5264
   }
5265 5265
   public function getName()
5266 5266
   {
5267
-    return $this->name;
5267
+	return $this->name;
5268 5268
   }
5269 5269
   public function setProjectId($projectId)
5270 5270
   {
5271
-    $this->projectId = $projectId;
5271
+	$this->projectId = $projectId;
5272 5272
   }
5273 5273
   public function getProjectId()
5274 5274
   {
5275
-    return $this->projectId;
5275
+	return $this->projectId;
5276 5276
   }
5277 5277
 }
5278 5278
 
@@ -5288,19 +5288,19 @@  discard block
 block discarded – undo
5288 5288
 
5289 5289
   public function setLayers($layers)
5290 5290
   {
5291
-    $this->layers = $layers;
5291
+	$this->layers = $layers;
5292 5292
   }
5293 5293
   public function getLayers()
5294 5294
   {
5295
-    return $this->layers;
5295
+	return $this->layers;
5296 5296
   }
5297 5297
   public function setNextPageToken($nextPageToken)
5298 5298
   {
5299
-    $this->nextPageToken = $nextPageToken;
5299
+	$this->nextPageToken = $nextPageToken;
5300 5300
   }
5301 5301
   public function getNextPageToken()
5302 5302
   {
5303
-    return $this->nextPageToken;
5303
+	return $this->nextPageToken;
5304 5304
   }
5305 5305
 }
5306 5306
 
@@ -5319,51 +5319,51 @@  discard block
 block discarded – undo
5319 5319
 
5320 5320
   public function setContents(Google_Service_MapsEngine_MapItem $contents)
5321 5321
   {
5322
-    $this->contents = $contents;
5322
+	$this->contents = $contents;
5323 5323
   }
5324 5324
   public function getContents()
5325 5325
   {
5326
-    return $this->contents;
5326
+	return $this->contents;
5327 5327
   }
5328 5328
   public function setDefaultViewport($defaultViewport)
5329 5329
   {
5330
-    $this->defaultViewport = $defaultViewport;
5330
+	$this->defaultViewport = $defaultViewport;
5331 5331
   }
5332 5332
   public function getDefaultViewport()
5333 5333
   {
5334
-    return $this->defaultViewport;
5334
+	return $this->defaultViewport;
5335 5335
   }
5336 5336
   public function setDescription($description)
5337 5337
   {
5338
-    $this->description = $description;
5338
+	$this->description = $description;
5339 5339
   }
5340 5340
   public function getDescription()
5341 5341
   {
5342
-    return $this->description;
5342
+	return $this->description;
5343 5343
   }
5344 5344
   public function setId($id)
5345 5345
   {
5346
-    $this->id = $id;
5346
+	$this->id = $id;
5347 5347
   }
5348 5348
   public function getId()
5349 5349
   {
5350
-    return $this->id;
5350
+	return $this->id;
5351 5351
   }
5352 5352
   public function setName($name)
5353 5353
   {
5354
-    $this->name = $name;
5354
+	$this->name = $name;
5355 5355
   }
5356 5356
   public function getName()
5357 5357
   {
5358
-    return $this->name;
5358
+	return $this->name;
5359 5359
   }
5360 5360
   public function setProjectId($projectId)
5361 5361
   {
5362
-    $this->projectId = $projectId;
5362
+	$this->projectId = $projectId;
5363 5363
   }
5364 5364
   public function getProjectId()
5365 5365
   {
5366
-    return $this->projectId;
5366
+	return $this->projectId;
5367 5367
   }
5368 5368
 }
5369 5369
 
@@ -5379,19 +5379,19 @@  discard block
 block discarded – undo
5379 5379
 
5380 5380
   public function setMaps($maps)
5381 5381
   {
5382
-    $this->maps = $maps;
5382
+	$this->maps = $maps;
5383 5383
   }
5384 5384
   public function getMaps()
5385 5385
   {
5386
-    return $this->maps;
5386
+	return $this->maps;
5387 5387
   }
5388 5388
   public function setNextPageToken($nextPageToken)
5389 5389
   {
5390
-    $this->nextPageToken = $nextPageToken;
5390
+	$this->nextPageToken = $nextPageToken;
5391 5391
   }
5392 5392
   public function getNextPageToken()
5393 5393
   {
5394
-    return $this->nextPageToken;
5394
+	return $this->nextPageToken;
5395 5395
   }
5396 5396
 }
5397 5397
 
@@ -5425,155 +5425,155 @@  discard block
 block discarded – undo
5425 5425
 
5426 5426
   public function setAcquisitionTime(Google_Service_MapsEngine_AcquisitionTime $acquisitionTime)
5427 5427
   {
5428
-    $this->acquisitionTime = $acquisitionTime;
5428
+	$this->acquisitionTime = $acquisitionTime;
5429 5429
   }
5430 5430
   public function getAcquisitionTime()
5431 5431
   {
5432
-    return $this->acquisitionTime;
5432
+	return $this->acquisitionTime;
5433 5433
   }
5434 5434
   public function setAttribution($attribution)
5435 5435
   {
5436
-    $this->attribution = $attribution;
5436
+	$this->attribution = $attribution;
5437 5437
   }
5438 5438
   public function getAttribution()
5439 5439
   {
5440
-    return $this->attribution;
5440
+	return $this->attribution;
5441 5441
   }
5442 5442
   public function setBbox($bbox)
5443 5443
   {
5444
-    $this->bbox = $bbox;
5444
+	$this->bbox = $bbox;
5445 5445
   }
5446 5446
   public function getBbox()
5447 5447
   {
5448
-    return $this->bbox;
5448
+	return $this->bbox;
5449 5449
   }
5450 5450
   public function setCreationTime($creationTime)
5451 5451
   {
5452
-    $this->creationTime = $creationTime;
5452
+	$this->creationTime = $creationTime;
5453 5453
   }
5454 5454
   public function getCreationTime()
5455 5455
   {
5456
-    return $this->creationTime;
5456
+	return $this->creationTime;
5457 5457
   }
5458 5458
   public function setCreatorEmail($creatorEmail)
5459 5459
   {
5460
-    $this->creatorEmail = $creatorEmail;
5460
+	$this->creatorEmail = $creatorEmail;
5461 5461
   }
5462 5462
   public function getCreatorEmail()
5463 5463
   {
5464
-    return $this->creatorEmail;
5464
+	return $this->creatorEmail;
5465 5465
   }
5466 5466
   public function setDescription($description)
5467 5467
   {
5468
-    $this->description = $description;
5468
+	$this->description = $description;
5469 5469
   }
5470 5470
   public function getDescription()
5471 5471
   {
5472
-    return $this->description;
5472
+	return $this->description;
5473 5473
   }
5474 5474
   public function setDraftAccessList($draftAccessList)
5475 5475
   {
5476
-    $this->draftAccessList = $draftAccessList;
5476
+	$this->draftAccessList = $draftAccessList;
5477 5477
   }
5478 5478
   public function getDraftAccessList()
5479 5479
   {
5480
-    return $this->draftAccessList;
5480
+	return $this->draftAccessList;
5481 5481
   }
5482 5482
   public function setEtag($etag)
5483 5483
   {
5484
-    $this->etag = $etag;
5484
+	$this->etag = $etag;
5485 5485
   }
5486 5486
   public function getEtag()
5487 5487
   {
5488
-    return $this->etag;
5488
+	return $this->etag;
5489 5489
   }
5490 5490
   public function setFiles($files)
5491 5491
   {
5492
-    $this->files = $files;
5492
+	$this->files = $files;
5493 5493
   }
5494 5494
   public function getFiles()
5495 5495
   {
5496
-    return $this->files;
5496
+	return $this->files;
5497 5497
   }
5498 5498
   public function setId($id)
5499 5499
   {
5500
-    $this->id = $id;
5500
+	$this->id = $id;
5501 5501
   }
5502 5502
   public function getId()
5503 5503
   {
5504
-    return $this->id;
5504
+	return $this->id;
5505 5505
   }
5506 5506
   public function setLastModifiedTime($lastModifiedTime)
5507 5507
   {
5508
-    $this->lastModifiedTime = $lastModifiedTime;
5508
+	$this->lastModifiedTime = $lastModifiedTime;
5509 5509
   }
5510 5510
   public function getLastModifiedTime()
5511 5511
   {
5512
-    return $this->lastModifiedTime;
5512
+	return $this->lastModifiedTime;
5513 5513
   }
5514 5514
   public function setLastModifierEmail($lastModifierEmail)
5515 5515
   {
5516
-    $this->lastModifierEmail = $lastModifierEmail;
5516
+	$this->lastModifierEmail = $lastModifierEmail;
5517 5517
   }
5518 5518
   public function getLastModifierEmail()
5519 5519
   {
5520
-    return $this->lastModifierEmail;
5520
+	return $this->lastModifierEmail;
5521 5521
   }
5522 5522
   public function setMaskType($maskType)
5523 5523
   {
5524
-    $this->maskType = $maskType;
5524
+	$this->maskType = $maskType;
5525 5525
   }
5526 5526
   public function getMaskType()
5527 5527
   {
5528
-    return $this->maskType;
5528
+	return $this->maskType;
5529 5529
   }
5530 5530
   public function setName($name)
5531 5531
   {
5532
-    $this->name = $name;
5532
+	$this->name = $name;
5533 5533
   }
5534 5534
   public function getName()
5535 5535
   {
5536
-    return $this->name;
5536
+	return $this->name;
5537 5537
   }
5538 5538
   public function setProcessingStatus($processingStatus)
5539 5539
   {
5540
-    $this->processingStatus = $processingStatus;
5540
+	$this->processingStatus = $processingStatus;
5541 5541
   }
5542 5542
   public function getProcessingStatus()
5543 5543
   {
5544
-    return $this->processingStatus;
5544
+	return $this->processingStatus;
5545 5545
   }
5546 5546
   public function setProjectId($projectId)
5547 5547
   {
5548
-    $this->projectId = $projectId;
5548
+	$this->projectId = $projectId;
5549 5549
   }
5550 5550
   public function getProjectId()
5551 5551
   {
5552
-    return $this->projectId;
5552
+	return $this->projectId;
5553 5553
   }
5554 5554
   public function setRasterType($rasterType)
5555 5555
   {
5556
-    $this->rasterType = $rasterType;
5556
+	$this->rasterType = $rasterType;
5557 5557
   }
5558 5558
   public function getRasterType()
5559 5559
   {
5560
-    return $this->rasterType;
5560
+	return $this->rasterType;
5561 5561
   }
5562 5562
   public function setTags($tags)
5563 5563
   {
5564
-    $this->tags = $tags;
5564
+	$this->tags = $tags;
5565 5565
   }
5566 5566
   public function getTags()
5567 5567
   {
5568
-    return $this->tags;
5568
+	return $this->tags;
5569 5569
   }
5570 5570
   public function setWritersCanEditPermissions($writersCanEditPermissions)
5571 5571
   {
5572
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
5572
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
5573 5573
   }
5574 5574
   public function getWritersCanEditPermissions()
5575 5575
   {
5576
-    return $this->writersCanEditPermissions;
5576
+	return $this->writersCanEditPermissions;
5577 5577
   }
5578 5578
 }
5579 5579
 
@@ -5603,139 +5603,139 @@  discard block
 block discarded – undo
5603 5603
 
5604 5604
   public function setAttribution($attribution)
5605 5605
   {
5606
-    $this->attribution = $attribution;
5606
+	$this->attribution = $attribution;
5607 5607
   }
5608 5608
   public function getAttribution()
5609 5609
   {
5610
-    return $this->attribution;
5610
+	return $this->attribution;
5611 5611
   }
5612 5612
   public function setBbox($bbox)
5613 5613
   {
5614
-    $this->bbox = $bbox;
5614
+	$this->bbox = $bbox;
5615 5615
   }
5616 5616
   public function getBbox()
5617 5617
   {
5618
-    return $this->bbox;
5618
+	return $this->bbox;
5619 5619
   }
5620 5620
   public function setCreationTime($creationTime)
5621 5621
   {
5622
-    $this->creationTime = $creationTime;
5622
+	$this->creationTime = $creationTime;
5623 5623
   }
5624 5624
   public function getCreationTime()
5625 5625
   {
5626
-    return $this->creationTime;
5626
+	return $this->creationTime;
5627 5627
   }
5628 5628
   public function setCreatorEmail($creatorEmail)
5629 5629
   {
5630
-    $this->creatorEmail = $creatorEmail;
5630
+	$this->creatorEmail = $creatorEmail;
5631 5631
   }
5632 5632
   public function getCreatorEmail()
5633 5633
   {
5634
-    return $this->creatorEmail;
5634
+	return $this->creatorEmail;
5635 5635
   }
5636 5636
   public function setDescription($description)
5637 5637
   {
5638
-    $this->description = $description;
5638
+	$this->description = $description;
5639 5639
   }
5640 5640
   public function getDescription()
5641 5641
   {
5642
-    return $this->description;
5642
+	return $this->description;
5643 5643
   }
5644 5644
   public function setDraftAccessList($draftAccessList)
5645 5645
   {
5646
-    $this->draftAccessList = $draftAccessList;
5646
+	$this->draftAccessList = $draftAccessList;
5647 5647
   }
5648 5648
   public function getDraftAccessList()
5649 5649
   {
5650
-    return $this->draftAccessList;
5650
+	return $this->draftAccessList;
5651 5651
   }
5652 5652
   public function setEtag($etag)
5653 5653
   {
5654
-    $this->etag = $etag;
5654
+	$this->etag = $etag;
5655 5655
   }
5656 5656
   public function getEtag()
5657 5657
   {
5658
-    return $this->etag;
5658
+	return $this->etag;
5659 5659
   }
5660 5660
   public function setId($id)
5661 5661
   {
5662
-    $this->id = $id;
5662
+	$this->id = $id;
5663 5663
   }
5664 5664
   public function getId()
5665 5665
   {
5666
-    return $this->id;
5666
+	return $this->id;
5667 5667
   }
5668 5668
   public function setLastModifiedTime($lastModifiedTime)
5669 5669
   {
5670
-    $this->lastModifiedTime = $lastModifiedTime;
5670
+	$this->lastModifiedTime = $lastModifiedTime;
5671 5671
   }
5672 5672
   public function getLastModifiedTime()
5673 5673
   {
5674
-    return $this->lastModifiedTime;
5674
+	return $this->lastModifiedTime;
5675 5675
   }
5676 5676
   public function setLastModifierEmail($lastModifierEmail)
5677 5677
   {
5678
-    $this->lastModifierEmail = $lastModifierEmail;
5678
+	$this->lastModifierEmail = $lastModifierEmail;
5679 5679
   }
5680 5680
   public function getLastModifierEmail()
5681 5681
   {
5682
-    return $this->lastModifierEmail;
5682
+	return $this->lastModifierEmail;
5683 5683
   }
5684 5684
   public function setMosaic($mosaic)
5685 5685
   {
5686
-    $this->mosaic = $mosaic;
5686
+	$this->mosaic = $mosaic;
5687 5687
   }
5688 5688
   public function getMosaic()
5689 5689
   {
5690
-    return $this->mosaic;
5690
+	return $this->mosaic;
5691 5691
   }
5692 5692
   public function setName($name)
5693 5693
   {
5694
-    $this->name = $name;
5694
+	$this->name = $name;
5695 5695
   }
5696 5696
   public function getName()
5697 5697
   {
5698
-    return $this->name;
5698
+	return $this->name;
5699 5699
   }
5700 5700
   public function setProcessingStatus($processingStatus)
5701 5701
   {
5702
-    $this->processingStatus = $processingStatus;
5702
+	$this->processingStatus = $processingStatus;
5703 5703
   }
5704 5704
   public function getProcessingStatus()
5705 5705
   {
5706
-    return $this->processingStatus;
5706
+	return $this->processingStatus;
5707 5707
   }
5708 5708
   public function setProjectId($projectId)
5709 5709
   {
5710
-    $this->projectId = $projectId;
5710
+	$this->projectId = $projectId;
5711 5711
   }
5712 5712
   public function getProjectId()
5713 5713
   {
5714
-    return $this->projectId;
5714
+	return $this->projectId;
5715 5715
   }
5716 5716
   public function setRasterType($rasterType)
5717 5717
   {
5718
-    $this->rasterType = $rasterType;
5718
+	$this->rasterType = $rasterType;
5719 5719
   }
5720 5720
   public function getRasterType()
5721 5721
   {
5722
-    return $this->rasterType;
5722
+	return $this->rasterType;
5723 5723
   }
5724 5724
   public function setTags($tags)
5725 5725
   {
5726
-    $this->tags = $tags;
5726
+	$this->tags = $tags;
5727 5727
   }
5728 5728
   public function getTags()
5729 5729
   {
5730
-    return $this->tags;
5730
+	return $this->tags;
5731 5731
   }
5732 5732
   public function setWritersCanEditPermissions($writersCanEditPermissions)
5733 5733
   {
5734
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
5734
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
5735 5735
   }
5736 5736
   public function getWritersCanEditPermissions()
5737 5737
   {
5738
-    return $this->writersCanEditPermissions;
5738
+	return $this->writersCanEditPermissions;
5739 5739
   }
5740 5740
 }
5741 5741
 
@@ -5751,19 +5751,19 @@  discard block
 block discarded – undo
5751 5751
 
5752 5752
   public function setNextPageToken($nextPageToken)
5753 5753
   {
5754
-    $this->nextPageToken = $nextPageToken;
5754
+	$this->nextPageToken = $nextPageToken;
5755 5755
   }
5756 5756
   public function getNextPageToken()
5757 5757
   {
5758
-    return $this->nextPageToken;
5758
+	return $this->nextPageToken;
5759 5759
   }
5760 5760
   public function setRasterCollections($rasterCollections)
5761 5761
   {
5762
-    $this->rasterCollections = $rasterCollections;
5762
+	$this->rasterCollections = $rasterCollections;
5763 5763
   }
5764 5764
   public function getRasterCollections()
5765 5765
   {
5766
-    return $this->rasterCollections;
5766
+	return $this->rasterCollections;
5767 5767
   }
5768 5768
 }
5769 5769
 
@@ -5785,75 +5785,75 @@  discard block
 block discarded – undo
5785 5785
 
5786 5786
   public function setBbox($bbox)
5787 5787
   {
5788
-    $this->bbox = $bbox;
5788
+	$this->bbox = $bbox;
5789 5789
   }
5790 5790
   public function getBbox()
5791 5791
   {
5792
-    return $this->bbox;
5792
+	return $this->bbox;
5793 5793
   }
5794 5794
   public function setCreationTime($creationTime)
5795 5795
   {
5796
-    $this->creationTime = $creationTime;
5796
+	$this->creationTime = $creationTime;
5797 5797
   }
5798 5798
   public function getCreationTime()
5799 5799
   {
5800
-    return $this->creationTime;
5800
+	return $this->creationTime;
5801 5801
   }
5802 5802
   public function setDescription($description)
5803 5803
   {
5804
-    $this->description = $description;
5804
+	$this->description = $description;
5805 5805
   }
5806 5806
   public function getDescription()
5807 5807
   {
5808
-    return $this->description;
5808
+	return $this->description;
5809 5809
   }
5810 5810
   public function setId($id)
5811 5811
   {
5812
-    $this->id = $id;
5812
+	$this->id = $id;
5813 5813
   }
5814 5814
   public function getId()
5815 5815
   {
5816
-    return $this->id;
5816
+	return $this->id;
5817 5817
   }
5818 5818
   public function setLastModifiedTime($lastModifiedTime)
5819 5819
   {
5820
-    $this->lastModifiedTime = $lastModifiedTime;
5820
+	$this->lastModifiedTime = $lastModifiedTime;
5821 5821
   }
5822 5822
   public function getLastModifiedTime()
5823 5823
   {
5824
-    return $this->lastModifiedTime;
5824
+	return $this->lastModifiedTime;
5825 5825
   }
5826 5826
   public function setName($name)
5827 5827
   {
5828
-    $this->name = $name;
5828
+	$this->name = $name;
5829 5829
   }
5830 5830
   public function getName()
5831 5831
   {
5832
-    return $this->name;
5832
+	return $this->name;
5833 5833
   }
5834 5834
   public function setProjectId($projectId)
5835 5835
   {
5836
-    $this->projectId = $projectId;
5836
+	$this->projectId = $projectId;
5837 5837
   }
5838 5838
   public function getProjectId()
5839 5839
   {
5840
-    return $this->projectId;
5840
+	return $this->projectId;
5841 5841
   }
5842 5842
   public function setRasterType($rasterType)
5843 5843
   {
5844
-    $this->rasterType = $rasterType;
5844
+	$this->rasterType = $rasterType;
5845 5845
   }
5846 5846
   public function getRasterType()
5847 5847
   {
5848
-    return $this->rasterType;
5848
+	return $this->rasterType;
5849 5849
   }
5850 5850
   public function setTags($tags)
5851 5851
   {
5852
-    $this->tags = $tags;
5852
+	$this->tags = $tags;
5853 5853
   }
5854 5854
   public function getTags()
5855 5855
   {
5856
-    return $this->tags;
5856
+	return $this->tags;
5857 5857
   }
5858 5858
 }
5859 5859
 
@@ -5867,11 +5867,11 @@  discard block
 block discarded – undo
5867 5867
 
5868 5868
   public function setIds($ids)
5869 5869
   {
5870
-    $this->ids = $ids;
5870
+	$this->ids = $ids;
5871 5871
   }
5872 5872
   public function getIds()
5873 5873
   {
5874
-    return $this->ids;
5874
+	return $this->ids;
5875 5875
   }
5876 5876
 }
5877 5877
 
@@ -5889,11 +5889,11 @@  discard block
 block discarded – undo
5889 5889
 
5890 5890
   public function setIds($ids)
5891 5891
   {
5892
-    $this->ids = $ids;
5892
+	$this->ids = $ids;
5893 5893
   }
5894 5894
   public function getIds()
5895 5895
   {
5896
-    return $this->ids;
5896
+	return $this->ids;
5897 5897
   }
5898 5898
 }
5899 5899
 
@@ -5913,19 +5913,19 @@  discard block
 block discarded – undo
5913 5913
 
5914 5914
   public function setNextPageToken($nextPageToken)
5915 5915
   {
5916
-    $this->nextPageToken = $nextPageToken;
5916
+	$this->nextPageToken = $nextPageToken;
5917 5917
   }
5918 5918
   public function getNextPageToken()
5919 5919
   {
5920
-    return $this->nextPageToken;
5920
+	return $this->nextPageToken;
5921 5921
   }
5922 5922
   public function setRasters($rasters)
5923 5923
   {
5924
-    $this->rasters = $rasters;
5924
+	$this->rasters = $rasters;
5925 5925
   }
5926 5926
   public function getRasters()
5927 5927
   {
5928
-    return $this->rasters;
5928
+	return $this->rasters;
5929 5929
   }
5930 5930
 }
5931 5931
 
@@ -5941,19 +5941,19 @@  discard block
 block discarded – undo
5941 5941
 
5942 5942
   public function setNextPageToken($nextPageToken)
5943 5943
   {
5944
-    $this->nextPageToken = $nextPageToken;
5944
+	$this->nextPageToken = $nextPageToken;
5945 5945
   }
5946 5946
   public function getNextPageToken()
5947 5947
   {
5948
-    return $this->nextPageToken;
5948
+	return $this->nextPageToken;
5949 5949
   }
5950 5950
   public function setRasters($rasters)
5951 5951
   {
5952
-    $this->rasters = $rasters;
5952
+	$this->rasters = $rasters;
5953 5953
   }
5954 5954
   public function getRasters()
5955 5955
   {
5956
-    return $this->rasters;
5956
+	return $this->rasters;
5957 5957
   }
5958 5958
 }
5959 5959
 
@@ -5970,27 +5970,27 @@  discard block
 block discarded – undo
5970 5970
 
5971 5971
   public function setBorder(Google_Service_MapsEngine_Border $border)
5972 5972
   {
5973
-    $this->border = $border;
5973
+	$this->border = $border;
5974 5974
   }
5975 5975
   public function getBorder()
5976 5976
   {
5977
-    return $this->border;
5977
+	return $this->border;
5978 5978
   }
5979 5979
   public function setFill(Google_Service_MapsEngine_Color $fill)
5980 5980
   {
5981
-    $this->fill = $fill;
5981
+	$this->fill = $fill;
5982 5982
   }
5983 5983
   public function getFill()
5984 5984
   {
5985
-    return $this->fill;
5985
+	return $this->fill;
5986 5986
   }
5987 5987
   public function setShape($shape)
5988 5988
   {
5989
-    $this->shape = $shape;
5989
+	$this->shape = $shape;
5990 5990
   }
5991 5991
   public function getShape()
5992 5992
   {
5993
-    return $this->shape;
5993
+	return $this->shape;
5994 5994
   }
5995 5995
 }
5996 5996
 
@@ -6008,35 +6008,35 @@  discard block
 block discarded – undo
6008 6008
 
6009 6009
   public function setColumn($column)
6010 6010
   {
6011
-    $this->column = $column;
6011
+	$this->column = $column;
6012 6012
   }
6013 6013
   public function getColumn()
6014 6014
   {
6015
-    return $this->column;
6015
+	return $this->column;
6016 6016
   }
6017 6017
   public function setScalingType($scalingType)
6018 6018
   {
6019
-    $this->scalingType = $scalingType;
6019
+	$this->scalingType = $scalingType;
6020 6020
   }
6021 6021
   public function getScalingType()
6022 6022
   {
6023
-    return $this->scalingType;
6023
+	return $this->scalingType;
6024 6024
   }
6025 6025
   public function setSizeRange(Google_Service_MapsEngine_SizeRange $sizeRange)
6026 6026
   {
6027
-    $this->sizeRange = $sizeRange;
6027
+	$this->sizeRange = $sizeRange;
6028 6028
   }
6029 6029
   public function getSizeRange()
6030 6030
   {
6031
-    return $this->sizeRange;
6031
+	return $this->sizeRange;
6032 6032
   }
6033 6033
   public function setValueRange(Google_Service_MapsEngine_ValueRange $valueRange)
6034 6034
   {
6035
-    $this->valueRange = $valueRange;
6035
+	$this->valueRange = $valueRange;
6036 6036
   }
6037 6037
   public function getValueRange()
6038 6038
   {
6039
-    return $this->valueRange;
6039
+	return $this->valueRange;
6040 6040
   }
6041 6041
 }
6042 6042
 
@@ -6053,27 +6053,27 @@  discard block
 block discarded – undo
6053 6053
 
6054 6054
   public function setColumns($columns)
6055 6055
   {
6056
-    $this->columns = $columns;
6056
+	$this->columns = $columns;
6057 6057
   }
6058 6058
   public function getColumns()
6059 6059
   {
6060
-    return $this->columns;
6060
+	return $this->columns;
6061 6061
   }
6062 6062
   public function setPrimaryGeometry($primaryGeometry)
6063 6063
   {
6064
-    $this->primaryGeometry = $primaryGeometry;
6064
+	$this->primaryGeometry = $primaryGeometry;
6065 6065
   }
6066 6066
   public function getPrimaryGeometry()
6067 6067
   {
6068
-    return $this->primaryGeometry;
6068
+	return $this->primaryGeometry;
6069 6069
   }
6070 6070
   public function setPrimaryKey($primaryKey)
6071 6071
   {
6072
-    $this->primaryKey = $primaryKey;
6072
+	$this->primaryKey = $primaryKey;
6073 6073
   }
6074 6074
   public function getPrimaryKey()
6075 6075
   {
6076
-    return $this->primaryKey;
6076
+	return $this->primaryKey;
6077 6077
   }
6078 6078
 }
6079 6079
 
@@ -6087,19 +6087,19 @@  discard block
 block discarded – undo
6087 6087
 
6088 6088
   public function setMax($max)
6089 6089
   {
6090
-    $this->max = $max;
6090
+	$this->max = $max;
6091 6091
   }
6092 6092
   public function getMax()
6093 6093
   {
6094
-    return $this->max;
6094
+	return $this->max;
6095 6095
   }
6096 6096
   public function setMin($min)
6097 6097
   {
6098
-    $this->min = $min;
6098
+	$this->min = $min;
6099 6099
   }
6100 6100
   public function getMin()
6101 6101
   {
6102
-    return $this->min;
6102
+	return $this->min;
6103 6103
   }
6104 6104
 }
6105 6105
 
@@ -6132,147 +6132,147 @@  discard block
 block discarded – undo
6132 6132
 
6133 6133
   public function setBbox($bbox)
6134 6134
   {
6135
-    $this->bbox = $bbox;
6135
+	$this->bbox = $bbox;
6136 6136
   }
6137 6137
   public function getBbox()
6138 6138
   {
6139
-    return $this->bbox;
6139
+	return $this->bbox;
6140 6140
   }
6141 6141
   public function setCreationTime($creationTime)
6142 6142
   {
6143
-    $this->creationTime = $creationTime;
6143
+	$this->creationTime = $creationTime;
6144 6144
   }
6145 6145
   public function getCreationTime()
6146 6146
   {
6147
-    return $this->creationTime;
6147
+	return $this->creationTime;
6148 6148
   }
6149 6149
   public function setCreatorEmail($creatorEmail)
6150 6150
   {
6151
-    $this->creatorEmail = $creatorEmail;
6151
+	$this->creatorEmail = $creatorEmail;
6152 6152
   }
6153 6153
   public function getCreatorEmail()
6154 6154
   {
6155
-    return $this->creatorEmail;
6155
+	return $this->creatorEmail;
6156 6156
   }
6157 6157
   public function setDescription($description)
6158 6158
   {
6159
-    $this->description = $description;
6159
+	$this->description = $description;
6160 6160
   }
6161 6161
   public function getDescription()
6162 6162
   {
6163
-    return $this->description;
6163
+	return $this->description;
6164 6164
   }
6165 6165
   public function setDraftAccessList($draftAccessList)
6166 6166
   {
6167
-    $this->draftAccessList = $draftAccessList;
6167
+	$this->draftAccessList = $draftAccessList;
6168 6168
   }
6169 6169
   public function getDraftAccessList()
6170 6170
   {
6171
-    return $this->draftAccessList;
6171
+	return $this->draftAccessList;
6172 6172
   }
6173 6173
   public function setEtag($etag)
6174 6174
   {
6175
-    $this->etag = $etag;
6175
+	$this->etag = $etag;
6176 6176
   }
6177 6177
   public function getEtag()
6178 6178
   {
6179
-    return $this->etag;
6179
+	return $this->etag;
6180 6180
   }
6181 6181
   public function setFiles($files)
6182 6182
   {
6183
-    $this->files = $files;
6183
+	$this->files = $files;
6184 6184
   }
6185 6185
   public function getFiles()
6186 6186
   {
6187
-    return $this->files;
6187
+	return $this->files;
6188 6188
   }
6189 6189
   public function setId($id)
6190 6190
   {
6191
-    $this->id = $id;
6191
+	$this->id = $id;
6192 6192
   }
6193 6193
   public function getId()
6194 6194
   {
6195
-    return $this->id;
6195
+	return $this->id;
6196 6196
   }
6197 6197
   public function setLastModifiedTime($lastModifiedTime)
6198 6198
   {
6199
-    $this->lastModifiedTime = $lastModifiedTime;
6199
+	$this->lastModifiedTime = $lastModifiedTime;
6200 6200
   }
6201 6201
   public function getLastModifiedTime()
6202 6202
   {
6203
-    return $this->lastModifiedTime;
6203
+	return $this->lastModifiedTime;
6204 6204
   }
6205 6205
   public function setLastModifierEmail($lastModifierEmail)
6206 6206
   {
6207
-    $this->lastModifierEmail = $lastModifierEmail;
6207
+	$this->lastModifierEmail = $lastModifierEmail;
6208 6208
   }
6209 6209
   public function getLastModifierEmail()
6210 6210
   {
6211
-    return $this->lastModifierEmail;
6211
+	return $this->lastModifierEmail;
6212 6212
   }
6213 6213
   public function setName($name)
6214 6214
   {
6215
-    $this->name = $name;
6215
+	$this->name = $name;
6216 6216
   }
6217 6217
   public function getName()
6218 6218
   {
6219
-    return $this->name;
6219
+	return $this->name;
6220 6220
   }
6221 6221
   public function setProcessingStatus($processingStatus)
6222 6222
   {
6223
-    $this->processingStatus = $processingStatus;
6223
+	$this->processingStatus = $processingStatus;
6224 6224
   }
6225 6225
   public function getProcessingStatus()
6226 6226
   {
6227
-    return $this->processingStatus;
6227
+	return $this->processingStatus;
6228 6228
   }
6229 6229
   public function setProjectId($projectId)
6230 6230
   {
6231
-    $this->projectId = $projectId;
6231
+	$this->projectId = $projectId;
6232 6232
   }
6233 6233
   public function getProjectId()
6234 6234
   {
6235
-    return $this->projectId;
6235
+	return $this->projectId;
6236 6236
   }
6237 6237
   public function setPublishedAccessList($publishedAccessList)
6238 6238
   {
6239
-    $this->publishedAccessList = $publishedAccessList;
6239
+	$this->publishedAccessList = $publishedAccessList;
6240 6240
   }
6241 6241
   public function getPublishedAccessList()
6242 6242
   {
6243
-    return $this->publishedAccessList;
6243
+	return $this->publishedAccessList;
6244 6244
   }
6245 6245
   public function setSchema(Google_Service_MapsEngine_Schema $schema)
6246 6246
   {
6247
-    $this->schema = $schema;
6247
+	$this->schema = $schema;
6248 6248
   }
6249 6249
   public function getSchema()
6250 6250
   {
6251
-    return $this->schema;
6251
+	return $this->schema;
6252 6252
   }
6253 6253
   public function setSourceEncoding($sourceEncoding)
6254 6254
   {
6255
-    $this->sourceEncoding = $sourceEncoding;
6255
+	$this->sourceEncoding = $sourceEncoding;
6256 6256
   }
6257 6257
   public function getSourceEncoding()
6258 6258
   {
6259
-    return $this->sourceEncoding;
6259
+	return $this->sourceEncoding;
6260 6260
   }
6261 6261
   public function setTags($tags)
6262 6262
   {
6263
-    $this->tags = $tags;
6263
+	$this->tags = $tags;
6264 6264
   }
6265 6265
   public function getTags()
6266 6266
   {
6267
-    return $this->tags;
6267
+	return $this->tags;
6268 6268
   }
6269 6269
   public function setWritersCanEditPermissions($writersCanEditPermissions)
6270 6270
   {
6271
-    $this->writersCanEditPermissions = $writersCanEditPermissions;
6271
+	$this->writersCanEditPermissions = $writersCanEditPermissions;
6272 6272
   }
6273 6273
   public function getWritersCanEditPermissions()
6274 6274
   {
6275
-    return $this->writersCanEditPermissions;
6275
+	return $this->writersCanEditPermissions;
6276 6276
   }
6277 6277
 }
6278 6278
 
@@ -6286,19 +6286,19 @@  discard block
 block discarded – undo
6286 6286
 
6287 6287
   public function setName($name)
6288 6288
   {
6289
-    $this->name = $name;
6289
+	$this->name = $name;
6290 6290
   }
6291 6291
   public function getName()
6292 6292
   {
6293
-    return $this->name;
6293
+	return $this->name;
6294 6294
   }
6295 6295
   public function setType($type)
6296 6296
   {
6297
-    $this->type = $type;
6297
+	$this->type = $type;
6298 6298
   }
6299 6299
   public function getType()
6300 6300
   {
6301
-    return $this->type;
6301
+	return $this->type;
6302 6302
   }
6303 6303
 }
6304 6304
 
@@ -6314,19 +6314,19 @@  discard block
 block discarded – undo
6314 6314
 
6315 6315
   public function setNextPageToken($nextPageToken)
6316 6316
   {
6317
-    $this->nextPageToken = $nextPageToken;
6317
+	$this->nextPageToken = $nextPageToken;
6318 6318
   }
6319 6319
   public function getNextPageToken()
6320 6320
   {
6321
-    return $this->nextPageToken;
6321
+	return $this->nextPageToken;
6322 6322
   }
6323 6323
   public function setTables($tables)
6324 6324
   {
6325
-    $this->tables = $tables;
6325
+	$this->tables = $tables;
6326 6326
   }
6327 6327
   public function getTables()
6328 6328
   {
6329
-    return $this->tables;
6329
+	return $this->tables;
6330 6330
   }
6331 6331
 }
6332 6332
 
@@ -6340,19 +6340,19 @@  discard block
 block discarded – undo
6340 6340
 
6341 6341
   public function setMax($max)
6342 6342
   {
6343
-    $this->max = $max;
6343
+	$this->max = $max;
6344 6344
   }
6345 6345
   public function getMax()
6346 6346
   {
6347
-    return $this->max;
6347
+	return $this->max;
6348 6348
   }
6349 6349
   public function setMin($min)
6350 6350
   {
6351
-    $this->min = $min;
6351
+	$this->min = $min;
6352 6352
   }
6353 6353
   public function getMin()
6354 6354
   {
6355
-    return $this->min;
6355
+	return $this->min;
6356 6356
   }
6357 6357
 }
6358 6358
 
@@ -6370,27 +6370,27 @@  discard block
 block discarded – undo
6370 6370
 
6371 6371
   public function setDisplayRules($displayRules)
6372 6372
   {
6373
-    $this->displayRules = $displayRules;
6373
+	$this->displayRules = $displayRules;
6374 6374
   }
6375 6375
   public function getDisplayRules()
6376 6376
   {
6377
-    return $this->displayRules;
6377
+	return $this->displayRules;
6378 6378
   }
6379 6379
   public function setFeatureInfo(Google_Service_MapsEngine_FeatureInfo $featureInfo)
6380 6380
   {
6381
-    $this->featureInfo = $featureInfo;
6381
+	$this->featureInfo = $featureInfo;
6382 6382
   }
6383 6383
   public function getFeatureInfo()
6384 6384
   {
6385
-    return $this->featureInfo;
6385
+	return $this->featureInfo;
6386 6386
   }
6387 6387
   public function setType($type)
6388 6388
   {
6389
-    $this->type = $type;
6389
+	$this->type = $type;
6390 6390
   }
6391 6391
   public function getType()
6392 6392
   {
6393
-    return $this->type;
6393
+	return $this->type;
6394 6394
   }
6395 6395
 }
6396 6396
 
@@ -6404,18 +6404,18 @@  discard block
 block discarded – undo
6404 6404
 
6405 6405
   public function setMax($max)
6406 6406
   {
6407
-    $this->max = $max;
6407
+	$this->max = $max;
6408 6408
   }
6409 6409
   public function getMax()
6410 6410
   {
6411
-    return $this->max;
6411
+	return $this->max;
6412 6412
   }
6413 6413
   public function setMin($min)
6414 6414
   {
6415
-    $this->min = $min;
6415
+	$this->min = $min;
6416 6416
   }
6417 6417
   public function getMin()
6418 6418
   {
6419
-    return $this->min;
6419
+	return $this->min;
6420 6420
   }
6421 6421
 }
Please login to merge, or discard this patch.
Spacing   +54 added lines, -54 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
                   'required' => true,
93 93
                 ),
94 94
               ),
95
-            ),'list' => array(
95
+            ), 'list' => array(
96 96
               'path' => 'assets',
97 97
               'httpMethod' => 'GET',
98 98
               'parameters' => array(
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
                   'required' => true,
218 218
                 ),
219 219
               ),
220
-            ),'create' => array(
220
+            ), 'create' => array(
221 221
               'path' => 'layers',
222 222
               'httpMethod' => 'POST',
223 223
               'parameters' => array(
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
                   'type' => 'boolean',
227 227
                 ),
228 228
               ),
229
-            ),'delete' => array(
229
+            ), 'delete' => array(
230 230
               'path' => 'layers/{id}',
231 231
               'httpMethod' => 'DELETE',
232 232
               'parameters' => array(
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
                   'required' => true,
237 237
                 ),
238 238
               ),
239
-            ),'get' => array(
239
+            ), 'get' => array(
240 240
               'path' => 'layers/{id}',
241 241
               'httpMethod' => 'GET',
242 242
               'parameters' => array(
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
                   'type' => 'string',
251 251
                 ),
252 252
               ),
253
-            ),'getPublished' => array(
253
+            ), 'getPublished' => array(
254 254
               'path' => 'layers/{id}/published',
255 255
               'httpMethod' => 'GET',
256 256
               'parameters' => array(
@@ -260,7 +260,7 @@  discard block
 block discarded – undo
260 260
                   'required' => true,
261 261
                 ),
262 262
               ),
263
-            ),'list' => array(
263
+            ), 'list' => array(
264 264
               'path' => 'layers',
265 265
               'httpMethod' => 'GET',
266 266
               'parameters' => array(
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
                   'type' => 'string',
318 318
                 ),
319 319
               ),
320
-            ),'listPublished' => array(
320
+            ), 'listPublished' => array(
321 321
               'path' => 'layers/published',
322 322
               'httpMethod' => 'GET',
323 323
               'parameters' => array(
@@ -334,7 +334,7 @@  discard block
 block discarded – undo
334 334
                   'type' => 'string',
335 335
                 ),
336 336
               ),
337
-            ),'patch' => array(
337
+            ), 'patch' => array(
338 338
               'path' => 'layers/{id}',
339 339
               'httpMethod' => 'PATCH',
340 340
               'parameters' => array(
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                   'required' => true,
345 345
                 ),
346 346
               ),
347
-            ),'process' => array(
347
+            ), 'process' => array(
348 348
               'path' => 'layers/{id}/process',
349 349
               'httpMethod' => 'POST',
350 350
               'parameters' => array(
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
                   'required' => true,
355 355
                 ),
356 356
               ),
357
-            ),'publish' => array(
357
+            ), 'publish' => array(
358 358
               'path' => 'layers/{id}/publish',
359 359
               'httpMethod' => 'POST',
360 360
               'parameters' => array(
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                   'type' => 'boolean',
369 369
                 ),
370 370
               ),
371
-            ),'unpublish' => array(
371
+            ), 'unpublish' => array(
372 372
               'path' => 'layers/{id}/unpublish',
373 373
               'httpMethod' => 'POST',
374 374
               'parameters' => array(
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
                   'required' => true,
427 427
                 ),
428 428
               ),
429
-            ),'batchUpdate' => array(
429
+            ), 'batchUpdate' => array(
430 430
               'path' => 'layers/{id}/permissions/batchUpdate',
431 431
               'httpMethod' => 'POST',
432 432
               'parameters' => array(
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
                   'required' => true,
437 437
                 ),
438 438
               ),
439
-            ),'list' => array(
439
+            ), 'list' => array(
440 440
               'path' => 'layers/{id}/permissions',
441 441
               'httpMethod' => 'GET',
442 442
               'parameters' => array(
@@ -460,7 +460,7 @@  discard block
 block discarded – undo
460 460
               'path' => 'maps',
461 461
               'httpMethod' => 'POST',
462 462
               'parameters' => array(),
463
-            ),'delete' => array(
463
+            ), 'delete' => array(
464 464
               'path' => 'maps/{id}',
465 465
               'httpMethod' => 'DELETE',
466 466
               'parameters' => array(
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
                   'required' => true,
471 471
                 ),
472 472
               ),
473
-            ),'get' => array(
473
+            ), 'get' => array(
474 474
               'path' => 'maps/{id}',
475 475
               'httpMethod' => 'GET',
476 476
               'parameters' => array(
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
                   'type' => 'string',
485 485
                 ),
486 486
               ),
487
-            ),'getPublished' => array(
487
+            ), 'getPublished' => array(
488 488
               'path' => 'maps/{id}/published',
489 489
               'httpMethod' => 'GET',
490 490
               'parameters' => array(
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
                   'required' => true,
495 495
                 ),
496 496
               ),
497
-            ),'list' => array(
497
+            ), 'list' => array(
498 498
               'path' => 'maps',
499 499
               'httpMethod' => 'GET',
500 500
               'parameters' => array(
@@ -551,7 +551,7 @@  discard block
 block discarded – undo
551 551
                   'type' => 'string',
552 552
                 ),
553 553
               ),
554
-            ),'listPublished' => array(
554
+            ), 'listPublished' => array(
555 555
               'path' => 'maps/published',
556 556
               'httpMethod' => 'GET',
557 557
               'parameters' => array(
@@ -568,7 +568,7 @@  discard block
 block discarded – undo
568 568
                   'type' => 'string',
569 569
                 ),
570 570
               ),
571
-            ),'patch' => array(
571
+            ), 'patch' => array(
572 572
               'path' => 'maps/{id}',
573 573
               'httpMethod' => 'PATCH',
574 574
               'parameters' => array(
@@ -578,7 +578,7 @@  discard block
 block discarded – undo
578 578
                   'required' => true,
579 579
                 ),
580 580
               ),
581
-            ),'publish' => array(
581
+            ), 'publish' => array(
582 582
               'path' => 'maps/{id}/publish',
583 583
               'httpMethod' => 'POST',
584 584
               'parameters' => array(
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
                   'type' => 'boolean',
593 593
                 ),
594 594
               ),
595
-            ),'unpublish' => array(
595
+            ), 'unpublish' => array(
596 596
               'path' => 'maps/{id}/unpublish',
597 597
               'httpMethod' => 'POST',
598 598
               'parameters' => array(
@@ -622,7 +622,7 @@  discard block
 block discarded – undo
622 622
                   'required' => true,
623 623
                 ),
624 624
               ),
625
-            ),'batchUpdate' => array(
625
+            ), 'batchUpdate' => array(
626 626
               'path' => 'maps/{id}/permissions/batchUpdate',
627 627
               'httpMethod' => 'POST',
628 628
               'parameters' => array(
@@ -632,7 +632,7 @@  discard block
 block discarded – undo
632 632
                   'required' => true,
633 633
                 ),
634 634
               ),
635
-            ),'list' => array(
635
+            ), 'list' => array(
636 636
               'path' => 'maps/{id}/permissions',
637 637
               'httpMethod' => 'GET',
638 638
               'parameters' => array(
@@ -676,7 +676,7 @@  discard block
 block discarded – undo
676 676
                   'required' => true,
677 677
                 ),
678 678
               ),
679
-            ),'get' => array(
679
+            ), 'get' => array(
680 680
               'path' => 'projects/{projectId}/icons/{id}',
681 681
               'httpMethod' => 'GET',
682 682
               'parameters' => array(
@@ -691,7 +691,7 @@  discard block
 block discarded – undo
691 691
                   'required' => true,
692 692
                 ),
693 693
               ),
694
-            ),'list' => array(
694
+            ), 'list' => array(
695 695
               'path' => 'projects/{projectId}/icons',
696 696
               'httpMethod' => 'GET',
697 697
               'parameters' => array(
@@ -729,11 +729,11 @@  discard block
 block discarded – undo
729 729
                   'required' => true,
730 730
                 ),
731 731
               ),
732
-            ),'create' => array(
732
+            ), 'create' => array(
733 733
               'path' => 'rasterCollections',
734 734
               'httpMethod' => 'POST',
735 735
               'parameters' => array(),
736
-            ),'delete' => array(
736
+            ), 'delete' => array(
737 737
               'path' => 'rasterCollections/{id}',
738 738
               'httpMethod' => 'DELETE',
739 739
               'parameters' => array(
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
                   'required' => true,
744 744
                 ),
745 745
               ),
746
-            ),'get' => array(
746
+            ), 'get' => array(
747 747
               'path' => 'rasterCollections/{id}',
748 748
               'httpMethod' => 'GET',
749 749
               'parameters' => array(
@@ -753,7 +753,7 @@  discard block
 block discarded – undo
753 753
                   'required' => true,
754 754
                 ),
755 755
               ),
756
-            ),'list' => array(
756
+            ), 'list' => array(
757 757
               'path' => 'rasterCollections',
758 758
               'httpMethod' => 'GET',
759 759
               'parameters' => array(
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
                   'type' => 'string',
811 811
                 ),
812 812
               ),
813
-            ),'patch' => array(
813
+            ), 'patch' => array(
814 814
               'path' => 'rasterCollections/{id}',
815 815
               'httpMethod' => 'PATCH',
816 816
               'parameters' => array(
@@ -820,7 +820,7 @@  discard block
 block discarded – undo
820 820
                   'required' => true,
821 821
                 ),
822 822
               ),
823
-            ),'process' => array(
823
+            ), 'process' => array(
824 824
               'path' => 'rasterCollections/{id}/process',
825 825
               'httpMethod' => 'POST',
826 826
               'parameters' => array(
@@ -878,7 +878,7 @@  discard block
 block discarded – undo
878 878
                   'required' => true,
879 879
                 ),
880 880
               ),
881
-            ),'batchUpdate' => array(
881
+            ), 'batchUpdate' => array(
882 882
               'path' => 'rasterCollections/{id}/permissions/batchUpdate',
883 883
               'httpMethod' => 'POST',
884 884
               'parameters' => array(
@@ -888,7 +888,7 @@  discard block
 block discarded – undo
888 888
                   'required' => true,
889 889
                 ),
890 890
               ),
891
-            ),'list' => array(
891
+            ), 'list' => array(
892 892
               'path' => 'rasterCollections/{id}/permissions',
893 893
               'httpMethod' => 'GET',
894 894
               'parameters' => array(
@@ -918,7 +918,7 @@  discard block
 block discarded – undo
918 918
                   'required' => true,
919 919
                 ),
920 920
               ),
921
-            ),'batchInsert' => array(
921
+            ), 'batchInsert' => array(
922 922
               'path' => 'rasterCollections/{id}/rasters/batchInsert',
923 923
               'httpMethod' => 'POST',
924 924
               'parameters' => array(
@@ -928,7 +928,7 @@  discard block
 block discarded – undo
928 928
                   'required' => true,
929 929
                 ),
930 930
               ),
931
-            ),'list' => array(
931
+            ), 'list' => array(
932 932
               'path' => 'rasterCollections/{id}/rasters',
933 933
               'httpMethod' => 'GET',
934 934
               'parameters' => array(
@@ -1002,7 +1002,7 @@  discard block
 block discarded – undo
1002 1002
                   'required' => true,
1003 1003
                 ),
1004 1004
               ),
1005
-            ),'get' => array(
1005
+            ), 'get' => array(
1006 1006
               'path' => 'rasters/{id}',
1007 1007
               'httpMethod' => 'GET',
1008 1008
               'parameters' => array(
@@ -1012,7 +1012,7 @@  discard block
 block discarded – undo
1012 1012
                   'required' => true,
1013 1013
                 ),
1014 1014
               ),
1015
-            ),'list' => array(
1015
+            ), 'list' => array(
1016 1016
               'path' => 'rasters',
1017 1017
               'httpMethod' => 'GET',
1018 1018
               'parameters' => array(
@@ -1070,7 +1070,7 @@  discard block
 block discarded – undo
1070 1070
                   'type' => 'string',
1071 1071
                 ),
1072 1072
               ),
1073
-            ),'patch' => array(
1073
+            ), 'patch' => array(
1074 1074
               'path' => 'rasters/{id}',
1075 1075
               'httpMethod' => 'PATCH',
1076 1076
               'parameters' => array(
@@ -1080,7 +1080,7 @@  discard block
 block discarded – undo
1080 1080
                   'required' => true,
1081 1081
                 ),
1082 1082
               ),
1083
-            ),'process' => array(
1083
+            ), 'process' => array(
1084 1084
               'path' => 'rasters/{id}/process',
1085 1085
               'httpMethod' => 'POST',
1086 1086
               'parameters' => array(
@@ -1090,7 +1090,7 @@  discard block
 block discarded – undo
1090 1090
                   'required' => true,
1091 1091
                 ),
1092 1092
               ),
1093
-            ),'upload' => array(
1093
+            ), 'upload' => array(
1094 1094
               'path' => 'rasters/upload',
1095 1095
               'httpMethod' => 'POST',
1096 1096
               'parameters' => array(),
@@ -1167,7 +1167,7 @@  discard block
 block discarded – undo
1167 1167
                   'required' => true,
1168 1168
                 ),
1169 1169
               ),
1170
-            ),'batchUpdate' => array(
1170
+            ), 'batchUpdate' => array(
1171 1171
               'path' => 'rasters/{id}/permissions/batchUpdate',
1172 1172
               'httpMethod' => 'POST',
1173 1173
               'parameters' => array(
@@ -1177,7 +1177,7 @@  discard block
 block discarded – undo
1177 1177
                   'required' => true,
1178 1178
                 ),
1179 1179
               ),
1180
-            ),'list' => array(
1180
+            ), 'list' => array(
1181 1181
               'path' => 'rasters/{id}/permissions',
1182 1182
               'httpMethod' => 'GET',
1183 1183
               'parameters' => array(
@@ -1201,7 +1201,7 @@  discard block
 block discarded – undo
1201 1201
               'path' => 'tables',
1202 1202
               'httpMethod' => 'POST',
1203 1203
               'parameters' => array(),
1204
-            ),'delete' => array(
1204
+            ), 'delete' => array(
1205 1205
               'path' => 'tables/{id}',
1206 1206
               'httpMethod' => 'DELETE',
1207 1207
               'parameters' => array(
@@ -1211,7 +1211,7 @@  discard block
 block discarded – undo
1211 1211
                   'required' => true,
1212 1212
                 ),
1213 1213
               ),
1214
-            ),'get' => array(
1214
+            ), 'get' => array(
1215 1215
               'path' => 'tables/{id}',
1216 1216
               'httpMethod' => 'GET',
1217 1217
               'parameters' => array(
@@ -1225,7 +1225,7 @@  discard block
 block discarded – undo
1225 1225
                   'type' => 'string',
1226 1226
                 ),
1227 1227
               ),
1228
-            ),'list' => array(
1228
+            ), 'list' => array(
1229 1229
               'path' => 'tables',
1230 1230
               'httpMethod' => 'GET',
1231 1231
               'parameters' => array(
@@ -1282,7 +1282,7 @@  discard block
 block discarded – undo
1282 1282
                   'type' => 'string',
1283 1283
                 ),
1284 1284
               ),
1285
-            ),'patch' => array(
1285
+            ), 'patch' => array(
1286 1286
               'path' => 'tables/{id}',
1287 1287
               'httpMethod' => 'PATCH',
1288 1288
               'parameters' => array(
@@ -1292,7 +1292,7 @@  discard block
 block discarded – undo
1292 1292
                   'required' => true,
1293 1293
                 ),
1294 1294
               ),
1295
-            ),'process' => array(
1295
+            ), 'process' => array(
1296 1296
               'path' => 'tables/{id}/process',
1297 1297
               'httpMethod' => 'POST',
1298 1298
               'parameters' => array(
@@ -1302,7 +1302,7 @@  discard block
 block discarded – undo
1302 1302
                   'required' => true,
1303 1303
                 ),
1304 1304
               ),
1305
-            ),'upload' => array(
1305
+            ), 'upload' => array(
1306 1306
               'path' => 'tables/upload',
1307 1307
               'httpMethod' => 'POST',
1308 1308
               'parameters' => array(),
@@ -1326,7 +1326,7 @@  discard block
 block discarded – undo
1326 1326
                   'required' => true,
1327 1327
                 ),
1328 1328
               ),
1329
-            ),'batchInsert' => array(
1329
+            ), 'batchInsert' => array(
1330 1330
               'path' => 'tables/{id}/features/batchInsert',
1331 1331
               'httpMethod' => 'POST',
1332 1332
               'parameters' => array(
@@ -1336,7 +1336,7 @@  discard block
 block discarded – undo
1336 1336
                   'required' => true,
1337 1337
                 ),
1338 1338
               ),
1339
-            ),'batchPatch' => array(
1339
+            ), 'batchPatch' => array(
1340 1340
               'path' => 'tables/{id}/features/batchPatch',
1341 1341
               'httpMethod' => 'POST',
1342 1342
               'parameters' => array(
@@ -1346,7 +1346,7 @@  discard block
 block discarded – undo
1346 1346
                   'required' => true,
1347 1347
                 ),
1348 1348
               ),
1349
-            ),'get' => array(
1349
+            ), 'get' => array(
1350 1350
               'path' => 'tables/{tableId}/features/{id}',
1351 1351
               'httpMethod' => 'GET',
1352 1352
               'parameters' => array(
@@ -1369,7 +1369,7 @@  discard block
 block discarded – undo
1369 1369
                   'type' => 'string',
1370 1370
                 ),
1371 1371
               ),
1372
-            ),'list' => array(
1372
+            ), 'list' => array(
1373 1373
               'path' => 'tables/{id}/features',
1374 1374
               'httpMethod' => 'GET',
1375 1375
               'parameters' => array(
@@ -1488,7 +1488,7 @@  discard block
 block discarded – undo
1488 1488
                   'required' => true,
1489 1489
                 ),
1490 1490
               ),
1491
-            ),'batchUpdate' => array(
1491
+            ), 'batchUpdate' => array(
1492 1492
               'path' => 'tables/{id}/permissions/batchUpdate',
1493 1493
               'httpMethod' => 'POST',
1494 1494
               'parameters' => array(
@@ -1498,7 +1498,7 @@  discard block
 block discarded – undo
1498 1498
                   'required' => true,
1499 1499
                 ),
1500 1500
               ),
1501
-            ),'list' => array(
1501
+            ), 'list' => array(
1502 1502
               'path' => 'tables/{id}/permissions',
1503 1503
               'httpMethod' => 'GET',
1504 1504
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Mirror.php 3 patches
Doc Comments   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -399,7 +399,7 @@  discard block
 block discarded – undo
399 399
    * Manager.
400 400
    * @param string $accountName The name of the account to be passed to the
401 401
    * Android Account Manager.
402
-   * @param Google_Account $postBody
402
+   * @param Google_Service_Mirror_Account $postBody
403 403
    * @param array $optParams Optional parameters.
404 404
    * @return Google_Service_Mirror_Account
405 405
    */
@@ -452,7 +452,7 @@  discard block
 block discarded – undo
452 452
   /**
453 453
    * Inserts a new contact. (contacts.insert)
454 454
    *
455
-   * @param Google_Contact $postBody
455
+   * @param Google_Service_Mirror_Contact $postBody
456 456
    * @param array $optParams Optional parameters.
457 457
    * @return Google_Service_Mirror_Contact
458 458
    */
@@ -482,7 +482,7 @@  discard block
 block discarded – undo
482 482
    * (contacts.patch)
483 483
    *
484 484
    * @param string $id The ID of the contact.
485
-   * @param Google_Contact $postBody
485
+   * @param Google_Service_Mirror_Contact $postBody
486 486
    * @param array $optParams Optional parameters.
487 487
    * @return Google_Service_Mirror_Contact
488 488
    */
@@ -497,7 +497,7 @@  discard block
 block discarded – undo
497 497
    * Updates a contact in place. (contacts.update)
498 498
    *
499 499
    * @param string $id The ID of the contact.
500
-   * @param Google_Contact $postBody
500
+   * @param Google_Service_Mirror_Contact $postBody
501 501
    * @param array $optParams Optional parameters.
502 502
    * @return Google_Service_Mirror_Contact
503 503
    */
@@ -606,7 +606,7 @@  discard block
 block discarded – undo
606 606
   /**
607 607
    * Creates a new subscription. (subscriptions.insert)
608 608
    *
609
-   * @param Google_Subscription $postBody
609
+   * @param Google_Service_Mirror_Subscription $postBody
610 610
    * @param array $optParams Optional parameters.
611 611
    * @return Google_Service_Mirror_Subscription
612 612
    */
@@ -635,7 +635,7 @@  discard block
 block discarded – undo
635 635
    * Updates an existing subscription in place. (subscriptions.update)
636 636
    *
637 637
    * @param string $id The ID of the subscription.
638
-   * @param Google_Subscription $postBody
638
+   * @param Google_Service_Mirror_Subscription $postBody
639 639
    * @param array $optParams Optional parameters.
640 640
    * @return Google_Service_Mirror_Subscription
641 641
    */
@@ -688,7 +688,7 @@  discard block
 block discarded – undo
688 688
   /**
689 689
    * Inserts a new item into the timeline. (timeline.insert)
690 690
    *
691
-   * @param Google_TimelineItem $postBody
691
+   * @param Google_Service_Mirror_TimelineItem $postBody
692 692
    * @param array $optParams Optional parameters.
693 693
    * @return Google_Service_Mirror_TimelineItem
694 694
    */
@@ -731,7 +731,7 @@  discard block
 block discarded – undo
731 731
    * (timeline.patch)
732 732
    *
733 733
    * @param string $id The ID of the timeline item.
734
-   * @param Google_TimelineItem $postBody
734
+   * @param Google_Service_Mirror_TimelineItem $postBody
735 735
    * @param array $optParams Optional parameters.
736 736
    * @return Google_Service_Mirror_TimelineItem
737 737
    */
@@ -746,7 +746,7 @@  discard block
 block discarded – undo
746 746
    * Updates a timeline item in place. (timeline.update)
747 747
    *
748 748
    * @param string $id The ID of the timeline item.
749
-   * @param Google_TimelineItem $postBody
749
+   * @param Google_Service_Mirror_TimelineItem $postBody
750 750
    * @param array $optParams Optional parameters.
751 751
    * @return Google_Service_Mirror_TimelineItem
752 752
    */
Please login to merge, or discard this patch.
Indentation   +600 added lines, -600 removed lines patch added patch discarded remove patch
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View your location. */
34 34
   const GLASS_LOCATION =
35
-      "https://www.googleapis.com/auth/glass.location";
35
+	  "https://www.googleapis.com/auth/glass.location";
36 36
   /** View and manage your Glass timeline. */
37 37
   const GLASS_TIMELINE =
38
-      "https://www.googleapis.com/auth/glass.timeline";
38
+	  "https://www.googleapis.com/auth/glass.timeline";
39 39
 
40 40
   public $accounts;
41 41
   public $contacts;
@@ -53,329 +53,329 @@  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 = 'mirror/v1/';
59
-    $this->version = 'v1';
60
-    $this->serviceName = 'mirror';
61
-
62
-    $this->accounts = new Google_Service_Mirror_Accounts_Resource(
63
-        $this,
64
-        $this->serviceName,
65
-        'accounts',
66
-        array(
67
-          'methods' => array(
68
-            'insert' => array(
69
-              'path' => 'accounts/{userToken}/{accountType}/{accountName}',
70
-              'httpMethod' => 'POST',
71
-              'parameters' => array(
72
-                'userToken' => array(
73
-                  'location' => 'path',
74
-                  'type' => 'string',
75
-                  'required' => true,
76
-                ),
77
-                'accountType' => array(
78
-                  'location' => 'path',
79
-                  'type' => 'string',
80
-                  'required' => true,
81
-                ),
82
-                'accountName' => array(
83
-                  'location' => 'path',
84
-                  'type' => 'string',
85
-                  'required' => true,
86
-                ),
87
-              ),
88
-            ),
89
-          )
90
-        )
91
-    );
92
-    $this->contacts = new Google_Service_Mirror_Contacts_Resource(
93
-        $this,
94
-        $this->serviceName,
95
-        'contacts',
96
-        array(
97
-          'methods' => array(
98
-            'delete' => array(
99
-              'path' => 'contacts/{id}',
100
-              'httpMethod' => 'DELETE',
101
-              'parameters' => array(
102
-                'id' => array(
103
-                  'location' => 'path',
104
-                  'type' => 'string',
105
-                  'required' => true,
106
-                ),
107
-              ),
108
-            ),'get' => array(
109
-              'path' => 'contacts/{id}',
110
-              'httpMethod' => 'GET',
111
-              'parameters' => array(
112
-                'id' => array(
113
-                  'location' => 'path',
114
-                  'type' => 'string',
115
-                  'required' => true,
116
-                ),
117
-              ),
118
-            ),'insert' => array(
119
-              'path' => 'contacts',
120
-              'httpMethod' => 'POST',
121
-              'parameters' => array(),
122
-            ),'list' => array(
123
-              'path' => 'contacts',
124
-              'httpMethod' => 'GET',
125
-              'parameters' => array(),
126
-            ),'patch' => array(
127
-              'path' => 'contacts/{id}',
128
-              'httpMethod' => 'PATCH',
129
-              'parameters' => array(
130
-                'id' => array(
131
-                  'location' => 'path',
132
-                  'type' => 'string',
133
-                  'required' => true,
134
-                ),
135
-              ),
136
-            ),'update' => array(
137
-              'path' => 'contacts/{id}',
138
-              'httpMethod' => 'PUT',
139
-              'parameters' => array(
140
-                'id' => array(
141
-                  'location' => 'path',
142
-                  'type' => 'string',
143
-                  'required' => true,
144
-                ),
145
-              ),
146
-            ),
147
-          )
148
-        )
149
-    );
150
-    $this->locations = new Google_Service_Mirror_Locations_Resource(
151
-        $this,
152
-        $this->serviceName,
153
-        'locations',
154
-        array(
155
-          'methods' => array(
156
-            'get' => array(
157
-              'path' => 'locations/{id}',
158
-              'httpMethod' => 'GET',
159
-              'parameters' => array(
160
-                'id' => array(
161
-                  'location' => 'path',
162
-                  'type' => 'string',
163
-                  'required' => true,
164
-                ),
165
-              ),
166
-            ),'list' => array(
167
-              'path' => 'locations',
168
-              'httpMethod' => 'GET',
169
-              'parameters' => array(),
170
-            ),
171
-          )
172
-        )
173
-    );
174
-    $this->settings = new Google_Service_Mirror_Settings_Resource(
175
-        $this,
176
-        $this->serviceName,
177
-        'settings',
178
-        array(
179
-          'methods' => array(
180
-            'get' => array(
181
-              'path' => 'settings/{id}',
182
-              'httpMethod' => 'GET',
183
-              'parameters' => array(
184
-                'id' => array(
185
-                  'location' => 'path',
186
-                  'type' => 'string',
187
-                  'required' => true,
188
-                ),
189
-              ),
190
-            ),
191
-          )
192
-        )
193
-    );
194
-    $this->subscriptions = new Google_Service_Mirror_Subscriptions_Resource(
195
-        $this,
196
-        $this->serviceName,
197
-        'subscriptions',
198
-        array(
199
-          'methods' => array(
200
-            'delete' => array(
201
-              'path' => 'subscriptions/{id}',
202
-              'httpMethod' => 'DELETE',
203
-              'parameters' => array(
204
-                'id' => array(
205
-                  'location' => 'path',
206
-                  'type' => 'string',
207
-                  'required' => true,
208
-                ),
209
-              ),
210
-            ),'insert' => array(
211
-              'path' => 'subscriptions',
212
-              'httpMethod' => 'POST',
213
-              'parameters' => array(),
214
-            ),'list' => array(
215
-              'path' => 'subscriptions',
216
-              'httpMethod' => 'GET',
217
-              'parameters' => array(),
218
-            ),'update' => array(
219
-              'path' => 'subscriptions/{id}',
220
-              'httpMethod' => 'PUT',
221
-              'parameters' => array(
222
-                'id' => array(
223
-                  'location' => 'path',
224
-                  'type' => 'string',
225
-                  'required' => true,
226
-                ),
227
-              ),
228
-            ),
229
-          )
230
-        )
231
-    );
232
-    $this->timeline = new Google_Service_Mirror_Timeline_Resource(
233
-        $this,
234
-        $this->serviceName,
235
-        'timeline',
236
-        array(
237
-          'methods' => array(
238
-            'delete' => array(
239
-              'path' => 'timeline/{id}',
240
-              'httpMethod' => 'DELETE',
241
-              'parameters' => array(
242
-                'id' => array(
243
-                  'location' => 'path',
244
-                  'type' => 'string',
245
-                  'required' => true,
246
-                ),
247
-              ),
248
-            ),'get' => array(
249
-              'path' => 'timeline/{id}',
250
-              'httpMethod' => 'GET',
251
-              'parameters' => array(
252
-                'id' => array(
253
-                  'location' => 'path',
254
-                  'type' => 'string',
255
-                  'required' => true,
256
-                ),
257
-              ),
258
-            ),'insert' => array(
259
-              'path' => 'timeline',
260
-              'httpMethod' => 'POST',
261
-              'parameters' => array(),
262
-            ),'list' => array(
263
-              'path' => 'timeline',
264
-              'httpMethod' => 'GET',
265
-              'parameters' => array(
266
-                'orderBy' => array(
267
-                  'location' => 'query',
268
-                  'type' => 'string',
269
-                ),
270
-                'includeDeleted' => array(
271
-                  'location' => 'query',
272
-                  'type' => 'boolean',
273
-                ),
274
-                'maxResults' => array(
275
-                  'location' => 'query',
276
-                  'type' => 'integer',
277
-                ),
278
-                'pageToken' => array(
279
-                  'location' => 'query',
280
-                  'type' => 'string',
281
-                ),
282
-                'sourceItemId' => array(
283
-                  'location' => 'query',
284
-                  'type' => 'string',
285
-                ),
286
-                'pinnedOnly' => array(
287
-                  'location' => 'query',
288
-                  'type' => 'boolean',
289
-                ),
290
-                'bundleId' => array(
291
-                  'location' => 'query',
292
-                  'type' => 'string',
293
-                ),
294
-              ),
295
-            ),'patch' => array(
296
-              'path' => 'timeline/{id}',
297
-              'httpMethod' => 'PATCH',
298
-              'parameters' => array(
299
-                'id' => array(
300
-                  'location' => 'path',
301
-                  'type' => 'string',
302
-                  'required' => true,
303
-                ),
304
-              ),
305
-            ),'update' => array(
306
-              'path' => 'timeline/{id}',
307
-              'httpMethod' => 'PUT',
308
-              'parameters' => array(
309
-                'id' => array(
310
-                  'location' => 'path',
311
-                  'type' => 'string',
312
-                  'required' => true,
313
-                ),
314
-              ),
315
-            ),
316
-          )
317
-        )
318
-    );
319
-    $this->timeline_attachments = new Google_Service_Mirror_TimelineAttachments_Resource(
320
-        $this,
321
-        $this->serviceName,
322
-        'attachments',
323
-        array(
324
-          'methods' => array(
325
-            'delete' => array(
326
-              'path' => 'timeline/{itemId}/attachments/{attachmentId}',
327
-              'httpMethod' => 'DELETE',
328
-              'parameters' => array(
329
-                'itemId' => array(
330
-                  'location' => 'path',
331
-                  'type' => 'string',
332
-                  'required' => true,
333
-                ),
334
-                'attachmentId' => array(
335
-                  'location' => 'path',
336
-                  'type' => 'string',
337
-                  'required' => true,
338
-                ),
339
-              ),
340
-            ),'get' => array(
341
-              'path' => 'timeline/{itemId}/attachments/{attachmentId}',
342
-              'httpMethod' => 'GET',
343
-              'parameters' => array(
344
-                'itemId' => array(
345
-                  'location' => 'path',
346
-                  'type' => 'string',
347
-                  'required' => true,
348
-                ),
349
-                'attachmentId' => array(
350
-                  'location' => 'path',
351
-                  'type' => 'string',
352
-                  'required' => true,
353
-                ),
354
-              ),
355
-            ),'insert' => array(
356
-              'path' => 'timeline/{itemId}/attachments',
357
-              'httpMethod' => 'POST',
358
-              'parameters' => array(
359
-                'itemId' => array(
360
-                  'location' => 'path',
361
-                  'type' => 'string',
362
-                  'required' => true,
363
-                ),
364
-              ),
365
-            ),'list' => array(
366
-              'path' => 'timeline/{itemId}/attachments',
367
-              'httpMethod' => 'GET',
368
-              'parameters' => array(
369
-                'itemId' => array(
370
-                  'location' => 'path',
371
-                  'type' => 'string',
372
-                  'required' => true,
373
-                ),
374
-              ),
375
-            ),
376
-          )
377
-        )
378
-    );
56
+	parent::__construct($client);
57
+	$this->rootUrl = 'https://www.googleapis.com/';
58
+	$this->servicePath = 'mirror/v1/';
59
+	$this->version = 'v1';
60
+	$this->serviceName = 'mirror';
61
+
62
+	$this->accounts = new Google_Service_Mirror_Accounts_Resource(
63
+		$this,
64
+		$this->serviceName,
65
+		'accounts',
66
+		array(
67
+		  'methods' => array(
68
+			'insert' => array(
69
+			  'path' => 'accounts/{userToken}/{accountType}/{accountName}',
70
+			  'httpMethod' => 'POST',
71
+			  'parameters' => array(
72
+				'userToken' => array(
73
+				  'location' => 'path',
74
+				  'type' => 'string',
75
+				  'required' => true,
76
+				),
77
+				'accountType' => array(
78
+				  'location' => 'path',
79
+				  'type' => 'string',
80
+				  'required' => true,
81
+				),
82
+				'accountName' => array(
83
+				  'location' => 'path',
84
+				  'type' => 'string',
85
+				  'required' => true,
86
+				),
87
+			  ),
88
+			),
89
+		  )
90
+		)
91
+	);
92
+	$this->contacts = new Google_Service_Mirror_Contacts_Resource(
93
+		$this,
94
+		$this->serviceName,
95
+		'contacts',
96
+		array(
97
+		  'methods' => array(
98
+			'delete' => array(
99
+			  'path' => 'contacts/{id}',
100
+			  'httpMethod' => 'DELETE',
101
+			  'parameters' => array(
102
+				'id' => array(
103
+				  'location' => 'path',
104
+				  'type' => 'string',
105
+				  'required' => true,
106
+				),
107
+			  ),
108
+			),'get' => array(
109
+			  'path' => 'contacts/{id}',
110
+			  'httpMethod' => 'GET',
111
+			  'parameters' => array(
112
+				'id' => array(
113
+				  'location' => 'path',
114
+				  'type' => 'string',
115
+				  'required' => true,
116
+				),
117
+			  ),
118
+			),'insert' => array(
119
+			  'path' => 'contacts',
120
+			  'httpMethod' => 'POST',
121
+			  'parameters' => array(),
122
+			),'list' => array(
123
+			  'path' => 'contacts',
124
+			  'httpMethod' => 'GET',
125
+			  'parameters' => array(),
126
+			),'patch' => array(
127
+			  'path' => 'contacts/{id}',
128
+			  'httpMethod' => 'PATCH',
129
+			  'parameters' => array(
130
+				'id' => array(
131
+				  'location' => 'path',
132
+				  'type' => 'string',
133
+				  'required' => true,
134
+				),
135
+			  ),
136
+			),'update' => array(
137
+			  'path' => 'contacts/{id}',
138
+			  'httpMethod' => 'PUT',
139
+			  'parameters' => array(
140
+				'id' => array(
141
+				  'location' => 'path',
142
+				  'type' => 'string',
143
+				  'required' => true,
144
+				),
145
+			  ),
146
+			),
147
+		  )
148
+		)
149
+	);
150
+	$this->locations = new Google_Service_Mirror_Locations_Resource(
151
+		$this,
152
+		$this->serviceName,
153
+		'locations',
154
+		array(
155
+		  'methods' => array(
156
+			'get' => array(
157
+			  'path' => 'locations/{id}',
158
+			  'httpMethod' => 'GET',
159
+			  'parameters' => array(
160
+				'id' => array(
161
+				  'location' => 'path',
162
+				  'type' => 'string',
163
+				  'required' => true,
164
+				),
165
+			  ),
166
+			),'list' => array(
167
+			  'path' => 'locations',
168
+			  'httpMethod' => 'GET',
169
+			  'parameters' => array(),
170
+			),
171
+		  )
172
+		)
173
+	);
174
+	$this->settings = new Google_Service_Mirror_Settings_Resource(
175
+		$this,
176
+		$this->serviceName,
177
+		'settings',
178
+		array(
179
+		  'methods' => array(
180
+			'get' => array(
181
+			  'path' => 'settings/{id}',
182
+			  'httpMethod' => 'GET',
183
+			  'parameters' => array(
184
+				'id' => array(
185
+				  'location' => 'path',
186
+				  'type' => 'string',
187
+				  'required' => true,
188
+				),
189
+			  ),
190
+			),
191
+		  )
192
+		)
193
+	);
194
+	$this->subscriptions = new Google_Service_Mirror_Subscriptions_Resource(
195
+		$this,
196
+		$this->serviceName,
197
+		'subscriptions',
198
+		array(
199
+		  'methods' => array(
200
+			'delete' => array(
201
+			  'path' => 'subscriptions/{id}',
202
+			  'httpMethod' => 'DELETE',
203
+			  'parameters' => array(
204
+				'id' => array(
205
+				  'location' => 'path',
206
+				  'type' => 'string',
207
+				  'required' => true,
208
+				),
209
+			  ),
210
+			),'insert' => array(
211
+			  'path' => 'subscriptions',
212
+			  'httpMethod' => 'POST',
213
+			  'parameters' => array(),
214
+			),'list' => array(
215
+			  'path' => 'subscriptions',
216
+			  'httpMethod' => 'GET',
217
+			  'parameters' => array(),
218
+			),'update' => array(
219
+			  'path' => 'subscriptions/{id}',
220
+			  'httpMethod' => 'PUT',
221
+			  'parameters' => array(
222
+				'id' => array(
223
+				  'location' => 'path',
224
+				  'type' => 'string',
225
+				  'required' => true,
226
+				),
227
+			  ),
228
+			),
229
+		  )
230
+		)
231
+	);
232
+	$this->timeline = new Google_Service_Mirror_Timeline_Resource(
233
+		$this,
234
+		$this->serviceName,
235
+		'timeline',
236
+		array(
237
+		  'methods' => array(
238
+			'delete' => array(
239
+			  'path' => 'timeline/{id}',
240
+			  'httpMethod' => 'DELETE',
241
+			  'parameters' => array(
242
+				'id' => array(
243
+				  'location' => 'path',
244
+				  'type' => 'string',
245
+				  'required' => true,
246
+				),
247
+			  ),
248
+			),'get' => array(
249
+			  'path' => 'timeline/{id}',
250
+			  'httpMethod' => 'GET',
251
+			  'parameters' => array(
252
+				'id' => array(
253
+				  'location' => 'path',
254
+				  'type' => 'string',
255
+				  'required' => true,
256
+				),
257
+			  ),
258
+			),'insert' => array(
259
+			  'path' => 'timeline',
260
+			  'httpMethod' => 'POST',
261
+			  'parameters' => array(),
262
+			),'list' => array(
263
+			  'path' => 'timeline',
264
+			  'httpMethod' => 'GET',
265
+			  'parameters' => array(
266
+				'orderBy' => array(
267
+				  'location' => 'query',
268
+				  'type' => 'string',
269
+				),
270
+				'includeDeleted' => array(
271
+				  'location' => 'query',
272
+				  'type' => 'boolean',
273
+				),
274
+				'maxResults' => array(
275
+				  'location' => 'query',
276
+				  'type' => 'integer',
277
+				),
278
+				'pageToken' => array(
279
+				  'location' => 'query',
280
+				  'type' => 'string',
281
+				),
282
+				'sourceItemId' => array(
283
+				  'location' => 'query',
284
+				  'type' => 'string',
285
+				),
286
+				'pinnedOnly' => array(
287
+				  'location' => 'query',
288
+				  'type' => 'boolean',
289
+				),
290
+				'bundleId' => array(
291
+				  'location' => 'query',
292
+				  'type' => 'string',
293
+				),
294
+			  ),
295
+			),'patch' => array(
296
+			  'path' => 'timeline/{id}',
297
+			  'httpMethod' => 'PATCH',
298
+			  'parameters' => array(
299
+				'id' => array(
300
+				  'location' => 'path',
301
+				  'type' => 'string',
302
+				  'required' => true,
303
+				),
304
+			  ),
305
+			),'update' => array(
306
+			  'path' => 'timeline/{id}',
307
+			  'httpMethod' => 'PUT',
308
+			  'parameters' => array(
309
+				'id' => array(
310
+				  'location' => 'path',
311
+				  'type' => 'string',
312
+				  'required' => true,
313
+				),
314
+			  ),
315
+			),
316
+		  )
317
+		)
318
+	);
319
+	$this->timeline_attachments = new Google_Service_Mirror_TimelineAttachments_Resource(
320
+		$this,
321
+		$this->serviceName,
322
+		'attachments',
323
+		array(
324
+		  'methods' => array(
325
+			'delete' => array(
326
+			  'path' => 'timeline/{itemId}/attachments/{attachmentId}',
327
+			  'httpMethod' => 'DELETE',
328
+			  'parameters' => array(
329
+				'itemId' => array(
330
+				  'location' => 'path',
331
+				  'type' => 'string',
332
+				  'required' => true,
333
+				),
334
+				'attachmentId' => array(
335
+				  'location' => 'path',
336
+				  'type' => 'string',
337
+				  'required' => true,
338
+				),
339
+			  ),
340
+			),'get' => array(
341
+			  'path' => 'timeline/{itemId}/attachments/{attachmentId}',
342
+			  'httpMethod' => 'GET',
343
+			  'parameters' => array(
344
+				'itemId' => array(
345
+				  'location' => 'path',
346
+				  'type' => 'string',
347
+				  'required' => true,
348
+				),
349
+				'attachmentId' => array(
350
+				  'location' => 'path',
351
+				  'type' => 'string',
352
+				  'required' => true,
353
+				),
354
+			  ),
355
+			),'insert' => array(
356
+			  'path' => 'timeline/{itemId}/attachments',
357
+			  'httpMethod' => 'POST',
358
+			  'parameters' => array(
359
+				'itemId' => array(
360
+				  'location' => 'path',
361
+				  'type' => 'string',
362
+				  'required' => true,
363
+				),
364
+			  ),
365
+			),'list' => array(
366
+			  'path' => 'timeline/{itemId}/attachments',
367
+			  'httpMethod' => 'GET',
368
+			  'parameters' => array(
369
+				'itemId' => array(
370
+				  'location' => 'path',
371
+				  'type' => 'string',
372
+				  'required' => true,
373
+				),
374
+			  ),
375
+			),
376
+		  )
377
+		)
378
+	);
379 379
   }
380 380
 }
381 381
 
@@ -405,9 +405,9 @@  discard block
 block discarded – undo
405 405
    */
406 406
   public function insert($userToken, $accountType, $accountName, Google_Service_Mirror_Account $postBody, $optParams = array())
407 407
   {
408
-    $params = array('userToken' => $userToken, 'accountType' => $accountType, 'accountName' => $accountName, 'postBody' => $postBody);
409
-    $params = array_merge($params, $optParams);
410
-    return $this->call('insert', array($params), "Google_Service_Mirror_Account");
408
+	$params = array('userToken' => $userToken, 'accountType' => $accountType, 'accountName' => $accountName, 'postBody' => $postBody);
409
+	$params = array_merge($params, $optParams);
410
+	return $this->call('insert', array($params), "Google_Service_Mirror_Account");
411 411
   }
412 412
 }
413 413
 
@@ -430,9 +430,9 @@  discard block
 block discarded – undo
430 430
    */
431 431
   public function delete($id, $optParams = array())
432 432
   {
433
-    $params = array('id' => $id);
434
-    $params = array_merge($params, $optParams);
435
-    return $this->call('delete', array($params));
433
+	$params = array('id' => $id);
434
+	$params = array_merge($params, $optParams);
435
+	return $this->call('delete', array($params));
436 436
   }
437 437
 
438 438
   /**
@@ -444,9 +444,9 @@  discard block
 block discarded – undo
444 444
    */
445 445
   public function get($id, $optParams = array())
446 446
   {
447
-    $params = array('id' => $id);
448
-    $params = array_merge($params, $optParams);
449
-    return $this->call('get', array($params), "Google_Service_Mirror_Contact");
447
+	$params = array('id' => $id);
448
+	$params = array_merge($params, $optParams);
449
+	return $this->call('get', array($params), "Google_Service_Mirror_Contact");
450 450
   }
451 451
 
452 452
   /**
@@ -458,9 +458,9 @@  discard block
 block discarded – undo
458 458
    */
459 459
   public function insert(Google_Service_Mirror_Contact $postBody, $optParams = array())
460 460
   {
461
-    $params = array('postBody' => $postBody);
462
-    $params = array_merge($params, $optParams);
463
-    return $this->call('insert', array($params), "Google_Service_Mirror_Contact");
461
+	$params = array('postBody' => $postBody);
462
+	$params = array_merge($params, $optParams);
463
+	return $this->call('insert', array($params), "Google_Service_Mirror_Contact");
464 464
   }
465 465
 
466 466
   /**
@@ -472,9 +472,9 @@  discard block
 block discarded – undo
472 472
    */
473 473
   public function listContacts($optParams = array())
474 474
   {
475
-    $params = array();
476
-    $params = array_merge($params, $optParams);
477
-    return $this->call('list', array($params), "Google_Service_Mirror_ContactsListResponse");
475
+	$params = array();
476
+	$params = array_merge($params, $optParams);
477
+	return $this->call('list', array($params), "Google_Service_Mirror_ContactsListResponse");
478 478
   }
479 479
 
480 480
   /**
@@ -488,9 +488,9 @@  discard block
 block discarded – undo
488 488
    */
489 489
   public function patch($id, Google_Service_Mirror_Contact $postBody, $optParams = array())
490 490
   {
491
-    $params = array('id' => $id, 'postBody' => $postBody);
492
-    $params = array_merge($params, $optParams);
493
-    return $this->call('patch', array($params), "Google_Service_Mirror_Contact");
491
+	$params = array('id' => $id, 'postBody' => $postBody);
492
+	$params = array_merge($params, $optParams);
493
+	return $this->call('patch', array($params), "Google_Service_Mirror_Contact");
494 494
   }
495 495
 
496 496
   /**
@@ -503,9 +503,9 @@  discard block
 block discarded – undo
503 503
    */
504 504
   public function update($id, Google_Service_Mirror_Contact $postBody, $optParams = array())
505 505
   {
506
-    $params = array('id' => $id, 'postBody' => $postBody);
507
-    $params = array_merge($params, $optParams);
508
-    return $this->call('update', array($params), "Google_Service_Mirror_Contact");
506
+	$params = array('id' => $id, 'postBody' => $postBody);
507
+	$params = array_merge($params, $optParams);
508
+	return $this->call('update', array($params), "Google_Service_Mirror_Contact");
509 509
   }
510 510
 }
511 511
 
@@ -530,9 +530,9 @@  discard block
 block discarded – undo
530 530
    */
531 531
   public function get($id, $optParams = array())
532 532
   {
533
-    $params = array('id' => $id);
534
-    $params = array_merge($params, $optParams);
535
-    return $this->call('get', array($params), "Google_Service_Mirror_Location");
533
+	$params = array('id' => $id);
534
+	$params = array_merge($params, $optParams);
535
+	return $this->call('get', array($params), "Google_Service_Mirror_Location");
536 536
   }
537 537
 
538 538
   /**
@@ -543,9 +543,9 @@  discard block
 block discarded – undo
543 543
    */
544 544
   public function listLocations($optParams = array())
545 545
   {
546
-    $params = array();
547
-    $params = array_merge($params, $optParams);
548
-    return $this->call('list', array($params), "Google_Service_Mirror_LocationsListResponse");
546
+	$params = array();
547
+	$params = array_merge($params, $optParams);
548
+	return $this->call('list', array($params), "Google_Service_Mirror_LocationsListResponse");
549 549
   }
550 550
 }
551 551
 
@@ -573,9 +573,9 @@  discard block
 block discarded – undo
573 573
    */
574 574
   public function get($id, $optParams = array())
575 575
   {
576
-    $params = array('id' => $id);
577
-    $params = array_merge($params, $optParams);
578
-    return $this->call('get', array($params), "Google_Service_Mirror_Setting");
576
+	$params = array('id' => $id);
577
+	$params = array_merge($params, $optParams);
578
+	return $this->call('get', array($params), "Google_Service_Mirror_Setting");
579 579
   }
580 580
 }
581 581
 
@@ -598,9 +598,9 @@  discard block
 block discarded – undo
598 598
    */
599 599
   public function delete($id, $optParams = array())
600 600
   {
601
-    $params = array('id' => $id);
602
-    $params = array_merge($params, $optParams);
603
-    return $this->call('delete', array($params));
601
+	$params = array('id' => $id);
602
+	$params = array_merge($params, $optParams);
603
+	return $this->call('delete', array($params));
604 604
   }
605 605
 
606 606
   /**
@@ -612,9 +612,9 @@  discard block
 block discarded – undo
612 612
    */
613 613
   public function insert(Google_Service_Mirror_Subscription $postBody, $optParams = array())
614 614
   {
615
-    $params = array('postBody' => $postBody);
616
-    $params = array_merge($params, $optParams);
617
-    return $this->call('insert', array($params), "Google_Service_Mirror_Subscription");
615
+	$params = array('postBody' => $postBody);
616
+	$params = array_merge($params, $optParams);
617
+	return $this->call('insert', array($params), "Google_Service_Mirror_Subscription");
618 618
   }
619 619
 
620 620
   /**
@@ -626,9 +626,9 @@  discard block
 block discarded – undo
626 626
    */
627 627
   public function listSubscriptions($optParams = array())
628 628
   {
629
-    $params = array();
630
-    $params = array_merge($params, $optParams);
631
-    return $this->call('list', array($params), "Google_Service_Mirror_SubscriptionsListResponse");
629
+	$params = array();
630
+	$params = array_merge($params, $optParams);
631
+	return $this->call('list', array($params), "Google_Service_Mirror_SubscriptionsListResponse");
632 632
   }
633 633
 
634 634
   /**
@@ -641,9 +641,9 @@  discard block
 block discarded – undo
641 641
    */
642 642
   public function update($id, Google_Service_Mirror_Subscription $postBody, $optParams = array())
643 643
   {
644
-    $params = array('id' => $id, 'postBody' => $postBody);
645
-    $params = array_merge($params, $optParams);
646
-    return $this->call('update', array($params), "Google_Service_Mirror_Subscription");
644
+	$params = array('id' => $id, 'postBody' => $postBody);
645
+	$params = array_merge($params, $optParams);
646
+	return $this->call('update', array($params), "Google_Service_Mirror_Subscription");
647 647
   }
648 648
 }
649 649
 
@@ -666,9 +666,9 @@  discard block
 block discarded – undo
666 666
    */
667 667
   public function delete($id, $optParams = array())
668 668
   {
669
-    $params = array('id' => $id);
670
-    $params = array_merge($params, $optParams);
671
-    return $this->call('delete', array($params));
669
+	$params = array('id' => $id);
670
+	$params = array_merge($params, $optParams);
671
+	return $this->call('delete', array($params));
672 672
   }
673 673
 
674 674
   /**
@@ -680,9 +680,9 @@  discard block
 block discarded – undo
680 680
    */
681 681
   public function get($id, $optParams = array())
682 682
   {
683
-    $params = array('id' => $id);
684
-    $params = array_merge($params, $optParams);
685
-    return $this->call('get', array($params), "Google_Service_Mirror_TimelineItem");
683
+	$params = array('id' => $id);
684
+	$params = array_merge($params, $optParams);
685
+	return $this->call('get', array($params), "Google_Service_Mirror_TimelineItem");
686 686
   }
687 687
 
688 688
   /**
@@ -694,9 +694,9 @@  discard block
 block discarded – undo
694 694
    */
695 695
   public function insert(Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
696 696
   {
697
-    $params = array('postBody' => $postBody);
698
-    $params = array_merge($params, $optParams);
699
-    return $this->call('insert', array($params), "Google_Service_Mirror_TimelineItem");
697
+	$params = array('postBody' => $postBody);
698
+	$params = array_merge($params, $optParams);
699
+	return $this->call('insert', array($params), "Google_Service_Mirror_TimelineItem");
700 700
   }
701 701
 
702 702
   /**
@@ -721,9 +721,9 @@  discard block
 block discarded – undo
721 721
    */
722 722
   public function listTimeline($optParams = array())
723 723
   {
724
-    $params = array();
725
-    $params = array_merge($params, $optParams);
726
-    return $this->call('list', array($params), "Google_Service_Mirror_TimelineListResponse");
724
+	$params = array();
725
+	$params = array_merge($params, $optParams);
726
+	return $this->call('list', array($params), "Google_Service_Mirror_TimelineListResponse");
727 727
   }
728 728
 
729 729
   /**
@@ -737,9 +737,9 @@  discard block
 block discarded – undo
737 737
    */
738 738
   public function patch($id, Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
739 739
   {
740
-    $params = array('id' => $id, 'postBody' => $postBody);
741
-    $params = array_merge($params, $optParams);
742
-    return $this->call('patch', array($params), "Google_Service_Mirror_TimelineItem");
740
+	$params = array('id' => $id, 'postBody' => $postBody);
741
+	$params = array_merge($params, $optParams);
742
+	return $this->call('patch', array($params), "Google_Service_Mirror_TimelineItem");
743 743
   }
744 744
 
745 745
   /**
@@ -752,9 +752,9 @@  discard block
 block discarded – undo
752 752
    */
753 753
   public function update($id, Google_Service_Mirror_TimelineItem $postBody, $optParams = array())
754 754
   {
755
-    $params = array('id' => $id, 'postBody' => $postBody);
756
-    $params = array_merge($params, $optParams);
757
-    return $this->call('update', array($params), "Google_Service_Mirror_TimelineItem");
755
+	$params = array('id' => $id, 'postBody' => $postBody);
756
+	$params = array_merge($params, $optParams);
757
+	return $this->call('update', array($params), "Google_Service_Mirror_TimelineItem");
758 758
   }
759 759
 }
760 760
 
@@ -778,9 +778,9 @@  discard block
 block discarded – undo
778 778
    */
779 779
   public function delete($itemId, $attachmentId, $optParams = array())
780 780
   {
781
-    $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
782
-    $params = array_merge($params, $optParams);
783
-    return $this->call('delete', array($params));
781
+	$params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
782
+	$params = array_merge($params, $optParams);
783
+	return $this->call('delete', array($params));
784 784
   }
785 785
 
786 786
   /**
@@ -794,9 +794,9 @@  discard block
 block discarded – undo
794 794
    */
795 795
   public function get($itemId, $attachmentId, $optParams = array())
796 796
   {
797
-    $params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
798
-    $params = array_merge($params, $optParams);
799
-    return $this->call('get', array($params), "Google_Service_Mirror_Attachment");
797
+	$params = array('itemId' => $itemId, 'attachmentId' => $attachmentId);
798
+	$params = array_merge($params, $optParams);
799
+	return $this->call('get', array($params), "Google_Service_Mirror_Attachment");
800 800
   }
801 801
 
802 802
   /**
@@ -808,9 +808,9 @@  discard block
 block discarded – undo
808 808
    */
809 809
   public function insert($itemId, $optParams = array())
810 810
   {
811
-    $params = array('itemId' => $itemId);
812
-    $params = array_merge($params, $optParams);
813
-    return $this->call('insert', array($params), "Google_Service_Mirror_Attachment");
811
+	$params = array('itemId' => $itemId);
812
+	$params = array_merge($params, $optParams);
813
+	return $this->call('insert', array($params), "Google_Service_Mirror_Attachment");
814 814
   }
815 815
 
816 816
   /**
@@ -824,9 +824,9 @@  discard block
 block discarded – undo
824 824
    */
825 825
   public function listTimelineAttachments($itemId, $optParams = array())
826 826
   {
827
-    $params = array('itemId' => $itemId);
828
-    $params = array_merge($params, $optParams);
829
-    return $this->call('list', array($params), "Google_Service_Mirror_AttachmentsListResponse");
827
+	$params = array('itemId' => $itemId);
828
+	$params = array_merge($params, $optParams);
829
+	return $this->call('list', array($params), "Google_Service_Mirror_AttachmentsListResponse");
830 830
   }
831 831
 }
832 832
 
@@ -848,35 +848,35 @@  discard block
 block discarded – undo
848 848
 
849 849
   public function setAuthTokens($authTokens)
850 850
   {
851
-    $this->authTokens = $authTokens;
851
+	$this->authTokens = $authTokens;
852 852
   }
853 853
   public function getAuthTokens()
854 854
   {
855
-    return $this->authTokens;
855
+	return $this->authTokens;
856 856
   }
857 857
   public function setFeatures($features)
858 858
   {
859
-    $this->features = $features;
859
+	$this->features = $features;
860 860
   }
861 861
   public function getFeatures()
862 862
   {
863
-    return $this->features;
863
+	return $this->features;
864 864
   }
865 865
   public function setPassword($password)
866 866
   {
867
-    $this->password = $password;
867
+	$this->password = $password;
868 868
   }
869 869
   public function getPassword()
870 870
   {
871
-    return $this->password;
871
+	return $this->password;
872 872
   }
873 873
   public function setUserData($userData)
874 874
   {
875
-    $this->userData = $userData;
875
+	$this->userData = $userData;
876 876
   }
877 877
   public function getUserData()
878 878
   {
879
-    return $this->userData;
879
+	return $this->userData;
880 880
   }
881 881
 }
882 882
 
@@ -892,35 +892,35 @@  discard block
 block discarded – undo
892 892
 
893 893
   public function setContentType($contentType)
894 894
   {
895
-    $this->contentType = $contentType;
895
+	$this->contentType = $contentType;
896 896
   }
897 897
   public function getContentType()
898 898
   {
899
-    return $this->contentType;
899
+	return $this->contentType;
900 900
   }
901 901
   public function setContentUrl($contentUrl)
902 902
   {
903
-    $this->contentUrl = $contentUrl;
903
+	$this->contentUrl = $contentUrl;
904 904
   }
905 905
   public function getContentUrl()
906 906
   {
907
-    return $this->contentUrl;
907
+	return $this->contentUrl;
908 908
   }
909 909
   public function setId($id)
910 910
   {
911
-    $this->id = $id;
911
+	$this->id = $id;
912 912
   }
913 913
   public function getId()
914 914
   {
915
-    return $this->id;
915
+	return $this->id;
916 916
   }
917 917
   public function setIsProcessingContent($isProcessingContent)
918 918
   {
919
-    $this->isProcessingContent = $isProcessingContent;
919
+	$this->isProcessingContent = $isProcessingContent;
920 920
   }
921 921
   public function getIsProcessingContent()
922 922
   {
923
-    return $this->isProcessingContent;
923
+	return $this->isProcessingContent;
924 924
   }
925 925
 }
926 926
 
@@ -936,19 +936,19 @@  discard block
 block discarded – undo
936 936
 
937 937
   public function setItems($items)
938 938
   {
939
-    $this->items = $items;
939
+	$this->items = $items;
940 940
   }
941 941
   public function getItems()
942 942
   {
943
-    return $this->items;
943
+	return $this->items;
944 944
   }
945 945
   public function setKind($kind)
946 946
   {
947
-    $this->kind = $kind;
947
+	$this->kind = $kind;
948 948
   }
949 949
   public function getKind()
950 950
   {
951
-    return $this->kind;
951
+	return $this->kind;
952 952
   }
953 953
 }
954 954
 
@@ -962,19 +962,19 @@  discard block
 block discarded – undo
962 962
 
963 963
   public function setAuthToken($authToken)
964 964
   {
965
-    $this->authToken = $authToken;
965
+	$this->authToken = $authToken;
966 966
   }
967 967
   public function getAuthToken()
968 968
   {
969
-    return $this->authToken;
969
+	return $this->authToken;
970 970
   }
971 971
   public function setType($type)
972 972
   {
973
-    $this->type = $type;
973
+	$this->type = $type;
974 974
   }
975 975
   public function getType()
976 976
   {
977
-    return $this->type;
977
+	return $this->type;
978 978
   }
979 979
 }
980 980
 
@@ -987,11 +987,11 @@  discard block
 block discarded – undo
987 987
 
988 988
   public function setType($type)
989 989
   {
990
-    $this->type = $type;
990
+	$this->type = $type;
991 991
   }
992 992
   public function getType()
993 993
   {
994
-    return $this->type;
994
+	return $this->type;
995 995
   }
996 996
 }
997 997
 
@@ -1017,99 +1017,99 @@  discard block
 block discarded – undo
1017 1017
 
1018 1018
   public function setAcceptCommands($acceptCommands)
1019 1019
   {
1020
-    $this->acceptCommands = $acceptCommands;
1020
+	$this->acceptCommands = $acceptCommands;
1021 1021
   }
1022 1022
   public function getAcceptCommands()
1023 1023
   {
1024
-    return $this->acceptCommands;
1024
+	return $this->acceptCommands;
1025 1025
   }
1026 1026
   public function setAcceptTypes($acceptTypes)
1027 1027
   {
1028
-    $this->acceptTypes = $acceptTypes;
1028
+	$this->acceptTypes = $acceptTypes;
1029 1029
   }
1030 1030
   public function getAcceptTypes()
1031 1031
   {
1032
-    return $this->acceptTypes;
1032
+	return $this->acceptTypes;
1033 1033
   }
1034 1034
   public function setDisplayName($displayName)
1035 1035
   {
1036
-    $this->displayName = $displayName;
1036
+	$this->displayName = $displayName;
1037 1037
   }
1038 1038
   public function getDisplayName()
1039 1039
   {
1040
-    return $this->displayName;
1040
+	return $this->displayName;
1041 1041
   }
1042 1042
   public function setId($id)
1043 1043
   {
1044
-    $this->id = $id;
1044
+	$this->id = $id;
1045 1045
   }
1046 1046
   public function getId()
1047 1047
   {
1048
-    return $this->id;
1048
+	return $this->id;
1049 1049
   }
1050 1050
   public function setImageUrls($imageUrls)
1051 1051
   {
1052
-    $this->imageUrls = $imageUrls;
1052
+	$this->imageUrls = $imageUrls;
1053 1053
   }
1054 1054
   public function getImageUrls()
1055 1055
   {
1056
-    return $this->imageUrls;
1056
+	return $this->imageUrls;
1057 1057
   }
1058 1058
   public function setKind($kind)
1059 1059
   {
1060
-    $this->kind = $kind;
1060
+	$this->kind = $kind;
1061 1061
   }
1062 1062
   public function getKind()
1063 1063
   {
1064
-    return $this->kind;
1064
+	return $this->kind;
1065 1065
   }
1066 1066
   public function setPhoneNumber($phoneNumber)
1067 1067
   {
1068
-    $this->phoneNumber = $phoneNumber;
1068
+	$this->phoneNumber = $phoneNumber;
1069 1069
   }
1070 1070
   public function getPhoneNumber()
1071 1071
   {
1072
-    return $this->phoneNumber;
1072
+	return $this->phoneNumber;
1073 1073
   }
1074 1074
   public function setPriority($priority)
1075 1075
   {
1076
-    $this->priority = $priority;
1076
+	$this->priority = $priority;
1077 1077
   }
1078 1078
   public function getPriority()
1079 1079
   {
1080
-    return $this->priority;
1080
+	return $this->priority;
1081 1081
   }
1082 1082
   public function setSharingFeatures($sharingFeatures)
1083 1083
   {
1084
-    $this->sharingFeatures = $sharingFeatures;
1084
+	$this->sharingFeatures = $sharingFeatures;
1085 1085
   }
1086 1086
   public function getSharingFeatures()
1087 1087
   {
1088
-    return $this->sharingFeatures;
1088
+	return $this->sharingFeatures;
1089 1089
   }
1090 1090
   public function setSource($source)
1091 1091
   {
1092
-    $this->source = $source;
1092
+	$this->source = $source;
1093 1093
   }
1094 1094
   public function getSource()
1095 1095
   {
1096
-    return $this->source;
1096
+	return $this->source;
1097 1097
   }
1098 1098
   public function setSpeakableName($speakableName)
1099 1099
   {
1100
-    $this->speakableName = $speakableName;
1100
+	$this->speakableName = $speakableName;
1101 1101
   }
1102 1102
   public function getSpeakableName()
1103 1103
   {
1104
-    return $this->speakableName;
1104
+	return $this->speakableName;
1105 1105
   }
1106 1106
   public function setType($type)
1107 1107
   {
1108
-    $this->type = $type;
1108
+	$this->type = $type;
1109 1109
   }
1110 1110
   public function getType()
1111 1111
   {
1112
-    return $this->type;
1112
+	return $this->type;
1113 1113
   }
1114 1114
 }
1115 1115
 
@@ -1125,19 +1125,19 @@  discard block
 block discarded – undo
1125 1125
 
1126 1126
   public function setItems($items)
1127 1127
   {
1128
-    $this->items = $items;
1128
+	$this->items = $items;
1129 1129
   }
1130 1130
   public function getItems()
1131 1131
   {
1132
-    return $this->items;
1132
+	return $this->items;
1133 1133
   }
1134 1134
   public function setKind($kind)
1135 1135
   {
1136
-    $this->kind = $kind;
1136
+	$this->kind = $kind;
1137 1137
   }
1138 1138
   public function getKind()
1139 1139
   {
1140
-    return $this->kind;
1140
+	return $this->kind;
1141 1141
   }
1142 1142
 }
1143 1143
 
@@ -1157,67 +1157,67 @@  discard block
 block discarded – undo
1157 1157
 
1158 1158
   public function setAccuracy($accuracy)
1159 1159
   {
1160
-    $this->accuracy = $accuracy;
1160
+	$this->accuracy = $accuracy;
1161 1161
   }
1162 1162
   public function getAccuracy()
1163 1163
   {
1164
-    return $this->accuracy;
1164
+	return $this->accuracy;
1165 1165
   }
1166 1166
   public function setAddress($address)
1167 1167
   {
1168
-    $this->address = $address;
1168
+	$this->address = $address;
1169 1169
   }
1170 1170
   public function getAddress()
1171 1171
   {
1172
-    return $this->address;
1172
+	return $this->address;
1173 1173
   }
1174 1174
   public function setDisplayName($displayName)
1175 1175
   {
1176
-    $this->displayName = $displayName;
1176
+	$this->displayName = $displayName;
1177 1177
   }
1178 1178
   public function getDisplayName()
1179 1179
   {
1180
-    return $this->displayName;
1180
+	return $this->displayName;
1181 1181
   }
1182 1182
   public function setId($id)
1183 1183
   {
1184
-    $this->id = $id;
1184
+	$this->id = $id;
1185 1185
   }
1186 1186
   public function getId()
1187 1187
   {
1188
-    return $this->id;
1188
+	return $this->id;
1189 1189
   }
1190 1190
   public function setKind($kind)
1191 1191
   {
1192
-    $this->kind = $kind;
1192
+	$this->kind = $kind;
1193 1193
   }
1194 1194
   public function getKind()
1195 1195
   {
1196
-    return $this->kind;
1196
+	return $this->kind;
1197 1197
   }
1198 1198
   public function setLatitude($latitude)
1199 1199
   {
1200
-    $this->latitude = $latitude;
1200
+	$this->latitude = $latitude;
1201 1201
   }
1202 1202
   public function getLatitude()
1203 1203
   {
1204
-    return $this->latitude;
1204
+	return $this->latitude;
1205 1205
   }
1206 1206
   public function setLongitude($longitude)
1207 1207
   {
1208
-    $this->longitude = $longitude;
1208
+	$this->longitude = $longitude;
1209 1209
   }
1210 1210
   public function getLongitude()
1211 1211
   {
1212
-    return $this->longitude;
1212
+	return $this->longitude;
1213 1213
   }
1214 1214
   public function setTimestamp($timestamp)
1215 1215
   {
1216
-    $this->timestamp = $timestamp;
1216
+	$this->timestamp = $timestamp;
1217 1217
   }
1218 1218
   public function getTimestamp()
1219 1219
   {
1220
-    return $this->timestamp;
1220
+	return $this->timestamp;
1221 1221
   }
1222 1222
 }
1223 1223
 
@@ -1233,19 +1233,19 @@  discard block
 block discarded – undo
1233 1233
 
1234 1234
   public function setItems($items)
1235 1235
   {
1236
-    $this->items = $items;
1236
+	$this->items = $items;
1237 1237
   }
1238 1238
   public function getItems()
1239 1239
   {
1240
-    return $this->items;
1240
+	return $this->items;
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
 }
1251 1251
 
@@ -1253,7 +1253,7 @@  discard block
 block discarded – undo
1253 1253
 {
1254 1254
   protected $collection_key = 'values';
1255 1255
   protected $internal_gapi_mappings = array(
1256
-        "contextualCommand" => "contextual_command",
1256
+		"contextualCommand" => "contextual_command",
1257 1257
   );
1258 1258
   public $action;
1259 1259
   public $contextualCommand;
@@ -1266,51 +1266,51 @@  discard block
 block discarded – undo
1266 1266
 
1267 1267
   public function setAction($action)
1268 1268
   {
1269
-    $this->action = $action;
1269
+	$this->action = $action;
1270 1270
   }
1271 1271
   public function getAction()
1272 1272
   {
1273
-    return $this->action;
1273
+	return $this->action;
1274 1274
   }
1275 1275
   public function setContextualCommand($contextualCommand)
1276 1276
   {
1277
-    $this->contextualCommand = $contextualCommand;
1277
+	$this->contextualCommand = $contextualCommand;
1278 1278
   }
1279 1279
   public function getContextualCommand()
1280 1280
   {
1281
-    return $this->contextualCommand;
1281
+	return $this->contextualCommand;
1282 1282
   }
1283 1283
   public function setId($id)
1284 1284
   {
1285
-    $this->id = $id;
1285
+	$this->id = $id;
1286 1286
   }
1287 1287
   public function getId()
1288 1288
   {
1289
-    return $this->id;
1289
+	return $this->id;
1290 1290
   }
1291 1291
   public function setPayload($payload)
1292 1292
   {
1293
-    $this->payload = $payload;
1293
+	$this->payload = $payload;
1294 1294
   }
1295 1295
   public function getPayload()
1296 1296
   {
1297
-    return $this->payload;
1297
+	return $this->payload;
1298 1298
   }
1299 1299
   public function setRemoveWhenSelected($removeWhenSelected)
1300 1300
   {
1301
-    $this->removeWhenSelected = $removeWhenSelected;
1301
+	$this->removeWhenSelected = $removeWhenSelected;
1302 1302
   }
1303 1303
   public function getRemoveWhenSelected()
1304 1304
   {
1305
-    return $this->removeWhenSelected;
1305
+	return $this->removeWhenSelected;
1306 1306
   }
1307 1307
   public function setValues($values)
1308 1308
   {
1309
-    $this->values = $values;
1309
+	$this->values = $values;
1310 1310
   }
1311 1311
   public function getValues()
1312 1312
   {
1313
-    return $this->values;
1313
+	return $this->values;
1314 1314
   }
1315 1315
 }
1316 1316
 
@@ -1325,27 +1325,27 @@  discard block
 block discarded – undo
1325 1325
 
1326 1326
   public function setDisplayName($displayName)
1327 1327
   {
1328
-    $this->displayName = $displayName;
1328
+	$this->displayName = $displayName;
1329 1329
   }
1330 1330
   public function getDisplayName()
1331 1331
   {
1332
-    return $this->displayName;
1332
+	return $this->displayName;
1333 1333
   }
1334 1334
   public function setIconUrl($iconUrl)
1335 1335
   {
1336
-    $this->iconUrl = $iconUrl;
1336
+	$this->iconUrl = $iconUrl;
1337 1337
   }
1338 1338
   public function getIconUrl()
1339 1339
   {
1340
-    return $this->iconUrl;
1340
+	return $this->iconUrl;
1341 1341
   }
1342 1342
   public function setState($state)
1343 1343
   {
1344
-    $this->state = $state;
1344
+	$this->state = $state;
1345 1345
   }
1346 1346
   public function getState()
1347 1347
   {
1348
-    return $this->state;
1348
+	return $this->state;
1349 1349
   }
1350 1350
 }
1351 1351
 
@@ -1365,51 +1365,51 @@  discard block
 block discarded – undo
1365 1365
 
1366 1366
   public function setCollection($collection)
1367 1367
   {
1368
-    $this->collection = $collection;
1368
+	$this->collection = $collection;
1369 1369
   }
1370 1370
   public function getCollection()
1371 1371
   {
1372
-    return $this->collection;
1372
+	return $this->collection;
1373 1373
   }
1374 1374
   public function setItemId($itemId)
1375 1375
   {
1376
-    $this->itemId = $itemId;
1376
+	$this->itemId = $itemId;
1377 1377
   }
1378 1378
   public function getItemId()
1379 1379
   {
1380
-    return $this->itemId;
1380
+	return $this->itemId;
1381 1381
   }
1382 1382
   public function setOperation($operation)
1383 1383
   {
1384
-    $this->operation = $operation;
1384
+	$this->operation = $operation;
1385 1385
   }
1386 1386
   public function getOperation()
1387 1387
   {
1388
-    return $this->operation;
1388
+	return $this->operation;
1389 1389
   }
1390 1390
   public function setUserActions($userActions)
1391 1391
   {
1392
-    $this->userActions = $userActions;
1392
+	$this->userActions = $userActions;
1393 1393
   }
1394 1394
   public function getUserActions()
1395 1395
   {
1396
-    return $this->userActions;
1396
+	return $this->userActions;
1397 1397
   }
1398 1398
   public function setUserToken($userToken)
1399 1399
   {
1400
-    $this->userToken = $userToken;
1400
+	$this->userToken = $userToken;
1401 1401
   }
1402 1402
   public function getUserToken()
1403 1403
   {
1404
-    return $this->userToken;
1404
+	return $this->userToken;
1405 1405
   }
1406 1406
   public function setVerifyToken($verifyToken)
1407 1407
   {
1408
-    $this->verifyToken = $verifyToken;
1408
+	$this->verifyToken = $verifyToken;
1409 1409
   }
1410 1410
   public function getVerifyToken()
1411 1411
   {
1412
-    return $this->verifyToken;
1412
+	return $this->verifyToken;
1413 1413
   }
1414 1414
 }
1415 1415
 
@@ -1423,19 +1423,19 @@  discard block
 block discarded – undo
1423 1423
 
1424 1424
   public function setDeliveryTime($deliveryTime)
1425 1425
   {
1426
-    $this->deliveryTime = $deliveryTime;
1426
+	$this->deliveryTime = $deliveryTime;
1427 1427
   }
1428 1428
   public function getDeliveryTime()
1429 1429
   {
1430
-    return $this->deliveryTime;
1430
+	return $this->deliveryTime;
1431 1431
   }
1432 1432
   public function setLevel($level)
1433 1433
   {
1434
-    $this->level = $level;
1434
+	$this->level = $level;
1435 1435
   }
1436 1436
   public function getLevel()
1437 1437
   {
1438
-    return $this->level;
1438
+	return $this->level;
1439 1439
   }
1440 1440
 }
1441 1441
 
@@ -1450,27 +1450,27 @@  discard block
 block discarded – undo
1450 1450
 
1451 1451
   public function setId($id)
1452 1452
   {
1453
-    $this->id = $id;
1453
+	$this->id = $id;
1454 1454
   }
1455 1455
   public function getId()
1456 1456
   {
1457
-    return $this->id;
1457
+	return $this->id;
1458 1458
   }
1459 1459
   public function setKind($kind)
1460 1460
   {
1461
-    $this->kind = $kind;
1461
+	$this->kind = $kind;
1462 1462
   }
1463 1463
   public function getKind()
1464 1464
   {
1465
-    return $this->kind;
1465
+	return $this->kind;
1466 1466
   }
1467 1467
   public function setValue($value)
1468 1468
   {
1469
-    $this->value = $value;
1469
+	$this->value = $value;
1470 1470
   }
1471 1471
   public function getValue()
1472 1472
   {
1473
-    return $this->value;
1473
+	return $this->value;
1474 1474
   }
1475 1475
 }
1476 1476
 
@@ -1493,75 +1493,75 @@  discard block
 block discarded – undo
1493 1493
 
1494 1494
   public function setCallbackUrl($callbackUrl)
1495 1495
   {
1496
-    $this->callbackUrl = $callbackUrl;
1496
+	$this->callbackUrl = $callbackUrl;
1497 1497
   }
1498 1498
   public function getCallbackUrl()
1499 1499
   {
1500
-    return $this->callbackUrl;
1500
+	return $this->callbackUrl;
1501 1501
   }
1502 1502
   public function setCollection($collection)
1503 1503
   {
1504
-    $this->collection = $collection;
1504
+	$this->collection = $collection;
1505 1505
   }
1506 1506
   public function getCollection()
1507 1507
   {
1508
-    return $this->collection;
1508
+	return $this->collection;
1509 1509
   }
1510 1510
   public function setId($id)
1511 1511
   {
1512
-    $this->id = $id;
1512
+	$this->id = $id;
1513 1513
   }
1514 1514
   public function getId()
1515 1515
   {
1516
-    return $this->id;
1516
+	return $this->id;
1517 1517
   }
1518 1518
   public function setKind($kind)
1519 1519
   {
1520
-    $this->kind = $kind;
1520
+	$this->kind = $kind;
1521 1521
   }
1522 1522
   public function getKind()
1523 1523
   {
1524
-    return $this->kind;
1524
+	return $this->kind;
1525 1525
   }
1526 1526
   public function setNotification(Google_Service_Mirror_Notification $notification)
1527 1527
   {
1528
-    $this->notification = $notification;
1528
+	$this->notification = $notification;
1529 1529
   }
1530 1530
   public function getNotification()
1531 1531
   {
1532
-    return $this->notification;
1532
+	return $this->notification;
1533 1533
   }
1534 1534
   public function setOperation($operation)
1535 1535
   {
1536
-    $this->operation = $operation;
1536
+	$this->operation = $operation;
1537 1537
   }
1538 1538
   public function getOperation()
1539 1539
   {
1540
-    return $this->operation;
1540
+	return $this->operation;
1541 1541
   }
1542 1542
   public function setUpdated($updated)
1543 1543
   {
1544
-    $this->updated = $updated;
1544
+	$this->updated = $updated;
1545 1545
   }
1546 1546
   public function getUpdated()
1547 1547
   {
1548
-    return $this->updated;
1548
+	return $this->updated;
1549 1549
   }
1550 1550
   public function setUserToken($userToken)
1551 1551
   {
1552
-    $this->userToken = $userToken;
1552
+	$this->userToken = $userToken;
1553 1553
   }
1554 1554
   public function getUserToken()
1555 1555
   {
1556
-    return $this->userToken;
1556
+	return $this->userToken;
1557 1557
   }
1558 1558
   public function setVerifyToken($verifyToken)
1559 1559
   {
1560
-    $this->verifyToken = $verifyToken;
1560
+	$this->verifyToken = $verifyToken;
1561 1561
   }
1562 1562
   public function getVerifyToken()
1563 1563
   {
1564
-    return $this->verifyToken;
1564
+	return $this->verifyToken;
1565 1565
   }
1566 1566
 }
1567 1567
 
@@ -1577,19 +1577,19 @@  discard block
 block discarded – undo
1577 1577
 
1578 1578
   public function setItems($items)
1579 1579
   {
1580
-    $this->items = $items;
1580
+	$this->items = $items;
1581 1581
   }
1582 1582
   public function getItems()
1583 1583
   {
1584
-    return $this->items;
1584
+	return $this->items;
1585 1585
   }
1586 1586
   public function setKind($kind)
1587 1587
   {
1588
-    $this->kind = $kind;
1588
+	$this->kind = $kind;
1589 1589
   }
1590 1590
   public function getKind()
1591 1591
   {
1592
-    return $this->kind;
1592
+	return $this->kind;
1593 1593
   }
1594 1594
 }
1595 1595
 
@@ -1634,211 +1634,211 @@  discard block
 block discarded – undo
1634 1634
 
1635 1635
   public function setAttachments($attachments)
1636 1636
   {
1637
-    $this->attachments = $attachments;
1637
+	$this->attachments = $attachments;
1638 1638
   }
1639 1639
   public function getAttachments()
1640 1640
   {
1641
-    return $this->attachments;
1641
+	return $this->attachments;
1642 1642
   }
1643 1643
   public function setBundleId($bundleId)
1644 1644
   {
1645
-    $this->bundleId = $bundleId;
1645
+	$this->bundleId = $bundleId;
1646 1646
   }
1647 1647
   public function getBundleId()
1648 1648
   {
1649
-    return $this->bundleId;
1649
+	return $this->bundleId;
1650 1650
   }
1651 1651
   public function setCanonicalUrl($canonicalUrl)
1652 1652
   {
1653
-    $this->canonicalUrl = $canonicalUrl;
1653
+	$this->canonicalUrl = $canonicalUrl;
1654 1654
   }
1655 1655
   public function getCanonicalUrl()
1656 1656
   {
1657
-    return $this->canonicalUrl;
1657
+	return $this->canonicalUrl;
1658 1658
   }
1659 1659
   public function setCreated($created)
1660 1660
   {
1661
-    $this->created = $created;
1661
+	$this->created = $created;
1662 1662
   }
1663 1663
   public function getCreated()
1664 1664
   {
1665
-    return $this->created;
1665
+	return $this->created;
1666 1666
   }
1667 1667
   public function setCreator(Google_Service_Mirror_Contact $creator)
1668 1668
   {
1669
-    $this->creator = $creator;
1669
+	$this->creator = $creator;
1670 1670
   }
1671 1671
   public function getCreator()
1672 1672
   {
1673
-    return $this->creator;
1673
+	return $this->creator;
1674 1674
   }
1675 1675
   public function setDisplayTime($displayTime)
1676 1676
   {
1677
-    $this->displayTime = $displayTime;
1677
+	$this->displayTime = $displayTime;
1678 1678
   }
1679 1679
   public function getDisplayTime()
1680 1680
   {
1681
-    return $this->displayTime;
1681
+	return $this->displayTime;
1682 1682
   }
1683 1683
   public function setEtag($etag)
1684 1684
   {
1685
-    $this->etag = $etag;
1685
+	$this->etag = $etag;
1686 1686
   }
1687 1687
   public function getEtag()
1688 1688
   {
1689
-    return $this->etag;
1689
+	return $this->etag;
1690 1690
   }
1691 1691
   public function setHtml($html)
1692 1692
   {
1693
-    $this->html = $html;
1693
+	$this->html = $html;
1694 1694
   }
1695 1695
   public function getHtml()
1696 1696
   {
1697
-    return $this->html;
1697
+	return $this->html;
1698 1698
   }
1699 1699
   public function setId($id)
1700 1700
   {
1701
-    $this->id = $id;
1701
+	$this->id = $id;
1702 1702
   }
1703 1703
   public function getId()
1704 1704
   {
1705
-    return $this->id;
1705
+	return $this->id;
1706 1706
   }
1707 1707
   public function setInReplyTo($inReplyTo)
1708 1708
   {
1709
-    $this->inReplyTo = $inReplyTo;
1709
+	$this->inReplyTo = $inReplyTo;
1710 1710
   }
1711 1711
   public function getInReplyTo()
1712 1712
   {
1713
-    return $this->inReplyTo;
1713
+	return $this->inReplyTo;
1714 1714
   }
1715 1715
   public function setIsBundleCover($isBundleCover)
1716 1716
   {
1717
-    $this->isBundleCover = $isBundleCover;
1717
+	$this->isBundleCover = $isBundleCover;
1718 1718
   }
1719 1719
   public function getIsBundleCover()
1720 1720
   {
1721
-    return $this->isBundleCover;
1721
+	return $this->isBundleCover;
1722 1722
   }
1723 1723
   public function setIsDeleted($isDeleted)
1724 1724
   {
1725
-    $this->isDeleted = $isDeleted;
1725
+	$this->isDeleted = $isDeleted;
1726 1726
   }
1727 1727
   public function getIsDeleted()
1728 1728
   {
1729
-    return $this->isDeleted;
1729
+	return $this->isDeleted;
1730 1730
   }
1731 1731
   public function setIsPinned($isPinned)
1732 1732
   {
1733
-    $this->isPinned = $isPinned;
1733
+	$this->isPinned = $isPinned;
1734 1734
   }
1735 1735
   public function getIsPinned()
1736 1736
   {
1737
-    return $this->isPinned;
1737
+	return $this->isPinned;
1738 1738
   }
1739 1739
   public function setKind($kind)
1740 1740
   {
1741
-    $this->kind = $kind;
1741
+	$this->kind = $kind;
1742 1742
   }
1743 1743
   public function getKind()
1744 1744
   {
1745
-    return $this->kind;
1745
+	return $this->kind;
1746 1746
   }
1747 1747
   public function setLocation(Google_Service_Mirror_Location $location)
1748 1748
   {
1749
-    $this->location = $location;
1749
+	$this->location = $location;
1750 1750
   }
1751 1751
   public function getLocation()
1752 1752
   {
1753
-    return $this->location;
1753
+	return $this->location;
1754 1754
   }
1755 1755
   public function setMenuItems($menuItems)
1756 1756
   {
1757
-    $this->menuItems = $menuItems;
1757
+	$this->menuItems = $menuItems;
1758 1758
   }
1759 1759
   public function getMenuItems()
1760 1760
   {
1761
-    return $this->menuItems;
1761
+	return $this->menuItems;
1762 1762
   }
1763 1763
   public function setNotification(Google_Service_Mirror_NotificationConfig $notification)
1764 1764
   {
1765
-    $this->notification = $notification;
1765
+	$this->notification = $notification;
1766 1766
   }
1767 1767
   public function getNotification()
1768 1768
   {
1769
-    return $this->notification;
1769
+	return $this->notification;
1770 1770
   }
1771 1771
   public function setPinScore($pinScore)
1772 1772
   {
1773
-    $this->pinScore = $pinScore;
1773
+	$this->pinScore = $pinScore;
1774 1774
   }
1775 1775
   public function getPinScore()
1776 1776
   {
1777
-    return $this->pinScore;
1777
+	return $this->pinScore;
1778 1778
   }
1779 1779
   public function setRecipients($recipients)
1780 1780
   {
1781
-    $this->recipients = $recipients;
1781
+	$this->recipients = $recipients;
1782 1782
   }
1783 1783
   public function getRecipients()
1784 1784
   {
1785
-    return $this->recipients;
1785
+	return $this->recipients;
1786 1786
   }
1787 1787
   public function setSelfLink($selfLink)
1788 1788
   {
1789
-    $this->selfLink = $selfLink;
1789
+	$this->selfLink = $selfLink;
1790 1790
   }
1791 1791
   public function getSelfLink()
1792 1792
   {
1793
-    return $this->selfLink;
1793
+	return $this->selfLink;
1794 1794
   }
1795 1795
   public function setSourceItemId($sourceItemId)
1796 1796
   {
1797
-    $this->sourceItemId = $sourceItemId;
1797
+	$this->sourceItemId = $sourceItemId;
1798 1798
   }
1799 1799
   public function getSourceItemId()
1800 1800
   {
1801
-    return $this->sourceItemId;
1801
+	return $this->sourceItemId;
1802 1802
   }
1803 1803
   public function setSpeakableText($speakableText)
1804 1804
   {
1805
-    $this->speakableText = $speakableText;
1805
+	$this->speakableText = $speakableText;
1806 1806
   }
1807 1807
   public function getSpeakableText()
1808 1808
   {
1809
-    return $this->speakableText;
1809
+	return $this->speakableText;
1810 1810
   }
1811 1811
   public function setSpeakableType($speakableType)
1812 1812
   {
1813
-    $this->speakableType = $speakableType;
1813
+	$this->speakableType = $speakableType;
1814 1814
   }
1815 1815
   public function getSpeakableType()
1816 1816
   {
1817
-    return $this->speakableType;
1817
+	return $this->speakableType;
1818 1818
   }
1819 1819
   public function setText($text)
1820 1820
   {
1821
-    $this->text = $text;
1821
+	$this->text = $text;
1822 1822
   }
1823 1823
   public function getText()
1824 1824
   {
1825
-    return $this->text;
1825
+	return $this->text;
1826 1826
   }
1827 1827
   public function setTitle($title)
1828 1828
   {
1829
-    $this->title = $title;
1829
+	$this->title = $title;
1830 1830
   }
1831 1831
   public function getTitle()
1832 1832
   {
1833
-    return $this->title;
1833
+	return $this->title;
1834 1834
   }
1835 1835
   public function setUpdated($updated)
1836 1836
   {
1837
-    $this->updated = $updated;
1837
+	$this->updated = $updated;
1838 1838
   }
1839 1839
   public function getUpdated()
1840 1840
   {
1841
-    return $this->updated;
1841
+	return $this->updated;
1842 1842
   }
1843 1843
 }
1844 1844
 
@@ -1855,27 +1855,27 @@  discard block
 block discarded – undo
1855 1855
 
1856 1856
   public function setItems($items)
1857 1857
   {
1858
-    $this->items = $items;
1858
+	$this->items = $items;
1859 1859
   }
1860 1860
   public function getItems()
1861 1861
   {
1862
-    return $this->items;
1862
+	return $this->items;
1863 1863
   }
1864 1864
   public function setKind($kind)
1865 1865
   {
1866
-    $this->kind = $kind;
1866
+	$this->kind = $kind;
1867 1867
   }
1868 1868
   public function getKind()
1869 1869
   {
1870
-    return $this->kind;
1870
+	return $this->kind;
1871 1871
   }
1872 1872
   public function setNextPageToken($nextPageToken)
1873 1873
   {
1874
-    $this->nextPageToken = $nextPageToken;
1874
+	$this->nextPageToken = $nextPageToken;
1875 1875
   }
1876 1876
   public function getNextPageToken()
1877 1877
   {
1878
-    return $this->nextPageToken;
1878
+	return $this->nextPageToken;
1879 1879
   }
1880 1880
 }
1881 1881
 
@@ -1889,19 +1889,19 @@  discard block
 block discarded – undo
1889 1889
 
1890 1890
   public function setPayload($payload)
1891 1891
   {
1892
-    $this->payload = $payload;
1892
+	$this->payload = $payload;
1893 1893
   }
1894 1894
   public function getPayload()
1895 1895
   {
1896
-    return $this->payload;
1896
+	return $this->payload;
1897 1897
   }
1898 1898
   public function setType($type)
1899 1899
   {
1900
-    $this->type = $type;
1900
+	$this->type = $type;
1901 1901
   }
1902 1902
   public function getType()
1903 1903
   {
1904
-    return $this->type;
1904
+	return $this->type;
1905 1905
   }
1906 1906
 }
1907 1907
 
@@ -1915,18 +1915,18 @@  discard block
 block discarded – undo
1915 1915
 
1916 1916
   public function setKey($key)
1917 1917
   {
1918
-    $this->key = $key;
1918
+	$this->key = $key;
1919 1919
   }
1920 1920
   public function getKey()
1921 1921
   {
1922
-    return $this->key;
1922
+	return $this->key;
1923 1923
   }
1924 1924
   public function setValue($value)
1925 1925
   {
1926
-    $this->value = $value;
1926
+	$this->value = $value;
1927 1927
   }
1928 1928
   public function getValue()
1929 1929
   {
1930
-    return $this->value;
1930
+	return $this->value;
1931 1931
   }
1932 1932
 }
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
                   'required' => true,
106 106
                 ),
107 107
               ),
108
-            ),'get' => array(
108
+            ), 'get' => array(
109 109
               'path' => 'contacts/{id}',
110 110
               'httpMethod' => 'GET',
111 111
               'parameters' => array(
@@ -115,15 +115,15 @@  discard block
 block discarded – undo
115 115
                   'required' => true,
116 116
                 ),
117 117
               ),
118
-            ),'insert' => array(
118
+            ), 'insert' => array(
119 119
               'path' => 'contacts',
120 120
               'httpMethod' => 'POST',
121 121
               'parameters' => array(),
122
-            ),'list' => array(
122
+            ), 'list' => array(
123 123
               'path' => 'contacts',
124 124
               'httpMethod' => 'GET',
125 125
               'parameters' => array(),
126
-            ),'patch' => array(
126
+            ), 'patch' => array(
127 127
               'path' => 'contacts/{id}',
128 128
               'httpMethod' => 'PATCH',
129 129
               'parameters' => array(
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                   'required' => true,
134 134
                 ),
135 135
               ),
136
-            ),'update' => array(
136
+            ), 'update' => array(
137 137
               'path' => 'contacts/{id}',
138 138
               'httpMethod' => 'PUT',
139 139
               'parameters' => array(
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
                   'required' => true,
164 164
                 ),
165 165
               ),
166
-            ),'list' => array(
166
+            ), 'list' => array(
167 167
               'path' => 'locations',
168 168
               'httpMethod' => 'GET',
169 169
               'parameters' => array(),
@@ -207,15 +207,15 @@  discard block
 block discarded – undo
207 207
                   'required' => true,
208 208
                 ),
209 209
               ),
210
-            ),'insert' => array(
210
+            ), 'insert' => array(
211 211
               'path' => 'subscriptions',
212 212
               'httpMethod' => 'POST',
213 213
               'parameters' => array(),
214
-            ),'list' => array(
214
+            ), 'list' => array(
215 215
               'path' => 'subscriptions',
216 216
               'httpMethod' => 'GET',
217 217
               'parameters' => array(),
218
-            ),'update' => array(
218
+            ), 'update' => array(
219 219
               'path' => 'subscriptions/{id}',
220 220
               'httpMethod' => 'PUT',
221 221
               'parameters' => array(
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                   'required' => true,
246 246
                 ),
247 247
               ),
248
-            ),'get' => array(
248
+            ), 'get' => array(
249 249
               'path' => 'timeline/{id}',
250 250
               'httpMethod' => 'GET',
251 251
               'parameters' => array(
@@ -255,11 +255,11 @@  discard block
 block discarded – undo
255 255
                   'required' => true,
256 256
                 ),
257 257
               ),
258
-            ),'insert' => array(
258
+            ), 'insert' => array(
259 259
               'path' => 'timeline',
260 260
               'httpMethod' => 'POST',
261 261
               'parameters' => array(),
262
-            ),'list' => array(
262
+            ), 'list' => array(
263 263
               'path' => 'timeline',
264 264
               'httpMethod' => 'GET',
265 265
               'parameters' => array(
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
                   'type' => 'string',
293 293
                 ),
294 294
               ),
295
-            ),'patch' => array(
295
+            ), 'patch' => array(
296 296
               'path' => 'timeline/{id}',
297 297
               'httpMethod' => 'PATCH',
298 298
               'parameters' => array(
@@ -302,7 +302,7 @@  discard block
 block discarded – undo
302 302
                   'required' => true,
303 303
                 ),
304 304
               ),
305
-            ),'update' => array(
305
+            ), 'update' => array(
306 306
               'path' => 'timeline/{id}',
307 307
               'httpMethod' => 'PUT',
308 308
               'parameters' => array(
@@ -337,7 +337,7 @@  discard block
 block discarded – undo
337 337
                   'required' => true,
338 338
                 ),
339 339
               ),
340
-            ),'get' => array(
340
+            ), 'get' => array(
341 341
               'path' => 'timeline/{itemId}/attachments/{attachmentId}',
342 342
               'httpMethod' => 'GET',
343 343
               'parameters' => array(
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
                   'required' => true,
353 353
                 ),
354 354
               ),
355
-            ),'insert' => array(
355
+            ), 'insert' => array(
356 356
               'path' => 'timeline/{itemId}/attachments',
357 357
               'httpMethod' => 'POST',
358 358
               'parameters' => array(
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
                   'required' => true,
363 363
                 ),
364 364
               ),
365
-            ),'list' => array(
365
+            ), 'list' => array(
366 366
               'path' => 'timeline/{itemId}/attachments',
367 367
               'httpMethod' => 'GET',
368 368
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/Plus.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -480,7 +480,7 @@
 block discarded – undo
480 480
    * @param string $userId The ID of the user to record actions for. The only
481 481
    * valid values are "me" and the ID of the authenticated user.
482 482
    * @param string $collection The collection to which to write moments.
483
-   * @param Google_Moment $postBody
483
+   * @param Google_Service_Plus_Moment $postBody
484 484
    * @param array $optParams Optional parameters.
485 485
    *
486 486
    * @opt_param bool debug Return the moment as written. Should be used only for
Please login to merge, or discard this patch.
Indentation   +860 added lines, -860 removed lines patch added patch discarded remove patch
@@ -32,16 +32,16 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** Know your basic profile info and list of people in your circles.. */
34 34
   const PLUS_LOGIN =
35
-      "https://www.googleapis.com/auth/plus.login";
35
+	  "https://www.googleapis.com/auth/plus.login";
36 36
   /** Know who you are on Google. */
37 37
   const PLUS_ME =
38
-      "https://www.googleapis.com/auth/plus.me";
38
+	  "https://www.googleapis.com/auth/plus.me";
39 39
   /** View your email address. */
40 40
   const USERINFO_EMAIL =
41
-      "https://www.googleapis.com/auth/userinfo.email";
41
+	  "https://www.googleapis.com/auth/userinfo.email";
42 42
   /** View your basic profile info. */
43 43
   const USERINFO_PROFILE =
44
-      "https://www.googleapis.com/auth/userinfo.profile";
44
+	  "https://www.googleapis.com/auth/userinfo.profile";
45 45
 
46 46
   public $activities;
47 47
   public $comments;
@@ -56,285 +56,285 @@  discard block
 block discarded – undo
56 56
    */
57 57
   public function __construct(Google_Client $client)
58 58
   {
59
-    parent::__construct($client);
60
-    $this->rootUrl = 'https://www.googleapis.com/';
61
-    $this->servicePath = 'plus/v1/';
62
-    $this->version = 'v1';
63
-    $this->serviceName = 'plus';
64
-
65
-    $this->activities = new Google_Service_Plus_Activities_Resource(
66
-        $this,
67
-        $this->serviceName,
68
-        'activities',
69
-        array(
70
-          'methods' => array(
71
-            'get' => array(
72
-              'path' => 'activities/{activityId}',
73
-              'httpMethod' => 'GET',
74
-              'parameters' => array(
75
-                'activityId' => array(
76
-                  'location' => 'path',
77
-                  'type' => 'string',
78
-                  'required' => true,
79
-                ),
80
-              ),
81
-            ),'list' => array(
82
-              'path' => 'people/{userId}/activities/{collection}',
83
-              'httpMethod' => 'GET',
84
-              'parameters' => array(
85
-                'userId' => array(
86
-                  'location' => 'path',
87
-                  'type' => 'string',
88
-                  'required' => true,
89
-                ),
90
-                'collection' => array(
91
-                  'location' => 'path',
92
-                  'type' => 'string',
93
-                  'required' => true,
94
-                ),
95
-                'pageToken' => array(
96
-                  'location' => 'query',
97
-                  'type' => 'string',
98
-                ),
99
-                'maxResults' => array(
100
-                  'location' => 'query',
101
-                  'type' => 'integer',
102
-                ),
103
-              ),
104
-            ),'search' => array(
105
-              'path' => 'activities',
106
-              'httpMethod' => 'GET',
107
-              'parameters' => array(
108
-                'query' => array(
109
-                  'location' => 'query',
110
-                  'type' => 'string',
111
-                  'required' => true,
112
-                ),
113
-                'orderBy' => array(
114
-                  'location' => 'query',
115
-                  'type' => 'string',
116
-                ),
117
-                'pageToken' => array(
118
-                  'location' => 'query',
119
-                  'type' => 'string',
120
-                ),
121
-                'maxResults' => array(
122
-                  'location' => 'query',
123
-                  'type' => 'integer',
124
-                ),
125
-                'language' => array(
126
-                  'location' => 'query',
127
-                  'type' => 'string',
128
-                ),
129
-              ),
130
-            ),
131
-          )
132
-        )
133
-    );
134
-    $this->comments = new Google_Service_Plus_Comments_Resource(
135
-        $this,
136
-        $this->serviceName,
137
-        'comments',
138
-        array(
139
-          'methods' => array(
140
-            'get' => array(
141
-              'path' => 'comments/{commentId}',
142
-              'httpMethod' => 'GET',
143
-              'parameters' => array(
144
-                'commentId' => array(
145
-                  'location' => 'path',
146
-                  'type' => 'string',
147
-                  'required' => true,
148
-                ),
149
-              ),
150
-            ),'list' => array(
151
-              'path' => 'activities/{activityId}/comments',
152
-              'httpMethod' => 'GET',
153
-              'parameters' => array(
154
-                'activityId' => array(
155
-                  'location' => 'path',
156
-                  'type' => 'string',
157
-                  'required' => true,
158
-                ),
159
-                'pageToken' => array(
160
-                  'location' => 'query',
161
-                  'type' => 'string',
162
-                ),
163
-                'sortOrder' => array(
164
-                  'location' => 'query',
165
-                  'type' => 'string',
166
-                ),
167
-                'maxResults' => array(
168
-                  'location' => 'query',
169
-                  'type' => 'integer',
170
-                ),
171
-              ),
172
-            ),
173
-          )
174
-        )
175
-    );
176
-    $this->moments = new Google_Service_Plus_Moments_Resource(
177
-        $this,
178
-        $this->serviceName,
179
-        'moments',
180
-        array(
181
-          'methods' => array(
182
-            'insert' => array(
183
-              'path' => 'people/{userId}/moments/{collection}',
184
-              'httpMethod' => 'POST',
185
-              'parameters' => array(
186
-                'userId' => array(
187
-                  'location' => 'path',
188
-                  'type' => 'string',
189
-                  'required' => true,
190
-                ),
191
-                'collection' => array(
192
-                  'location' => 'path',
193
-                  'type' => 'string',
194
-                  'required' => true,
195
-                ),
196
-                'debug' => array(
197
-                  'location' => 'query',
198
-                  'type' => 'boolean',
199
-                ),
200
-              ),
201
-            ),'list' => array(
202
-              'path' => 'people/{userId}/moments/{collection}',
203
-              'httpMethod' => 'GET',
204
-              'parameters' => array(
205
-                'userId' => array(
206
-                  'location' => 'path',
207
-                  'type' => 'string',
208
-                  'required' => true,
209
-                ),
210
-                'collection' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'string',
213
-                  'required' => true,
214
-                ),
215
-                'maxResults' => array(
216
-                  'location' => 'query',
217
-                  'type' => 'integer',
218
-                ),
219
-                'pageToken' => array(
220
-                  'location' => 'query',
221
-                  'type' => 'string',
222
-                ),
223
-                'targetUrl' => array(
224
-                  'location' => 'query',
225
-                  'type' => 'string',
226
-                ),
227
-                'type' => array(
228
-                  'location' => 'query',
229
-                  'type' => 'string',
230
-                ),
231
-              ),
232
-            ),'remove' => array(
233
-              'path' => 'moments/{id}',
234
-              'httpMethod' => 'DELETE',
235
-              'parameters' => array(
236
-                'id' => array(
237
-                  'location' => 'path',
238
-                  'type' => 'string',
239
-                  'required' => true,
240
-                ),
241
-              ),
242
-            ),
243
-          )
244
-        )
245
-    );
246
-    $this->people = new Google_Service_Plus_People_Resource(
247
-        $this,
248
-        $this->serviceName,
249
-        'people',
250
-        array(
251
-          'methods' => array(
252
-            'get' => array(
253
-              'path' => 'people/{userId}',
254
-              'httpMethod' => 'GET',
255
-              'parameters' => array(
256
-                'userId' => array(
257
-                  'location' => 'path',
258
-                  'type' => 'string',
259
-                  'required' => true,
260
-                ),
261
-              ),
262
-            ),'list' => array(
263
-              'path' => 'people/{userId}/people/{collection}',
264
-              'httpMethod' => 'GET',
265
-              'parameters' => array(
266
-                'userId' => array(
267
-                  'location' => 'path',
268
-                  'type' => 'string',
269
-                  'required' => true,
270
-                ),
271
-                'collection' => array(
272
-                  'location' => 'path',
273
-                  'type' => 'string',
274
-                  'required' => true,
275
-                ),
276
-                'orderBy' => array(
277
-                  'location' => 'query',
278
-                  'type' => 'string',
279
-                ),
280
-                'pageToken' => array(
281
-                  'location' => 'query',
282
-                  'type' => 'string',
283
-                ),
284
-                'maxResults' => array(
285
-                  'location' => 'query',
286
-                  'type' => 'integer',
287
-                ),
288
-              ),
289
-            ),'listByActivity' => array(
290
-              'path' => 'activities/{activityId}/people/{collection}',
291
-              'httpMethod' => 'GET',
292
-              'parameters' => array(
293
-                'activityId' => array(
294
-                  'location' => 'path',
295
-                  'type' => 'string',
296
-                  'required' => true,
297
-                ),
298
-                'collection' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-                'pageToken' => array(
304
-                  'location' => 'query',
305
-                  'type' => 'string',
306
-                ),
307
-                'maxResults' => array(
308
-                  'location' => 'query',
309
-                  'type' => 'integer',
310
-                ),
311
-              ),
312
-            ),'search' => array(
313
-              'path' => 'people',
314
-              'httpMethod' => 'GET',
315
-              'parameters' => array(
316
-                'query' => array(
317
-                  'location' => 'query',
318
-                  'type' => 'string',
319
-                  'required' => true,
320
-                ),
321
-                'pageToken' => array(
322
-                  'location' => 'query',
323
-                  'type' => 'string',
324
-                ),
325
-                'maxResults' => array(
326
-                  'location' => 'query',
327
-                  'type' => 'integer',
328
-                ),
329
-                'language' => array(
330
-                  'location' => 'query',
331
-                  'type' => 'string',
332
-                ),
333
-              ),
334
-            ),
335
-          )
336
-        )
337
-    );
59
+	parent::__construct($client);
60
+	$this->rootUrl = 'https://www.googleapis.com/';
61
+	$this->servicePath = 'plus/v1/';
62
+	$this->version = 'v1';
63
+	$this->serviceName = 'plus';
64
+
65
+	$this->activities = new Google_Service_Plus_Activities_Resource(
66
+		$this,
67
+		$this->serviceName,
68
+		'activities',
69
+		array(
70
+		  'methods' => array(
71
+			'get' => array(
72
+			  'path' => 'activities/{activityId}',
73
+			  'httpMethod' => 'GET',
74
+			  'parameters' => array(
75
+				'activityId' => array(
76
+				  'location' => 'path',
77
+				  'type' => 'string',
78
+				  'required' => true,
79
+				),
80
+			  ),
81
+			),'list' => array(
82
+			  'path' => 'people/{userId}/activities/{collection}',
83
+			  'httpMethod' => 'GET',
84
+			  'parameters' => array(
85
+				'userId' => array(
86
+				  'location' => 'path',
87
+				  'type' => 'string',
88
+				  'required' => true,
89
+				),
90
+				'collection' => array(
91
+				  'location' => 'path',
92
+				  'type' => 'string',
93
+				  'required' => true,
94
+				),
95
+				'pageToken' => array(
96
+				  'location' => 'query',
97
+				  'type' => 'string',
98
+				),
99
+				'maxResults' => array(
100
+				  'location' => 'query',
101
+				  'type' => 'integer',
102
+				),
103
+			  ),
104
+			),'search' => array(
105
+			  'path' => 'activities',
106
+			  'httpMethod' => 'GET',
107
+			  'parameters' => array(
108
+				'query' => array(
109
+				  'location' => 'query',
110
+				  'type' => 'string',
111
+				  'required' => true,
112
+				),
113
+				'orderBy' => array(
114
+				  'location' => 'query',
115
+				  'type' => 'string',
116
+				),
117
+				'pageToken' => array(
118
+				  'location' => 'query',
119
+				  'type' => 'string',
120
+				),
121
+				'maxResults' => array(
122
+				  'location' => 'query',
123
+				  'type' => 'integer',
124
+				),
125
+				'language' => array(
126
+				  'location' => 'query',
127
+				  'type' => 'string',
128
+				),
129
+			  ),
130
+			),
131
+		  )
132
+		)
133
+	);
134
+	$this->comments = new Google_Service_Plus_Comments_Resource(
135
+		$this,
136
+		$this->serviceName,
137
+		'comments',
138
+		array(
139
+		  'methods' => array(
140
+			'get' => array(
141
+			  'path' => 'comments/{commentId}',
142
+			  'httpMethod' => 'GET',
143
+			  'parameters' => array(
144
+				'commentId' => array(
145
+				  'location' => 'path',
146
+				  'type' => 'string',
147
+				  'required' => true,
148
+				),
149
+			  ),
150
+			),'list' => array(
151
+			  'path' => 'activities/{activityId}/comments',
152
+			  'httpMethod' => 'GET',
153
+			  'parameters' => array(
154
+				'activityId' => array(
155
+				  'location' => 'path',
156
+				  'type' => 'string',
157
+				  'required' => true,
158
+				),
159
+				'pageToken' => array(
160
+				  'location' => 'query',
161
+				  'type' => 'string',
162
+				),
163
+				'sortOrder' => array(
164
+				  'location' => 'query',
165
+				  'type' => 'string',
166
+				),
167
+				'maxResults' => array(
168
+				  'location' => 'query',
169
+				  'type' => 'integer',
170
+				),
171
+			  ),
172
+			),
173
+		  )
174
+		)
175
+	);
176
+	$this->moments = new Google_Service_Plus_Moments_Resource(
177
+		$this,
178
+		$this->serviceName,
179
+		'moments',
180
+		array(
181
+		  'methods' => array(
182
+			'insert' => array(
183
+			  'path' => 'people/{userId}/moments/{collection}',
184
+			  'httpMethod' => 'POST',
185
+			  'parameters' => array(
186
+				'userId' => array(
187
+				  'location' => 'path',
188
+				  'type' => 'string',
189
+				  'required' => true,
190
+				),
191
+				'collection' => array(
192
+				  'location' => 'path',
193
+				  'type' => 'string',
194
+				  'required' => true,
195
+				),
196
+				'debug' => array(
197
+				  'location' => 'query',
198
+				  'type' => 'boolean',
199
+				),
200
+			  ),
201
+			),'list' => array(
202
+			  'path' => 'people/{userId}/moments/{collection}',
203
+			  'httpMethod' => 'GET',
204
+			  'parameters' => array(
205
+				'userId' => array(
206
+				  'location' => 'path',
207
+				  'type' => 'string',
208
+				  'required' => true,
209
+				),
210
+				'collection' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'string',
213
+				  'required' => true,
214
+				),
215
+				'maxResults' => array(
216
+				  'location' => 'query',
217
+				  'type' => 'integer',
218
+				),
219
+				'pageToken' => array(
220
+				  'location' => 'query',
221
+				  'type' => 'string',
222
+				),
223
+				'targetUrl' => array(
224
+				  'location' => 'query',
225
+				  'type' => 'string',
226
+				),
227
+				'type' => array(
228
+				  'location' => 'query',
229
+				  'type' => 'string',
230
+				),
231
+			  ),
232
+			),'remove' => array(
233
+			  'path' => 'moments/{id}',
234
+			  'httpMethod' => 'DELETE',
235
+			  'parameters' => array(
236
+				'id' => array(
237
+				  'location' => 'path',
238
+				  'type' => 'string',
239
+				  'required' => true,
240
+				),
241
+			  ),
242
+			),
243
+		  )
244
+		)
245
+	);
246
+	$this->people = new Google_Service_Plus_People_Resource(
247
+		$this,
248
+		$this->serviceName,
249
+		'people',
250
+		array(
251
+		  'methods' => array(
252
+			'get' => array(
253
+			  'path' => 'people/{userId}',
254
+			  'httpMethod' => 'GET',
255
+			  'parameters' => array(
256
+				'userId' => array(
257
+				  'location' => 'path',
258
+				  'type' => 'string',
259
+				  'required' => true,
260
+				),
261
+			  ),
262
+			),'list' => array(
263
+			  'path' => 'people/{userId}/people/{collection}',
264
+			  'httpMethod' => 'GET',
265
+			  'parameters' => array(
266
+				'userId' => array(
267
+				  'location' => 'path',
268
+				  'type' => 'string',
269
+				  'required' => true,
270
+				),
271
+				'collection' => array(
272
+				  'location' => 'path',
273
+				  'type' => 'string',
274
+				  'required' => true,
275
+				),
276
+				'orderBy' => array(
277
+				  'location' => 'query',
278
+				  'type' => 'string',
279
+				),
280
+				'pageToken' => array(
281
+				  'location' => 'query',
282
+				  'type' => 'string',
283
+				),
284
+				'maxResults' => array(
285
+				  'location' => 'query',
286
+				  'type' => 'integer',
287
+				),
288
+			  ),
289
+			),'listByActivity' => array(
290
+			  'path' => 'activities/{activityId}/people/{collection}',
291
+			  'httpMethod' => 'GET',
292
+			  'parameters' => array(
293
+				'activityId' => array(
294
+				  'location' => 'path',
295
+				  'type' => 'string',
296
+				  'required' => true,
297
+				),
298
+				'collection' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+				'pageToken' => array(
304
+				  'location' => 'query',
305
+				  'type' => 'string',
306
+				),
307
+				'maxResults' => array(
308
+				  'location' => 'query',
309
+				  'type' => 'integer',
310
+				),
311
+			  ),
312
+			),'search' => array(
313
+			  'path' => 'people',
314
+			  'httpMethod' => 'GET',
315
+			  'parameters' => array(
316
+				'query' => array(
317
+				  'location' => 'query',
318
+				  'type' => 'string',
319
+				  'required' => true,
320
+				),
321
+				'pageToken' => array(
322
+				  'location' => 'query',
323
+				  'type' => 'string',
324
+				),
325
+				'maxResults' => array(
326
+				  'location' => 'query',
327
+				  'type' => 'integer',
328
+				),
329
+				'language' => array(
330
+				  'location' => 'query',
331
+				  'type' => 'string',
332
+				),
333
+			  ),
334
+			),
335
+		  )
336
+		)
337
+	);
338 338
   }
339 339
 }
340 340
 
@@ -359,9 +359,9 @@  discard block
 block discarded – undo
359 359
    */
360 360
   public function get($activityId, $optParams = array())
361 361
   {
362
-    $params = array('activityId' => $activityId);
363
-    $params = array_merge($params, $optParams);
364
-    return $this->call('get', array($params), "Google_Service_Plus_Activity");
362
+	$params = array('activityId' => $activityId);
363
+	$params = array_merge($params, $optParams);
364
+	return $this->call('get', array($params), "Google_Service_Plus_Activity");
365 365
   }
366 366
 
367 367
   /**
@@ -383,9 +383,9 @@  discard block
 block discarded – undo
383 383
    */
384 384
   public function listActivities($userId, $collection, $optParams = array())
385 385
   {
386
-    $params = array('userId' => $userId, 'collection' => $collection);
387
-    $params = array_merge($params, $optParams);
388
-    return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
386
+	$params = array('userId' => $userId, 'collection' => $collection);
387
+	$params = array_merge($params, $optParams);
388
+	return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
389 389
   }
390 390
 
391 391
   /**
@@ -408,9 +408,9 @@  discard block
 block discarded – undo
408 408
    */
409 409
   public function search($query, $optParams = array())
410 410
   {
411
-    $params = array('query' => $query);
412
-    $params = array_merge($params, $optParams);
413
-    return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
411
+	$params = array('query' => $query);
412
+	$params = array_merge($params, $optParams);
413
+	return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
414 414
   }
415 415
 }
416 416
 
@@ -434,9 +434,9 @@  discard block
 block discarded – undo
434 434
    */
435 435
   public function get($commentId, $optParams = array())
436 436
   {
437
-    $params = array('commentId' => $commentId);
438
-    $params = array_merge($params, $optParams);
439
-    return $this->call('get', array($params), "Google_Service_Plus_Comment");
437
+	$params = array('commentId' => $commentId);
438
+	$params = array_merge($params, $optParams);
439
+	return $this->call('get', array($params), "Google_Service_Plus_Comment");
440 440
   }
441 441
 
442 442
   /**
@@ -456,9 +456,9 @@  discard block
 block discarded – undo
456 456
    */
457 457
   public function listComments($activityId, $optParams = array())
458 458
   {
459
-    $params = array('activityId' => $activityId);
460
-    $params = array_merge($params, $optParams);
461
-    return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
459
+	$params = array('activityId' => $activityId);
460
+	$params = array_merge($params, $optParams);
461
+	return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
462 462
   }
463 463
 }
464 464
 
@@ -489,9 +489,9 @@  discard block
 block discarded – undo
489 489
    */
490 490
   public function insert($userId, $collection, Google_Service_Plus_Moment $postBody, $optParams = array())
491 491
   {
492
-    $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
493
-    $params = array_merge($params, $optParams);
494
-    return $this->call('insert', array($params), "Google_Service_Plus_Moment");
492
+	$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
493
+	$params = array_merge($params, $optParams);
494
+	return $this->call('insert', array($params), "Google_Service_Plus_Moment");
495 495
   }
496 496
 
497 497
   /**
@@ -515,9 +515,9 @@  discard block
 block discarded – undo
515 515
    */
516 516
   public function listMoments($userId, $collection, $optParams = array())
517 517
   {
518
-    $params = array('userId' => $userId, 'collection' => $collection);
519
-    $params = array_merge($params, $optParams);
520
-    return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
518
+	$params = array('userId' => $userId, 'collection' => $collection);
519
+	$params = array_merge($params, $optParams);
520
+	return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
521 521
   }
522 522
 
523 523
   /**
@@ -528,9 +528,9 @@  discard block
 block discarded – undo
528 528
    */
529 529
   public function remove($id, $optParams = array())
530 530
   {
531
-    $params = array('id' => $id);
532
-    $params = array_merge($params, $optParams);
533
-    return $this->call('remove', array($params));
531
+	$params = array('id' => $id);
532
+	$params = array_merge($params, $optParams);
533
+	return $this->call('remove', array($params));
534 534
   }
535 535
 }
536 536
 
@@ -557,9 +557,9 @@  discard block
 block discarded – undo
557 557
    */
558 558
   public function get($userId, $optParams = array())
559 559
   {
560
-    $params = array('userId' => $userId);
561
-    $params = array_merge($params, $optParams);
562
-    return $this->call('get', array($params), "Google_Service_Plus_Person");
560
+	$params = array('userId' => $userId);
561
+	$params = array_merge($params, $optParams);
562
+	return $this->call('get', array($params), "Google_Service_Plus_Person");
563 563
   }
564 564
 
565 565
   /**
@@ -581,9 +581,9 @@  discard block
 block discarded – undo
581 581
    */
582 582
   public function listPeople($userId, $collection, $optParams = array())
583 583
   {
584
-    $params = array('userId' => $userId, 'collection' => $collection);
585
-    $params = array_merge($params, $optParams);
586
-    return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
584
+	$params = array('userId' => $userId, 'collection' => $collection);
585
+	$params = array_merge($params, $optParams);
586
+	return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
587 587
   }
588 588
 
589 589
   /**
@@ -605,9 +605,9 @@  discard block
 block discarded – undo
605 605
    */
606 606
   public function listByActivity($activityId, $collection, $optParams = array())
607 607
   {
608
-    $params = array('activityId' => $activityId, 'collection' => $collection);
609
-    $params = array_merge($params, $optParams);
610
-    return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
608
+	$params = array('activityId' => $activityId, 'collection' => $collection);
609
+	$params = array_merge($params, $optParams);
610
+	return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
611 611
   }
612 612
 
613 613
   /**
@@ -630,9 +630,9 @@  discard block
 block discarded – undo
630 630
    */
631 631
   public function search($query, $optParams = array())
632 632
   {
633
-    $params = array('query' => $query);
634
-    $params = array_merge($params, $optParams);
635
-    return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
633
+	$params = array('query' => $query);
634
+	$params = array_merge($params, $optParams);
635
+	return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
636 636
   }
637 637
 }
638 638
 
@@ -652,27 +652,27 @@  discard block
 block discarded – undo
652 652
 
653 653
   public function setDescription($description)
654 654
   {
655
-    $this->description = $description;
655
+	$this->description = $description;
656 656
   }
657 657
   public function getDescription()
658 658
   {
659
-    return $this->description;
659
+	return $this->description;
660 660
   }
661 661
   public function setItems($items)
662 662
   {
663
-    $this->items = $items;
663
+	$this->items = $items;
664 664
   }
665 665
   public function getItems()
666 666
   {
667
-    return $this->items;
667
+	return $this->items;
668 668
   }
669 669
   public function setKind($kind)
670 670
   {
671
-    $this->kind = $kind;
671
+	$this->kind = $kind;
672 672
   }
673 673
   public function getKind()
674 674
   {
675
-    return $this->kind;
675
+	return $this->kind;
676 676
   }
677 677
 }
678 678
 
@@ -709,163 +709,163 @@  discard block
 block discarded – undo
709 709
 
710 710
   public function setAccess(Google_Service_Plus_Acl $access)
711 711
   {
712
-    $this->access = $access;
712
+	$this->access = $access;
713 713
   }
714 714
   public function getAccess()
715 715
   {
716
-    return $this->access;
716
+	return $this->access;
717 717
   }
718 718
   public function setActor(Google_Service_Plus_ActivityActor $actor)
719 719
   {
720
-    $this->actor = $actor;
720
+	$this->actor = $actor;
721 721
   }
722 722
   public function getActor()
723 723
   {
724
-    return $this->actor;
724
+	return $this->actor;
725 725
   }
726 726
   public function setAddress($address)
727 727
   {
728
-    $this->address = $address;
728
+	$this->address = $address;
729 729
   }
730 730
   public function getAddress()
731 731
   {
732
-    return $this->address;
732
+	return $this->address;
733 733
   }
734 734
   public function setAnnotation($annotation)
735 735
   {
736
-    $this->annotation = $annotation;
736
+	$this->annotation = $annotation;
737 737
   }
738 738
   public function getAnnotation()
739 739
   {
740
-    return $this->annotation;
740
+	return $this->annotation;
741 741
   }
742 742
   public function setCrosspostSource($crosspostSource)
743 743
   {
744
-    $this->crosspostSource = $crosspostSource;
744
+	$this->crosspostSource = $crosspostSource;
745 745
   }
746 746
   public function getCrosspostSource()
747 747
   {
748
-    return $this->crosspostSource;
748
+	return $this->crosspostSource;
749 749
   }
750 750
   public function setEtag($etag)
751 751
   {
752
-    $this->etag = $etag;
752
+	$this->etag = $etag;
753 753
   }
754 754
   public function getEtag()
755 755
   {
756
-    return $this->etag;
756
+	return $this->etag;
757 757
   }
758 758
   public function setGeocode($geocode)
759 759
   {
760
-    $this->geocode = $geocode;
760
+	$this->geocode = $geocode;
761 761
   }
762 762
   public function getGeocode()
763 763
   {
764
-    return $this->geocode;
764
+	return $this->geocode;
765 765
   }
766 766
   public function setId($id)
767 767
   {
768
-    $this->id = $id;
768
+	$this->id = $id;
769 769
   }
770 770
   public function getId()
771 771
   {
772
-    return $this->id;
772
+	return $this->id;
773 773
   }
774 774
   public function setKind($kind)
775 775
   {
776
-    $this->kind = $kind;
776
+	$this->kind = $kind;
777 777
   }
778 778
   public function getKind()
779 779
   {
780
-    return $this->kind;
780
+	return $this->kind;
781 781
   }
782 782
   public function setLocation(Google_Service_Plus_Place $location)
783 783
   {
784
-    $this->location = $location;
784
+	$this->location = $location;
785 785
   }
786 786
   public function getLocation()
787 787
   {
788
-    return $this->location;
788
+	return $this->location;
789 789
   }
790 790
   public function setObject(Google_Service_Plus_ActivityObject $object)
791 791
   {
792
-    $this->object = $object;
792
+	$this->object = $object;
793 793
   }
794 794
   public function getObject()
795 795
   {
796
-    return $this->object;
796
+	return $this->object;
797 797
   }
798 798
   public function setPlaceId($placeId)
799 799
   {
800
-    $this->placeId = $placeId;
800
+	$this->placeId = $placeId;
801 801
   }
802 802
   public function getPlaceId()
803 803
   {
804
-    return $this->placeId;
804
+	return $this->placeId;
805 805
   }
806 806
   public function setPlaceName($placeName)
807 807
   {
808
-    $this->placeName = $placeName;
808
+	$this->placeName = $placeName;
809 809
   }
810 810
   public function getPlaceName()
811 811
   {
812
-    return $this->placeName;
812
+	return $this->placeName;
813 813
   }
814 814
   public function setProvider(Google_Service_Plus_ActivityProvider $provider)
815 815
   {
816
-    $this->provider = $provider;
816
+	$this->provider = $provider;
817 817
   }
818 818
   public function getProvider()
819 819
   {
820
-    return $this->provider;
820
+	return $this->provider;
821 821
   }
822 822
   public function setPublished($published)
823 823
   {
824
-    $this->published = $published;
824
+	$this->published = $published;
825 825
   }
826 826
   public function getPublished()
827 827
   {
828
-    return $this->published;
828
+	return $this->published;
829 829
   }
830 830
   public function setRadius($radius)
831 831
   {
832
-    $this->radius = $radius;
832
+	$this->radius = $radius;
833 833
   }
834 834
   public function getRadius()
835 835
   {
836
-    return $this->radius;
836
+	return $this->radius;
837 837
   }
838 838
   public function setTitle($title)
839 839
   {
840
-    $this->title = $title;
840
+	$this->title = $title;
841 841
   }
842 842
   public function getTitle()
843 843
   {
844
-    return $this->title;
844
+	return $this->title;
845 845
   }
846 846
   public function setUpdated($updated)
847 847
   {
848
-    $this->updated = $updated;
848
+	$this->updated = $updated;
849 849
   }
850 850
   public function getUpdated()
851 851
   {
852
-    return $this->updated;
852
+	return $this->updated;
853 853
   }
854 854
   public function setUrl($url)
855 855
   {
856
-    $this->url = $url;
856
+	$this->url = $url;
857 857
   }
858 858
   public function getUrl()
859 859
   {
860
-    return $this->url;
860
+	return $this->url;
861 861
   }
862 862
   public function setVerb($verb)
863 863
   {
864
-    $this->verb = $verb;
864
+	$this->verb = $verb;
865 865
   }
866 866
   public function getVerb()
867 867
   {
868
-    return $this->verb;
868
+	return $this->verb;
869 869
   }
870 870
 }
871 871
 
@@ -884,43 +884,43 @@  discard block
 block discarded – undo
884 884
 
885 885
   public function setDisplayName($displayName)
886 886
   {
887
-    $this->displayName = $displayName;
887
+	$this->displayName = $displayName;
888 888
   }
889 889
   public function getDisplayName()
890 890
   {
891
-    return $this->displayName;
891
+	return $this->displayName;
892 892
   }
893 893
   public function setId($id)
894 894
   {
895
-    $this->id = $id;
895
+	$this->id = $id;
896 896
   }
897 897
   public function getId()
898 898
   {
899
-    return $this->id;
899
+	return $this->id;
900 900
   }
901 901
   public function setImage(Google_Service_Plus_ActivityActorImage $image)
902 902
   {
903
-    $this->image = $image;
903
+	$this->image = $image;
904 904
   }
905 905
   public function getImage()
906 906
   {
907
-    return $this->image;
907
+	return $this->image;
908 908
   }
909 909
   public function setName(Google_Service_Plus_ActivityActorName $name)
910 910
   {
911
-    $this->name = $name;
911
+	$this->name = $name;
912 912
   }
913 913
   public function getName()
914 914
   {
915
-    return $this->name;
915
+	return $this->name;
916 916
   }
917 917
   public function setUrl($url)
918 918
   {
919
-    $this->url = $url;
919
+	$this->url = $url;
920 920
   }
921 921
   public function getUrl()
922 922
   {
923
-    return $this->url;
923
+	return $this->url;
924 924
   }
925 925
 }
926 926
 
@@ -933,11 +933,11 @@  discard block
 block discarded – undo
933 933
 
934 934
   public function setUrl($url)
935 935
   {
936
-    $this->url = $url;
936
+	$this->url = $url;
937 937
   }
938 938
   public function getUrl()
939 939
   {
940
-    return $this->url;
940
+	return $this->url;
941 941
   }
942 942
 }
943 943
 
@@ -951,19 +951,19 @@  discard block
 block discarded – undo
951 951
 
952 952
   public function setFamilyName($familyName)
953 953
   {
954
-    $this->familyName = $familyName;
954
+	$this->familyName = $familyName;
955 955
   }
956 956
   public function getFamilyName()
957 957
   {
958
-    return $this->familyName;
958
+	return $this->familyName;
959 959
   }
960 960
   public function setGivenName($givenName)
961 961
   {
962
-    $this->givenName = $givenName;
962
+	$this->givenName = $givenName;
963 963
   }
964 964
   public function getGivenName()
965 965
   {
966
-    return $this->givenName;
966
+	return $this->givenName;
967 967
   }
968 968
 }
969 969
 
@@ -986,75 +986,75 @@  discard block
 block discarded – undo
986 986
 
987 987
   public function setEtag($etag)
988 988
   {
989
-    $this->etag = $etag;
989
+	$this->etag = $etag;
990 990
   }
991 991
   public function getEtag()
992 992
   {
993
-    return $this->etag;
993
+	return $this->etag;
994 994
   }
995 995
   public function setId($id)
996 996
   {
997
-    $this->id = $id;
997
+	$this->id = $id;
998 998
   }
999 999
   public function getId()
1000 1000
   {
1001
-    return $this->id;
1001
+	return $this->id;
1002 1002
   }
1003 1003
   public function setItems($items)
1004 1004
   {
1005
-    $this->items = $items;
1005
+	$this->items = $items;
1006 1006
   }
1007 1007
   public function getItems()
1008 1008
   {
1009
-    return $this->items;
1009
+	return $this->items;
1010 1010
   }
1011 1011
   public function setKind($kind)
1012 1012
   {
1013
-    $this->kind = $kind;
1013
+	$this->kind = $kind;
1014 1014
   }
1015 1015
   public function getKind()
1016 1016
   {
1017
-    return $this->kind;
1017
+	return $this->kind;
1018 1018
   }
1019 1019
   public function setNextLink($nextLink)
1020 1020
   {
1021
-    $this->nextLink = $nextLink;
1021
+	$this->nextLink = $nextLink;
1022 1022
   }
1023 1023
   public function getNextLink()
1024 1024
   {
1025
-    return $this->nextLink;
1025
+	return $this->nextLink;
1026 1026
   }
1027 1027
   public function setNextPageToken($nextPageToken)
1028 1028
   {
1029
-    $this->nextPageToken = $nextPageToken;
1029
+	$this->nextPageToken = $nextPageToken;
1030 1030
   }
1031 1031
   public function getNextPageToken()
1032 1032
   {
1033
-    return $this->nextPageToken;
1033
+	return $this->nextPageToken;
1034 1034
   }
1035 1035
   public function setSelfLink($selfLink)
1036 1036
   {
1037
-    $this->selfLink = $selfLink;
1037
+	$this->selfLink = $selfLink;
1038 1038
   }
1039 1039
   public function getSelfLink()
1040 1040
   {
1041
-    return $this->selfLink;
1041
+	return $this->selfLink;
1042 1042
   }
1043 1043
   public function setTitle($title)
1044 1044
   {
1045
-    $this->title = $title;
1045
+	$this->title = $title;
1046 1046
   }
1047 1047
   public function getTitle()
1048 1048
   {
1049
-    return $this->title;
1049
+	return $this->title;
1050 1050
   }
1051 1051
   public function setUpdated($updated)
1052 1052
   {
1053
-    $this->updated = $updated;
1053
+	$this->updated = $updated;
1054 1054
   }
1055 1055
   public function getUpdated()
1056 1056
   {
1057
-    return $this->updated;
1057
+	return $this->updated;
1058 1058
   }
1059 1059
 }
1060 1060
 
@@ -1082,83 +1082,83 @@  discard block
 block discarded – undo
1082 1082
 
1083 1083
   public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
1084 1084
   {
1085
-    $this->actor = $actor;
1085
+	$this->actor = $actor;
1086 1086
   }
1087 1087
   public function getActor()
1088 1088
   {
1089
-    return $this->actor;
1089
+	return $this->actor;
1090 1090
   }
1091 1091
   public function setAttachments($attachments)
1092 1092
   {
1093
-    $this->attachments = $attachments;
1093
+	$this->attachments = $attachments;
1094 1094
   }
1095 1095
   public function getAttachments()
1096 1096
   {
1097
-    return $this->attachments;
1097
+	return $this->attachments;
1098 1098
   }
1099 1099
   public function setContent($content)
1100 1100
   {
1101
-    $this->content = $content;
1101
+	$this->content = $content;
1102 1102
   }
1103 1103
   public function getContent()
1104 1104
   {
1105
-    return $this->content;
1105
+	return $this->content;
1106 1106
   }
1107 1107
   public function setId($id)
1108 1108
   {
1109
-    $this->id = $id;
1109
+	$this->id = $id;
1110 1110
   }
1111 1111
   public function getId()
1112 1112
   {
1113
-    return $this->id;
1113
+	return $this->id;
1114 1114
   }
1115 1115
   public function setObjectType($objectType)
1116 1116
   {
1117
-    $this->objectType = $objectType;
1117
+	$this->objectType = $objectType;
1118 1118
   }
1119 1119
   public function getObjectType()
1120 1120
   {
1121
-    return $this->objectType;
1121
+	return $this->objectType;
1122 1122
   }
1123 1123
   public function setOriginalContent($originalContent)
1124 1124
   {
1125
-    $this->originalContent = $originalContent;
1125
+	$this->originalContent = $originalContent;
1126 1126
   }
1127 1127
   public function getOriginalContent()
1128 1128
   {
1129
-    return $this->originalContent;
1129
+	return $this->originalContent;
1130 1130
   }
1131 1131
   public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
1132 1132
   {
1133
-    $this->plusoners = $plusoners;
1133
+	$this->plusoners = $plusoners;
1134 1134
   }
1135 1135
   public function getPlusoners()
1136 1136
   {
1137
-    return $this->plusoners;
1137
+	return $this->plusoners;
1138 1138
   }
1139 1139
   public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
1140 1140
   {
1141
-    $this->replies = $replies;
1141
+	$this->replies = $replies;
1142 1142
   }
1143 1143
   public function getReplies()
1144 1144
   {
1145
-    return $this->replies;
1145
+	return $this->replies;
1146 1146
   }
1147 1147
   public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
1148 1148
   {
1149
-    $this->resharers = $resharers;
1149
+	$this->resharers = $resharers;
1150 1150
   }
1151 1151
   public function getResharers()
1152 1152
   {
1153
-    return $this->resharers;
1153
+	return $this->resharers;
1154 1154
   }
1155 1155
   public function setUrl($url)
1156 1156
   {
1157
-    $this->url = $url;
1157
+	$this->url = $url;
1158 1158
   }
1159 1159
   public function getUrl()
1160 1160
   {
1161
-    return $this->url;
1161
+	return $this->url;
1162 1162
   }
1163 1163
 }
1164 1164
 
@@ -1175,35 +1175,35 @@  discard block
 block discarded – undo
1175 1175
 
1176 1176
   public function setDisplayName($displayName)
1177 1177
   {
1178
-    $this->displayName = $displayName;
1178
+	$this->displayName = $displayName;
1179 1179
   }
1180 1180
   public function getDisplayName()
1181 1181
   {
1182
-    return $this->displayName;
1182
+	return $this->displayName;
1183 1183
   }
1184 1184
   public function setId($id)
1185 1185
   {
1186
-    $this->id = $id;
1186
+	$this->id = $id;
1187 1187
   }
1188 1188
   public function getId()
1189 1189
   {
1190
-    return $this->id;
1190
+	return $this->id;
1191 1191
   }
1192 1192
   public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
1193 1193
   {
1194
-    $this->image = $image;
1194
+	$this->image = $image;
1195 1195
   }
1196 1196
   public function getImage()
1197 1197
   {
1198
-    return $this->image;
1198
+	return $this->image;
1199 1199
   }
1200 1200
   public function setUrl($url)
1201 1201
   {
1202
-    $this->url = $url;
1202
+	$this->url = $url;
1203 1203
   }
1204 1204
   public function getUrl()
1205 1205
   {
1206
-    return $this->url;
1206
+	return $this->url;
1207 1207
   }
1208 1208
 }
1209 1209
 
@@ -1216,11 +1216,11 @@  discard block
 block discarded – undo
1216 1216
 
1217 1217
   public function setUrl($url)
1218 1218
   {
1219
-    $this->url = $url;
1219
+	$this->url = $url;
1220 1220
   }
1221 1221
   public function getUrl()
1222 1222
   {
1223
-    return $this->url;
1223
+	return $this->url;
1224 1224
   }
1225 1225
 }
1226 1226
 
@@ -1246,75 +1246,75 @@  discard block
 block discarded – undo
1246 1246
 
1247 1247
   public function setContent($content)
1248 1248
   {
1249
-    $this->content = $content;
1249
+	$this->content = $content;
1250 1250
   }
1251 1251
   public function getContent()
1252 1252
   {
1253
-    return $this->content;
1253
+	return $this->content;
1254 1254
   }
1255 1255
   public function setDisplayName($displayName)
1256 1256
   {
1257
-    $this->displayName = $displayName;
1257
+	$this->displayName = $displayName;
1258 1258
   }
1259 1259
   public function getDisplayName()
1260 1260
   {
1261
-    return $this->displayName;
1261
+	return $this->displayName;
1262 1262
   }
1263 1263
   public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
1264 1264
   {
1265
-    $this->embed = $embed;
1265
+	$this->embed = $embed;
1266 1266
   }
1267 1267
   public function getEmbed()
1268 1268
   {
1269
-    return $this->embed;
1269
+	return $this->embed;
1270 1270
   }
1271 1271
   public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
1272 1272
   {
1273
-    $this->fullImage = $fullImage;
1273
+	$this->fullImage = $fullImage;
1274 1274
   }
1275 1275
   public function getFullImage()
1276 1276
   {
1277
-    return $this->fullImage;
1277
+	return $this->fullImage;
1278 1278
   }
1279 1279
   public function setId($id)
1280 1280
   {
1281
-    $this->id = $id;
1281
+	$this->id = $id;
1282 1282
   }
1283 1283
   public function getId()
1284 1284
   {
1285
-    return $this->id;
1285
+	return $this->id;
1286 1286
   }
1287 1287
   public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
1288 1288
   {
1289
-    $this->image = $image;
1289
+	$this->image = $image;
1290 1290
   }
1291 1291
   public function getImage()
1292 1292
   {
1293
-    return $this->image;
1293
+	return $this->image;
1294 1294
   }
1295 1295
   public function setObjectType($objectType)
1296 1296
   {
1297
-    $this->objectType = $objectType;
1297
+	$this->objectType = $objectType;
1298 1298
   }
1299 1299
   public function getObjectType()
1300 1300
   {
1301
-    return $this->objectType;
1301
+	return $this->objectType;
1302 1302
   }
1303 1303
   public function setThumbnails($thumbnails)
1304 1304
   {
1305
-    $this->thumbnails = $thumbnails;
1305
+	$this->thumbnails = $thumbnails;
1306 1306
   }
1307 1307
   public function getThumbnails()
1308 1308
   {
1309
-    return $this->thumbnails;
1309
+	return $this->thumbnails;
1310 1310
   }
1311 1311
   public function setUrl($url)
1312 1312
   {
1313
-    $this->url = $url;
1313
+	$this->url = $url;
1314 1314
   }
1315 1315
   public function getUrl()
1316 1316
   {
1317
-    return $this->url;
1317
+	return $this->url;
1318 1318
   }
1319 1319
 }
1320 1320
 
@@ -1328,19 +1328,19 @@  discard block
 block discarded – undo
1328 1328
 
1329 1329
   public function setType($type)
1330 1330
   {
1331
-    $this->type = $type;
1331
+	$this->type = $type;
1332 1332
   }
1333 1333
   public function getType()
1334 1334
   {
1335
-    return $this->type;
1335
+	return $this->type;
1336 1336
   }
1337 1337
   public function setUrl($url)
1338 1338
   {
1339
-    $this->url = $url;
1339
+	$this->url = $url;
1340 1340
   }
1341 1341
   public function getUrl()
1342 1342
   {
1343
-    return $this->url;
1343
+	return $this->url;
1344 1344
   }
1345 1345
 }
1346 1346
 
@@ -1356,35 +1356,35 @@  discard block
 block discarded – undo
1356 1356
 
1357 1357
   public function setHeight($height)
1358 1358
   {
1359
-    $this->height = $height;
1359
+	$this->height = $height;
1360 1360
   }
1361 1361
   public function getHeight()
1362 1362
   {
1363
-    return $this->height;
1363
+	return $this->height;
1364 1364
   }
1365 1365
   public function setType($type)
1366 1366
   {
1367
-    $this->type = $type;
1367
+	$this->type = $type;
1368 1368
   }
1369 1369
   public function getType()
1370 1370
   {
1371
-    return $this->type;
1371
+	return $this->type;
1372 1372
   }
1373 1373
   public function setUrl($url)
1374 1374
   {
1375
-    $this->url = $url;
1375
+	$this->url = $url;
1376 1376
   }
1377 1377
   public function getUrl()
1378 1378
   {
1379
-    return $this->url;
1379
+	return $this->url;
1380 1380
   }
1381 1381
   public function setWidth($width)
1382 1382
   {
1383
-    $this->width = $width;
1383
+	$this->width = $width;
1384 1384
   }
1385 1385
   public function getWidth()
1386 1386
   {
1387
-    return $this->width;
1387
+	return $this->width;
1388 1388
   }
1389 1389
 }
1390 1390
 
@@ -1400,35 +1400,35 @@  discard block
 block discarded – undo
1400 1400
 
1401 1401
   public function setHeight($height)
1402 1402
   {
1403
-    $this->height = $height;
1403
+	$this->height = $height;
1404 1404
   }
1405 1405
   public function getHeight()
1406 1406
   {
1407
-    return $this->height;
1407
+	return $this->height;
1408 1408
   }
1409 1409
   public function setType($type)
1410 1410
   {
1411
-    $this->type = $type;
1411
+	$this->type = $type;
1412 1412
   }
1413 1413
   public function getType()
1414 1414
   {
1415
-    return $this->type;
1415
+	return $this->type;
1416 1416
   }
1417 1417
   public function setUrl($url)
1418 1418
   {
1419
-    $this->url = $url;
1419
+	$this->url = $url;
1420 1420
   }
1421 1421
   public function getUrl()
1422 1422
   {
1423
-    return $this->url;
1423
+	return $this->url;
1424 1424
   }
1425 1425
   public function setWidth($width)
1426 1426
   {
1427
-    $this->width = $width;
1427
+	$this->width = $width;
1428 1428
   }
1429 1429
   public function getWidth()
1430 1430
   {
1431
-    return $this->width;
1431
+	return $this->width;
1432 1432
   }
1433 1433
 }
1434 1434
 
@@ -1444,27 +1444,27 @@  discard block
 block discarded – undo
1444 1444
 
1445 1445
   public function setDescription($description)
1446 1446
   {
1447
-    $this->description = $description;
1447
+	$this->description = $description;
1448 1448
   }
1449 1449
   public function getDescription()
1450 1450
   {
1451
-    return $this->description;
1451
+	return $this->description;
1452 1452
   }
1453 1453
   public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
1454 1454
   {
1455
-    $this->image = $image;
1455
+	$this->image = $image;
1456 1456
   }
1457 1457
   public function getImage()
1458 1458
   {
1459
-    return $this->image;
1459
+	return $this->image;
1460 1460
   }
1461 1461
   public function setUrl($url)
1462 1462
   {
1463
-    $this->url = $url;
1463
+	$this->url = $url;
1464 1464
   }
1465 1465
   public function getUrl()
1466 1466
   {
1467
-    return $this->url;
1467
+	return $this->url;
1468 1468
   }
1469 1469
 }
1470 1470
 
@@ -1480,35 +1480,35 @@  discard block
 block discarded – undo
1480 1480
 
1481 1481
   public function setHeight($height)
1482 1482
   {
1483
-    $this->height = $height;
1483
+	$this->height = $height;
1484 1484
   }
1485 1485
   public function getHeight()
1486 1486
   {
1487
-    return $this->height;
1487
+	return $this->height;
1488 1488
   }
1489 1489
   public function setType($type)
1490 1490
   {
1491
-    $this->type = $type;
1491
+	$this->type = $type;
1492 1492
   }
1493 1493
   public function getType()
1494 1494
   {
1495
-    return $this->type;
1495
+	return $this->type;
1496 1496
   }
1497 1497
   public function setUrl($url)
1498 1498
   {
1499
-    $this->url = $url;
1499
+	$this->url = $url;
1500 1500
   }
1501 1501
   public function getUrl()
1502 1502
   {
1503
-    return $this->url;
1503
+	return $this->url;
1504 1504
   }
1505 1505
   public function setWidth($width)
1506 1506
   {
1507
-    $this->width = $width;
1507
+	$this->width = $width;
1508 1508
   }
1509 1509
   public function getWidth()
1510 1510
   {
1511
-    return $this->width;
1511
+	return $this->width;
1512 1512
   }
1513 1513
 }
1514 1514
 
@@ -1522,19 +1522,19 @@  discard block
 block discarded – undo
1522 1522
 
1523 1523
   public function setSelfLink($selfLink)
1524 1524
   {
1525
-    $this->selfLink = $selfLink;
1525
+	$this->selfLink = $selfLink;
1526 1526
   }
1527 1527
   public function getSelfLink()
1528 1528
   {
1529
-    return $this->selfLink;
1529
+	return $this->selfLink;
1530 1530
   }
1531 1531
   public function setTotalItems($totalItems)
1532 1532
   {
1533
-    $this->totalItems = $totalItems;
1533
+	$this->totalItems = $totalItems;
1534 1534
   }
1535 1535
   public function getTotalItems()
1536 1536
   {
1537
-    return $this->totalItems;
1537
+	return $this->totalItems;
1538 1538
   }
1539 1539
 }
1540 1540
 
@@ -1548,19 +1548,19 @@  discard block
 block discarded – undo
1548 1548
 
1549 1549
   public function setSelfLink($selfLink)
1550 1550
   {
1551
-    $this->selfLink = $selfLink;
1551
+	$this->selfLink = $selfLink;
1552 1552
   }
1553 1553
   public function getSelfLink()
1554 1554
   {
1555
-    return $this->selfLink;
1555
+	return $this->selfLink;
1556 1556
   }
1557 1557
   public function setTotalItems($totalItems)
1558 1558
   {
1559
-    $this->totalItems = $totalItems;
1559
+	$this->totalItems = $totalItems;
1560 1560
   }
1561 1561
   public function getTotalItems()
1562 1562
   {
1563
-    return $this->totalItems;
1563
+	return $this->totalItems;
1564 1564
   }
1565 1565
 }
1566 1566
 
@@ -1574,19 +1574,19 @@  discard block
 block discarded – undo
1574 1574
 
1575 1575
   public function setSelfLink($selfLink)
1576 1576
   {
1577
-    $this->selfLink = $selfLink;
1577
+	$this->selfLink = $selfLink;
1578 1578
   }
1579 1579
   public function getSelfLink()
1580 1580
   {
1581
-    return $this->selfLink;
1581
+	return $this->selfLink;
1582 1582
   }
1583 1583
   public function setTotalItems($totalItems)
1584 1584
   {
1585
-    $this->totalItems = $totalItems;
1585
+	$this->totalItems = $totalItems;
1586 1586
   }
1587 1587
   public function getTotalItems()
1588 1588
   {
1589
-    return $this->totalItems;
1589
+	return $this->totalItems;
1590 1590
   }
1591 1591
 }
1592 1592
 
@@ -1599,11 +1599,11 @@  discard block
 block discarded – undo
1599 1599
 
1600 1600
   public function setTitle($title)
1601 1601
   {
1602
-    $this->title = $title;
1602
+	$this->title = $title;
1603 1603
   }
1604 1604
   public function getTitle()
1605 1605
   {
1606
-    return $this->title;
1606
+	return $this->title;
1607 1607
   }
1608 1608
 }
1609 1609
 
@@ -1631,91 +1631,91 @@  discard block
 block discarded – undo
1631 1631
 
1632 1632
   public function setActor(Google_Service_Plus_CommentActor $actor)
1633 1633
   {
1634
-    $this->actor = $actor;
1634
+	$this->actor = $actor;
1635 1635
   }
1636 1636
   public function getActor()
1637 1637
   {
1638
-    return $this->actor;
1638
+	return $this->actor;
1639 1639
   }
1640 1640
   public function setEtag($etag)
1641 1641
   {
1642
-    $this->etag = $etag;
1642
+	$this->etag = $etag;
1643 1643
   }
1644 1644
   public function getEtag()
1645 1645
   {
1646
-    return $this->etag;
1646
+	return $this->etag;
1647 1647
   }
1648 1648
   public function setId($id)
1649 1649
   {
1650
-    $this->id = $id;
1650
+	$this->id = $id;
1651 1651
   }
1652 1652
   public function getId()
1653 1653
   {
1654
-    return $this->id;
1654
+	return $this->id;
1655 1655
   }
1656 1656
   public function setInReplyTo($inReplyTo)
1657 1657
   {
1658
-    $this->inReplyTo = $inReplyTo;
1658
+	$this->inReplyTo = $inReplyTo;
1659 1659
   }
1660 1660
   public function getInReplyTo()
1661 1661
   {
1662
-    return $this->inReplyTo;
1662
+	return $this->inReplyTo;
1663 1663
   }
1664 1664
   public function setKind($kind)
1665 1665
   {
1666
-    $this->kind = $kind;
1666
+	$this->kind = $kind;
1667 1667
   }
1668 1668
   public function getKind()
1669 1669
   {
1670
-    return $this->kind;
1670
+	return $this->kind;
1671 1671
   }
1672 1672
   public function setObject(Google_Service_Plus_CommentObject $object)
1673 1673
   {
1674
-    $this->object = $object;
1674
+	$this->object = $object;
1675 1675
   }
1676 1676
   public function getObject()
1677 1677
   {
1678
-    return $this->object;
1678
+	return $this->object;
1679 1679
   }
1680 1680
   public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
1681 1681
   {
1682
-    $this->plusoners = $plusoners;
1682
+	$this->plusoners = $plusoners;
1683 1683
   }
1684 1684
   public function getPlusoners()
1685 1685
   {
1686
-    return $this->plusoners;
1686
+	return $this->plusoners;
1687 1687
   }
1688 1688
   public function setPublished($published)
1689 1689
   {
1690
-    $this->published = $published;
1690
+	$this->published = $published;
1691 1691
   }
1692 1692
   public function getPublished()
1693 1693
   {
1694
-    return $this->published;
1694
+	return $this->published;
1695 1695
   }
1696 1696
   public function setSelfLink($selfLink)
1697 1697
   {
1698
-    $this->selfLink = $selfLink;
1698
+	$this->selfLink = $selfLink;
1699 1699
   }
1700 1700
   public function getSelfLink()
1701 1701
   {
1702
-    return $this->selfLink;
1702
+	return $this->selfLink;
1703 1703
   }
1704 1704
   public function setUpdated($updated)
1705 1705
   {
1706
-    $this->updated = $updated;
1706
+	$this->updated = $updated;
1707 1707
   }
1708 1708
   public function getUpdated()
1709 1709
   {
1710
-    return $this->updated;
1710
+	return $this->updated;
1711 1711
   }
1712 1712
   public function setVerb($verb)
1713 1713
   {
1714
-    $this->verb = $verb;
1714
+	$this->verb = $verb;
1715 1715
   }
1716 1716
   public function getVerb()
1717 1717
   {
1718
-    return $this->verb;
1718
+	return $this->verb;
1719 1719
   }
1720 1720
 }
1721 1721
 
@@ -1732,35 +1732,35 @@  discard block
 block discarded – undo
1732 1732
 
1733 1733
   public function setDisplayName($displayName)
1734 1734
   {
1735
-    $this->displayName = $displayName;
1735
+	$this->displayName = $displayName;
1736 1736
   }
1737 1737
   public function getDisplayName()
1738 1738
   {
1739
-    return $this->displayName;
1739
+	return $this->displayName;
1740 1740
   }
1741 1741
   public function setId($id)
1742 1742
   {
1743
-    $this->id = $id;
1743
+	$this->id = $id;
1744 1744
   }
1745 1745
   public function getId()
1746 1746
   {
1747
-    return $this->id;
1747
+	return $this->id;
1748 1748
   }
1749 1749
   public function setImage(Google_Service_Plus_CommentActorImage $image)
1750 1750
   {
1751
-    $this->image = $image;
1751
+	$this->image = $image;
1752 1752
   }
1753 1753
   public function getImage()
1754 1754
   {
1755
-    return $this->image;
1755
+	return $this->image;
1756 1756
   }
1757 1757
   public function setUrl($url)
1758 1758
   {
1759
-    $this->url = $url;
1759
+	$this->url = $url;
1760 1760
   }
1761 1761
   public function getUrl()
1762 1762
   {
1763
-    return $this->url;
1763
+	return $this->url;
1764 1764
   }
1765 1765
 }
1766 1766
 
@@ -1773,11 +1773,11 @@  discard block
 block discarded – undo
1773 1773
 
1774 1774
   public function setUrl($url)
1775 1775
   {
1776
-    $this->url = $url;
1776
+	$this->url = $url;
1777 1777
   }
1778 1778
   public function getUrl()
1779 1779
   {
1780
-    return $this->url;
1780
+	return $this->url;
1781 1781
   }
1782 1782
 }
1783 1783
 
@@ -1799,67 +1799,67 @@  discard block
 block discarded – undo
1799 1799
 
1800 1800
   public function setEtag($etag)
1801 1801
   {
1802
-    $this->etag = $etag;
1802
+	$this->etag = $etag;
1803 1803
   }
1804 1804
   public function getEtag()
1805 1805
   {
1806
-    return $this->etag;
1806
+	return $this->etag;
1807 1807
   }
1808 1808
   public function setId($id)
1809 1809
   {
1810
-    $this->id = $id;
1810
+	$this->id = $id;
1811 1811
   }
1812 1812
   public function getId()
1813 1813
   {
1814
-    return $this->id;
1814
+	return $this->id;
1815 1815
   }
1816 1816
   public function setItems($items)
1817 1817
   {
1818
-    $this->items = $items;
1818
+	$this->items = $items;
1819 1819
   }
1820 1820
   public function getItems()
1821 1821
   {
1822
-    return $this->items;
1822
+	return $this->items;
1823 1823
   }
1824 1824
   public function setKind($kind)
1825 1825
   {
1826
-    $this->kind = $kind;
1826
+	$this->kind = $kind;
1827 1827
   }
1828 1828
   public function getKind()
1829 1829
   {
1830
-    return $this->kind;
1830
+	return $this->kind;
1831 1831
   }
1832 1832
   public function setNextLink($nextLink)
1833 1833
   {
1834
-    $this->nextLink = $nextLink;
1834
+	$this->nextLink = $nextLink;
1835 1835
   }
1836 1836
   public function getNextLink()
1837 1837
   {
1838
-    return $this->nextLink;
1838
+	return $this->nextLink;
1839 1839
   }
1840 1840
   public function setNextPageToken($nextPageToken)
1841 1841
   {
1842
-    $this->nextPageToken = $nextPageToken;
1842
+	$this->nextPageToken = $nextPageToken;
1843 1843
   }
1844 1844
   public function getNextPageToken()
1845 1845
   {
1846
-    return $this->nextPageToken;
1846
+	return $this->nextPageToken;
1847 1847
   }
1848 1848
   public function setTitle($title)
1849 1849
   {
1850
-    $this->title = $title;
1850
+	$this->title = $title;
1851 1851
   }
1852 1852
   public function getTitle()
1853 1853
   {
1854
-    return $this->title;
1854
+	return $this->title;
1855 1855
   }
1856 1856
   public function setUpdated($updated)
1857 1857
   {
1858
-    $this->updated = $updated;
1858
+	$this->updated = $updated;
1859 1859
   }
1860 1860
   public function getUpdated()
1861 1861
   {
1862
-    return $this->updated;
1862
+	return $this->updated;
1863 1863
   }
1864 1864
 }
1865 1865
 
@@ -1873,19 +1873,19 @@  discard block
 block discarded – undo
1873 1873
 
1874 1874
   public function setId($id)
1875 1875
   {
1876
-    $this->id = $id;
1876
+	$this->id = $id;
1877 1877
   }
1878 1878
   public function getId()
1879 1879
   {
1880
-    return $this->id;
1880
+	return $this->id;
1881 1881
   }
1882 1882
   public function setUrl($url)
1883 1883
   {
1884
-    $this->url = $url;
1884
+	$this->url = $url;
1885 1885
   }
1886 1886
   public function getUrl()
1887 1887
   {
1888
-    return $this->url;
1888
+	return $this->url;
1889 1889
   }
1890 1890
 }
1891 1891
 
@@ -1900,27 +1900,27 @@  discard block
 block discarded – undo
1900 1900
 
1901 1901
   public function setContent($content)
1902 1902
   {
1903
-    $this->content = $content;
1903
+	$this->content = $content;
1904 1904
   }
1905 1905
   public function getContent()
1906 1906
   {
1907
-    return $this->content;
1907
+	return $this->content;
1908 1908
   }
1909 1909
   public function setObjectType($objectType)
1910 1910
   {
1911
-    $this->objectType = $objectType;
1911
+	$this->objectType = $objectType;
1912 1912
   }
1913 1913
   public function getObjectType()
1914 1914
   {
1915
-    return $this->objectType;
1915
+	return $this->objectType;
1916 1916
   }
1917 1917
   public function setOriginalContent($originalContent)
1918 1918
   {
1919
-    $this->originalContent = $originalContent;
1919
+	$this->originalContent = $originalContent;
1920 1920
   }
1921 1921
   public function getOriginalContent()
1922 1922
   {
1923
-    return $this->originalContent;
1923
+	return $this->originalContent;
1924 1924
   }
1925 1925
 }
1926 1926
 
@@ -1933,11 +1933,11 @@  discard block
 block discarded – undo
1933 1933
 
1934 1934
   public function setTotalItems($totalItems)
1935 1935
   {
1936
-    $this->totalItems = $totalItems;
1936
+	$this->totalItems = $totalItems;
1937 1937
   }
1938 1938
   public function getTotalItems()
1939 1939
   {
1940
-    return $this->totalItems;
1940
+	return $this->totalItems;
1941 1941
   }
1942 1942
 }
1943 1943
 
@@ -1945,7 +1945,7 @@  discard block
 block discarded – undo
1945 1945
 {
1946 1946
   protected $collection_key = 'performers';
1947 1947
   protected $internal_gapi_mappings = array(
1948
-        "associatedMedia" => "associated_media",
1948
+		"associatedMedia" => "associated_media",
1949 1949
   );
1950 1950
   protected $aboutType = 'Google_Service_Plus_ItemScope';
1951 1951
   protected $aboutDataType = '';
@@ -2021,443 +2021,443 @@  discard block
 block discarded – undo
2021 2021
 
2022 2022
   public function setAbout(Google_Service_Plus_ItemScope $about)
2023 2023
   {
2024
-    $this->about = $about;
2024
+	$this->about = $about;
2025 2025
   }
2026 2026
   public function getAbout()
2027 2027
   {
2028
-    return $this->about;
2028
+	return $this->about;
2029 2029
   }
2030 2030
   public function setAdditionalName($additionalName)
2031 2031
   {
2032
-    $this->additionalName = $additionalName;
2032
+	$this->additionalName = $additionalName;
2033 2033
   }
2034 2034
   public function getAdditionalName()
2035 2035
   {
2036
-    return $this->additionalName;
2036
+	return $this->additionalName;
2037 2037
   }
2038 2038
   public function setAddress(Google_Service_Plus_ItemScope $address)
2039 2039
   {
2040
-    $this->address = $address;
2040
+	$this->address = $address;
2041 2041
   }
2042 2042
   public function getAddress()
2043 2043
   {
2044
-    return $this->address;
2044
+	return $this->address;
2045 2045
   }
2046 2046
   public function setAddressCountry($addressCountry)
2047 2047
   {
2048
-    $this->addressCountry = $addressCountry;
2048
+	$this->addressCountry = $addressCountry;
2049 2049
   }
2050 2050
   public function getAddressCountry()
2051 2051
   {
2052
-    return $this->addressCountry;
2052
+	return $this->addressCountry;
2053 2053
   }
2054 2054
   public function setAddressLocality($addressLocality)
2055 2055
   {
2056
-    $this->addressLocality = $addressLocality;
2056
+	$this->addressLocality = $addressLocality;
2057 2057
   }
2058 2058
   public function getAddressLocality()
2059 2059
   {
2060
-    return $this->addressLocality;
2060
+	return $this->addressLocality;
2061 2061
   }
2062 2062
   public function setAddressRegion($addressRegion)
2063 2063
   {
2064
-    $this->addressRegion = $addressRegion;
2064
+	$this->addressRegion = $addressRegion;
2065 2065
   }
2066 2066
   public function getAddressRegion()
2067 2067
   {
2068
-    return $this->addressRegion;
2068
+	return $this->addressRegion;
2069 2069
   }
2070 2070
   public function setAssociatedMedia($associatedMedia)
2071 2071
   {
2072
-    $this->associatedMedia = $associatedMedia;
2072
+	$this->associatedMedia = $associatedMedia;
2073 2073
   }
2074 2074
   public function getAssociatedMedia()
2075 2075
   {
2076
-    return $this->associatedMedia;
2076
+	return $this->associatedMedia;
2077 2077
   }
2078 2078
   public function setAttendeeCount($attendeeCount)
2079 2079
   {
2080
-    $this->attendeeCount = $attendeeCount;
2080
+	$this->attendeeCount = $attendeeCount;
2081 2081
   }
2082 2082
   public function getAttendeeCount()
2083 2083
   {
2084
-    return $this->attendeeCount;
2084
+	return $this->attendeeCount;
2085 2085
   }
2086 2086
   public function setAttendees($attendees)
2087 2087
   {
2088
-    $this->attendees = $attendees;
2088
+	$this->attendees = $attendees;
2089 2089
   }
2090 2090
   public function getAttendees()
2091 2091
   {
2092
-    return $this->attendees;
2092
+	return $this->attendees;
2093 2093
   }
2094 2094
   public function setAudio(Google_Service_Plus_ItemScope $audio)
2095 2095
   {
2096
-    $this->audio = $audio;
2096
+	$this->audio = $audio;
2097 2097
   }
2098 2098
   public function getAudio()
2099 2099
   {
2100
-    return $this->audio;
2100
+	return $this->audio;
2101 2101
   }
2102 2102
   public function setAuthor($author)
2103 2103
   {
2104
-    $this->author = $author;
2104
+	$this->author = $author;
2105 2105
   }
2106 2106
   public function getAuthor()
2107 2107
   {
2108
-    return $this->author;
2108
+	return $this->author;
2109 2109
   }
2110 2110
   public function setBestRating($bestRating)
2111 2111
   {
2112
-    $this->bestRating = $bestRating;
2112
+	$this->bestRating = $bestRating;
2113 2113
   }
2114 2114
   public function getBestRating()
2115 2115
   {
2116
-    return $this->bestRating;
2116
+	return $this->bestRating;
2117 2117
   }
2118 2118
   public function setBirthDate($birthDate)
2119 2119
   {
2120
-    $this->birthDate = $birthDate;
2120
+	$this->birthDate = $birthDate;
2121 2121
   }
2122 2122
   public function getBirthDate()
2123 2123
   {
2124
-    return $this->birthDate;
2124
+	return $this->birthDate;
2125 2125
   }
2126 2126
   public function setByArtist(Google_Service_Plus_ItemScope $byArtist)
2127 2127
   {
2128
-    $this->byArtist = $byArtist;
2128
+	$this->byArtist = $byArtist;
2129 2129
   }
2130 2130
   public function getByArtist()
2131 2131
   {
2132
-    return $this->byArtist;
2132
+	return $this->byArtist;
2133 2133
   }
2134 2134
   public function setCaption($caption)
2135 2135
   {
2136
-    $this->caption = $caption;
2136
+	$this->caption = $caption;
2137 2137
   }
2138 2138
   public function getCaption()
2139 2139
   {
2140
-    return $this->caption;
2140
+	return $this->caption;
2141 2141
   }
2142 2142
   public function setContentSize($contentSize)
2143 2143
   {
2144
-    $this->contentSize = $contentSize;
2144
+	$this->contentSize = $contentSize;
2145 2145
   }
2146 2146
   public function getContentSize()
2147 2147
   {
2148
-    return $this->contentSize;
2148
+	return $this->contentSize;
2149 2149
   }
2150 2150
   public function setContentUrl($contentUrl)
2151 2151
   {
2152
-    $this->contentUrl = $contentUrl;
2152
+	$this->contentUrl = $contentUrl;
2153 2153
   }
2154 2154
   public function getContentUrl()
2155 2155
   {
2156
-    return $this->contentUrl;
2156
+	return $this->contentUrl;
2157 2157
   }
2158 2158
   public function setContributor($contributor)
2159 2159
   {
2160
-    $this->contributor = $contributor;
2160
+	$this->contributor = $contributor;
2161 2161
   }
2162 2162
   public function getContributor()
2163 2163
   {
2164
-    return $this->contributor;
2164
+	return $this->contributor;
2165 2165
   }
2166 2166
   public function setDateCreated($dateCreated)
2167 2167
   {
2168
-    $this->dateCreated = $dateCreated;
2168
+	$this->dateCreated = $dateCreated;
2169 2169
   }
2170 2170
   public function getDateCreated()
2171 2171
   {
2172
-    return $this->dateCreated;
2172
+	return $this->dateCreated;
2173 2173
   }
2174 2174
   public function setDateModified($dateModified)
2175 2175
   {
2176
-    $this->dateModified = $dateModified;
2176
+	$this->dateModified = $dateModified;
2177 2177
   }
2178 2178
   public function getDateModified()
2179 2179
   {
2180
-    return $this->dateModified;
2180
+	return $this->dateModified;
2181 2181
   }
2182 2182
   public function setDatePublished($datePublished)
2183 2183
   {
2184
-    $this->datePublished = $datePublished;
2184
+	$this->datePublished = $datePublished;
2185 2185
   }
2186 2186
   public function getDatePublished()
2187 2187
   {
2188
-    return $this->datePublished;
2188
+	return $this->datePublished;
2189 2189
   }
2190 2190
   public function setDescription($description)
2191 2191
   {
2192
-    $this->description = $description;
2192
+	$this->description = $description;
2193 2193
   }
2194 2194
   public function getDescription()
2195 2195
   {
2196
-    return $this->description;
2196
+	return $this->description;
2197 2197
   }
2198 2198
   public function setDuration($duration)
2199 2199
   {
2200
-    $this->duration = $duration;
2200
+	$this->duration = $duration;
2201 2201
   }
2202 2202
   public function getDuration()
2203 2203
   {
2204
-    return $this->duration;
2204
+	return $this->duration;
2205 2205
   }
2206 2206
   public function setEmbedUrl($embedUrl)
2207 2207
   {
2208
-    $this->embedUrl = $embedUrl;
2208
+	$this->embedUrl = $embedUrl;
2209 2209
   }
2210 2210
   public function getEmbedUrl()
2211 2211
   {
2212
-    return $this->embedUrl;
2212
+	return $this->embedUrl;
2213 2213
   }
2214 2214
   public function setEndDate($endDate)
2215 2215
   {
2216
-    $this->endDate = $endDate;
2216
+	$this->endDate = $endDate;
2217 2217
   }
2218 2218
   public function getEndDate()
2219 2219
   {
2220
-    return $this->endDate;
2220
+	return $this->endDate;
2221 2221
   }
2222 2222
   public function setFamilyName($familyName)
2223 2223
   {
2224
-    $this->familyName = $familyName;
2224
+	$this->familyName = $familyName;
2225 2225
   }
2226 2226
   public function getFamilyName()
2227 2227
   {
2228
-    return $this->familyName;
2228
+	return $this->familyName;
2229 2229
   }
2230 2230
   public function setGender($gender)
2231 2231
   {
2232
-    $this->gender = $gender;
2232
+	$this->gender = $gender;
2233 2233
   }
2234 2234
   public function getGender()
2235 2235
   {
2236
-    return $this->gender;
2236
+	return $this->gender;
2237 2237
   }
2238 2238
   public function setGeo(Google_Service_Plus_ItemScope $geo)
2239 2239
   {
2240
-    $this->geo = $geo;
2240
+	$this->geo = $geo;
2241 2241
   }
2242 2242
   public function getGeo()
2243 2243
   {
2244
-    return $this->geo;
2244
+	return $this->geo;
2245 2245
   }
2246 2246
   public function setGivenName($givenName)
2247 2247
   {
2248
-    $this->givenName = $givenName;
2248
+	$this->givenName = $givenName;
2249 2249
   }
2250 2250
   public function getGivenName()
2251 2251
   {
2252
-    return $this->givenName;
2252
+	return $this->givenName;
2253 2253
   }
2254 2254
   public function setHeight($height)
2255 2255
   {
2256
-    $this->height = $height;
2256
+	$this->height = $height;
2257 2257
   }
2258 2258
   public function getHeight()
2259 2259
   {
2260
-    return $this->height;
2260
+	return $this->height;
2261 2261
   }
2262 2262
   public function setId($id)
2263 2263
   {
2264
-    $this->id = $id;
2264
+	$this->id = $id;
2265 2265
   }
2266 2266
   public function getId()
2267 2267
   {
2268
-    return $this->id;
2268
+	return $this->id;
2269 2269
   }
2270 2270
   public function setImage($image)
2271 2271
   {
2272
-    $this->image = $image;
2272
+	$this->image = $image;
2273 2273
   }
2274 2274
   public function getImage()
2275 2275
   {
2276
-    return $this->image;
2276
+	return $this->image;
2277 2277
   }
2278 2278
   public function setInAlbum(Google_Service_Plus_ItemScope $inAlbum)
2279 2279
   {
2280
-    $this->inAlbum = $inAlbum;
2280
+	$this->inAlbum = $inAlbum;
2281 2281
   }
2282 2282
   public function getInAlbum()
2283 2283
   {
2284
-    return $this->inAlbum;
2284
+	return $this->inAlbum;
2285 2285
   }
2286 2286
   public function setKind($kind)
2287 2287
   {
2288
-    $this->kind = $kind;
2288
+	$this->kind = $kind;
2289 2289
   }
2290 2290
   public function getKind()
2291 2291
   {
2292
-    return $this->kind;
2292
+	return $this->kind;
2293 2293
   }
2294 2294
   public function setLatitude($latitude)
2295 2295
   {
2296
-    $this->latitude = $latitude;
2296
+	$this->latitude = $latitude;
2297 2297
   }
2298 2298
   public function getLatitude()
2299 2299
   {
2300
-    return $this->latitude;
2300
+	return $this->latitude;
2301 2301
   }
2302 2302
   public function setLocation(Google_Service_Plus_ItemScope $location)
2303 2303
   {
2304
-    $this->location = $location;
2304
+	$this->location = $location;
2305 2305
   }
2306 2306
   public function getLocation()
2307 2307
   {
2308
-    return $this->location;
2308
+	return $this->location;
2309 2309
   }
2310 2310
   public function setLongitude($longitude)
2311 2311
   {
2312
-    $this->longitude = $longitude;
2312
+	$this->longitude = $longitude;
2313 2313
   }
2314 2314
   public function getLongitude()
2315 2315
   {
2316
-    return $this->longitude;
2316
+	return $this->longitude;
2317 2317
   }
2318 2318
   public function setName($name)
2319 2319
   {
2320
-    $this->name = $name;
2320
+	$this->name = $name;
2321 2321
   }
2322 2322
   public function getName()
2323 2323
   {
2324
-    return $this->name;
2324
+	return $this->name;
2325 2325
   }
2326 2326
   public function setPartOfTVSeries(Google_Service_Plus_ItemScope $partOfTVSeries)
2327 2327
   {
2328
-    $this->partOfTVSeries = $partOfTVSeries;
2328
+	$this->partOfTVSeries = $partOfTVSeries;
2329 2329
   }
2330 2330
   public function getPartOfTVSeries()
2331 2331
   {
2332
-    return $this->partOfTVSeries;
2332
+	return $this->partOfTVSeries;
2333 2333
   }
2334 2334
   public function setPerformers($performers)
2335 2335
   {
2336
-    $this->performers = $performers;
2336
+	$this->performers = $performers;
2337 2337
   }
2338 2338
   public function getPerformers()
2339 2339
   {
2340
-    return $this->performers;
2340
+	return $this->performers;
2341 2341
   }
2342 2342
   public function setPlayerType($playerType)
2343 2343
   {
2344
-    $this->playerType = $playerType;
2344
+	$this->playerType = $playerType;
2345 2345
   }
2346 2346
   public function getPlayerType()
2347 2347
   {
2348
-    return $this->playerType;
2348
+	return $this->playerType;
2349 2349
   }
2350 2350
   public function setPostOfficeBoxNumber($postOfficeBoxNumber)
2351 2351
   {
2352
-    $this->postOfficeBoxNumber = $postOfficeBoxNumber;
2352
+	$this->postOfficeBoxNumber = $postOfficeBoxNumber;
2353 2353
   }
2354 2354
   public function getPostOfficeBoxNumber()
2355 2355
   {
2356
-    return $this->postOfficeBoxNumber;
2356
+	return $this->postOfficeBoxNumber;
2357 2357
   }
2358 2358
   public function setPostalCode($postalCode)
2359 2359
   {
2360
-    $this->postalCode = $postalCode;
2360
+	$this->postalCode = $postalCode;
2361 2361
   }
2362 2362
   public function getPostalCode()
2363 2363
   {
2364
-    return $this->postalCode;
2364
+	return $this->postalCode;
2365 2365
   }
2366 2366
   public function setRatingValue($ratingValue)
2367 2367
   {
2368
-    $this->ratingValue = $ratingValue;
2368
+	$this->ratingValue = $ratingValue;
2369 2369
   }
2370 2370
   public function getRatingValue()
2371 2371
   {
2372
-    return $this->ratingValue;
2372
+	return $this->ratingValue;
2373 2373
   }
2374 2374
   public function setReviewRating(Google_Service_Plus_ItemScope $reviewRating)
2375 2375
   {
2376
-    $this->reviewRating = $reviewRating;
2376
+	$this->reviewRating = $reviewRating;
2377 2377
   }
2378 2378
   public function getReviewRating()
2379 2379
   {
2380
-    return $this->reviewRating;
2380
+	return $this->reviewRating;
2381 2381
   }
2382 2382
   public function setStartDate($startDate)
2383 2383
   {
2384
-    $this->startDate = $startDate;
2384
+	$this->startDate = $startDate;
2385 2385
   }
2386 2386
   public function getStartDate()
2387 2387
   {
2388
-    return $this->startDate;
2388
+	return $this->startDate;
2389 2389
   }
2390 2390
   public function setStreetAddress($streetAddress)
2391 2391
   {
2392
-    $this->streetAddress = $streetAddress;
2392
+	$this->streetAddress = $streetAddress;
2393 2393
   }
2394 2394
   public function getStreetAddress()
2395 2395
   {
2396
-    return $this->streetAddress;
2396
+	return $this->streetAddress;
2397 2397
   }
2398 2398
   public function setText($text)
2399 2399
   {
2400
-    $this->text = $text;
2400
+	$this->text = $text;
2401 2401
   }
2402 2402
   public function getText()
2403 2403
   {
2404
-    return $this->text;
2404
+	return $this->text;
2405 2405
   }
2406 2406
   public function setThumbnail(Google_Service_Plus_ItemScope $thumbnail)
2407 2407
   {
2408
-    $this->thumbnail = $thumbnail;
2408
+	$this->thumbnail = $thumbnail;
2409 2409
   }
2410 2410
   public function getThumbnail()
2411 2411
   {
2412
-    return $this->thumbnail;
2412
+	return $this->thumbnail;
2413 2413
   }
2414 2414
   public function setThumbnailUrl($thumbnailUrl)
2415 2415
   {
2416
-    $this->thumbnailUrl = $thumbnailUrl;
2416
+	$this->thumbnailUrl = $thumbnailUrl;
2417 2417
   }
2418 2418
   public function getThumbnailUrl()
2419 2419
   {
2420
-    return $this->thumbnailUrl;
2420
+	return $this->thumbnailUrl;
2421 2421
   }
2422 2422
   public function setTickerSymbol($tickerSymbol)
2423 2423
   {
2424
-    $this->tickerSymbol = $tickerSymbol;
2424
+	$this->tickerSymbol = $tickerSymbol;
2425 2425
   }
2426 2426
   public function getTickerSymbol()
2427 2427
   {
2428
-    return $this->tickerSymbol;
2428
+	return $this->tickerSymbol;
2429 2429
   }
2430 2430
   public function setType($type)
2431 2431
   {
2432
-    $this->type = $type;
2432
+	$this->type = $type;
2433 2433
   }
2434 2434
   public function getType()
2435 2435
   {
2436
-    return $this->type;
2436
+	return $this->type;
2437 2437
   }
2438 2438
   public function setUrl($url)
2439 2439
   {
2440
-    $this->url = $url;
2440
+	$this->url = $url;
2441 2441
   }
2442 2442
   public function getUrl()
2443 2443
   {
2444
-    return $this->url;
2444
+	return $this->url;
2445 2445
   }
2446 2446
   public function setWidth($width)
2447 2447
   {
2448
-    $this->width = $width;
2448
+	$this->width = $width;
2449 2449
   }
2450 2450
   public function getWidth()
2451 2451
   {
2452
-    return $this->width;
2452
+	return $this->width;
2453 2453
   }
2454 2454
   public function setWorstRating($worstRating)
2455 2455
   {
2456
-    $this->worstRating = $worstRating;
2456
+	$this->worstRating = $worstRating;
2457 2457
   }
2458 2458
   public function getWorstRating()
2459 2459
   {
2460
-    return $this->worstRating;
2460
+	return $this->worstRating;
2461 2461
   }
2462 2462
 }
2463 2463
 
@@ -2479,59 +2479,59 @@  discard block
 block discarded – undo
2479 2479
 
2480 2480
   public function setId($id)
2481 2481
   {
2482
-    $this->id = $id;
2482
+	$this->id = $id;
2483 2483
   }
2484 2484
   public function getId()
2485 2485
   {
2486
-    return $this->id;
2486
+	return $this->id;
2487 2487
   }
2488 2488
   public function setKind($kind)
2489 2489
   {
2490
-    $this->kind = $kind;
2490
+	$this->kind = $kind;
2491 2491
   }
2492 2492
   public function getKind()
2493 2493
   {
2494
-    return $this->kind;
2494
+	return $this->kind;
2495 2495
   }
2496 2496
   public function setObject(Google_Service_Plus_ItemScope $object)
2497 2497
   {
2498
-    $this->object = $object;
2498
+	$this->object = $object;
2499 2499
   }
2500 2500
   public function getObject()
2501 2501
   {
2502
-    return $this->object;
2502
+	return $this->object;
2503 2503
   }
2504 2504
   public function setResult(Google_Service_Plus_ItemScope $result)
2505 2505
   {
2506
-    $this->result = $result;
2506
+	$this->result = $result;
2507 2507
   }
2508 2508
   public function getResult()
2509 2509
   {
2510
-    return $this->result;
2510
+	return $this->result;
2511 2511
   }
2512 2512
   public function setStartDate($startDate)
2513 2513
   {
2514
-    $this->startDate = $startDate;
2514
+	$this->startDate = $startDate;
2515 2515
   }
2516 2516
   public function getStartDate()
2517 2517
   {
2518
-    return $this->startDate;
2518
+	return $this->startDate;
2519 2519
   }
2520 2520
   public function setTarget(Google_Service_Plus_ItemScope $target)
2521 2521
   {
2522
-    $this->target = $target;
2522
+	$this->target = $target;
2523 2523
   }
2524 2524
   public function getTarget()
2525 2525
   {
2526
-    return $this->target;
2526
+	return $this->target;
2527 2527
   }
2528 2528
   public function setType($type)
2529 2529
   {
2530
-    $this->type = $type;
2530
+	$this->type = $type;
2531 2531
   }
2532 2532
   public function getType()
2533 2533
   {
2534
-    return $this->type;
2534
+	return $this->type;
2535 2535
   }
2536 2536
 }
2537 2537
 
@@ -2553,67 +2553,67 @@  discard block
 block discarded – undo
2553 2553
 
2554 2554
   public function setEtag($etag)
2555 2555
   {
2556
-    $this->etag = $etag;
2556
+	$this->etag = $etag;
2557 2557
   }
2558 2558
   public function getEtag()
2559 2559
   {
2560
-    return $this->etag;
2560
+	return $this->etag;
2561 2561
   }
2562 2562
   public function setItems($items)
2563 2563
   {
2564
-    $this->items = $items;
2564
+	$this->items = $items;
2565 2565
   }
2566 2566
   public function getItems()
2567 2567
   {
2568
-    return $this->items;
2568
+	return $this->items;
2569 2569
   }
2570 2570
   public function setKind($kind)
2571 2571
   {
2572
-    $this->kind = $kind;
2572
+	$this->kind = $kind;
2573 2573
   }
2574 2574
   public function getKind()
2575 2575
   {
2576
-    return $this->kind;
2576
+	return $this->kind;
2577 2577
   }
2578 2578
   public function setNextLink($nextLink)
2579 2579
   {
2580
-    $this->nextLink = $nextLink;
2580
+	$this->nextLink = $nextLink;
2581 2581
   }
2582 2582
   public function getNextLink()
2583 2583
   {
2584
-    return $this->nextLink;
2584
+	return $this->nextLink;
2585 2585
   }
2586 2586
   public function setNextPageToken($nextPageToken)
2587 2587
   {
2588
-    $this->nextPageToken = $nextPageToken;
2588
+	$this->nextPageToken = $nextPageToken;
2589 2589
   }
2590 2590
   public function getNextPageToken()
2591 2591
   {
2592
-    return $this->nextPageToken;
2592
+	return $this->nextPageToken;
2593 2593
   }
2594 2594
   public function setSelfLink($selfLink)
2595 2595
   {
2596
-    $this->selfLink = $selfLink;
2596
+	$this->selfLink = $selfLink;
2597 2597
   }
2598 2598
   public function getSelfLink()
2599 2599
   {
2600
-    return $this->selfLink;
2600
+	return $this->selfLink;
2601 2601
   }
2602 2602
   public function setTitle($title)
2603 2603
   {
2604
-    $this->title = $title;
2604
+	$this->title = $title;
2605 2605
   }
2606 2606
   public function getTitle()
2607 2607
   {
2608
-    return $this->title;
2608
+	return $this->title;
2609 2609
   }
2610 2610
   public function setUpdated($updated)
2611 2611
   {
2612
-    $this->updated = $updated;
2612
+	$this->updated = $updated;
2613 2613
   }
2614 2614
   public function getUpdated()
2615 2615
   {
2616
-    return $this->updated;
2616
+	return $this->updated;
2617 2617
   }
2618 2618
 }
2619 2619
 
@@ -2634,59 +2634,59 @@  discard block
 block discarded – undo
2634 2634
 
2635 2635
   public function setEtag($etag)
2636 2636
   {
2637
-    $this->etag = $etag;
2637
+	$this->etag = $etag;
2638 2638
   }
2639 2639
   public function getEtag()
2640 2640
   {
2641
-    return $this->etag;
2641
+	return $this->etag;
2642 2642
   }
2643 2643
   public function setItems($items)
2644 2644
   {
2645
-    $this->items = $items;
2645
+	$this->items = $items;
2646 2646
   }
2647 2647
   public function getItems()
2648 2648
   {
2649
-    return $this->items;
2649
+	return $this->items;
2650 2650
   }
2651 2651
   public function setKind($kind)
2652 2652
   {
2653
-    $this->kind = $kind;
2653
+	$this->kind = $kind;
2654 2654
   }
2655 2655
   public function getKind()
2656 2656
   {
2657
-    return $this->kind;
2657
+	return $this->kind;
2658 2658
   }
2659 2659
   public function setNextPageToken($nextPageToken)
2660 2660
   {
2661
-    $this->nextPageToken = $nextPageToken;
2661
+	$this->nextPageToken = $nextPageToken;
2662 2662
   }
2663 2663
   public function getNextPageToken()
2664 2664
   {
2665
-    return $this->nextPageToken;
2665
+	return $this->nextPageToken;
2666 2666
   }
2667 2667
   public function setSelfLink($selfLink)
2668 2668
   {
2669
-    $this->selfLink = $selfLink;
2669
+	$this->selfLink = $selfLink;
2670 2670
   }
2671 2671
   public function getSelfLink()
2672 2672
   {
2673
-    return $this->selfLink;
2673
+	return $this->selfLink;
2674 2674
   }
2675 2675
   public function setTitle($title)
2676 2676
   {
2677
-    $this->title = $title;
2677
+	$this->title = $title;
2678 2678
   }
2679 2679
   public function getTitle()
2680 2680
   {
2681
-    return $this->title;
2681
+	return $this->title;
2682 2682
   }
2683 2683
   public function setTotalItems($totalItems)
2684 2684
   {
2685
-    $this->totalItems = $totalItems;
2685
+	$this->totalItems = $totalItems;
2686 2686
   }
2687 2687
   public function getTotalItems()
2688 2688
   {
2689
-    return $this->totalItems;
2689
+	return $this->totalItems;
2690 2690
   }
2691 2691
 }
2692 2692
 
@@ -2737,243 +2737,243 @@  discard block
 block discarded – undo
2737 2737
 
2738 2738
   public function setAboutMe($aboutMe)
2739 2739
   {
2740
-    $this->aboutMe = $aboutMe;
2740
+	$this->aboutMe = $aboutMe;
2741 2741
   }
2742 2742
   public function getAboutMe()
2743 2743
   {
2744
-    return $this->aboutMe;
2744
+	return $this->aboutMe;
2745 2745
   }
2746 2746
   public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
2747 2747
   {
2748
-    $this->ageRange = $ageRange;
2748
+	$this->ageRange = $ageRange;
2749 2749
   }
2750 2750
   public function getAgeRange()
2751 2751
   {
2752
-    return $this->ageRange;
2752
+	return $this->ageRange;
2753 2753
   }
2754 2754
   public function setBirthday($birthday)
2755 2755
   {
2756
-    $this->birthday = $birthday;
2756
+	$this->birthday = $birthday;
2757 2757
   }
2758 2758
   public function getBirthday()
2759 2759
   {
2760
-    return $this->birthday;
2760
+	return $this->birthday;
2761 2761
   }
2762 2762
   public function setBraggingRights($braggingRights)
2763 2763
   {
2764
-    $this->braggingRights = $braggingRights;
2764
+	$this->braggingRights = $braggingRights;
2765 2765
   }
2766 2766
   public function getBraggingRights()
2767 2767
   {
2768
-    return $this->braggingRights;
2768
+	return $this->braggingRights;
2769 2769
   }
2770 2770
   public function setCircledByCount($circledByCount)
2771 2771
   {
2772
-    $this->circledByCount = $circledByCount;
2772
+	$this->circledByCount = $circledByCount;
2773 2773
   }
2774 2774
   public function getCircledByCount()
2775 2775
   {
2776
-    return $this->circledByCount;
2776
+	return $this->circledByCount;
2777 2777
   }
2778 2778
   public function setCover(Google_Service_Plus_PersonCover $cover)
2779 2779
   {
2780
-    $this->cover = $cover;
2780
+	$this->cover = $cover;
2781 2781
   }
2782 2782
   public function getCover()
2783 2783
   {
2784
-    return $this->cover;
2784
+	return $this->cover;
2785 2785
   }
2786 2786
   public function setCurrentLocation($currentLocation)
2787 2787
   {
2788
-    $this->currentLocation = $currentLocation;
2788
+	$this->currentLocation = $currentLocation;
2789 2789
   }
2790 2790
   public function getCurrentLocation()
2791 2791
   {
2792
-    return $this->currentLocation;
2792
+	return $this->currentLocation;
2793 2793
   }
2794 2794
   public function setDisplayName($displayName)
2795 2795
   {
2796
-    $this->displayName = $displayName;
2796
+	$this->displayName = $displayName;
2797 2797
   }
2798 2798
   public function getDisplayName()
2799 2799
   {
2800
-    return $this->displayName;
2800
+	return $this->displayName;
2801 2801
   }
2802 2802
   public function setDomain($domain)
2803 2803
   {
2804
-    $this->domain = $domain;
2804
+	$this->domain = $domain;
2805 2805
   }
2806 2806
   public function getDomain()
2807 2807
   {
2808
-    return $this->domain;
2808
+	return $this->domain;
2809 2809
   }
2810 2810
   public function setEmails($emails)
2811 2811
   {
2812
-    $this->emails = $emails;
2812
+	$this->emails = $emails;
2813 2813
   }
2814 2814
   public function getEmails()
2815 2815
   {
2816
-    return $this->emails;
2816
+	return $this->emails;
2817 2817
   }
2818 2818
   public function setEtag($etag)
2819 2819
   {
2820
-    $this->etag = $etag;
2820
+	$this->etag = $etag;
2821 2821
   }
2822 2822
   public function getEtag()
2823 2823
   {
2824
-    return $this->etag;
2824
+	return $this->etag;
2825 2825
   }
2826 2826
   public function setGender($gender)
2827 2827
   {
2828
-    $this->gender = $gender;
2828
+	$this->gender = $gender;
2829 2829
   }
2830 2830
   public function getGender()
2831 2831
   {
2832
-    return $this->gender;
2832
+	return $this->gender;
2833 2833
   }
2834 2834
   public function setId($id)
2835 2835
   {
2836
-    $this->id = $id;
2836
+	$this->id = $id;
2837 2837
   }
2838 2838
   public function getId()
2839 2839
   {
2840
-    return $this->id;
2840
+	return $this->id;
2841 2841
   }
2842 2842
   public function setImage(Google_Service_Plus_PersonImage $image)
2843 2843
   {
2844
-    $this->image = $image;
2844
+	$this->image = $image;
2845 2845
   }
2846 2846
   public function getImage()
2847 2847
   {
2848
-    return $this->image;
2848
+	return $this->image;
2849 2849
   }
2850 2850
   public function setIsPlusUser($isPlusUser)
2851 2851
   {
2852
-    $this->isPlusUser = $isPlusUser;
2852
+	$this->isPlusUser = $isPlusUser;
2853 2853
   }
2854 2854
   public function getIsPlusUser()
2855 2855
   {
2856
-    return $this->isPlusUser;
2856
+	return $this->isPlusUser;
2857 2857
   }
2858 2858
   public function setKind($kind)
2859 2859
   {
2860
-    $this->kind = $kind;
2860
+	$this->kind = $kind;
2861 2861
   }
2862 2862
   public function getKind()
2863 2863
   {
2864
-    return $this->kind;
2864
+	return $this->kind;
2865 2865
   }
2866 2866
   public function setLanguage($language)
2867 2867
   {
2868
-    $this->language = $language;
2868
+	$this->language = $language;
2869 2869
   }
2870 2870
   public function getLanguage()
2871 2871
   {
2872
-    return $this->language;
2872
+	return $this->language;
2873 2873
   }
2874 2874
   public function setName(Google_Service_Plus_PersonName $name)
2875 2875
   {
2876
-    $this->name = $name;
2876
+	$this->name = $name;
2877 2877
   }
2878 2878
   public function getName()
2879 2879
   {
2880
-    return $this->name;
2880
+	return $this->name;
2881 2881
   }
2882 2882
   public function setNickname($nickname)
2883 2883
   {
2884
-    $this->nickname = $nickname;
2884
+	$this->nickname = $nickname;
2885 2885
   }
2886 2886
   public function getNickname()
2887 2887
   {
2888
-    return $this->nickname;
2888
+	return $this->nickname;
2889 2889
   }
2890 2890
   public function setObjectType($objectType)
2891 2891
   {
2892
-    $this->objectType = $objectType;
2892
+	$this->objectType = $objectType;
2893 2893
   }
2894 2894
   public function getObjectType()
2895 2895
   {
2896
-    return $this->objectType;
2896
+	return $this->objectType;
2897 2897
   }
2898 2898
   public function setOccupation($occupation)
2899 2899
   {
2900
-    $this->occupation = $occupation;
2900
+	$this->occupation = $occupation;
2901 2901
   }
2902 2902
   public function getOccupation()
2903 2903
   {
2904
-    return $this->occupation;
2904
+	return $this->occupation;
2905 2905
   }
2906 2906
   public function setOrganizations($organizations)
2907 2907
   {
2908
-    $this->organizations = $organizations;
2908
+	$this->organizations = $organizations;
2909 2909
   }
2910 2910
   public function getOrganizations()
2911 2911
   {
2912
-    return $this->organizations;
2912
+	return $this->organizations;
2913 2913
   }
2914 2914
   public function setPlacesLived($placesLived)
2915 2915
   {
2916
-    $this->placesLived = $placesLived;
2916
+	$this->placesLived = $placesLived;
2917 2917
   }
2918 2918
   public function getPlacesLived()
2919 2919
   {
2920
-    return $this->placesLived;
2920
+	return $this->placesLived;
2921 2921
   }
2922 2922
   public function setPlusOneCount($plusOneCount)
2923 2923
   {
2924
-    $this->plusOneCount = $plusOneCount;
2924
+	$this->plusOneCount = $plusOneCount;
2925 2925
   }
2926 2926
   public function getPlusOneCount()
2927 2927
   {
2928
-    return $this->plusOneCount;
2928
+	return $this->plusOneCount;
2929 2929
   }
2930 2930
   public function setRelationshipStatus($relationshipStatus)
2931 2931
   {
2932
-    $this->relationshipStatus = $relationshipStatus;
2932
+	$this->relationshipStatus = $relationshipStatus;
2933 2933
   }
2934 2934
   public function getRelationshipStatus()
2935 2935
   {
2936
-    return $this->relationshipStatus;
2936
+	return $this->relationshipStatus;
2937 2937
   }
2938 2938
   public function setSkills($skills)
2939 2939
   {
2940
-    $this->skills = $skills;
2940
+	$this->skills = $skills;
2941 2941
   }
2942 2942
   public function getSkills()
2943 2943
   {
2944
-    return $this->skills;
2944
+	return $this->skills;
2945 2945
   }
2946 2946
   public function setTagline($tagline)
2947 2947
   {
2948
-    $this->tagline = $tagline;
2948
+	$this->tagline = $tagline;
2949 2949
   }
2950 2950
   public function getTagline()
2951 2951
   {
2952
-    return $this->tagline;
2952
+	return $this->tagline;
2953 2953
   }
2954 2954
   public function setUrl($url)
2955 2955
   {
2956
-    $this->url = $url;
2956
+	$this->url = $url;
2957 2957
   }
2958 2958
   public function getUrl()
2959 2959
   {
2960
-    return $this->url;
2960
+	return $this->url;
2961 2961
   }
2962 2962
   public function setUrls($urls)
2963 2963
   {
2964
-    $this->urls = $urls;
2964
+	$this->urls = $urls;
2965 2965
   }
2966 2966
   public function getUrls()
2967 2967
   {
2968
-    return $this->urls;
2968
+	return $this->urls;
2969 2969
   }
2970 2970
   public function setVerified($verified)
2971 2971
   {
2972
-    $this->verified = $verified;
2972
+	$this->verified = $verified;
2973 2973
   }
2974 2974
   public function getVerified()
2975 2975
   {
2976
-    return $this->verified;
2976
+	return $this->verified;
2977 2977
   }
2978 2978
 }
2979 2979
 
@@ -2987,19 +2987,19 @@  discard block
 block discarded – undo
2987 2987
 
2988 2988
   public function setMax($max)
2989 2989
   {
2990
-    $this->max = $max;
2990
+	$this->max = $max;
2991 2991
   }
2992 2992
   public function getMax()
2993 2993
   {
2994
-    return $this->max;
2994
+	return $this->max;
2995 2995
   }
2996 2996
   public function setMin($min)
2997 2997
   {
2998
-    $this->min = $min;
2998
+	$this->min = $min;
2999 2999
   }
3000 3000
   public function getMin()
3001 3001
   {
3002
-    return $this->min;
3002
+	return $this->min;
3003 3003
   }
3004 3004
 }
3005 3005
 
@@ -3016,27 +3016,27 @@  discard block
 block discarded – undo
3016 3016
 
3017 3017
   public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
3018 3018
   {
3019
-    $this->coverInfo = $coverInfo;
3019
+	$this->coverInfo = $coverInfo;
3020 3020
   }
3021 3021
   public function getCoverInfo()
3022 3022
   {
3023
-    return $this->coverInfo;
3023
+	return $this->coverInfo;
3024 3024
   }
3025 3025
   public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
3026 3026
   {
3027
-    $this->coverPhoto = $coverPhoto;
3027
+	$this->coverPhoto = $coverPhoto;
3028 3028
   }
3029 3029
   public function getCoverPhoto()
3030 3030
   {
3031
-    return $this->coverPhoto;
3031
+	return $this->coverPhoto;
3032 3032
   }
3033 3033
   public function setLayout($layout)
3034 3034
   {
3035
-    $this->layout = $layout;
3035
+	$this->layout = $layout;
3036 3036
   }
3037 3037
   public function getLayout()
3038 3038
   {
3039
-    return $this->layout;
3039
+	return $this->layout;
3040 3040
   }
3041 3041
 }
3042 3042
 
@@ -3050,19 +3050,19 @@  discard block
 block discarded – undo
3050 3050
 
3051 3051
   public function setLeftImageOffset($leftImageOffset)
3052 3052
   {
3053
-    $this->leftImageOffset = $leftImageOffset;
3053
+	$this->leftImageOffset = $leftImageOffset;
3054 3054
   }
3055 3055
   public function getLeftImageOffset()
3056 3056
   {
3057
-    return $this->leftImageOffset;
3057
+	return $this->leftImageOffset;
3058 3058
   }
3059 3059
   public function setTopImageOffset($topImageOffset)
3060 3060
   {
3061
-    $this->topImageOffset = $topImageOffset;
3061
+	$this->topImageOffset = $topImageOffset;
3062 3062
   }
3063 3063
   public function getTopImageOffset()
3064 3064
   {
3065
-    return $this->topImageOffset;
3065
+	return $this->topImageOffset;
3066 3066
   }
3067 3067
 }
3068 3068
 
@@ -3077,27 +3077,27 @@  discard block
 block discarded – undo
3077 3077
 
3078 3078
   public function setHeight($height)
3079 3079
   {
3080
-    $this->height = $height;
3080
+	$this->height = $height;
3081 3081
   }
3082 3082
   public function getHeight()
3083 3083
   {
3084
-    return $this->height;
3084
+	return $this->height;
3085 3085
   }
3086 3086
   public function setUrl($url)
3087 3087
   {
3088
-    $this->url = $url;
3088
+	$this->url = $url;
3089 3089
   }
3090 3090
   public function getUrl()
3091 3091
   {
3092
-    return $this->url;
3092
+	return $this->url;
3093 3093
   }
3094 3094
   public function setWidth($width)
3095 3095
   {
3096
-    $this->width = $width;
3096
+	$this->width = $width;
3097 3097
   }
3098 3098
   public function getWidth()
3099 3099
   {
3100
-    return $this->width;
3100
+	return $this->width;
3101 3101
   }
3102 3102
 }
3103 3103
 
@@ -3111,19 +3111,19 @@  discard block
 block discarded – undo
3111 3111
 
3112 3112
   public function setType($type)
3113 3113
   {
3114
-    $this->type = $type;
3114
+	$this->type = $type;
3115 3115
   }
3116 3116
   public function getType()
3117 3117
   {
3118
-    return $this->type;
3118
+	return $this->type;
3119 3119
   }
3120 3120
   public function setValue($value)
3121 3121
   {
3122
-    $this->value = $value;
3122
+	$this->value = $value;
3123 3123
   }
3124 3124
   public function getValue()
3125 3125
   {
3126
-    return $this->value;
3126
+	return $this->value;
3127 3127
   }
3128 3128
 }
3129 3129
 
@@ -3137,19 +3137,19 @@  discard block
 block discarded – undo
3137 3137
 
3138 3138
   public function setIsDefault($isDefault)
3139 3139
   {
3140
-    $this->isDefault = $isDefault;
3140
+	$this->isDefault = $isDefault;
3141 3141
   }
3142 3142
   public function getIsDefault()
3143 3143
   {
3144
-    return $this->isDefault;
3144
+	return $this->isDefault;
3145 3145
   }
3146 3146
   public function setUrl($url)
3147 3147
   {
3148
-    $this->url = $url;
3148
+	$this->url = $url;
3149 3149
   }
3150 3150
   public function getUrl()
3151 3151
   {
3152
-    return $this->url;
3152
+	return $this->url;
3153 3153
   }
3154 3154
 }
3155 3155
 
@@ -3167,51 +3167,51 @@  discard block
 block discarded – undo
3167 3167
 
3168 3168
   public function setFamilyName($familyName)
3169 3169
   {
3170
-    $this->familyName = $familyName;
3170
+	$this->familyName = $familyName;
3171 3171
   }
3172 3172
   public function getFamilyName()
3173 3173
   {
3174
-    return $this->familyName;
3174
+	return $this->familyName;
3175 3175
   }
3176 3176
   public function setFormatted($formatted)
3177 3177
   {
3178
-    $this->formatted = $formatted;
3178
+	$this->formatted = $formatted;
3179 3179
   }
3180 3180
   public function getFormatted()
3181 3181
   {
3182
-    return $this->formatted;
3182
+	return $this->formatted;
3183 3183
   }
3184 3184
   public function setGivenName($givenName)
3185 3185
   {
3186
-    $this->givenName = $givenName;
3186
+	$this->givenName = $givenName;
3187 3187
   }
3188 3188
   public function getGivenName()
3189 3189
   {
3190
-    return $this->givenName;
3190
+	return $this->givenName;
3191 3191
   }
3192 3192
   public function setHonorificPrefix($honorificPrefix)
3193 3193
   {
3194
-    $this->honorificPrefix = $honorificPrefix;
3194
+	$this->honorificPrefix = $honorificPrefix;
3195 3195
   }
3196 3196
   public function getHonorificPrefix()
3197 3197
   {
3198
-    return $this->honorificPrefix;
3198
+	return $this->honorificPrefix;
3199 3199
   }
3200 3200
   public function setHonorificSuffix($honorificSuffix)
3201 3201
   {
3202
-    $this->honorificSuffix = $honorificSuffix;
3202
+	$this->honorificSuffix = $honorificSuffix;
3203 3203
   }
3204 3204
   public function getHonorificSuffix()
3205 3205
   {
3206
-    return $this->honorificSuffix;
3206
+	return $this->honorificSuffix;
3207 3207
   }
3208 3208
   public function setMiddleName($middleName)
3209 3209
   {
3210
-    $this->middleName = $middleName;
3210
+	$this->middleName = $middleName;
3211 3211
   }
3212 3212
   public function getMiddleName()
3213 3213
   {
3214
-    return $this->middleName;
3214
+	return $this->middleName;
3215 3215
   }
3216 3216
 }
3217 3217
 
@@ -3232,75 +3232,75 @@  discard block
 block discarded – undo
3232 3232
 
3233 3233
   public function setDepartment($department)
3234 3234
   {
3235
-    $this->department = $department;
3235
+	$this->department = $department;
3236 3236
   }
3237 3237
   public function getDepartment()
3238 3238
   {
3239
-    return $this->department;
3239
+	return $this->department;
3240 3240
   }
3241 3241
   public function setDescription($description)
3242 3242
   {
3243
-    $this->description = $description;
3243
+	$this->description = $description;
3244 3244
   }
3245 3245
   public function getDescription()
3246 3246
   {
3247
-    return $this->description;
3247
+	return $this->description;
3248 3248
   }
3249 3249
   public function setEndDate($endDate)
3250 3250
   {
3251
-    $this->endDate = $endDate;
3251
+	$this->endDate = $endDate;
3252 3252
   }
3253 3253
   public function getEndDate()
3254 3254
   {
3255
-    return $this->endDate;
3255
+	return $this->endDate;
3256 3256
   }
3257 3257
   public function setLocation($location)
3258 3258
   {
3259
-    $this->location = $location;
3259
+	$this->location = $location;
3260 3260
   }
3261 3261
   public function getLocation()
3262 3262
   {
3263
-    return $this->location;
3263
+	return $this->location;
3264 3264
   }
3265 3265
   public function setName($name)
3266 3266
   {
3267
-    $this->name = $name;
3267
+	$this->name = $name;
3268 3268
   }
3269 3269
   public function getName()
3270 3270
   {
3271
-    return $this->name;
3271
+	return $this->name;
3272 3272
   }
3273 3273
   public function setPrimary($primary)
3274 3274
   {
3275
-    $this->primary = $primary;
3275
+	$this->primary = $primary;
3276 3276
   }
3277 3277
   public function getPrimary()
3278 3278
   {
3279
-    return $this->primary;
3279
+	return $this->primary;
3280 3280
   }
3281 3281
   public function setStartDate($startDate)
3282 3282
   {
3283
-    $this->startDate = $startDate;
3283
+	$this->startDate = $startDate;
3284 3284
   }
3285 3285
   public function getStartDate()
3286 3286
   {
3287
-    return $this->startDate;
3287
+	return $this->startDate;
3288 3288
   }
3289 3289
   public function setTitle($title)
3290 3290
   {
3291
-    $this->title = $title;
3291
+	$this->title = $title;
3292 3292
   }
3293 3293
   public function getTitle()
3294 3294
   {
3295
-    return $this->title;
3295
+	return $this->title;
3296 3296
   }
3297 3297
   public function setType($type)
3298 3298
   {
3299
-    $this->type = $type;
3299
+	$this->type = $type;
3300 3300
   }
3301 3301
   public function getType()
3302 3302
   {
3303
-    return $this->type;
3303
+	return $this->type;
3304 3304
   }
3305 3305
 }
3306 3306
 
@@ -3314,19 +3314,19 @@  discard block
 block discarded – undo
3314 3314
 
3315 3315
   public function setPrimary($primary)
3316 3316
   {
3317
-    $this->primary = $primary;
3317
+	$this->primary = $primary;
3318 3318
   }
3319 3319
   public function getPrimary()
3320 3320
   {
3321
-    return $this->primary;
3321
+	return $this->primary;
3322 3322
   }
3323 3323
   public function setValue($value)
3324 3324
   {
3325
-    $this->value = $value;
3325
+	$this->value = $value;
3326 3326
   }
3327 3327
   public function getValue()
3328 3328
   {
3329
-    return $this->value;
3329
+	return $this->value;
3330 3330
   }
3331 3331
 }
3332 3332
 
@@ -3341,27 +3341,27 @@  discard block
 block discarded – undo
3341 3341
 
3342 3342
   public function setLabel($label)
3343 3343
   {
3344
-    $this->label = $label;
3344
+	$this->label = $label;
3345 3345
   }
3346 3346
   public function getLabel()
3347 3347
   {
3348
-    return $this->label;
3348
+	return $this->label;
3349 3349
   }
3350 3350
   public function setType($type)
3351 3351
   {
3352
-    $this->type = $type;
3352
+	$this->type = $type;
3353 3353
   }
3354 3354
   public function getType()
3355 3355
   {
3356
-    return $this->type;
3356
+	return $this->type;
3357 3357
   }
3358 3358
   public function setValue($value)
3359 3359
   {
3360
-    $this->value = $value;
3360
+	$this->value = $value;
3361 3361
   }
3362 3362
   public function getValue()
3363 3363
   {
3364
-    return $this->value;
3364
+	return $this->value;
3365 3365
   }
3366 3366
 }
3367 3367
 
@@ -3380,43 +3380,43 @@  discard block
 block discarded – undo
3380 3380
 
3381 3381
   public function setAddress(Google_Service_Plus_PlaceAddress $address)
3382 3382
   {
3383
-    $this->address = $address;
3383
+	$this->address = $address;
3384 3384
   }
3385 3385
   public function getAddress()
3386 3386
   {
3387
-    return $this->address;
3387
+	return $this->address;
3388 3388
   }
3389 3389
   public function setDisplayName($displayName)
3390 3390
   {
3391
-    $this->displayName = $displayName;
3391
+	$this->displayName = $displayName;
3392 3392
   }
3393 3393
   public function getDisplayName()
3394 3394
   {
3395
-    return $this->displayName;
3395
+	return $this->displayName;
3396 3396
   }
3397 3397
   public function setId($id)
3398 3398
   {
3399
-    $this->id = $id;
3399
+	$this->id = $id;
3400 3400
   }
3401 3401
   public function getId()
3402 3402
   {
3403
-    return $this->id;
3403
+	return $this->id;
3404 3404
   }
3405 3405
   public function setKind($kind)
3406 3406
   {
3407
-    $this->kind = $kind;
3407
+	$this->kind = $kind;
3408 3408
   }
3409 3409
   public function getKind()
3410 3410
   {
3411
-    return $this->kind;
3411
+	return $this->kind;
3412 3412
   }
3413 3413
   public function setPosition(Google_Service_Plus_PlacePosition $position)
3414 3414
   {
3415
-    $this->position = $position;
3415
+	$this->position = $position;
3416 3416
   }
3417 3417
   public function getPosition()
3418 3418
   {
3419
-    return $this->position;
3419
+	return $this->position;
3420 3420
   }
3421 3421
 }
3422 3422
 
@@ -3429,11 +3429,11 @@  discard block
 block discarded – undo
3429 3429
 
3430 3430
   public function setFormatted($formatted)
3431 3431
   {
3432
-    $this->formatted = $formatted;
3432
+	$this->formatted = $formatted;
3433 3433
   }
3434 3434
   public function getFormatted()
3435 3435
   {
3436
-    return $this->formatted;
3436
+	return $this->formatted;
3437 3437
   }
3438 3438
 }
3439 3439
 
@@ -3447,19 +3447,19 @@  discard block
 block discarded – undo
3447 3447
 
3448 3448
   public function setLatitude($latitude)
3449 3449
   {
3450
-    $this->latitude = $latitude;
3450
+	$this->latitude = $latitude;
3451 3451
   }
3452 3452
   public function getLatitude()
3453 3453
   {
3454
-    return $this->latitude;
3454
+	return $this->latitude;
3455 3455
   }
3456 3456
   public function setLongitude($longitude)
3457 3457
   {
3458
-    $this->longitude = $longitude;
3458
+	$this->longitude = $longitude;
3459 3459
   }
3460 3460
   public function getLongitude()
3461 3461
   {
3462
-    return $this->longitude;
3462
+	return $this->longitude;
3463 3463
   }
3464 3464
 }
3465 3465
 
@@ -3474,26 +3474,26 @@  discard block
 block discarded – undo
3474 3474
 
3475 3475
   public function setDisplayName($displayName)
3476 3476
   {
3477
-    $this->displayName = $displayName;
3477
+	$this->displayName = $displayName;
3478 3478
   }
3479 3479
   public function getDisplayName()
3480 3480
   {
3481
-    return $this->displayName;
3481
+	return $this->displayName;
3482 3482
   }
3483 3483
   public function setId($id)
3484 3484
   {
3485
-    $this->id = $id;
3485
+	$this->id = $id;
3486 3486
   }
3487 3487
   public function getId()
3488 3488
   {
3489
-    return $this->id;
3489
+	return $this->id;
3490 3490
   }
3491 3491
   public function setType($type)
3492 3492
   {
3493
-    $this->type = $type;
3493
+	$this->type = $type;
3494 3494
   }
3495 3495
   public function getType()
3496 3496
   {
3497
-    return $this->type;
3497
+	return $this->type;
3498 3498
   }
3499 3499
 }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
                   'required' => true,
79 79
                 ),
80 80
               ),
81
-            ),'list' => array(
81
+            ), 'list' => array(
82 82
               'path' => 'people/{userId}/activities/{collection}',
83 83
               'httpMethod' => 'GET',
84 84
               'parameters' => array(
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                   'type' => 'integer',
102 102
                 ),
103 103
               ),
104
-            ),'search' => array(
104
+            ), 'search' => array(
105 105
               'path' => 'activities',
106 106
               'httpMethod' => 'GET',
107 107
               'parameters' => array(
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
                   'required' => true,
148 148
                 ),
149 149
               ),
150
-            ),'list' => array(
150
+            ), 'list' => array(
151 151
               'path' => 'activities/{activityId}/comments',
152 152
               'httpMethod' => 'GET',
153 153
               'parameters' => array(
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
                   'type' => 'boolean',
199 199
                 ),
200 200
               ),
201
-            ),'list' => array(
201
+            ), 'list' => array(
202 202
               'path' => 'people/{userId}/moments/{collection}',
203 203
               'httpMethod' => 'GET',
204 204
               'parameters' => array(
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
                   'type' => 'string',
230 230
                 ),
231 231
               ),
232
-            ),'remove' => array(
232
+            ), 'remove' => array(
233 233
               'path' => 'moments/{id}',
234 234
               'httpMethod' => 'DELETE',
235 235
               'parameters' => array(
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
                   'required' => true,
260 260
                 ),
261 261
               ),
262
-            ),'list' => array(
262
+            ), 'list' => array(
263 263
               'path' => 'people/{userId}/people/{collection}',
264 264
               'httpMethod' => 'GET',
265 265
               'parameters' => array(
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
                   'type' => 'integer',
287 287
                 ),
288 288
               ),
289
-            ),'listByActivity' => array(
289
+            ), 'listByActivity' => array(
290 290
               'path' => 'activities/{activityId}/people/{collection}',
291 291
               'httpMethod' => 'GET',
292 292
               'parameters' => array(
@@ -309,7 +309,7 @@  discard block
 block discarded – undo
309 309
                   'type' => 'integer',
310 310
                 ),
311 311
               ),
312
-            ),'search' => array(
312
+            ), 'search' => array(
313 313
               'path' => 'people',
314 314
               'httpMethod' => 'GET',
315 315
               'parameters' => array(
Please login to merge, or discard this patch.
geodirectory-admin/google-api-php-client/src/Google/Service/PlusDomains.php 3 patches
Doc Comments   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@  discard block
 block discarded – undo
484 484
    *
485 485
    * @param string $userId The ID of the user to create the activity on behalf of.
486 486
    * Its value should be "me", to indicate the authenticated user.
487
-   * @param Google_Activity $postBody
487
+   * @param Google_Service_PlusDomains_Activity $postBody
488 488
    * @param array $optParams Optional parameters.
489 489
    *
490 490
    * @opt_param bool preview If "true", extract the potential media attachments
@@ -609,7 +609,7 @@  discard block
 block discarded – undo
609 609
    *
610 610
    * @param string $userId The ID of the user to create the circle on behalf of.
611 611
    * The value "me" can be used to indicate the authenticated user.
612
-   * @param Google_Circle $postBody
612
+   * @param Google_Service_PlusDomains_Circle $postBody
613 613
    * @param array $optParams Optional parameters.
614 614
    * @return Google_Service_PlusDomains_Circle
615 615
    */
@@ -647,7 +647,7 @@  discard block
 block discarded – undo
647 647
    * (circles.patch)
648 648
    *
649 649
    * @param string $circleId The ID of the circle to update.
650
-   * @param Google_Circle $postBody
650
+   * @param Google_Service_PlusDomains_Circle $postBody
651 651
    * @param array $optParams Optional parameters.
652 652
    * @return Google_Service_PlusDomains_Circle
653 653
    */
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
    * Update a circle's description. (circles.update)
694 694
    *
695 695
    * @param string $circleId The ID of the circle to update.
696
-   * @param Google_Circle $postBody
696
+   * @param Google_Service_PlusDomains_Circle $postBody
697 697
    * @param array $optParams Optional parameters.
698 698
    * @return Google_Service_PlusDomains_Circle
699 699
    */
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
    * Create a new comment in reply to an activity. (comments.insert)
735 735
    *
736 736
    * @param string $activityId The ID of the activity to reply to.
737
-   * @param Google_Comment $postBody
737
+   * @param Google_Service_PlusDomains_Comment $postBody
738 738
    * @param array $optParams Optional parameters.
739 739
    * @return Google_Service_PlusDomains_Comment
740 740
    */
@@ -787,7 +787,7 @@  discard block
 block discarded – undo
787 787
    *
788 788
    * @param string $userId The ID of the user to create the activity on behalf of.
789 789
    * @param string $collection
790
-   * @param Google_Media $postBody
790
+   * @param Google_Service_PlusDomains_Media $postBody
791 791
    * @param array $optParams Optional parameters.
792 792
    * @return Google_Service_PlusDomains_Media
793 793
    */
Please login to merge, or discard this patch.
Indentation   +962 added lines, -962 removed lines patch added patch discarded remove patch
@@ -32,34 +32,34 @@  discard block
 block discarded – undo
32 32
 {
33 33
   /** View your circles and the people and pages in them. */
34 34
   const PLUS_CIRCLES_READ =
35
-      "https://www.googleapis.com/auth/plus.circles.read";
35
+	  "https://www.googleapis.com/auth/plus.circles.read";
36 36
   /** Manage your circles and add people and pages. People and pages you add to your circles will be notified. Others may see this information publicly. People you add to circles can use Hangouts with you.. */
37 37
   const PLUS_CIRCLES_WRITE =
38
-      "https://www.googleapis.com/auth/plus.circles.write";
38
+	  "https://www.googleapis.com/auth/plus.circles.write";
39 39
   /** Know your basic profile info and list of people in your circles.. */
40 40
   const PLUS_LOGIN =
41
-      "https://www.googleapis.com/auth/plus.login";
41
+	  "https://www.googleapis.com/auth/plus.login";
42 42
   /** Know who you are on Google. */
43 43
   const PLUS_ME =
44
-      "https://www.googleapis.com/auth/plus.me";
44
+	  "https://www.googleapis.com/auth/plus.me";
45 45
   /** Send your photos and videos to Google+. */
46 46
   const PLUS_MEDIA_UPLOAD =
47
-      "https://www.googleapis.com/auth/plus.media.upload";
47
+	  "https://www.googleapis.com/auth/plus.media.upload";
48 48
   /** View your own Google+ profile and profiles visible to you. */
49 49
   const PLUS_PROFILES_READ =
50
-      "https://www.googleapis.com/auth/plus.profiles.read";
50
+	  "https://www.googleapis.com/auth/plus.profiles.read";
51 51
   /** View your Google+ posts, comments, and stream. */
52 52
   const PLUS_STREAM_READ =
53
-      "https://www.googleapis.com/auth/plus.stream.read";
53
+	  "https://www.googleapis.com/auth/plus.stream.read";
54 54
   /** Manage your Google+ posts, comments, and stream. */
55 55
   const PLUS_STREAM_WRITE =
56
-      "https://www.googleapis.com/auth/plus.stream.write";
56
+	  "https://www.googleapis.com/auth/plus.stream.write";
57 57
   /** View your email address. */
58 58
   const USERINFO_EMAIL =
59
-      "https://www.googleapis.com/auth/userinfo.email";
59
+	  "https://www.googleapis.com/auth/userinfo.email";
60 60
   /** View your basic profile info. */
61 61
   const USERINFO_PROFILE =
62
-      "https://www.googleapis.com/auth/userinfo.profile";
62
+	  "https://www.googleapis.com/auth/userinfo.profile";
63 63
 
64 64
   public $activities;
65 65
   public $audiences;
@@ -76,380 +76,380 @@  discard block
 block discarded – undo
76 76
    */
77 77
   public function __construct(Google_Client $client)
78 78
   {
79
-    parent::__construct($client);
80
-    $this->rootUrl = 'https://www.googleapis.com/';
81
-    $this->servicePath = 'plusDomains/v1/';
82
-    $this->version = 'v1';
83
-    $this->serviceName = 'plusDomains';
84
-
85
-    $this->activities = new Google_Service_PlusDomains_Activities_Resource(
86
-        $this,
87
-        $this->serviceName,
88
-        'activities',
89
-        array(
90
-          'methods' => array(
91
-            'get' => array(
92
-              'path' => 'activities/{activityId}',
93
-              'httpMethod' => 'GET',
94
-              'parameters' => array(
95
-                'activityId' => array(
96
-                  'location' => 'path',
97
-                  'type' => 'string',
98
-                  'required' => true,
99
-                ),
100
-              ),
101
-            ),'insert' => array(
102
-              'path' => 'people/{userId}/activities',
103
-              'httpMethod' => 'POST',
104
-              'parameters' => array(
105
-                'userId' => array(
106
-                  'location' => 'path',
107
-                  'type' => 'string',
108
-                  'required' => true,
109
-                ),
110
-                'preview' => array(
111
-                  'location' => 'query',
112
-                  'type' => 'boolean',
113
-                ),
114
-              ),
115
-            ),'list' => array(
116
-              'path' => 'people/{userId}/activities/{collection}',
117
-              'httpMethod' => 'GET',
118
-              'parameters' => array(
119
-                'userId' => array(
120
-                  'location' => 'path',
121
-                  'type' => 'string',
122
-                  'required' => true,
123
-                ),
124
-                'collection' => array(
125
-                  'location' => 'path',
126
-                  'type' => 'string',
127
-                  'required' => true,
128
-                ),
129
-                'pageToken' => array(
130
-                  'location' => 'query',
131
-                  'type' => 'string',
132
-                ),
133
-                'maxResults' => array(
134
-                  'location' => 'query',
135
-                  'type' => 'integer',
136
-                ),
137
-              ),
138
-            ),
139
-          )
140
-        )
141
-    );
142
-    $this->audiences = new Google_Service_PlusDomains_Audiences_Resource(
143
-        $this,
144
-        $this->serviceName,
145
-        'audiences',
146
-        array(
147
-          'methods' => array(
148
-            'list' => array(
149
-              'path' => 'people/{userId}/audiences',
150
-              'httpMethod' => 'GET',
151
-              'parameters' => array(
152
-                'userId' => array(
153
-                  'location' => 'path',
154
-                  'type' => 'string',
155
-                  'required' => true,
156
-                ),
157
-                'pageToken' => array(
158
-                  'location' => 'query',
159
-                  'type' => 'string',
160
-                ),
161
-                'maxResults' => array(
162
-                  'location' => 'query',
163
-                  'type' => 'integer',
164
-                ),
165
-              ),
166
-            ),
167
-          )
168
-        )
169
-    );
170
-    $this->circles = new Google_Service_PlusDomains_Circles_Resource(
171
-        $this,
172
-        $this->serviceName,
173
-        'circles',
174
-        array(
175
-          'methods' => array(
176
-            'addPeople' => array(
177
-              'path' => 'circles/{circleId}/people',
178
-              'httpMethod' => 'PUT',
179
-              'parameters' => array(
180
-                'circleId' => array(
181
-                  'location' => 'path',
182
-                  'type' => 'string',
183
-                  'required' => true,
184
-                ),
185
-                'userId' => array(
186
-                  'location' => 'query',
187
-                  'type' => 'string',
188
-                  'repeated' => true,
189
-                ),
190
-                'email' => array(
191
-                  'location' => 'query',
192
-                  'type' => 'string',
193
-                  'repeated' => true,
194
-                ),
195
-              ),
196
-            ),'get' => array(
197
-              'path' => 'circles/{circleId}',
198
-              'httpMethod' => 'GET',
199
-              'parameters' => array(
200
-                'circleId' => array(
201
-                  'location' => 'path',
202
-                  'type' => 'string',
203
-                  'required' => true,
204
-                ),
205
-              ),
206
-            ),'insert' => array(
207
-              'path' => 'people/{userId}/circles',
208
-              'httpMethod' => 'POST',
209
-              'parameters' => array(
210
-                'userId' => array(
211
-                  'location' => 'path',
212
-                  'type' => 'string',
213
-                  'required' => true,
214
-                ),
215
-              ),
216
-            ),'list' => array(
217
-              'path' => 'people/{userId}/circles',
218
-              'httpMethod' => 'GET',
219
-              'parameters' => array(
220
-                'userId' => array(
221
-                  'location' => 'path',
222
-                  'type' => 'string',
223
-                  'required' => true,
224
-                ),
225
-                'pageToken' => array(
226
-                  'location' => 'query',
227
-                  'type' => 'string',
228
-                ),
229
-                'maxResults' => array(
230
-                  'location' => 'query',
231
-                  'type' => 'integer',
232
-                ),
233
-              ),
234
-            ),'patch' => array(
235
-              'path' => 'circles/{circleId}',
236
-              'httpMethod' => 'PATCH',
237
-              'parameters' => array(
238
-                'circleId' => array(
239
-                  'location' => 'path',
240
-                  'type' => 'string',
241
-                  'required' => true,
242
-                ),
243
-              ),
244
-            ),'remove' => array(
245
-              'path' => 'circles/{circleId}',
246
-              'httpMethod' => 'DELETE',
247
-              'parameters' => array(
248
-                'circleId' => array(
249
-                  'location' => 'path',
250
-                  'type' => 'string',
251
-                  'required' => true,
252
-                ),
253
-              ),
254
-            ),'removePeople' => array(
255
-              'path' => 'circles/{circleId}/people',
256
-              'httpMethod' => 'DELETE',
257
-              'parameters' => array(
258
-                'circleId' => array(
259
-                  'location' => 'path',
260
-                  'type' => 'string',
261
-                  'required' => true,
262
-                ),
263
-                'userId' => array(
264
-                  'location' => 'query',
265
-                  'type' => 'string',
266
-                  'repeated' => true,
267
-                ),
268
-                'email' => array(
269
-                  'location' => 'query',
270
-                  'type' => 'string',
271
-                  'repeated' => true,
272
-                ),
273
-              ),
274
-            ),'update' => array(
275
-              'path' => 'circles/{circleId}',
276
-              'httpMethod' => 'PUT',
277
-              'parameters' => array(
278
-                'circleId' => array(
279
-                  'location' => 'path',
280
-                  'type' => 'string',
281
-                  'required' => true,
282
-                ),
283
-              ),
284
-            ),
285
-          )
286
-        )
287
-    );
288
-    $this->comments = new Google_Service_PlusDomains_Comments_Resource(
289
-        $this,
290
-        $this->serviceName,
291
-        'comments',
292
-        array(
293
-          'methods' => array(
294
-            'get' => array(
295
-              'path' => 'comments/{commentId}',
296
-              'httpMethod' => 'GET',
297
-              'parameters' => array(
298
-                'commentId' => array(
299
-                  'location' => 'path',
300
-                  'type' => 'string',
301
-                  'required' => true,
302
-                ),
303
-              ),
304
-            ),'insert' => array(
305
-              'path' => 'activities/{activityId}/comments',
306
-              'httpMethod' => 'POST',
307
-              'parameters' => array(
308
-                'activityId' => array(
309
-                  'location' => 'path',
310
-                  'type' => 'string',
311
-                  'required' => true,
312
-                ),
313
-              ),
314
-            ),'list' => array(
315
-              'path' => 'activities/{activityId}/comments',
316
-              'httpMethod' => 'GET',
317
-              'parameters' => array(
318
-                'activityId' => array(
319
-                  'location' => 'path',
320
-                  'type' => 'string',
321
-                  'required' => true,
322
-                ),
323
-                'pageToken' => array(
324
-                  'location' => 'query',
325
-                  'type' => 'string',
326
-                ),
327
-                'sortOrder' => array(
328
-                  'location' => 'query',
329
-                  'type' => 'string',
330
-                ),
331
-                'maxResults' => array(
332
-                  'location' => 'query',
333
-                  'type' => 'integer',
334
-                ),
335
-              ),
336
-            ),
337
-          )
338
-        )
339
-    );
340
-    $this->media = new Google_Service_PlusDomains_Media_Resource(
341
-        $this,
342
-        $this->serviceName,
343
-        'media',
344
-        array(
345
-          'methods' => array(
346
-            'insert' => array(
347
-              'path' => 'people/{userId}/media/{collection}',
348
-              'httpMethod' => 'POST',
349
-              'parameters' => array(
350
-                'userId' => array(
351
-                  'location' => 'path',
352
-                  'type' => 'string',
353
-                  'required' => true,
354
-                ),
355
-                'collection' => array(
356
-                  'location' => 'path',
357
-                  'type' => 'string',
358
-                  'required' => true,
359
-                ),
360
-              ),
361
-            ),
362
-          )
363
-        )
364
-    );
365
-    $this->people = new Google_Service_PlusDomains_People_Resource(
366
-        $this,
367
-        $this->serviceName,
368
-        'people',
369
-        array(
370
-          'methods' => array(
371
-            'get' => array(
372
-              'path' => 'people/{userId}',
373
-              'httpMethod' => 'GET',
374
-              'parameters' => array(
375
-                'userId' => array(
376
-                  'location' => 'path',
377
-                  'type' => 'string',
378
-                  'required' => true,
379
-                ),
380
-              ),
381
-            ),'list' => array(
382
-              'path' => 'people/{userId}/people/{collection}',
383
-              'httpMethod' => 'GET',
384
-              'parameters' => array(
385
-                'userId' => array(
386
-                  'location' => 'path',
387
-                  'type' => 'string',
388
-                  'required' => true,
389
-                ),
390
-                'collection' => array(
391
-                  'location' => 'path',
392
-                  'type' => 'string',
393
-                  'required' => true,
394
-                ),
395
-                'orderBy' => array(
396
-                  'location' => 'query',
397
-                  'type' => 'string',
398
-                ),
399
-                'pageToken' => array(
400
-                  'location' => 'query',
401
-                  'type' => 'string',
402
-                ),
403
-                'maxResults' => array(
404
-                  'location' => 'query',
405
-                  'type' => 'integer',
406
-                ),
407
-              ),
408
-            ),'listByActivity' => array(
409
-              'path' => 'activities/{activityId}/people/{collection}',
410
-              'httpMethod' => 'GET',
411
-              'parameters' => array(
412
-                'activityId' => array(
413
-                  'location' => 'path',
414
-                  'type' => 'string',
415
-                  'required' => true,
416
-                ),
417
-                'collection' => array(
418
-                  'location' => 'path',
419
-                  'type' => 'string',
420
-                  'required' => true,
421
-                ),
422
-                'pageToken' => array(
423
-                  'location' => 'query',
424
-                  'type' => 'string',
425
-                ),
426
-                'maxResults' => array(
427
-                  'location' => 'query',
428
-                  'type' => 'integer',
429
-                ),
430
-              ),
431
-            ),'listByCircle' => array(
432
-              'path' => 'circles/{circleId}/people',
433
-              'httpMethod' => 'GET',
434
-              'parameters' => array(
435
-                'circleId' => array(
436
-                  'location' => 'path',
437
-                  'type' => 'string',
438
-                  'required' => true,
439
-                ),
440
-                'pageToken' => array(
441
-                  'location' => 'query',
442
-                  'type' => 'string',
443
-                ),
444
-                'maxResults' => array(
445
-                  'location' => 'query',
446
-                  'type' => 'integer',
447
-                ),
448
-              ),
449
-            ),
450
-          )
451
-        )
452
-    );
79
+	parent::__construct($client);
80
+	$this->rootUrl = 'https://www.googleapis.com/';
81
+	$this->servicePath = 'plusDomains/v1/';
82
+	$this->version = 'v1';
83
+	$this->serviceName = 'plusDomains';
84
+
85
+	$this->activities = new Google_Service_PlusDomains_Activities_Resource(
86
+		$this,
87
+		$this->serviceName,
88
+		'activities',
89
+		array(
90
+		  'methods' => array(
91
+			'get' => array(
92
+			  'path' => 'activities/{activityId}',
93
+			  'httpMethod' => 'GET',
94
+			  'parameters' => array(
95
+				'activityId' => array(
96
+				  'location' => 'path',
97
+				  'type' => 'string',
98
+				  'required' => true,
99
+				),
100
+			  ),
101
+			),'insert' => array(
102
+			  'path' => 'people/{userId}/activities',
103
+			  'httpMethod' => 'POST',
104
+			  'parameters' => array(
105
+				'userId' => array(
106
+				  'location' => 'path',
107
+				  'type' => 'string',
108
+				  'required' => true,
109
+				),
110
+				'preview' => array(
111
+				  'location' => 'query',
112
+				  'type' => 'boolean',
113
+				),
114
+			  ),
115
+			),'list' => array(
116
+			  'path' => 'people/{userId}/activities/{collection}',
117
+			  'httpMethod' => 'GET',
118
+			  'parameters' => array(
119
+				'userId' => array(
120
+				  'location' => 'path',
121
+				  'type' => 'string',
122
+				  'required' => true,
123
+				),
124
+				'collection' => array(
125
+				  'location' => 'path',
126
+				  'type' => 'string',
127
+				  'required' => true,
128
+				),
129
+				'pageToken' => array(
130
+				  'location' => 'query',
131
+				  'type' => 'string',
132
+				),
133
+				'maxResults' => array(
134
+				  'location' => 'query',
135
+				  'type' => 'integer',
136
+				),
137
+			  ),
138
+			),
139
+		  )
140
+		)
141
+	);
142
+	$this->audiences = new Google_Service_PlusDomains_Audiences_Resource(
143
+		$this,
144
+		$this->serviceName,
145
+		'audiences',
146
+		array(
147
+		  'methods' => array(
148
+			'list' => array(
149
+			  'path' => 'people/{userId}/audiences',
150
+			  'httpMethod' => 'GET',
151
+			  'parameters' => array(
152
+				'userId' => array(
153
+				  'location' => 'path',
154
+				  'type' => 'string',
155
+				  'required' => true,
156
+				),
157
+				'pageToken' => array(
158
+				  'location' => 'query',
159
+				  'type' => 'string',
160
+				),
161
+				'maxResults' => array(
162
+				  'location' => 'query',
163
+				  'type' => 'integer',
164
+				),
165
+			  ),
166
+			),
167
+		  )
168
+		)
169
+	);
170
+	$this->circles = new Google_Service_PlusDomains_Circles_Resource(
171
+		$this,
172
+		$this->serviceName,
173
+		'circles',
174
+		array(
175
+		  'methods' => array(
176
+			'addPeople' => array(
177
+			  'path' => 'circles/{circleId}/people',
178
+			  'httpMethod' => 'PUT',
179
+			  'parameters' => array(
180
+				'circleId' => array(
181
+				  'location' => 'path',
182
+				  'type' => 'string',
183
+				  'required' => true,
184
+				),
185
+				'userId' => array(
186
+				  'location' => 'query',
187
+				  'type' => 'string',
188
+				  'repeated' => true,
189
+				),
190
+				'email' => array(
191
+				  'location' => 'query',
192
+				  'type' => 'string',
193
+				  'repeated' => true,
194
+				),
195
+			  ),
196
+			),'get' => array(
197
+			  'path' => 'circles/{circleId}',
198
+			  'httpMethod' => 'GET',
199
+			  'parameters' => array(
200
+				'circleId' => array(
201
+				  'location' => 'path',
202
+				  'type' => 'string',
203
+				  'required' => true,
204
+				),
205
+			  ),
206
+			),'insert' => array(
207
+			  'path' => 'people/{userId}/circles',
208
+			  'httpMethod' => 'POST',
209
+			  'parameters' => array(
210
+				'userId' => array(
211
+				  'location' => 'path',
212
+				  'type' => 'string',
213
+				  'required' => true,
214
+				),
215
+			  ),
216
+			),'list' => array(
217
+			  'path' => 'people/{userId}/circles',
218
+			  'httpMethod' => 'GET',
219
+			  'parameters' => array(
220
+				'userId' => array(
221
+				  'location' => 'path',
222
+				  'type' => 'string',
223
+				  'required' => true,
224
+				),
225
+				'pageToken' => array(
226
+				  'location' => 'query',
227
+				  'type' => 'string',
228
+				),
229
+				'maxResults' => array(
230
+				  'location' => 'query',
231
+				  'type' => 'integer',
232
+				),
233
+			  ),
234
+			),'patch' => array(
235
+			  'path' => 'circles/{circleId}',
236
+			  'httpMethod' => 'PATCH',
237
+			  'parameters' => array(
238
+				'circleId' => array(
239
+				  'location' => 'path',
240
+				  'type' => 'string',
241
+				  'required' => true,
242
+				),
243
+			  ),
244
+			),'remove' => array(
245
+			  'path' => 'circles/{circleId}',
246
+			  'httpMethod' => 'DELETE',
247
+			  'parameters' => array(
248
+				'circleId' => array(
249
+				  'location' => 'path',
250
+				  'type' => 'string',
251
+				  'required' => true,
252
+				),
253
+			  ),
254
+			),'removePeople' => array(
255
+			  'path' => 'circles/{circleId}/people',
256
+			  'httpMethod' => 'DELETE',
257
+			  'parameters' => array(
258
+				'circleId' => array(
259
+				  'location' => 'path',
260
+				  'type' => 'string',
261
+				  'required' => true,
262
+				),
263
+				'userId' => array(
264
+				  'location' => 'query',
265
+				  'type' => 'string',
266
+				  'repeated' => true,
267
+				),
268
+				'email' => array(
269
+				  'location' => 'query',
270
+				  'type' => 'string',
271
+				  'repeated' => true,
272
+				),
273
+			  ),
274
+			),'update' => array(
275
+			  'path' => 'circles/{circleId}',
276
+			  'httpMethod' => 'PUT',
277
+			  'parameters' => array(
278
+				'circleId' => array(
279
+				  'location' => 'path',
280
+				  'type' => 'string',
281
+				  'required' => true,
282
+				),
283
+			  ),
284
+			),
285
+		  )
286
+		)
287
+	);
288
+	$this->comments = new Google_Service_PlusDomains_Comments_Resource(
289
+		$this,
290
+		$this->serviceName,
291
+		'comments',
292
+		array(
293
+		  'methods' => array(
294
+			'get' => array(
295
+			  'path' => 'comments/{commentId}',
296
+			  'httpMethod' => 'GET',
297
+			  'parameters' => array(
298
+				'commentId' => array(
299
+				  'location' => 'path',
300
+				  'type' => 'string',
301
+				  'required' => true,
302
+				),
303
+			  ),
304
+			),'insert' => array(
305
+			  'path' => 'activities/{activityId}/comments',
306
+			  'httpMethod' => 'POST',
307
+			  'parameters' => array(
308
+				'activityId' => array(
309
+				  'location' => 'path',
310
+				  'type' => 'string',
311
+				  'required' => true,
312
+				),
313
+			  ),
314
+			),'list' => array(
315
+			  'path' => 'activities/{activityId}/comments',
316
+			  'httpMethod' => 'GET',
317
+			  'parameters' => array(
318
+				'activityId' => array(
319
+				  'location' => 'path',
320
+				  'type' => 'string',
321
+				  'required' => true,
322
+				),
323
+				'pageToken' => array(
324
+				  'location' => 'query',
325
+				  'type' => 'string',
326
+				),
327
+				'sortOrder' => array(
328
+				  'location' => 'query',
329
+				  'type' => 'string',
330
+				),
331
+				'maxResults' => array(
332
+				  'location' => 'query',
333
+				  'type' => 'integer',
334
+				),
335
+			  ),
336
+			),
337
+		  )
338
+		)
339
+	);
340
+	$this->media = new Google_Service_PlusDomains_Media_Resource(
341
+		$this,
342
+		$this->serviceName,
343
+		'media',
344
+		array(
345
+		  'methods' => array(
346
+			'insert' => array(
347
+			  'path' => 'people/{userId}/media/{collection}',
348
+			  'httpMethod' => 'POST',
349
+			  'parameters' => array(
350
+				'userId' => array(
351
+				  'location' => 'path',
352
+				  'type' => 'string',
353
+				  'required' => true,
354
+				),
355
+				'collection' => array(
356
+				  'location' => 'path',
357
+				  'type' => 'string',
358
+				  'required' => true,
359
+				),
360
+			  ),
361
+			),
362
+		  )
363
+		)
364
+	);
365
+	$this->people = new Google_Service_PlusDomains_People_Resource(
366
+		$this,
367
+		$this->serviceName,
368
+		'people',
369
+		array(
370
+		  'methods' => array(
371
+			'get' => array(
372
+			  'path' => 'people/{userId}',
373
+			  'httpMethod' => 'GET',
374
+			  'parameters' => array(
375
+				'userId' => array(
376
+				  'location' => 'path',
377
+				  'type' => 'string',
378
+				  'required' => true,
379
+				),
380
+			  ),
381
+			),'list' => array(
382
+			  'path' => 'people/{userId}/people/{collection}',
383
+			  'httpMethod' => 'GET',
384
+			  'parameters' => array(
385
+				'userId' => array(
386
+				  'location' => 'path',
387
+				  'type' => 'string',
388
+				  'required' => true,
389
+				),
390
+				'collection' => array(
391
+				  'location' => 'path',
392
+				  'type' => 'string',
393
+				  'required' => true,
394
+				),
395
+				'orderBy' => array(
396
+				  'location' => 'query',
397
+				  'type' => 'string',
398
+				),
399
+				'pageToken' => array(
400
+				  'location' => 'query',
401
+				  'type' => 'string',
402
+				),
403
+				'maxResults' => array(
404
+				  'location' => 'query',
405
+				  'type' => 'integer',
406
+				),
407
+			  ),
408
+			),'listByActivity' => array(
409
+			  'path' => 'activities/{activityId}/people/{collection}',
410
+			  'httpMethod' => 'GET',
411
+			  'parameters' => array(
412
+				'activityId' => array(
413
+				  'location' => 'path',
414
+				  'type' => 'string',
415
+				  'required' => true,
416
+				),
417
+				'collection' => array(
418
+				  'location' => 'path',
419
+				  'type' => 'string',
420
+				  'required' => true,
421
+				),
422
+				'pageToken' => array(
423
+				  'location' => 'query',
424
+				  'type' => 'string',
425
+				),
426
+				'maxResults' => array(
427
+				  'location' => 'query',
428
+				  'type' => 'integer',
429
+				),
430
+			  ),
431
+			),'listByCircle' => array(
432
+			  'path' => 'circles/{circleId}/people',
433
+			  'httpMethod' => 'GET',
434
+			  'parameters' => array(
435
+				'circleId' => array(
436
+				  'location' => 'path',
437
+				  'type' => 'string',
438
+				  'required' => true,
439
+				),
440
+				'pageToken' => array(
441
+				  'location' => 'query',
442
+				  'type' => 'string',
443
+				),
444
+				'maxResults' => array(
445
+				  'location' => 'query',
446
+				  'type' => 'integer',
447
+				),
448
+			  ),
449
+			),
450
+		  )
451
+		)
452
+	);
453 453
   }
454 454
 }
455 455
 
@@ -474,9 +474,9 @@  discard block
 block discarded – undo
474 474
    */
475 475
   public function get($activityId, $optParams = array())
476 476
   {
477
-    $params = array('activityId' => $activityId);
478
-    $params = array_merge($params, $optParams);
479
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Activity");
477
+	$params = array('activityId' => $activityId);
478
+	$params = array_merge($params, $optParams);
479
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Activity");
480 480
   }
481 481
 
482 482
   /**
@@ -494,9 +494,9 @@  discard block
 block discarded – undo
494 494
    */
495 495
   public function insert($userId, Google_Service_PlusDomains_Activity $postBody, $optParams = array())
496 496
   {
497
-    $params = array('userId' => $userId, 'postBody' => $postBody);
498
-    $params = array_merge($params, $optParams);
499
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Activity");
497
+	$params = array('userId' => $userId, 'postBody' => $postBody);
498
+	$params = array_merge($params, $optParams);
499
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Activity");
500 500
   }
501 501
 
502 502
   /**
@@ -518,9 +518,9 @@  discard block
 block discarded – undo
518 518
    */
519 519
   public function listActivities($userId, $collection, $optParams = array())
520 520
   {
521
-    $params = array('userId' => $userId, 'collection' => $collection);
522
-    $params = array_merge($params, $optParams);
523
-    return $this->call('list', array($params), "Google_Service_PlusDomains_ActivityFeed");
521
+	$params = array('userId' => $userId, 'collection' => $collection);
522
+	$params = array_merge($params, $optParams);
523
+	return $this->call('list', array($params), "Google_Service_PlusDomains_ActivityFeed");
524 524
   }
525 525
 }
526 526
 
@@ -553,9 +553,9 @@  discard block
 block discarded – undo
553 553
    */
554 554
   public function listAudiences($userId, $optParams = array())
555 555
   {
556
-    $params = array('userId' => $userId);
557
-    $params = array_merge($params, $optParams);
558
-    return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed");
556
+	$params = array('userId' => $userId);
557
+	$params = array_merge($params, $optParams);
558
+	return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed");
559 559
   }
560 560
 }
561 561
 
@@ -585,9 +585,9 @@  discard block
 block discarded – undo
585 585
    */
586 586
   public function addPeople($circleId, $optParams = array())
587 587
   {
588
-    $params = array('circleId' => $circleId);
589
-    $params = array_merge($params, $optParams);
590
-    return $this->call('addPeople', array($params), "Google_Service_PlusDomains_Circle");
588
+	$params = array('circleId' => $circleId);
589
+	$params = array_merge($params, $optParams);
590
+	return $this->call('addPeople', array($params), "Google_Service_PlusDomains_Circle");
591 591
   }
592 592
 
593 593
   /**
@@ -599,9 +599,9 @@  discard block
 block discarded – undo
599 599
    */
600 600
   public function get($circleId, $optParams = array())
601 601
   {
602
-    $params = array('circleId' => $circleId);
603
-    $params = array_merge($params, $optParams);
604
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Circle");
602
+	$params = array('circleId' => $circleId);
603
+	$params = array_merge($params, $optParams);
604
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Circle");
605 605
   }
606 606
 
607 607
   /**
@@ -615,9 +615,9 @@  discard block
 block discarded – undo
615 615
    */
616 616
   public function insert($userId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
617 617
   {
618
-    $params = array('userId' => $userId, 'postBody' => $postBody);
619
-    $params = array_merge($params, $optParams);
620
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Circle");
618
+	$params = array('userId' => $userId, 'postBody' => $postBody);
619
+	$params = array_merge($params, $optParams);
620
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Circle");
621 621
   }
622 622
 
623 623
   /**
@@ -637,9 +637,9 @@  discard block
 block discarded – undo
637 637
    */
638 638
   public function listCircles($userId, $optParams = array())
639 639
   {
640
-    $params = array('userId' => $userId);
641
-    $params = array_merge($params, $optParams);
642
-    return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed");
640
+	$params = array('userId' => $userId);
641
+	$params = array_merge($params, $optParams);
642
+	return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed");
643 643
   }
644 644
 
645 645
   /**
@@ -653,9 +653,9 @@  discard block
 block discarded – undo
653 653
    */
654 654
   public function patch($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
655 655
   {
656
-    $params = array('circleId' => $circleId, 'postBody' => $postBody);
657
-    $params = array_merge($params, $optParams);
658
-    return $this->call('patch', array($params), "Google_Service_PlusDomains_Circle");
656
+	$params = array('circleId' => $circleId, 'postBody' => $postBody);
657
+	$params = array_merge($params, $optParams);
658
+	return $this->call('patch', array($params), "Google_Service_PlusDomains_Circle");
659 659
   }
660 660
 
661 661
   /**
@@ -666,9 +666,9 @@  discard block
 block discarded – undo
666 666
    */
667 667
   public function remove($circleId, $optParams = array())
668 668
   {
669
-    $params = array('circleId' => $circleId);
670
-    $params = array_merge($params, $optParams);
671
-    return $this->call('remove', array($params));
669
+	$params = array('circleId' => $circleId);
670
+	$params = array_merge($params, $optParams);
671
+	return $this->call('remove', array($params));
672 672
   }
673 673
 
674 674
   /**
@@ -684,9 +684,9 @@  discard block
 block discarded – undo
684 684
    */
685 685
   public function removePeople($circleId, $optParams = array())
686 686
   {
687
-    $params = array('circleId' => $circleId);
688
-    $params = array_merge($params, $optParams);
689
-    return $this->call('removePeople', array($params));
687
+	$params = array('circleId' => $circleId);
688
+	$params = array_merge($params, $optParams);
689
+	return $this->call('removePeople', array($params));
690 690
   }
691 691
 
692 692
   /**
@@ -699,9 +699,9 @@  discard block
 block discarded – undo
699 699
    */
700 700
   public function update($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
701 701
   {
702
-    $params = array('circleId' => $circleId, 'postBody' => $postBody);
703
-    $params = array_merge($params, $optParams);
704
-    return $this->call('update', array($params), "Google_Service_PlusDomains_Circle");
702
+	$params = array('circleId' => $circleId, 'postBody' => $postBody);
703
+	$params = array_merge($params, $optParams);
704
+	return $this->call('update', array($params), "Google_Service_PlusDomains_Circle");
705 705
   }
706 706
 }
707 707
 
@@ -725,9 +725,9 @@  discard block
 block discarded – undo
725 725
    */
726 726
   public function get($commentId, $optParams = array())
727 727
   {
728
-    $params = array('commentId' => $commentId);
729
-    $params = array_merge($params, $optParams);
730
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Comment");
728
+	$params = array('commentId' => $commentId);
729
+	$params = array_merge($params, $optParams);
730
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Comment");
731 731
   }
732 732
 
733 733
   /**
@@ -740,9 +740,9 @@  discard block
 block discarded – undo
740 740
    */
741 741
   public function insert($activityId, Google_Service_PlusDomains_Comment $postBody, $optParams = array())
742 742
   {
743
-    $params = array('activityId' => $activityId, 'postBody' => $postBody);
744
-    $params = array_merge($params, $optParams);
745
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Comment");
743
+	$params = array('activityId' => $activityId, 'postBody' => $postBody);
744
+	$params = array_merge($params, $optParams);
745
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Comment");
746 746
   }
747 747
 
748 748
   /**
@@ -762,9 +762,9 @@  discard block
 block discarded – undo
762 762
    */
763 763
   public function listComments($activityId, $optParams = array())
764 764
   {
765
-    $params = array('activityId' => $activityId);
766
-    $params = array_merge($params, $optParams);
767
-    return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed");
765
+	$params = array('activityId' => $activityId);
766
+	$params = array_merge($params, $optParams);
767
+	return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed");
768 768
   }
769 769
 }
770 770
 
@@ -793,9 +793,9 @@  discard block
 block discarded – undo
793 793
    */
794 794
   public function insert($userId, $collection, Google_Service_PlusDomains_Media $postBody, $optParams = array())
795 795
   {
796
-    $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
797
-    $params = array_merge($params, $optParams);
798
-    return $this->call('insert', array($params), "Google_Service_PlusDomains_Media");
796
+	$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
797
+	$params = array_merge($params, $optParams);
798
+	return $this->call('insert', array($params), "Google_Service_PlusDomains_Media");
799 799
   }
800 800
 }
801 801
 
@@ -820,9 +820,9 @@  discard block
 block discarded – undo
820 820
    */
821 821
   public function get($userId, $optParams = array())
822 822
   {
823
-    $params = array('userId' => $userId);
824
-    $params = array_merge($params, $optParams);
825
-    return $this->call('get', array($params), "Google_Service_PlusDomains_Person");
823
+	$params = array('userId' => $userId);
824
+	$params = array_merge($params, $optParams);
825
+	return $this->call('get', array($params), "Google_Service_PlusDomains_Person");
826 826
   }
827 827
 
828 828
   /**
@@ -844,9 +844,9 @@  discard block
 block discarded – undo
844 844
    */
845 845
   public function listPeople($userId, $collection, $optParams = array())
846 846
   {
847
-    $params = array('userId' => $userId, 'collection' => $collection);
848
-    $params = array_merge($params, $optParams);
849
-    return $this->call('list', array($params), "Google_Service_PlusDomains_PeopleFeed");
847
+	$params = array('userId' => $userId, 'collection' => $collection);
848
+	$params = array_merge($params, $optParams);
849
+	return $this->call('list', array($params), "Google_Service_PlusDomains_PeopleFeed");
850 850
   }
851 851
 
852 852
   /**
@@ -868,9 +868,9 @@  discard block
 block discarded – undo
868 868
    */
869 869
   public function listByActivity($activityId, $collection, $optParams = array())
870 870
   {
871
-    $params = array('activityId' => $activityId, 'collection' => $collection);
872
-    $params = array_merge($params, $optParams);
873
-    return $this->call('listByActivity', array($params), "Google_Service_PlusDomains_PeopleFeed");
871
+	$params = array('activityId' => $activityId, 'collection' => $collection);
872
+	$params = array_merge($params, $optParams);
873
+	return $this->call('listByActivity', array($params), "Google_Service_PlusDomains_PeopleFeed");
874 874
   }
875 875
 
876 876
   /**
@@ -889,9 +889,9 @@  discard block
 block discarded – undo
889 889
    */
890 890
   public function listByCircle($circleId, $optParams = array())
891 891
   {
892
-    $params = array('circleId' => $circleId);
893
-    $params = array_merge($params, $optParams);
894
-    return $this->call('listByCircle', array($params), "Google_Service_PlusDomains_PeopleFeed");
892
+	$params = array('circleId' => $circleId);
893
+	$params = array_merge($params, $optParams);
894
+	return $this->call('listByCircle', array($params), "Google_Service_PlusDomains_PeopleFeed");
895 895
   }
896 896
 }
897 897
 
@@ -912,35 +912,35 @@  discard block
 block discarded – undo
912 912
 
913 913
   public function setDescription($description)
914 914
   {
915
-    $this->description = $description;
915
+	$this->description = $description;
916 916
   }
917 917
   public function getDescription()
918 918
   {
919
-    return $this->description;
919
+	return $this->description;
920 920
   }
921 921
   public function setDomainRestricted($domainRestricted)
922 922
   {
923
-    $this->domainRestricted = $domainRestricted;
923
+	$this->domainRestricted = $domainRestricted;
924 924
   }
925 925
   public function getDomainRestricted()
926 926
   {
927
-    return $this->domainRestricted;
927
+	return $this->domainRestricted;
928 928
   }
929 929
   public function setItems($items)
930 930
   {
931
-    $this->items = $items;
931
+	$this->items = $items;
932 932
   }
933 933
   public function getItems()
934 934
   {
935
-    return $this->items;
935
+	return $this->items;
936 936
   }
937 937
   public function setKind($kind)
938 938
   {
939
-    $this->kind = $kind;
939
+	$this->kind = $kind;
940 940
   }
941 941
   public function getKind()
942 942
   {
943
-    return $this->kind;
943
+	return $this->kind;
944 944
   }
945 945
 }
946 946
 
@@ -977,163 +977,163 @@  discard block
 block discarded – undo
977 977
 
978 978
   public function setAccess(Google_Service_PlusDomains_Acl $access)
979 979
   {
980
-    $this->access = $access;
980
+	$this->access = $access;
981 981
   }
982 982
   public function getAccess()
983 983
   {
984
-    return $this->access;
984
+	return $this->access;
985 985
   }
986 986
   public function setActor(Google_Service_PlusDomains_ActivityActor $actor)
987 987
   {
988
-    $this->actor = $actor;
988
+	$this->actor = $actor;
989 989
   }
990 990
   public function getActor()
991 991
   {
992
-    return $this->actor;
992
+	return $this->actor;
993 993
   }
994 994
   public function setAddress($address)
995 995
   {
996
-    $this->address = $address;
996
+	$this->address = $address;
997 997
   }
998 998
   public function getAddress()
999 999
   {
1000
-    return $this->address;
1000
+	return $this->address;
1001 1001
   }
1002 1002
   public function setAnnotation($annotation)
1003 1003
   {
1004
-    $this->annotation = $annotation;
1004
+	$this->annotation = $annotation;
1005 1005
   }
1006 1006
   public function getAnnotation()
1007 1007
   {
1008
-    return $this->annotation;
1008
+	return $this->annotation;
1009 1009
   }
1010 1010
   public function setCrosspostSource($crosspostSource)
1011 1011
   {
1012
-    $this->crosspostSource = $crosspostSource;
1012
+	$this->crosspostSource = $crosspostSource;
1013 1013
   }
1014 1014
   public function getCrosspostSource()
1015 1015
   {
1016
-    return $this->crosspostSource;
1016
+	return $this->crosspostSource;
1017 1017
   }
1018 1018
   public function setEtag($etag)
1019 1019
   {
1020
-    $this->etag = $etag;
1020
+	$this->etag = $etag;
1021 1021
   }
1022 1022
   public function getEtag()
1023 1023
   {
1024
-    return $this->etag;
1024
+	return $this->etag;
1025 1025
   }
1026 1026
   public function setGeocode($geocode)
1027 1027
   {
1028
-    $this->geocode = $geocode;
1028
+	$this->geocode = $geocode;
1029 1029
   }
1030 1030
   public function getGeocode()
1031 1031
   {
1032
-    return $this->geocode;
1032
+	return $this->geocode;
1033 1033
   }
1034 1034
   public function setId($id)
1035 1035
   {
1036
-    $this->id = $id;
1036
+	$this->id = $id;
1037 1037
   }
1038 1038
   public function getId()
1039 1039
   {
1040
-    return $this->id;
1040
+	return $this->id;
1041 1041
   }
1042 1042
   public function setKind($kind)
1043 1043
   {
1044
-    $this->kind = $kind;
1044
+	$this->kind = $kind;
1045 1045
   }
1046 1046
   public function getKind()
1047 1047
   {
1048
-    return $this->kind;
1048
+	return $this->kind;
1049 1049
   }
1050 1050
   public function setLocation(Google_Service_PlusDomains_Place $location)
1051 1051
   {
1052
-    $this->location = $location;
1052
+	$this->location = $location;
1053 1053
   }
1054 1054
   public function getLocation()
1055 1055
   {
1056
-    return $this->location;
1056
+	return $this->location;
1057 1057
   }
1058 1058
   public function setObject(Google_Service_PlusDomains_ActivityObject $object)
1059 1059
   {
1060
-    $this->object = $object;
1060
+	$this->object = $object;
1061 1061
   }
1062 1062
   public function getObject()
1063 1063
   {
1064
-    return $this->object;
1064
+	return $this->object;
1065 1065
   }
1066 1066
   public function setPlaceId($placeId)
1067 1067
   {
1068
-    $this->placeId = $placeId;
1068
+	$this->placeId = $placeId;
1069 1069
   }
1070 1070
   public function getPlaceId()
1071 1071
   {
1072
-    return $this->placeId;
1072
+	return $this->placeId;
1073 1073
   }
1074 1074
   public function setPlaceName($placeName)
1075 1075
   {
1076
-    $this->placeName = $placeName;
1076
+	$this->placeName = $placeName;
1077 1077
   }
1078 1078
   public function getPlaceName()
1079 1079
   {
1080
-    return $this->placeName;
1080
+	return $this->placeName;
1081 1081
   }
1082 1082
   public function setProvider(Google_Service_PlusDomains_ActivityProvider $provider)
1083 1083
   {
1084
-    $this->provider = $provider;
1084
+	$this->provider = $provider;
1085 1085
   }
1086 1086
   public function getProvider()
1087 1087
   {
1088
-    return $this->provider;
1088
+	return $this->provider;
1089 1089
   }
1090 1090
   public function setPublished($published)
1091 1091
   {
1092
-    $this->published = $published;
1092
+	$this->published = $published;
1093 1093
   }
1094 1094
   public function getPublished()
1095 1095
   {
1096
-    return $this->published;
1096
+	return $this->published;
1097 1097
   }
1098 1098
   public function setRadius($radius)
1099 1099
   {
1100
-    $this->radius = $radius;
1100
+	$this->radius = $radius;
1101 1101
   }
1102 1102
   public function getRadius()
1103 1103
   {
1104
-    return $this->radius;
1104
+	return $this->radius;
1105 1105
   }
1106 1106
   public function setTitle($title)
1107 1107
   {
1108
-    $this->title = $title;
1108
+	$this->title = $title;
1109 1109
   }
1110 1110
   public function getTitle()
1111 1111
   {
1112
-    return $this->title;
1112
+	return $this->title;
1113 1113
   }
1114 1114
   public function setUpdated($updated)
1115 1115
   {
1116
-    $this->updated = $updated;
1116
+	$this->updated = $updated;
1117 1117
   }
1118 1118
   public function getUpdated()
1119 1119
   {
1120
-    return $this->updated;
1120
+	return $this->updated;
1121 1121
   }
1122 1122
   public function setUrl($url)
1123 1123
   {
1124
-    $this->url = $url;
1124
+	$this->url = $url;
1125 1125
   }
1126 1126
   public function getUrl()
1127 1127
   {
1128
-    return $this->url;
1128
+	return $this->url;
1129 1129
   }
1130 1130
   public function setVerb($verb)
1131 1131
   {
1132
-    $this->verb = $verb;
1132
+	$this->verb = $verb;
1133 1133
   }
1134 1134
   public function getVerb()
1135 1135
   {
1136
-    return $this->verb;
1136
+	return $this->verb;
1137 1137
   }
1138 1138
 }
1139 1139
 
@@ -1152,43 +1152,43 @@  discard block
 block discarded – undo
1152 1152
 
1153 1153
   public function setDisplayName($displayName)
1154 1154
   {
1155
-    $this->displayName = $displayName;
1155
+	$this->displayName = $displayName;
1156 1156
   }
1157 1157
   public function getDisplayName()
1158 1158
   {
1159
-    return $this->displayName;
1159
+	return $this->displayName;
1160 1160
   }
1161 1161
   public function setId($id)
1162 1162
   {
1163
-    $this->id = $id;
1163
+	$this->id = $id;
1164 1164
   }
1165 1165
   public function getId()
1166 1166
   {
1167
-    return $this->id;
1167
+	return $this->id;
1168 1168
   }
1169 1169
   public function setImage(Google_Service_PlusDomains_ActivityActorImage $image)
1170 1170
   {
1171
-    $this->image = $image;
1171
+	$this->image = $image;
1172 1172
   }
1173 1173
   public function getImage()
1174 1174
   {
1175
-    return $this->image;
1175
+	return $this->image;
1176 1176
   }
1177 1177
   public function setName(Google_Service_PlusDomains_ActivityActorName $name)
1178 1178
   {
1179
-    $this->name = $name;
1179
+	$this->name = $name;
1180 1180
   }
1181 1181
   public function getName()
1182 1182
   {
1183
-    return $this->name;
1183
+	return $this->name;
1184 1184
   }
1185 1185
   public function setUrl($url)
1186 1186
   {
1187
-    $this->url = $url;
1187
+	$this->url = $url;
1188 1188
   }
1189 1189
   public function getUrl()
1190 1190
   {
1191
-    return $this->url;
1191
+	return $this->url;
1192 1192
   }
1193 1193
 }
1194 1194
 
@@ -1201,11 +1201,11 @@  discard block
 block discarded – undo
1201 1201
 
1202 1202
   public function setUrl($url)
1203 1203
   {
1204
-    $this->url = $url;
1204
+	$this->url = $url;
1205 1205
   }
1206 1206
   public function getUrl()
1207 1207
   {
1208
-    return $this->url;
1208
+	return $this->url;
1209 1209
   }
1210 1210
 }
1211 1211
 
@@ -1219,19 +1219,19 @@  discard block
 block discarded – undo
1219 1219
 
1220 1220
   public function setFamilyName($familyName)
1221 1221
   {
1222
-    $this->familyName = $familyName;
1222
+	$this->familyName = $familyName;
1223 1223
   }
1224 1224
   public function getFamilyName()
1225 1225
   {
1226
-    return $this->familyName;
1226
+	return $this->familyName;
1227 1227
   }
1228 1228
   public function setGivenName($givenName)
1229 1229
   {
1230
-    $this->givenName = $givenName;
1230
+	$this->givenName = $givenName;
1231 1231
   }
1232 1232
   public function getGivenName()
1233 1233
   {
1234
-    return $this->givenName;
1234
+	return $this->givenName;
1235 1235
   }
1236 1236
 }
1237 1237
 
@@ -1254,75 +1254,75 @@  discard block
 block discarded – undo
1254 1254
 
1255 1255
   public function setEtag($etag)
1256 1256
   {
1257
-    $this->etag = $etag;
1257
+	$this->etag = $etag;
1258 1258
   }
1259 1259
   public function getEtag()
1260 1260
   {
1261
-    return $this->etag;
1261
+	return $this->etag;
1262 1262
   }
1263 1263
   public function setId($id)
1264 1264
   {
1265
-    $this->id = $id;
1265
+	$this->id = $id;
1266 1266
   }
1267 1267
   public function getId()
1268 1268
   {
1269
-    return $this->id;
1269
+	return $this->id;
1270 1270
   }
1271 1271
   public function setItems($items)
1272 1272
   {
1273
-    $this->items = $items;
1273
+	$this->items = $items;
1274 1274
   }
1275 1275
   public function getItems()
1276 1276
   {
1277
-    return $this->items;
1277
+	return $this->items;
1278 1278
   }
1279 1279
   public function setKind($kind)
1280 1280
   {
1281
-    $this->kind = $kind;
1281
+	$this->kind = $kind;
1282 1282
   }
1283 1283
   public function getKind()
1284 1284
   {
1285
-    return $this->kind;
1285
+	return $this->kind;
1286 1286
   }
1287 1287
   public function setNextLink($nextLink)
1288 1288
   {
1289
-    $this->nextLink = $nextLink;
1289
+	$this->nextLink = $nextLink;
1290 1290
   }
1291 1291
   public function getNextLink()
1292 1292
   {
1293
-    return $this->nextLink;
1293
+	return $this->nextLink;
1294 1294
   }
1295 1295
   public function setNextPageToken($nextPageToken)
1296 1296
   {
1297
-    $this->nextPageToken = $nextPageToken;
1297
+	$this->nextPageToken = $nextPageToken;
1298 1298
   }
1299 1299
   public function getNextPageToken()
1300 1300
   {
1301
-    return $this->nextPageToken;
1301
+	return $this->nextPageToken;
1302 1302
   }
1303 1303
   public function setSelfLink($selfLink)
1304 1304
   {
1305
-    $this->selfLink = $selfLink;
1305
+	$this->selfLink = $selfLink;
1306 1306
   }
1307 1307
   public function getSelfLink()
1308 1308
   {
1309
-    return $this->selfLink;
1309
+	return $this->selfLink;
1310 1310
   }
1311 1311
   public function setTitle($title)
1312 1312
   {
1313
-    $this->title = $title;
1313
+	$this->title = $title;
1314 1314
   }
1315 1315
   public function getTitle()
1316 1316
   {
1317
-    return $this->title;
1317
+	return $this->title;
1318 1318
   }
1319 1319
   public function setUpdated($updated)
1320 1320
   {
1321
-    $this->updated = $updated;
1321
+	$this->updated = $updated;
1322 1322
   }
1323 1323
   public function getUpdated()
1324 1324
   {
1325
-    return $this->updated;
1325
+	return $this->updated;
1326 1326
   }
1327 1327
 }
1328 1328
 
@@ -1352,91 +1352,91 @@  discard block
 block discarded – undo
1352 1352
 
1353 1353
   public function setActor(Google_Service_PlusDomains_ActivityObjectActor $actor)
1354 1354
   {
1355
-    $this->actor = $actor;
1355
+	$this->actor = $actor;
1356 1356
   }
1357 1357
   public function getActor()
1358 1358
   {
1359
-    return $this->actor;
1359
+	return $this->actor;
1360 1360
   }
1361 1361
   public function setAttachments($attachments)
1362 1362
   {
1363
-    $this->attachments = $attachments;
1363
+	$this->attachments = $attachments;
1364 1364
   }
1365 1365
   public function getAttachments()
1366 1366
   {
1367
-    return $this->attachments;
1367
+	return $this->attachments;
1368 1368
   }
1369 1369
   public function setContent($content)
1370 1370
   {
1371
-    $this->content = $content;
1371
+	$this->content = $content;
1372 1372
   }
1373 1373
   public function getContent()
1374 1374
   {
1375
-    return $this->content;
1375
+	return $this->content;
1376 1376
   }
1377 1377
   public function setId($id)
1378 1378
   {
1379
-    $this->id = $id;
1379
+	$this->id = $id;
1380 1380
   }
1381 1381
   public function getId()
1382 1382
   {
1383
-    return $this->id;
1383
+	return $this->id;
1384 1384
   }
1385 1385
   public function setObjectType($objectType)
1386 1386
   {
1387
-    $this->objectType = $objectType;
1387
+	$this->objectType = $objectType;
1388 1388
   }
1389 1389
   public function getObjectType()
1390 1390
   {
1391
-    return $this->objectType;
1391
+	return $this->objectType;
1392 1392
   }
1393 1393
   public function setOriginalContent($originalContent)
1394 1394
   {
1395
-    $this->originalContent = $originalContent;
1395
+	$this->originalContent = $originalContent;
1396 1396
   }
1397 1397
   public function getOriginalContent()
1398 1398
   {
1399
-    return $this->originalContent;
1399
+	return $this->originalContent;
1400 1400
   }
1401 1401
   public function setPlusoners(Google_Service_PlusDomains_ActivityObjectPlusoners $plusoners)
1402 1402
   {
1403
-    $this->plusoners = $plusoners;
1403
+	$this->plusoners = $plusoners;
1404 1404
   }
1405 1405
   public function getPlusoners()
1406 1406
   {
1407
-    return $this->plusoners;
1407
+	return $this->plusoners;
1408 1408
   }
1409 1409
   public function setReplies(Google_Service_PlusDomains_ActivityObjectReplies $replies)
1410 1410
   {
1411
-    $this->replies = $replies;
1411
+	$this->replies = $replies;
1412 1412
   }
1413 1413
   public function getReplies()
1414 1414
   {
1415
-    return $this->replies;
1415
+	return $this->replies;
1416 1416
   }
1417 1417
   public function setResharers(Google_Service_PlusDomains_ActivityObjectResharers $resharers)
1418 1418
   {
1419
-    $this->resharers = $resharers;
1419
+	$this->resharers = $resharers;
1420 1420
   }
1421 1421
   public function getResharers()
1422 1422
   {
1423
-    return $this->resharers;
1423
+	return $this->resharers;
1424 1424
   }
1425 1425
   public function setStatusForViewer(Google_Service_PlusDomains_ActivityObjectStatusForViewer $statusForViewer)
1426 1426
   {
1427
-    $this->statusForViewer = $statusForViewer;
1427
+	$this->statusForViewer = $statusForViewer;
1428 1428
   }
1429 1429
   public function getStatusForViewer()
1430 1430
   {
1431
-    return $this->statusForViewer;
1431
+	return $this->statusForViewer;
1432 1432
   }
1433 1433
   public function setUrl($url)
1434 1434
   {
1435
-    $this->url = $url;
1435
+	$this->url = $url;
1436 1436
   }
1437 1437
   public function getUrl()
1438 1438
   {
1439
-    return $this->url;
1439
+	return $this->url;
1440 1440
   }
1441 1441
 }
1442 1442
 
@@ -1453,35 +1453,35 @@  discard block
 block discarded – undo
1453 1453
 
1454 1454
   public function setDisplayName($displayName)
1455 1455
   {
1456
-    $this->displayName = $displayName;
1456
+	$this->displayName = $displayName;
1457 1457
   }
1458 1458
   public function getDisplayName()
1459 1459
   {
1460
-    return $this->displayName;
1460
+	return $this->displayName;
1461 1461
   }
1462 1462
   public function setId($id)
1463 1463
   {
1464
-    $this->id = $id;
1464
+	$this->id = $id;
1465 1465
   }
1466 1466
   public function getId()
1467 1467
   {
1468
-    return $this->id;
1468
+	return $this->id;
1469 1469
   }
1470 1470
   public function setImage(Google_Service_PlusDomains_ActivityObjectActorImage $image)
1471 1471
   {
1472
-    $this->image = $image;
1472
+	$this->image = $image;
1473 1473
   }
1474 1474
   public function getImage()
1475 1475
   {
1476
-    return $this->image;
1476
+	return $this->image;
1477 1477
   }
1478 1478
   public function setUrl($url)
1479 1479
   {
1480
-    $this->url = $url;
1480
+	$this->url = $url;
1481 1481
   }
1482 1482
   public function getUrl()
1483 1483
   {
1484
-    return $this->url;
1484
+	return $this->url;
1485 1485
   }
1486 1486
 }
1487 1487
 
@@ -1494,11 +1494,11 @@  discard block
 block discarded – undo
1494 1494
 
1495 1495
   public function setUrl($url)
1496 1496
   {
1497
-    $this->url = $url;
1497
+	$this->url = $url;
1498 1498
   }
1499 1499
   public function getUrl()
1500 1500
   {
1501
-    return $this->url;
1501
+	return $this->url;
1502 1502
   }
1503 1503
 }
1504 1504
 
@@ -1526,83 +1526,83 @@  discard block
 block discarded – undo
1526 1526
 
1527 1527
   public function setContent($content)
1528 1528
   {
1529
-    $this->content = $content;
1529
+	$this->content = $content;
1530 1530
   }
1531 1531
   public function getContent()
1532 1532
   {
1533
-    return $this->content;
1533
+	return $this->content;
1534 1534
   }
1535 1535
   public function setDisplayName($displayName)
1536 1536
   {
1537
-    $this->displayName = $displayName;
1537
+	$this->displayName = $displayName;
1538 1538
   }
1539 1539
   public function getDisplayName()
1540 1540
   {
1541
-    return $this->displayName;
1541
+	return $this->displayName;
1542 1542
   }
1543 1543
   public function setEmbed(Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed $embed)
1544 1544
   {
1545
-    $this->embed = $embed;
1545
+	$this->embed = $embed;
1546 1546
   }
1547 1547
   public function getEmbed()
1548 1548
   {
1549
-    return $this->embed;
1549
+	return $this->embed;
1550 1550
   }
1551 1551
   public function setFullImage(Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage $fullImage)
1552 1552
   {
1553
-    $this->fullImage = $fullImage;
1553
+	$this->fullImage = $fullImage;
1554 1554
   }
1555 1555
   public function getFullImage()
1556 1556
   {
1557
-    return $this->fullImage;
1557
+	return $this->fullImage;
1558 1558
   }
1559 1559
   public function setId($id)
1560 1560
   {
1561
-    $this->id = $id;
1561
+	$this->id = $id;
1562 1562
   }
1563 1563
   public function getId()
1564 1564
   {
1565
-    return $this->id;
1565
+	return $this->id;
1566 1566
   }
1567 1567
   public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsImage $image)
1568 1568
   {
1569
-    $this->image = $image;
1569
+	$this->image = $image;
1570 1570
   }
1571 1571
   public function getImage()
1572 1572
   {
1573
-    return $this->image;
1573
+	return $this->image;
1574 1574
   }
1575 1575
   public function setObjectType($objectType)
1576 1576
   {
1577
-    $this->objectType = $objectType;
1577
+	$this->objectType = $objectType;
1578 1578
   }
1579 1579
   public function getObjectType()
1580 1580
   {
1581
-    return $this->objectType;
1581
+	return $this->objectType;
1582 1582
   }
1583 1583
   public function setPreviewThumbnails($previewThumbnails)
1584 1584
   {
1585
-    $this->previewThumbnails = $previewThumbnails;
1585
+	$this->previewThumbnails = $previewThumbnails;
1586 1586
   }
1587 1587
   public function getPreviewThumbnails()
1588 1588
   {
1589
-    return $this->previewThumbnails;
1589
+	return $this->previewThumbnails;
1590 1590
   }
1591 1591
   public function setThumbnails($thumbnails)
1592 1592
   {
1593
-    $this->thumbnails = $thumbnails;
1593
+	$this->thumbnails = $thumbnails;
1594 1594
   }
1595 1595
   public function getThumbnails()
1596 1596
   {
1597
-    return $this->thumbnails;
1597
+	return $this->thumbnails;
1598 1598
   }
1599 1599
   public function setUrl($url)
1600 1600
   {
1601
-    $this->url = $url;
1601
+	$this->url = $url;
1602 1602
   }
1603 1603
   public function getUrl()
1604 1604
   {
1605
-    return $this->url;
1605
+	return $this->url;
1606 1606
   }
1607 1607
 }
1608 1608
 
@@ -1616,19 +1616,19 @@  discard block
 block discarded – undo
1616 1616
 
1617 1617
   public function setType($type)
1618 1618
   {
1619
-    $this->type = $type;
1619
+	$this->type = $type;
1620 1620
   }
1621 1621
   public function getType()
1622 1622
   {
1623
-    return $this->type;
1623
+	return $this->type;
1624 1624
   }
1625 1625
   public function setUrl($url)
1626 1626
   {
1627
-    $this->url = $url;
1627
+	$this->url = $url;
1628 1628
   }
1629 1629
   public function getUrl()
1630 1630
   {
1631
-    return $this->url;
1631
+	return $this->url;
1632 1632
   }
1633 1633
 }
1634 1634
 
@@ -1644,35 +1644,35 @@  discard block
 block discarded – undo
1644 1644
 
1645 1645
   public function setHeight($height)
1646 1646
   {
1647
-    $this->height = $height;
1647
+	$this->height = $height;
1648 1648
   }
1649 1649
   public function getHeight()
1650 1650
   {
1651
-    return $this->height;
1651
+	return $this->height;
1652 1652
   }
1653 1653
   public function setType($type)
1654 1654
   {
1655
-    $this->type = $type;
1655
+	$this->type = $type;
1656 1656
   }
1657 1657
   public function getType()
1658 1658
   {
1659
-    return $this->type;
1659
+	return $this->type;
1660 1660
   }
1661 1661
   public function setUrl($url)
1662 1662
   {
1663
-    $this->url = $url;
1663
+	$this->url = $url;
1664 1664
   }
1665 1665
   public function getUrl()
1666 1666
   {
1667
-    return $this->url;
1667
+	return $this->url;
1668 1668
   }
1669 1669
   public function setWidth($width)
1670 1670
   {
1671
-    $this->width = $width;
1671
+	$this->width = $width;
1672 1672
   }
1673 1673
   public function getWidth()
1674 1674
   {
1675
-    return $this->width;
1675
+	return $this->width;
1676 1676
   }
1677 1677
 }
1678 1678
 
@@ -1688,35 +1688,35 @@  discard block
 block discarded – undo
1688 1688
 
1689 1689
   public function setHeight($height)
1690 1690
   {
1691
-    $this->height = $height;
1691
+	$this->height = $height;
1692 1692
   }
1693 1693
   public function getHeight()
1694 1694
   {
1695
-    return $this->height;
1695
+	return $this->height;
1696 1696
   }
1697 1697
   public function setType($type)
1698 1698
   {
1699
-    $this->type = $type;
1699
+	$this->type = $type;
1700 1700
   }
1701 1701
   public function getType()
1702 1702
   {
1703
-    return $this->type;
1703
+	return $this->type;
1704 1704
   }
1705 1705
   public function setUrl($url)
1706 1706
   {
1707
-    $this->url = $url;
1707
+	$this->url = $url;
1708 1708
   }
1709 1709
   public function getUrl()
1710 1710
   {
1711
-    return $this->url;
1711
+	return $this->url;
1712 1712
   }
1713 1713
   public function setWidth($width)
1714 1714
   {
1715
-    $this->width = $width;
1715
+	$this->width = $width;
1716 1716
   }
1717 1717
   public function getWidth()
1718 1718
   {
1719
-    return $this->width;
1719
+	return $this->width;
1720 1720
   }
1721 1721
 }
1722 1722
 
@@ -1729,11 +1729,11 @@  discard block
 block discarded – undo
1729 1729
 
1730 1730
   public function setUrl($url)
1731 1731
   {
1732
-    $this->url = $url;
1732
+	$this->url = $url;
1733 1733
   }
1734 1734
   public function getUrl()
1735 1735
   {
1736
-    return $this->url;
1736
+	return $this->url;
1737 1737
   }
1738 1738
 }
1739 1739
 
@@ -1749,27 +1749,27 @@  discard block
 block discarded – undo
1749 1749
 
1750 1750
   public function setDescription($description)
1751 1751
   {
1752
-    $this->description = $description;
1752
+	$this->description = $description;
1753 1753
   }
1754 1754
   public function getDescription()
1755 1755
   {
1756
-    return $this->description;
1756
+	return $this->description;
1757 1757
   }
1758 1758
   public function setImage(Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage $image)
1759 1759
   {
1760
-    $this->image = $image;
1760
+	$this->image = $image;
1761 1761
   }
1762 1762
   public function getImage()
1763 1763
   {
1764
-    return $this->image;
1764
+	return $this->image;
1765 1765
   }
1766 1766
   public function setUrl($url)
1767 1767
   {
1768
-    $this->url = $url;
1768
+	$this->url = $url;
1769 1769
   }
1770 1770
   public function getUrl()
1771 1771
   {
1772
-    return $this->url;
1772
+	return $this->url;
1773 1773
   }
1774 1774
 }
1775 1775
 
@@ -1785,35 +1785,35 @@  discard block
 block discarded – undo
1785 1785
 
1786 1786
   public function setHeight($height)
1787 1787
   {
1788
-    $this->height = $height;
1788
+	$this->height = $height;
1789 1789
   }
1790 1790
   public function getHeight()
1791 1791
   {
1792
-    return $this->height;
1792
+	return $this->height;
1793 1793
   }
1794 1794
   public function setType($type)
1795 1795
   {
1796
-    $this->type = $type;
1796
+	$this->type = $type;
1797 1797
   }
1798 1798
   public function getType()
1799 1799
   {
1800
-    return $this->type;
1800
+	return $this->type;
1801 1801
   }
1802 1802
   public function setUrl($url)
1803 1803
   {
1804
-    $this->url = $url;
1804
+	$this->url = $url;
1805 1805
   }
1806 1806
   public function getUrl()
1807 1807
   {
1808
-    return $this->url;
1808
+	return $this->url;
1809 1809
   }
1810 1810
   public function setWidth($width)
1811 1811
   {
1812
-    $this->width = $width;
1812
+	$this->width = $width;
1813 1813
   }
1814 1814
   public function getWidth()
1815 1815
   {
1816
-    return $this->width;
1816
+	return $this->width;
1817 1817
   }
1818 1818
 }
1819 1819
 
@@ -1827,19 +1827,19 @@  discard block
 block discarded – undo
1827 1827
 
1828 1828
   public function setSelfLink($selfLink)
1829 1829
   {
1830
-    $this->selfLink = $selfLink;
1830
+	$this->selfLink = $selfLink;
1831 1831
   }
1832 1832
   public function getSelfLink()
1833 1833
   {
1834
-    return $this->selfLink;
1834
+	return $this->selfLink;
1835 1835
   }
1836 1836
   public function setTotalItems($totalItems)
1837 1837
   {
1838
-    $this->totalItems = $totalItems;
1838
+	$this->totalItems = $totalItems;
1839 1839
   }
1840 1840
   public function getTotalItems()
1841 1841
   {
1842
-    return $this->totalItems;
1842
+	return $this->totalItems;
1843 1843
   }
1844 1844
 }
1845 1845
 
@@ -1853,19 +1853,19 @@  discard block
 block discarded – undo
1853 1853
 
1854 1854
   public function setSelfLink($selfLink)
1855 1855
   {
1856
-    $this->selfLink = $selfLink;
1856
+	$this->selfLink = $selfLink;
1857 1857
   }
1858 1858
   public function getSelfLink()
1859 1859
   {
1860
-    return $this->selfLink;
1860
+	return $this->selfLink;
1861 1861
   }
1862 1862
   public function setTotalItems($totalItems)
1863 1863
   {
1864
-    $this->totalItems = $totalItems;
1864
+	$this->totalItems = $totalItems;
1865 1865
   }
1866 1866
   public function getTotalItems()
1867 1867
   {
1868
-    return $this->totalItems;
1868
+	return $this->totalItems;
1869 1869
   }
1870 1870
 }
1871 1871
 
@@ -1879,19 +1879,19 @@  discard block
 block discarded – undo
1879 1879
 
1880 1880
   public function setSelfLink($selfLink)
1881 1881
   {
1882
-    $this->selfLink = $selfLink;
1882
+	$this->selfLink = $selfLink;
1883 1883
   }
1884 1884
   public function getSelfLink()
1885 1885
   {
1886
-    return $this->selfLink;
1886
+	return $this->selfLink;
1887 1887
   }
1888 1888
   public function setTotalItems($totalItems)
1889 1889
   {
1890
-    $this->totalItems = $totalItems;
1890
+	$this->totalItems = $totalItems;
1891 1891
   }
1892 1892
   public function getTotalItems()
1893 1893
   {
1894
-    return $this->totalItems;
1894
+	return $this->totalItems;
1895 1895
   }
1896 1896
 }
1897 1897
 
@@ -1908,43 +1908,43 @@  discard block
 block discarded – undo
1908 1908
 
1909 1909
   public function setCanComment($canComment)
1910 1910
   {
1911
-    $this->canComment = $canComment;
1911
+	$this->canComment = $canComment;
1912 1912
   }
1913 1913
   public function getCanComment()
1914 1914
   {
1915
-    return $this->canComment;
1915
+	return $this->canComment;
1916 1916
   }
1917 1917
   public function setCanPlusone($canPlusone)
1918 1918
   {
1919
-    $this->canPlusone = $canPlusone;
1919
+	$this->canPlusone = $canPlusone;
1920 1920
   }
1921 1921
   public function getCanPlusone()
1922 1922
   {
1923
-    return $this->canPlusone;
1923
+	return $this->canPlusone;
1924 1924
   }
1925 1925
   public function setCanUpdate($canUpdate)
1926 1926
   {
1927
-    $this->canUpdate = $canUpdate;
1927
+	$this->canUpdate = $canUpdate;
1928 1928
   }
1929 1929
   public function getCanUpdate()
1930 1930
   {
1931
-    return $this->canUpdate;
1931
+	return $this->canUpdate;
1932 1932
   }
1933 1933
   public function setIsPlusOned($isPlusOned)
1934 1934
   {
1935
-    $this->isPlusOned = $isPlusOned;
1935
+	$this->isPlusOned = $isPlusOned;
1936 1936
   }
1937 1937
   public function getIsPlusOned()
1938 1938
   {
1939
-    return $this->isPlusOned;
1939
+	return $this->isPlusOned;
1940 1940
   }
1941 1941
   public function setResharingDisabled($resharingDisabled)
1942 1942
   {
1943
-    $this->resharingDisabled = $resharingDisabled;
1943
+	$this->resharingDisabled = $resharingDisabled;
1944 1944
   }
1945 1945
   public function getResharingDisabled()
1946 1946
   {
1947
-    return $this->resharingDisabled;
1947
+	return $this->resharingDisabled;
1948 1948
   }
1949 1949
 }
1950 1950
 
@@ -1957,11 +1957,11 @@  discard block
 block discarded – undo
1957 1957
 
1958 1958
   public function setTitle($title)
1959 1959
   {
1960
-    $this->title = $title;
1960
+	$this->title = $title;
1961 1961
   }
1962 1962
   public function getTitle()
1963 1963
   {
1964
-    return $this->title;
1964
+	return $this->title;
1965 1965
   }
1966 1966
 }
1967 1967
 
@@ -1979,43 +1979,43 @@  discard block
 block discarded – undo
1979 1979
 
1980 1980
   public function setEtag($etag)
1981 1981
   {
1982
-    $this->etag = $etag;
1982
+	$this->etag = $etag;
1983 1983
   }
1984 1984
   public function getEtag()
1985 1985
   {
1986
-    return $this->etag;
1986
+	return $this->etag;
1987 1987
   }
1988 1988
   public function setItem(Google_Service_PlusDomains_PlusDomainsAclentryResource $item)
1989 1989
   {
1990
-    $this->item = $item;
1990
+	$this->item = $item;
1991 1991
   }
1992 1992
   public function getItem()
1993 1993
   {
1994
-    return $this->item;
1994
+	return $this->item;
1995 1995
   }
1996 1996
   public function setKind($kind)
1997 1997
   {
1998
-    $this->kind = $kind;
1998
+	$this->kind = $kind;
1999 1999
   }
2000 2000
   public function getKind()
2001 2001
   {
2002
-    return $this->kind;
2002
+	return $this->kind;
2003 2003
   }
2004 2004
   public function setMemberCount($memberCount)
2005 2005
   {
2006
-    $this->memberCount = $memberCount;
2006
+	$this->memberCount = $memberCount;
2007 2007
   }
2008 2008
   public function getMemberCount()
2009 2009
   {
2010
-    return $this->memberCount;
2010
+	return $this->memberCount;
2011 2011
   }
2012 2012
   public function setVisibility($visibility)
2013 2013
   {
2014
-    $this->visibility = $visibility;
2014
+	$this->visibility = $visibility;
2015 2015
   }
2016 2016
   public function getVisibility()
2017 2017
   {
2018
-    return $this->visibility;
2018
+	return $this->visibility;
2019 2019
   }
2020 2020
 }
2021 2021
 
@@ -2034,43 +2034,43 @@  discard block
 block discarded – undo
2034 2034
 
2035 2035
   public function setEtag($etag)
2036 2036
   {
2037
-    $this->etag = $etag;
2037
+	$this->etag = $etag;
2038 2038
   }
2039 2039
   public function getEtag()
2040 2040
   {
2041
-    return $this->etag;
2041
+	return $this->etag;
2042 2042
   }
2043 2043
   public function setItems($items)
2044 2044
   {
2045
-    $this->items = $items;
2045
+	$this->items = $items;
2046 2046
   }
2047 2047
   public function getItems()
2048 2048
   {
2049
-    return $this->items;
2049
+	return $this->items;
2050 2050
   }
2051 2051
   public function setKind($kind)
2052 2052
   {
2053
-    $this->kind = $kind;
2053
+	$this->kind = $kind;
2054 2054
   }
2055 2055
   public function getKind()
2056 2056
   {
2057
-    return $this->kind;
2057
+	return $this->kind;
2058 2058
   }
2059 2059
   public function setNextPageToken($nextPageToken)
2060 2060
   {
2061
-    $this->nextPageToken = $nextPageToken;
2061
+	$this->nextPageToken = $nextPageToken;
2062 2062
   }
2063 2063
   public function getNextPageToken()
2064 2064
   {
2065
-    return $this->nextPageToken;
2065
+	return $this->nextPageToken;
2066 2066
   }
2067 2067
   public function setTotalItems($totalItems)
2068 2068
   {
2069
-    $this->totalItems = $totalItems;
2069
+	$this->totalItems = $totalItems;
2070 2070
   }
2071 2071
   public function getTotalItems()
2072 2072
   {
2073
-    return $this->totalItems;
2073
+	return $this->totalItems;
2074 2074
   }
2075 2075
 }
2076 2076
 
@@ -2090,59 +2090,59 @@  discard block
 block discarded – undo
2090 2090
 
2091 2091
   public function setDescription($description)
2092 2092
   {
2093
-    $this->description = $description;
2093
+	$this->description = $description;
2094 2094
   }
2095 2095
   public function getDescription()
2096 2096
   {
2097
-    return $this->description;
2097
+	return $this->description;
2098 2098
   }
2099 2099
   public function setDisplayName($displayName)
2100 2100
   {
2101
-    $this->displayName = $displayName;
2101
+	$this->displayName = $displayName;
2102 2102
   }
2103 2103
   public function getDisplayName()
2104 2104
   {
2105
-    return $this->displayName;
2105
+	return $this->displayName;
2106 2106
   }
2107 2107
   public function setEtag($etag)
2108 2108
   {
2109
-    $this->etag = $etag;
2109
+	$this->etag = $etag;
2110 2110
   }
2111 2111
   public function getEtag()
2112 2112
   {
2113
-    return $this->etag;
2113
+	return $this->etag;
2114 2114
   }
2115 2115
   public function setId($id)
2116 2116
   {
2117
-    $this->id = $id;
2117
+	$this->id = $id;
2118 2118
   }
2119 2119
   public function getId()
2120 2120
   {
2121
-    return $this->id;
2121
+	return $this->id;
2122 2122
   }
2123 2123
   public function setKind($kind)
2124 2124
   {
2125
-    $this->kind = $kind;
2125
+	$this->kind = $kind;
2126 2126
   }
2127 2127
   public function getKind()
2128 2128
   {
2129
-    return $this->kind;
2129
+	return $this->kind;
2130 2130
   }
2131 2131
   public function setPeople(Google_Service_PlusDomains_CirclePeople $people)
2132 2132
   {
2133
-    $this->people = $people;
2133
+	$this->people = $people;
2134 2134
   }
2135 2135
   public function getPeople()
2136 2136
   {
2137
-    return $this->people;
2137
+	return $this->people;
2138 2138
   }
2139 2139
   public function setSelfLink($selfLink)
2140 2140
   {
2141
-    $this->selfLink = $selfLink;
2141
+	$this->selfLink = $selfLink;
2142 2142
   }
2143 2143
   public function getSelfLink()
2144 2144
   {
2145
-    return $this->selfLink;
2145
+	return $this->selfLink;
2146 2146
   }
2147 2147
 }
2148 2148
 
@@ -2164,67 +2164,67 @@  discard block
 block discarded – undo
2164 2164
 
2165 2165
   public function setEtag($etag)
2166 2166
   {
2167
-    $this->etag = $etag;
2167
+	$this->etag = $etag;
2168 2168
   }
2169 2169
   public function getEtag()
2170 2170
   {
2171
-    return $this->etag;
2171
+	return $this->etag;
2172 2172
   }
2173 2173
   public function setItems($items)
2174 2174
   {
2175
-    $this->items = $items;
2175
+	$this->items = $items;
2176 2176
   }
2177 2177
   public function getItems()
2178 2178
   {
2179
-    return $this->items;
2179
+	return $this->items;
2180 2180
   }
2181 2181
   public function setKind($kind)
2182 2182
   {
2183
-    $this->kind = $kind;
2183
+	$this->kind = $kind;
2184 2184
   }
2185 2185
   public function getKind()
2186 2186
   {
2187
-    return $this->kind;
2187
+	return $this->kind;
2188 2188
   }
2189 2189
   public function setNextLink($nextLink)
2190 2190
   {
2191
-    $this->nextLink = $nextLink;
2191
+	$this->nextLink = $nextLink;
2192 2192
   }
2193 2193
   public function getNextLink()
2194 2194
   {
2195
-    return $this->nextLink;
2195
+	return $this->nextLink;
2196 2196
   }
2197 2197
   public function setNextPageToken($nextPageToken)
2198 2198
   {
2199
-    $this->nextPageToken = $nextPageToken;
2199
+	$this->nextPageToken = $nextPageToken;
2200 2200
   }
2201 2201
   public function getNextPageToken()
2202 2202
   {
2203
-    return $this->nextPageToken;
2203
+	return $this->nextPageToken;
2204 2204
   }
2205 2205
   public function setSelfLink($selfLink)
2206 2206
   {
2207
-    $this->selfLink = $selfLink;
2207
+	$this->selfLink = $selfLink;
2208 2208
   }
2209 2209
   public function getSelfLink()
2210 2210
   {
2211
-    return $this->selfLink;
2211
+	return $this->selfLink;
2212 2212
   }
2213 2213
   public function setTitle($title)
2214 2214
   {
2215
-    $this->title = $title;
2215
+	$this->title = $title;
2216 2216
   }
2217 2217
   public function getTitle()
2218 2218
   {
2219
-    return $this->title;
2219
+	return $this->title;
2220 2220
   }
2221 2221
   public function setTotalItems($totalItems)
2222 2222
   {
2223
-    $this->totalItems = $totalItems;
2223
+	$this->totalItems = $totalItems;
2224 2224
   }
2225 2225
   public function getTotalItems()
2226 2226
   {
2227
-    return $this->totalItems;
2227
+	return $this->totalItems;
2228 2228
   }
2229 2229
 }
2230 2230
 
@@ -2237,11 +2237,11 @@  discard block
 block discarded – undo
2237 2237
 
2238 2238
   public function setTotalItems($totalItems)
2239 2239
   {
2240
-    $this->totalItems = $totalItems;
2240
+	$this->totalItems = $totalItems;
2241 2241
   }
2242 2242
   public function getTotalItems()
2243 2243
   {
2244
-    return $this->totalItems;
2244
+	return $this->totalItems;
2245 2245
   }
2246 2246
 }
2247 2247
 
@@ -2269,91 +2269,91 @@  discard block
 block discarded – undo
2269 2269
 
2270 2270
   public function setActor(Google_Service_PlusDomains_CommentActor $actor)
2271 2271
   {
2272
-    $this->actor = $actor;
2272
+	$this->actor = $actor;
2273 2273
   }
2274 2274
   public function getActor()
2275 2275
   {
2276
-    return $this->actor;
2276
+	return $this->actor;
2277 2277
   }
2278 2278
   public function setEtag($etag)
2279 2279
   {
2280
-    $this->etag = $etag;
2280
+	$this->etag = $etag;
2281 2281
   }
2282 2282
   public function getEtag()
2283 2283
   {
2284
-    return $this->etag;
2284
+	return $this->etag;
2285 2285
   }
2286 2286
   public function setId($id)
2287 2287
   {
2288
-    $this->id = $id;
2288
+	$this->id = $id;
2289 2289
   }
2290 2290
   public function getId()
2291 2291
   {
2292
-    return $this->id;
2292
+	return $this->id;
2293 2293
   }
2294 2294
   public function setInReplyTo($inReplyTo)
2295 2295
   {
2296
-    $this->inReplyTo = $inReplyTo;
2296
+	$this->inReplyTo = $inReplyTo;
2297 2297
   }
2298 2298
   public function getInReplyTo()
2299 2299
   {
2300
-    return $this->inReplyTo;
2300
+	return $this->inReplyTo;
2301 2301
   }
2302 2302
   public function setKind($kind)
2303 2303
   {
2304
-    $this->kind = $kind;
2304
+	$this->kind = $kind;
2305 2305
   }
2306 2306
   public function getKind()
2307 2307
   {
2308
-    return $this->kind;
2308
+	return $this->kind;
2309 2309
   }
2310 2310
   public function setObject(Google_Service_PlusDomains_CommentObject $object)
2311 2311
   {
2312
-    $this->object = $object;
2312
+	$this->object = $object;
2313 2313
   }
2314 2314
   public function getObject()
2315 2315
   {
2316
-    return $this->object;
2316
+	return $this->object;
2317 2317
   }
2318 2318
   public function setPlusoners(Google_Service_PlusDomains_CommentPlusoners $plusoners)
2319 2319
   {
2320
-    $this->plusoners = $plusoners;
2320
+	$this->plusoners = $plusoners;
2321 2321
   }
2322 2322
   public function getPlusoners()
2323 2323
   {
2324
-    return $this->plusoners;
2324
+	return $this->plusoners;
2325 2325
   }
2326 2326
   public function setPublished($published)
2327 2327
   {
2328
-    $this->published = $published;
2328
+	$this->published = $published;
2329 2329
   }
2330 2330
   public function getPublished()
2331 2331
   {
2332
-    return $this->published;
2332
+	return $this->published;
2333 2333
   }
2334 2334
   public function setSelfLink($selfLink)
2335 2335
   {
2336
-    $this->selfLink = $selfLink;
2336
+	$this->selfLink = $selfLink;
2337 2337
   }
2338 2338
   public function getSelfLink()
2339 2339
   {
2340
-    return $this->selfLink;
2340
+	return $this->selfLink;
2341 2341
   }
2342 2342
   public function setUpdated($updated)
2343 2343
   {
2344
-    $this->updated = $updated;
2344
+	$this->updated = $updated;
2345 2345
   }
2346 2346
   public function getUpdated()
2347 2347
   {
2348
-    return $this->updated;
2348
+	return $this->updated;
2349 2349
   }
2350 2350
   public function setVerb($verb)
2351 2351
   {
2352
-    $this->verb = $verb;
2352
+	$this->verb = $verb;
2353 2353
   }
2354 2354
   public function getVerb()
2355 2355
   {
2356
-    return $this->verb;
2356
+	return $this->verb;
2357 2357
   }
2358 2358
 }
2359 2359
 
@@ -2370,35 +2370,35 @@  discard block
 block discarded – undo
2370 2370
 
2371 2371
   public function setDisplayName($displayName)
2372 2372
   {
2373
-    $this->displayName = $displayName;
2373
+	$this->displayName = $displayName;
2374 2374
   }
2375 2375
   public function getDisplayName()
2376 2376
   {
2377
-    return $this->displayName;
2377
+	return $this->displayName;
2378 2378
   }
2379 2379
   public function setId($id)
2380 2380
   {
2381
-    $this->id = $id;
2381
+	$this->id = $id;
2382 2382
   }
2383 2383
   public function getId()
2384 2384
   {
2385
-    return $this->id;
2385
+	return $this->id;
2386 2386
   }
2387 2387
   public function setImage(Google_Service_PlusDomains_CommentActorImage $image)
2388 2388
   {
2389
-    $this->image = $image;
2389
+	$this->image = $image;
2390 2390
   }
2391 2391
   public function getImage()
2392 2392
   {
2393
-    return $this->image;
2393
+	return $this->image;
2394 2394
   }
2395 2395
   public function setUrl($url)
2396 2396
   {
2397
-    $this->url = $url;
2397
+	$this->url = $url;
2398 2398
   }
2399 2399
   public function getUrl()
2400 2400
   {
2401
-    return $this->url;
2401
+	return $this->url;
2402 2402
   }
2403 2403
 }
2404 2404
 
@@ -2411,11 +2411,11 @@  discard block
 block discarded – undo
2411 2411
 
2412 2412
   public function setUrl($url)
2413 2413
   {
2414
-    $this->url = $url;
2414
+	$this->url = $url;
2415 2415
   }
2416 2416
   public function getUrl()
2417 2417
   {
2418
-    return $this->url;
2418
+	return $this->url;
2419 2419
   }
2420 2420
 }
2421 2421
 
@@ -2437,67 +2437,67 @@  discard block
 block discarded – undo
2437 2437
 
2438 2438
   public function setEtag($etag)
2439 2439
   {
2440
-    $this->etag = $etag;
2440
+	$this->etag = $etag;
2441 2441
   }
2442 2442
   public function getEtag()
2443 2443
   {
2444
-    return $this->etag;
2444
+	return $this->etag;
2445 2445
   }
2446 2446
   public function setId($id)
2447 2447
   {
2448
-    $this->id = $id;
2448
+	$this->id = $id;
2449 2449
   }
2450 2450
   public function getId()
2451 2451
   {
2452
-    return $this->id;
2452
+	return $this->id;
2453 2453
   }
2454 2454
   public function setItems($items)
2455 2455
   {
2456
-    $this->items = $items;
2456
+	$this->items = $items;
2457 2457
   }
2458 2458
   public function getItems()
2459 2459
   {
2460
-    return $this->items;
2460
+	return $this->items;
2461 2461
   }
2462 2462
   public function setKind($kind)
2463 2463
   {
2464
-    $this->kind = $kind;
2464
+	$this->kind = $kind;
2465 2465
   }
2466 2466
   public function getKind()
2467 2467
   {
2468
-    return $this->kind;
2468
+	return $this->kind;
2469 2469
   }
2470 2470
   public function setNextLink($nextLink)
2471 2471
   {
2472
-    $this->nextLink = $nextLink;
2472
+	$this->nextLink = $nextLink;
2473 2473
   }
2474 2474
   public function getNextLink()
2475 2475
   {
2476
-    return $this->nextLink;
2476
+	return $this->nextLink;
2477 2477
   }
2478 2478
   public function setNextPageToken($nextPageToken)
2479 2479
   {
2480
-    $this->nextPageToken = $nextPageToken;
2480
+	$this->nextPageToken = $nextPageToken;
2481 2481
   }
2482 2482
   public function getNextPageToken()
2483 2483
   {
2484
-    return $this->nextPageToken;
2484
+	return $this->nextPageToken;
2485 2485
   }
2486 2486
   public function setTitle($title)
2487 2487
   {
2488
-    $this->title = $title;
2488
+	$this->title = $title;
2489 2489
   }
2490 2490
   public function getTitle()
2491 2491
   {
2492
-    return $this->title;
2492
+	return $this->title;
2493 2493
   }
2494 2494
   public function setUpdated($updated)
2495 2495
   {
2496
-    $this->updated = $updated;
2496
+	$this->updated = $updated;
2497 2497
   }
2498 2498
   public function getUpdated()
2499 2499
   {
2500
-    return $this->updated;
2500
+	return $this->updated;
2501 2501
   }
2502 2502
 }
2503 2503
 
@@ -2511,19 +2511,19 @@  discard block
 block discarded – undo
2511 2511
 
2512 2512
   public function setId($id)
2513 2513
   {
2514
-    $this->id = $id;
2514
+	$this->id = $id;
2515 2515
   }
2516 2516
   public function getId()
2517 2517
   {
2518
-    return $this->id;
2518
+	return $this->id;
2519 2519
   }
2520 2520
   public function setUrl($url)
2521 2521
   {
2522
-    $this->url = $url;
2522
+	$this->url = $url;
2523 2523
   }
2524 2524
   public function getUrl()
2525 2525
   {
2526
-    return $this->url;
2526
+	return $this->url;
2527 2527
   }
2528 2528
 }
2529 2529
 
@@ -2538,27 +2538,27 @@  discard block
 block discarded – undo
2538 2538
 
2539 2539
   public function setContent($content)
2540 2540
   {
2541
-    $this->content = $content;
2541
+	$this->content = $content;
2542 2542
   }
2543 2543
   public function getContent()
2544 2544
   {
2545
-    return $this->content;
2545
+	return $this->content;
2546 2546
   }
2547 2547
   public function setObjectType($objectType)
2548 2548
   {
2549
-    $this->objectType = $objectType;
2549
+	$this->objectType = $objectType;
2550 2550
   }
2551 2551
   public function getObjectType()
2552 2552
   {
2553
-    return $this->objectType;
2553
+	return $this->objectType;
2554 2554
   }
2555 2555
   public function setOriginalContent($originalContent)
2556 2556
   {
2557
-    $this->originalContent = $originalContent;
2557
+	$this->originalContent = $originalContent;
2558 2558
   }
2559 2559
   public function getOriginalContent()
2560 2560
   {
2561
-    return $this->originalContent;
2561
+	return $this->originalContent;
2562 2562
   }
2563 2563
 }
2564 2564
 
@@ -2571,11 +2571,11 @@  discard block
 block discarded – undo
2571 2571
 
2572 2572
   public function setTotalItems($totalItems)
2573 2573
   {
2574
-    $this->totalItems = $totalItems;
2574
+	$this->totalItems = $totalItems;
2575 2575
   }
2576 2576
   public function getTotalItems()
2577 2577
   {
2578
-    return $this->totalItems;
2578
+	return $this->totalItems;
2579 2579
   }
2580 2580
 }
2581 2581
 
@@ -2609,147 +2609,147 @@  discard block
 block discarded – undo
2609 2609
 
2610 2610
   public function setAuthor(Google_Service_PlusDomains_MediaAuthor $author)
2611 2611
   {
2612
-    $this->author = $author;
2612
+	$this->author = $author;
2613 2613
   }
2614 2614
   public function getAuthor()
2615 2615
   {
2616
-    return $this->author;
2616
+	return $this->author;
2617 2617
   }
2618 2618
   public function setDisplayName($displayName)
2619 2619
   {
2620
-    $this->displayName = $displayName;
2620
+	$this->displayName = $displayName;
2621 2621
   }
2622 2622
   public function getDisplayName()
2623 2623
   {
2624
-    return $this->displayName;
2624
+	return $this->displayName;
2625 2625
   }
2626 2626
   public function setEtag($etag)
2627 2627
   {
2628
-    $this->etag = $etag;
2628
+	$this->etag = $etag;
2629 2629
   }
2630 2630
   public function getEtag()
2631 2631
   {
2632
-    return $this->etag;
2632
+	return $this->etag;
2633 2633
   }
2634 2634
   public function setExif(Google_Service_PlusDomains_MediaExif $exif)
2635 2635
   {
2636
-    $this->exif = $exif;
2636
+	$this->exif = $exif;
2637 2637
   }
2638 2638
   public function getExif()
2639 2639
   {
2640
-    return $this->exif;
2640
+	return $this->exif;
2641 2641
   }
2642 2642
   public function setHeight($height)
2643 2643
   {
2644
-    $this->height = $height;
2644
+	$this->height = $height;
2645 2645
   }
2646 2646
   public function getHeight()
2647 2647
   {
2648
-    return $this->height;
2648
+	return $this->height;
2649 2649
   }
2650 2650
   public function setId($id)
2651 2651
   {
2652
-    $this->id = $id;
2652
+	$this->id = $id;
2653 2653
   }
2654 2654
   public function getId()
2655 2655
   {
2656
-    return $this->id;
2656
+	return $this->id;
2657 2657
   }
2658 2658
   public function setKind($kind)
2659 2659
   {
2660
-    $this->kind = $kind;
2660
+	$this->kind = $kind;
2661 2661
   }
2662 2662
   public function getKind()
2663 2663
   {
2664
-    return $this->kind;
2664
+	return $this->kind;
2665 2665
   }
2666 2666
   public function setMediaCreatedTime($mediaCreatedTime)
2667 2667
   {
2668
-    $this->mediaCreatedTime = $mediaCreatedTime;
2668
+	$this->mediaCreatedTime = $mediaCreatedTime;
2669 2669
   }
2670 2670
   public function getMediaCreatedTime()
2671 2671
   {
2672
-    return $this->mediaCreatedTime;
2672
+	return $this->mediaCreatedTime;
2673 2673
   }
2674 2674
   public function setMediaUrl($mediaUrl)
2675 2675
   {
2676
-    $this->mediaUrl = $mediaUrl;
2676
+	$this->mediaUrl = $mediaUrl;
2677 2677
   }
2678 2678
   public function getMediaUrl()
2679 2679
   {
2680
-    return $this->mediaUrl;
2680
+	return $this->mediaUrl;
2681 2681
   }
2682 2682
   public function setPublished($published)
2683 2683
   {
2684
-    $this->published = $published;
2684
+	$this->published = $published;
2685 2685
   }
2686 2686
   public function getPublished()
2687 2687
   {
2688
-    return $this->published;
2688
+	return $this->published;
2689 2689
   }
2690 2690
   public function setSizeBytes($sizeBytes)
2691 2691
   {
2692
-    $this->sizeBytes = $sizeBytes;
2692
+	$this->sizeBytes = $sizeBytes;
2693 2693
   }
2694 2694
   public function getSizeBytes()
2695 2695
   {
2696
-    return $this->sizeBytes;
2696
+	return $this->sizeBytes;
2697 2697
   }
2698 2698
   public function setStreams($streams)
2699 2699
   {
2700
-    $this->streams = $streams;
2700
+	$this->streams = $streams;
2701 2701
   }
2702 2702
   public function getStreams()
2703 2703
   {
2704
-    return $this->streams;
2704
+	return $this->streams;
2705 2705
   }
2706 2706
   public function setSummary($summary)
2707 2707
   {
2708
-    $this->summary = $summary;
2708
+	$this->summary = $summary;
2709 2709
   }
2710 2710
   public function getSummary()
2711 2711
   {
2712
-    return $this->summary;
2712
+	return $this->summary;
2713 2713
   }
2714 2714
   public function setUpdated($updated)
2715 2715
   {
2716
-    $this->updated = $updated;
2716
+	$this->updated = $updated;
2717 2717
   }
2718 2718
   public function getUpdated()
2719 2719
   {
2720
-    return $this->updated;
2720
+	return $this->updated;
2721 2721
   }
2722 2722
   public function setUrl($url)
2723 2723
   {
2724
-    $this->url = $url;
2724
+	$this->url = $url;
2725 2725
   }
2726 2726
   public function getUrl()
2727 2727
   {
2728
-    return $this->url;
2728
+	return $this->url;
2729 2729
   }
2730 2730
   public function setVideoDuration($videoDuration)
2731 2731
   {
2732
-    $this->videoDuration = $videoDuration;
2732
+	$this->videoDuration = $videoDuration;
2733 2733
   }
2734 2734
   public function getVideoDuration()
2735 2735
   {
2736
-    return $this->videoDuration;
2736
+	return $this->videoDuration;
2737 2737
   }
2738 2738
   public function setVideoStatus($videoStatus)
2739 2739
   {
2740
-    $this->videoStatus = $videoStatus;
2740
+	$this->videoStatus = $videoStatus;
2741 2741
   }
2742 2742
   public function getVideoStatus()
2743 2743
   {
2744
-    return $this->videoStatus;
2744
+	return $this->videoStatus;
2745 2745
   }
2746 2746
   public function setWidth($width)
2747 2747
   {
2748
-    $this->width = $width;
2748
+	$this->width = $width;
2749 2749
   }
2750 2750
   public function getWidth()
2751 2751
   {
2752
-    return $this->width;
2752
+	return $this->width;
2753 2753
   }
2754 2754
 }
2755 2755
 
@@ -2766,35 +2766,35 @@  discard block
 block discarded – undo
2766 2766
 
2767 2767
   public function setDisplayName($displayName)
2768 2768
   {
2769
-    $this->displayName = $displayName;
2769
+	$this->displayName = $displayName;
2770 2770
   }
2771 2771
   public function getDisplayName()
2772 2772
   {
2773
-    return $this->displayName;
2773
+	return $this->displayName;
2774 2774
   }
2775 2775
   public function setId($id)
2776 2776
   {
2777
-    $this->id = $id;
2777
+	$this->id = $id;
2778 2778
   }
2779 2779
   public function getId()
2780 2780
   {
2781
-    return $this->id;
2781
+	return $this->id;
2782 2782
   }
2783 2783
   public function setImage(Google_Service_PlusDomains_MediaAuthorImage $image)
2784 2784
   {
2785
-    $this->image = $image;
2785
+	$this->image = $image;
2786 2786
   }
2787 2787
   public function getImage()
2788 2788
   {
2789
-    return $this->image;
2789
+	return $this->image;
2790 2790
   }
2791 2791
   public function setUrl($url)
2792 2792
   {
2793
-    $this->url = $url;
2793
+	$this->url = $url;
2794 2794
   }
2795 2795
   public function getUrl()
2796 2796
   {
2797
-    return $this->url;
2797
+	return $this->url;
2798 2798
   }
2799 2799
 }
2800 2800
 
@@ -2807,11 +2807,11 @@  discard block
 block discarded – undo
2807 2807
 
2808 2808
   public function setUrl($url)
2809 2809
   {
2810
-    $this->url = $url;
2810
+	$this->url = $url;
2811 2811
   }
2812 2812
   public function getUrl()
2813 2813
   {
2814
-    return $this->url;
2814
+	return $this->url;
2815 2815
   }
2816 2816
 }
2817 2817
 
@@ -2824,11 +2824,11 @@  discard block
 block discarded – undo
2824 2824
 
2825 2825
   public function setTime($time)
2826 2826
   {
2827
-    $this->time = $time;
2827
+	$this->time = $time;
2828 2828
   }
2829 2829
   public function getTime()
2830 2830
   {
2831
-    return $this->time;
2831
+	return $this->time;
2832 2832
   }
2833 2833
 }
2834 2834
 
@@ -2849,59 +2849,59 @@  discard block
 block discarded – undo
2849 2849
 
2850 2850
   public function setEtag($etag)
2851 2851
   {
2852
-    $this->etag = $etag;
2852
+	$this->etag = $etag;
2853 2853
   }
2854 2854
   public function getEtag()
2855 2855
   {
2856
-    return $this->etag;
2856
+	return $this->etag;
2857 2857
   }
2858 2858
   public function setItems($items)
2859 2859
   {
2860
-    $this->items = $items;
2860
+	$this->items = $items;
2861 2861
   }
2862 2862
   public function getItems()
2863 2863
   {
2864
-    return $this->items;
2864
+	return $this->items;
2865 2865
   }
2866 2866
   public function setKind($kind)
2867 2867
   {
2868
-    $this->kind = $kind;
2868
+	$this->kind = $kind;
2869 2869
   }
2870 2870
   public function getKind()
2871 2871
   {
2872
-    return $this->kind;
2872
+	return $this->kind;
2873 2873
   }
2874 2874
   public function setNextPageToken($nextPageToken)
2875 2875
   {
2876
-    $this->nextPageToken = $nextPageToken;
2876
+	$this->nextPageToken = $nextPageToken;
2877 2877
   }
2878 2878
   public function getNextPageToken()
2879 2879
   {
2880
-    return $this->nextPageToken;
2880
+	return $this->nextPageToken;
2881 2881
   }
2882 2882
   public function setSelfLink($selfLink)
2883 2883
   {
2884
-    $this->selfLink = $selfLink;
2884
+	$this->selfLink = $selfLink;
2885 2885
   }
2886 2886
   public function getSelfLink()
2887 2887
   {
2888
-    return $this->selfLink;
2888
+	return $this->selfLink;
2889 2889
   }
2890 2890
   public function setTitle($title)
2891 2891
   {
2892
-    $this->title = $title;
2892
+	$this->title = $title;
2893 2893
   }
2894 2894
   public function getTitle()
2895 2895
   {
2896
-    return $this->title;
2896
+	return $this->title;
2897 2897
   }
2898 2898
   public function setTotalItems($totalItems)
2899 2899
   {
2900
-    $this->totalItems = $totalItems;
2900
+	$this->totalItems = $totalItems;
2901 2901
   }
2902 2902
   public function getTotalItems()
2903 2903
   {
2904
-    return $this->totalItems;
2904
+	return $this->totalItems;
2905 2905
   }
2906 2906
 }
2907 2907
 
@@ -2949,227 +2949,227 @@  discard block
 block discarded – undo
2949 2949
 
2950 2950
   public function setAboutMe($aboutMe)
2951 2951
   {
2952
-    $this->aboutMe = $aboutMe;
2952
+	$this->aboutMe = $aboutMe;
2953 2953
   }
2954 2954
   public function getAboutMe()
2955 2955
   {
2956
-    return $this->aboutMe;
2956
+	return $this->aboutMe;
2957 2957
   }
2958 2958
   public function setBirthday($birthday)
2959 2959
   {
2960
-    $this->birthday = $birthday;
2960
+	$this->birthday = $birthday;
2961 2961
   }
2962 2962
   public function getBirthday()
2963 2963
   {
2964
-    return $this->birthday;
2964
+	return $this->birthday;
2965 2965
   }
2966 2966
   public function setBraggingRights($braggingRights)
2967 2967
   {
2968
-    $this->braggingRights = $braggingRights;
2968
+	$this->braggingRights = $braggingRights;
2969 2969
   }
2970 2970
   public function getBraggingRights()
2971 2971
   {
2972
-    return $this->braggingRights;
2972
+	return $this->braggingRights;
2973 2973
   }
2974 2974
   public function setCircledByCount($circledByCount)
2975 2975
   {
2976
-    $this->circledByCount = $circledByCount;
2976
+	$this->circledByCount = $circledByCount;
2977 2977
   }
2978 2978
   public function getCircledByCount()
2979 2979
   {
2980
-    return $this->circledByCount;
2980
+	return $this->circledByCount;
2981 2981
   }
2982 2982
   public function setCover(Google_Service_PlusDomains_PersonCover $cover)
2983 2983
   {
2984
-    $this->cover = $cover;
2984
+	$this->cover = $cover;
2985 2985
   }
2986 2986
   public function getCover()
2987 2987
   {
2988
-    return $this->cover;
2988
+	return $this->cover;
2989 2989
   }
2990 2990
   public function setCurrentLocation($currentLocation)
2991 2991
   {
2992
-    $this->currentLocation = $currentLocation;
2992
+	$this->currentLocation = $currentLocation;
2993 2993
   }
2994 2994
   public function getCurrentLocation()
2995 2995
   {
2996
-    return $this->currentLocation;
2996
+	return $this->currentLocation;
2997 2997
   }
2998 2998
   public function setDisplayName($displayName)
2999 2999
   {
3000
-    $this->displayName = $displayName;
3000
+	$this->displayName = $displayName;
3001 3001
   }
3002 3002
   public function getDisplayName()
3003 3003
   {
3004
-    return $this->displayName;
3004
+	return $this->displayName;
3005 3005
   }
3006 3006
   public function setDomain($domain)
3007 3007
   {
3008
-    $this->domain = $domain;
3008
+	$this->domain = $domain;
3009 3009
   }
3010 3010
   public function getDomain()
3011 3011
   {
3012
-    return $this->domain;
3012
+	return $this->domain;
3013 3013
   }
3014 3014
   public function setEmails($emails)
3015 3015
   {
3016
-    $this->emails = $emails;
3016
+	$this->emails = $emails;
3017 3017
   }
3018 3018
   public function getEmails()
3019 3019
   {
3020
-    return $this->emails;
3020
+	return $this->emails;
3021 3021
   }
3022 3022
   public function setEtag($etag)
3023 3023
   {
3024
-    $this->etag = $etag;
3024
+	$this->etag = $etag;
3025 3025
   }
3026 3026
   public function getEtag()
3027 3027
   {
3028
-    return $this->etag;
3028
+	return $this->etag;
3029 3029
   }
3030 3030
   public function setGender($gender)
3031 3031
   {
3032
-    $this->gender = $gender;
3032
+	$this->gender = $gender;
3033 3033
   }
3034 3034
   public function getGender()
3035 3035
   {
3036
-    return $this->gender;
3036
+	return $this->gender;
3037 3037
   }
3038 3038
   public function setId($id)
3039 3039
   {
3040
-    $this->id = $id;
3040
+	$this->id = $id;
3041 3041
   }
3042 3042
   public function getId()
3043 3043
   {
3044
-    return $this->id;
3044
+	return $this->id;
3045 3045
   }
3046 3046
   public function setImage(Google_Service_PlusDomains_PersonImage $image)
3047 3047
   {
3048
-    $this->image = $image;
3048
+	$this->image = $image;
3049 3049
   }
3050 3050
   public function getImage()
3051 3051
   {
3052
-    return $this->image;
3052
+	return $this->image;
3053 3053
   }
3054 3054
   public function setIsPlusUser($isPlusUser)
3055 3055
   {
3056
-    $this->isPlusUser = $isPlusUser;
3056
+	$this->isPlusUser = $isPlusUser;
3057 3057
   }
3058 3058
   public function getIsPlusUser()
3059 3059
   {
3060
-    return $this->isPlusUser;
3060
+	return $this->isPlusUser;
3061 3061
   }
3062 3062
   public function setKind($kind)
3063 3063
   {
3064
-    $this->kind = $kind;
3064
+	$this->kind = $kind;
3065 3065
   }
3066 3066
   public function getKind()
3067 3067
   {
3068
-    return $this->kind;
3068
+	return $this->kind;
3069 3069
   }
3070 3070
   public function setName(Google_Service_PlusDomains_PersonName $name)
3071 3071
   {
3072
-    $this->name = $name;
3072
+	$this->name = $name;
3073 3073
   }
3074 3074
   public function getName()
3075 3075
   {
3076
-    return $this->name;
3076
+	return $this->name;
3077 3077
   }
3078 3078
   public function setNickname($nickname)
3079 3079
   {
3080
-    $this->nickname = $nickname;
3080
+	$this->nickname = $nickname;
3081 3081
   }
3082 3082
   public function getNickname()
3083 3083
   {
3084
-    return $this->nickname;
3084
+	return $this->nickname;
3085 3085
   }
3086 3086
   public function setObjectType($objectType)
3087 3087
   {
3088
-    $this->objectType = $objectType;
3088
+	$this->objectType = $objectType;
3089 3089
   }
3090 3090
   public function getObjectType()
3091 3091
   {
3092
-    return $this->objectType;
3092
+	return $this->objectType;
3093 3093
   }
3094 3094
   public function setOccupation($occupation)
3095 3095
   {
3096
-    $this->occupation = $occupation;
3096
+	$this->occupation = $occupation;
3097 3097
   }
3098 3098
   public function getOccupation()
3099 3099
   {
3100
-    return $this->occupation;
3100
+	return $this->occupation;
3101 3101
   }
3102 3102
   public function setOrganizations($organizations)
3103 3103
   {
3104
-    $this->organizations = $organizations;
3104
+	$this->organizations = $organizations;
3105 3105
   }
3106 3106
   public function getOrganizations()
3107 3107
   {
3108
-    return $this->organizations;
3108
+	return $this->organizations;
3109 3109
   }
3110 3110
   public function setPlacesLived($placesLived)
3111 3111
   {
3112
-    $this->placesLived = $placesLived;
3112
+	$this->placesLived = $placesLived;
3113 3113
   }
3114 3114
   public function getPlacesLived()
3115 3115
   {
3116
-    return $this->placesLived;
3116
+	return $this->placesLived;
3117 3117
   }
3118 3118
   public function setPlusOneCount($plusOneCount)
3119 3119
   {
3120
-    $this->plusOneCount = $plusOneCount;
3120
+	$this->plusOneCount = $plusOneCount;
3121 3121
   }
3122 3122
   public function getPlusOneCount()
3123 3123
   {
3124
-    return $this->plusOneCount;
3124
+	return $this->plusOneCount;
3125 3125
   }
3126 3126
   public function setRelationshipStatus($relationshipStatus)
3127 3127
   {
3128
-    $this->relationshipStatus = $relationshipStatus;
3128
+	$this->relationshipStatus = $relationshipStatus;
3129 3129
   }
3130 3130
   public function getRelationshipStatus()
3131 3131
   {
3132
-    return $this->relationshipStatus;
3132
+	return $this->relationshipStatus;
3133 3133
   }
3134 3134
   public function setSkills($skills)
3135 3135
   {
3136
-    $this->skills = $skills;
3136
+	$this->skills = $skills;
3137 3137
   }
3138 3138
   public function getSkills()
3139 3139
   {
3140
-    return $this->skills;
3140
+	return $this->skills;
3141 3141
   }
3142 3142
   public function setTagline($tagline)
3143 3143
   {
3144
-    $this->tagline = $tagline;
3144
+	$this->tagline = $tagline;
3145 3145
   }
3146 3146
   public function getTagline()
3147 3147
   {
3148
-    return $this->tagline;
3148
+	return $this->tagline;
3149 3149
   }
3150 3150
   public function setUrl($url)
3151 3151
   {
3152
-    $this->url = $url;
3152
+	$this->url = $url;
3153 3153
   }
3154 3154
   public function getUrl()
3155 3155
   {
3156
-    return $this->url;
3156
+	return $this->url;
3157 3157
   }
3158 3158
   public function setUrls($urls)
3159 3159
   {
3160
-    $this->urls = $urls;
3160
+	$this->urls = $urls;
3161 3161
   }
3162 3162
   public function getUrls()
3163 3163
   {
3164
-    return $this->urls;
3164
+	return $this->urls;
3165 3165
   }
3166 3166
   public function setVerified($verified)
3167 3167
   {
3168
-    $this->verified = $verified;
3168
+	$this->verified = $verified;
3169 3169
   }
3170 3170
   public function getVerified()
3171 3171
   {
3172
-    return $this->verified;
3172
+	return $this->verified;
3173 3173
   }
3174 3174
 }
3175 3175
 
@@ -3186,27 +3186,27 @@  discard block
 block discarded – undo
3186 3186
 
3187 3187
   public function setCoverInfo(Google_Service_PlusDomains_PersonCoverCoverInfo $coverInfo)
3188 3188
   {
3189
-    $this->coverInfo = $coverInfo;
3189
+	$this->coverInfo = $coverInfo;
3190 3190
   }
3191 3191
   public function getCoverInfo()
3192 3192
   {
3193
-    return $this->coverInfo;
3193
+	return $this->coverInfo;
3194 3194
   }
3195 3195
   public function setCoverPhoto(Google_Service_PlusDomains_PersonCoverCoverPhoto $coverPhoto)
3196 3196
   {
3197
-    $this->coverPhoto = $coverPhoto;
3197
+	$this->coverPhoto = $coverPhoto;
3198 3198
   }
3199 3199
   public function getCoverPhoto()
3200 3200
   {
3201
-    return $this->coverPhoto;
3201
+	return $this->coverPhoto;
3202 3202
   }
3203 3203
   public function setLayout($layout)
3204 3204
   {
3205
-    $this->layout = $layout;
3205
+	$this->layout = $layout;
3206 3206
   }
3207 3207
   public function getLayout()
3208 3208
   {
3209
-    return $this->layout;
3209
+	return $this->layout;
3210 3210
   }
3211 3211
 }
3212 3212
 
@@ -3220,19 +3220,19 @@  discard block
 block discarded – undo
3220 3220
 
3221 3221
   public function setLeftImageOffset($leftImageOffset)
3222 3222
   {
3223
-    $this->leftImageOffset = $leftImageOffset;
3223
+	$this->leftImageOffset = $leftImageOffset;
3224 3224
   }
3225 3225
   public function getLeftImageOffset()
3226 3226
   {
3227
-    return $this->leftImageOffset;
3227
+	return $this->leftImageOffset;
3228 3228
   }
3229 3229
   public function setTopImageOffset($topImageOffset)
3230 3230
   {
3231
-    $this->topImageOffset = $topImageOffset;
3231
+	$this->topImageOffset = $topImageOffset;
3232 3232
   }
3233 3233
   public function getTopImageOffset()
3234 3234
   {
3235
-    return $this->topImageOffset;
3235
+	return $this->topImageOffset;
3236 3236
   }
3237 3237
 }
3238 3238
 
@@ -3247,27 +3247,27 @@  discard block
 block discarded – undo
3247 3247
 
3248 3248
   public function setHeight($height)
3249 3249
   {
3250
-    $this->height = $height;
3250
+	$this->height = $height;
3251 3251
   }
3252 3252
   public function getHeight()
3253 3253
   {
3254
-    return $this->height;
3254
+	return $this->height;
3255 3255
   }
3256 3256
   public function setUrl($url)
3257 3257
   {
3258
-    $this->url = $url;
3258
+	$this->url = $url;
3259 3259
   }
3260 3260
   public function getUrl()
3261 3261
   {
3262
-    return $this->url;
3262
+	return $this->url;
3263 3263
   }
3264 3264
   public function setWidth($width)
3265 3265
   {
3266
-    $this->width = $width;
3266
+	$this->width = $width;
3267 3267
   }
3268 3268
   public function getWidth()
3269 3269
   {
3270
-    return $this->width;
3270
+	return $this->width;
3271 3271
   }
3272 3272
 }
3273 3273
 
@@ -3281,19 +3281,19 @@  discard block
 block discarded – undo
3281 3281
 
3282 3282
   public function setType($type)
3283 3283
   {
3284
-    $this->type = $type;
3284
+	$this->type = $type;
3285 3285
   }
3286 3286
   public function getType()
3287 3287
   {
3288
-    return $this->type;
3288
+	return $this->type;
3289 3289
   }
3290 3290
   public function setValue($value)
3291 3291
   {
3292
-    $this->value = $value;
3292
+	$this->value = $value;
3293 3293
   }
3294 3294
   public function getValue()
3295 3295
   {
3296
-    return $this->value;
3296
+	return $this->value;
3297 3297
   }
3298 3298
 }
3299 3299
 
@@ -3307,19 +3307,19 @@  discard block
 block discarded – undo
3307 3307
 
3308 3308
   public function setIsDefault($isDefault)
3309 3309
   {
3310
-    $this->isDefault = $isDefault;
3310
+	$this->isDefault = $isDefault;
3311 3311
   }
3312 3312
   public function getIsDefault()
3313 3313
   {
3314
-    return $this->isDefault;
3314
+	return $this->isDefault;
3315 3315
   }
3316 3316
   public function setUrl($url)
3317 3317
   {
3318
-    $this->url = $url;
3318
+	$this->url = $url;
3319 3319
   }
3320 3320
   public function getUrl()
3321 3321
   {
3322
-    return $this->url;
3322
+	return $this->url;
3323 3323
   }
3324 3324
 }
3325 3325
 
@@ -3337,51 +3337,51 @@  discard block
 block discarded – undo
3337 3337
 
3338 3338
   public function setFamilyName($familyName)
3339 3339
   {
3340
-    $this->familyName = $familyName;
3340
+	$this->familyName = $familyName;
3341 3341
   }
3342 3342
   public function getFamilyName()
3343 3343
   {
3344
-    return $this->familyName;
3344
+	return $this->familyName;
3345 3345
   }
3346 3346
   public function setFormatted($formatted)
3347 3347
   {
3348
-    $this->formatted = $formatted;
3348
+	$this->formatted = $formatted;
3349 3349
   }
3350 3350
   public function getFormatted()
3351 3351
   {
3352
-    return $this->formatted;
3352
+	return $this->formatted;
3353 3353
   }
3354 3354
   public function setGivenName($givenName)
3355 3355
   {
3356
-    $this->givenName = $givenName;
3356
+	$this->givenName = $givenName;
3357 3357
   }
3358 3358
   public function getGivenName()
3359 3359
   {
3360
-    return $this->givenName;
3360
+	return $this->givenName;
3361 3361
   }
3362 3362
   public function setHonorificPrefix($honorificPrefix)
3363 3363
   {
3364
-    $this->honorificPrefix = $honorificPrefix;
3364
+	$this->honorificPrefix = $honorificPrefix;
3365 3365
   }
3366 3366
   public function getHonorificPrefix()
3367 3367
   {
3368
-    return $this->honorificPrefix;
3368
+	return $this->honorificPrefix;
3369 3369
   }
3370 3370
   public function setHonorificSuffix($honorificSuffix)
3371 3371
   {
3372
-    $this->honorificSuffix = $honorificSuffix;
3372
+	$this->honorificSuffix = $honorificSuffix;
3373 3373
   }
3374 3374
   public function getHonorificSuffix()
3375 3375
   {
3376
-    return $this->honorificSuffix;
3376
+	return $this->honorificSuffix;
3377 3377
   }
3378 3378
   public function setMiddleName($middleName)
3379 3379
   {
3380
-    $this->middleName = $middleName;
3380
+	$this->middleName = $middleName;
3381 3381
   }
3382 3382
   public function getMiddleName()
3383 3383
   {
3384
-    return $this->middleName;
3384
+	return $this->middleName;
3385 3385
   }
3386 3386
 }
3387 3387
 
@@ -3402,75 +3402,75 @@  discard block
 block discarded – undo
3402 3402
 
3403 3403
   public function setDepartment($department)
3404 3404
   {
3405
-    $this->department = $department;
3405
+	$this->department = $department;
3406 3406
   }
3407 3407
   public function getDepartment()
3408 3408
   {
3409
-    return $this->department;
3409
+	return $this->department;
3410 3410
   }
3411 3411
   public function setDescription($description)
3412 3412
   {
3413
-    $this->description = $description;
3413
+	$this->description = $description;
3414 3414
   }
3415 3415
   public function getDescription()
3416 3416
   {
3417
-    return $this->description;
3417
+	return $this->description;
3418 3418
   }
3419 3419
   public function setEndDate($endDate)
3420 3420
   {
3421
-    $this->endDate = $endDate;
3421
+	$this->endDate = $endDate;
3422 3422
   }
3423 3423
   public function getEndDate()
3424 3424
   {
3425
-    return $this->endDate;
3425
+	return $this->endDate;
3426 3426
   }
3427 3427
   public function setLocation($location)
3428 3428
   {
3429
-    $this->location = $location;
3429
+	$this->location = $location;
3430 3430
   }
3431 3431
   public function getLocation()
3432 3432
   {
3433
-    return $this->location;
3433
+	return $this->location;
3434 3434
   }
3435 3435
   public function setName($name)
3436 3436
   {
3437
-    $this->name = $name;
3437
+	$this->name = $name;
3438 3438
   }
3439 3439
   public function getName()
3440 3440
   {
3441
-    return $this->name;
3441
+	return $this->name;
3442 3442
   }
3443 3443
   public function setPrimary($primary)
3444 3444
   {
3445
-    $this->primary = $primary;
3445
+	$this->primary = $primary;
3446 3446
   }
3447 3447
   public function getPrimary()
3448 3448
   {
3449
-    return $this->primary;
3449
+	return $this->primary;
3450 3450
   }
3451 3451
   public function setStartDate($startDate)
3452 3452
   {
3453
-    $this->startDate = $startDate;
3453
+	$this->startDate = $startDate;
3454 3454
   }
3455 3455
   public function getStartDate()
3456 3456
   {
3457
-    return $this->startDate;
3457
+	return $this->startDate;
3458 3458
   }
3459 3459
   public function setTitle($title)
3460 3460
   {
3461
-    $this->title = $title;
3461
+	$this->title = $title;
3462 3462
   }
3463 3463
   public function getTitle()
3464 3464
   {
3465
-    return $this->title;
3465
+	return $this->title;
3466 3466
   }
3467 3467
   public function setType($type)
3468 3468
   {
3469
-    $this->type = $type;
3469
+	$this->type = $type;
3470 3470
   }
3471 3471
   public function getType()
3472 3472
   {
3473
-    return $this->type;
3473
+	return $this->type;
3474 3474
   }
3475 3475
 }
3476 3476
 
@@ -3484,19 +3484,19 @@  discard block
 block discarded – undo
3484 3484
 
3485 3485
   public function setPrimary($primary)
3486 3486
   {
3487
-    $this->primary = $primary;
3487
+	$this->primary = $primary;
3488 3488
   }
3489 3489
   public function getPrimary()
3490 3490
   {
3491
-    return $this->primary;
3491
+	return $this->primary;
3492 3492
   }
3493 3493
   public function setValue($value)
3494 3494
   {
3495
-    $this->value = $value;
3495
+	$this->value = $value;
3496 3496
   }
3497 3497
   public function getValue()
3498 3498
   {
3499
-    return $this->value;
3499
+	return $this->value;
3500 3500
   }
3501 3501
 }
3502 3502
 
@@ -3511,27 +3511,27 @@  discard block
 block discarded – undo
3511 3511
 
3512 3512
   public function setLabel($label)
3513 3513
   {
3514
-    $this->label = $label;
3514
+	$this->label = $label;
3515 3515
   }
3516 3516
   public function getLabel()
3517 3517
   {
3518
-    return $this->label;
3518
+	return $this->label;
3519 3519
   }
3520 3520
   public function setType($type)
3521 3521
   {
3522
-    $this->type = $type;
3522
+	$this->type = $type;
3523 3523
   }
3524 3524
   public function getType()
3525 3525
   {
3526
-    return $this->type;
3526
+	return $this->type;
3527 3527
   }
3528 3528
   public function setValue($value)
3529 3529
   {
3530
-    $this->value = $value;
3530
+	$this->value = $value;
3531 3531
   }
3532 3532
   public function getValue()
3533 3533
   {
3534
-    return $this->value;
3534
+	return $this->value;
3535 3535
   }
3536 3536
 }
3537 3537
 
@@ -3550,43 +3550,43 @@  discard block
 block discarded – undo
3550 3550
 
3551 3551
   public function setAddress(Google_Service_PlusDomains_PlaceAddress $address)
3552 3552
   {
3553
-    $this->address = $address;
3553
+	$this->address = $address;
3554 3554
   }
3555 3555
   public function getAddress()
3556 3556
   {
3557
-    return $this->address;
3557
+	return $this->address;
3558 3558
   }
3559 3559
   public function setDisplayName($displayName)
3560 3560
   {
3561
-    $this->displayName = $displayName;
3561
+	$this->displayName = $displayName;
3562 3562
   }
3563 3563
   public function getDisplayName()
3564 3564
   {
3565
-    return $this->displayName;
3565
+	return $this->displayName;
3566 3566
   }
3567 3567
   public function setId($id)
3568 3568
   {
3569
-    $this->id = $id;
3569
+	$this->id = $id;
3570 3570
   }
3571 3571
   public function getId()
3572 3572
   {
3573
-    return $this->id;
3573
+	return $this->id;
3574 3574
   }
3575 3575
   public function setKind($kind)
3576 3576
   {
3577
-    $this->kind = $kind;
3577
+	$this->kind = $kind;
3578 3578
   }
3579 3579
   public function getKind()
3580 3580
   {
3581
-    return $this->kind;
3581
+	return $this->kind;
3582 3582
   }
3583 3583
   public function setPosition(Google_Service_PlusDomains_PlacePosition $position)
3584 3584
   {
3585
-    $this->position = $position;
3585
+	$this->position = $position;
3586 3586
   }
3587 3587
   public function getPosition()
3588 3588
   {
3589
-    return $this->position;
3589
+	return $this->position;
3590 3590
   }
3591 3591
 }
3592 3592
 
@@ -3599,11 +3599,11 @@  discard block
 block discarded – undo
3599 3599
 
3600 3600
   public function setFormatted($formatted)
3601 3601
   {
3602
-    $this->formatted = $formatted;
3602
+	$this->formatted = $formatted;
3603 3603
   }
3604 3604
   public function getFormatted()
3605 3605
   {
3606
-    return $this->formatted;
3606
+	return $this->formatted;
3607 3607
   }
3608 3608
 }
3609 3609
 
@@ -3617,19 +3617,19 @@  discard block
 block discarded – undo
3617 3617
 
3618 3618
   public function setLatitude($latitude)
3619 3619
   {
3620
-    $this->latitude = $latitude;
3620
+	$this->latitude = $latitude;
3621 3621
   }
3622 3622
   public function getLatitude()
3623 3623
   {
3624
-    return $this->latitude;
3624
+	return $this->latitude;
3625 3625
   }
3626 3626
   public function setLongitude($longitude)
3627 3627
   {
3628
-    $this->longitude = $longitude;
3628
+	$this->longitude = $longitude;
3629 3629
   }
3630 3630
   public function getLongitude()
3631 3631
   {
3632
-    return $this->longitude;
3632
+	return $this->longitude;
3633 3633
   }
3634 3634
 }
3635 3635
 
@@ -3644,27 +3644,27 @@  discard block
 block discarded – undo
3644 3644
 
3645 3645
   public function setDisplayName($displayName)
3646 3646
   {
3647
-    $this->displayName = $displayName;
3647
+	$this->displayName = $displayName;
3648 3648
   }
3649 3649
   public function getDisplayName()
3650 3650
   {
3651
-    return $this->displayName;
3651
+	return $this->displayName;
3652 3652
   }
3653 3653
   public function setId($id)
3654 3654
   {
3655
-    $this->id = $id;
3655
+	$this->id = $id;
3656 3656
   }
3657 3657
   public function getId()
3658 3658
   {
3659
-    return $this->id;
3659
+	return $this->id;
3660 3660
   }
3661 3661
   public function setType($type)
3662 3662
   {
3663
-    $this->type = $type;
3663
+	$this->type = $type;
3664 3664
   }
3665 3665
   public function getType()
3666 3666
   {
3667
-    return $this->type;
3667
+	return $this->type;
3668 3668
   }
3669 3669
 }
3670 3670
 
@@ -3680,34 +3680,34 @@  discard block
 block discarded – undo
3680 3680
 
3681 3681
   public function setHeight($height)
3682 3682
   {
3683
-    $this->height = $height;
3683
+	$this->height = $height;
3684 3684
   }
3685 3685
   public function getHeight()
3686 3686
   {
3687
-    return $this->height;
3687
+	return $this->height;
3688 3688
   }
3689 3689
   public function setType($type)
3690 3690
   {
3691
-    $this->type = $type;
3691
+	$this->type = $type;
3692 3692
   }
3693 3693
   public function getType()
3694 3694
   {
3695
-    return $this->type;
3695
+	return $this->type;
3696 3696
   }
3697 3697
   public function setUrl($url)
3698 3698
   {
3699
-    $this->url = $url;
3699
+	$this->url = $url;
3700 3700
   }
3701 3701
   public function getUrl()
3702 3702
   {
3703
-    return $this->url;
3703
+	return $this->url;
3704 3704
   }
3705 3705
   public function setWidth($width)
3706 3706
   {
3707
-    $this->width = $width;
3707
+	$this->width = $width;
3708 3708
   }
3709 3709
   public function getWidth()
3710 3710
   {
3711
-    return $this->width;
3711
+	return $this->width;
3712 3712
   }
3713 3713
 }
Please login to merge, or discard this patch.
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
                   'required' => true,
99 99
                 ),
100 100
               ),
101
-            ),'insert' => array(
101
+            ), 'insert' => array(
102 102
               'path' => 'people/{userId}/activities',
103 103
               'httpMethod' => 'POST',
104 104
               'parameters' => array(
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
                   'type' => 'boolean',
113 113
                 ),
114 114
               ),
115
-            ),'list' => array(
115
+            ), 'list' => array(
116 116
               'path' => 'people/{userId}/activities/{collection}',
117 117
               'httpMethod' => 'GET',
118 118
               'parameters' => array(
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
                   'repeated' => true,
194 194
                 ),
195 195
               ),
196
-            ),'get' => array(
196
+            ), 'get' => array(
197 197
               'path' => 'circles/{circleId}',
198 198
               'httpMethod' => 'GET',
199 199
               'parameters' => array(
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
                   'required' => true,
204 204
                 ),
205 205
               ),
206
-            ),'insert' => array(
206
+            ), 'insert' => array(
207 207
               'path' => 'people/{userId}/circles',
208 208
               'httpMethod' => 'POST',
209 209
               'parameters' => array(
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
                   'required' => true,
214 214
                 ),
215 215
               ),
216
-            ),'list' => array(
216
+            ), 'list' => array(
217 217
               'path' => 'people/{userId}/circles',
218 218
               'httpMethod' => 'GET',
219 219
               'parameters' => array(
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
                   'type' => 'integer',
232 232
                 ),
233 233
               ),
234
-            ),'patch' => array(
234
+            ), 'patch' => array(
235 235
               'path' => 'circles/{circleId}',
236 236
               'httpMethod' => 'PATCH',
237 237
               'parameters' => array(
@@ -241,7 +241,7 @@  discard block
 block discarded – undo
241 241
                   'required' => true,
242 242
                 ),
243 243
               ),
244
-            ),'remove' => array(
244
+            ), 'remove' => array(
245 245
               'path' => 'circles/{circleId}',
246 246
               'httpMethod' => 'DELETE',
247 247
               'parameters' => array(
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
                   'required' => true,
252 252
                 ),
253 253
               ),
254
-            ),'removePeople' => array(
254
+            ), 'removePeople' => array(
255 255
               'path' => 'circles/{circleId}/people',
256 256
               'httpMethod' => 'DELETE',
257 257
               'parameters' => array(
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                   'repeated' => true,
272 272
                 ),
273 273
               ),
274
-            ),'update' => array(
274
+            ), 'update' => array(
275 275
               'path' => 'circles/{circleId}',
276 276
               'httpMethod' => 'PUT',
277 277
               'parameters' => array(
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
                   'required' => true,
302 302
                 ),
303 303
               ),
304
-            ),'insert' => array(
304
+            ), 'insert' => array(
305 305
               'path' => 'activities/{activityId}/comments',
306 306
               'httpMethod' => 'POST',
307 307
               'parameters' => array(
@@ -311,7 +311,7 @@  discard block
 block discarded – undo
311 311
                   'required' => true,
312 312
                 ),
313 313
               ),
314
-            ),'list' => array(
314
+            ), 'list' => array(
315 315
               'path' => 'activities/{activityId}/comments',
316 316
               'httpMethod' => 'GET',
317 317
               'parameters' => array(
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
                   'required' => true,
379 379
                 ),
380 380
               ),
381
-            ),'list' => array(
381
+            ), 'list' => array(
382 382
               'path' => 'people/{userId}/people/{collection}',
383 383
               'httpMethod' => 'GET',
384 384
               'parameters' => array(
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
                   'type' => 'integer',
406 406
                 ),
407 407
               ),
408
-            ),'listByActivity' => array(
408
+            ), 'listByActivity' => array(
409 409
               'path' => 'activities/{activityId}/people/{collection}',
410 410
               'httpMethod' => 'GET',
411 411
               'parameters' => array(
@@ -428,7 +428,7 @@  discard block
 block discarded – undo
428 428
                   'type' => 'integer',
429 429
                 ),
430 430
               ),
431
-            ),'listByCircle' => array(
431
+            ), 'listByCircle' => array(
432 432
               'path' => 'circles/{circleId}/people',
433 433
               'httpMethod' => 'GET',
434 434
               'parameters' => array(
Please login to merge, or discard this patch.