Google_PlusMomentsService.php
15.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
<?php
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
/**
* The "moments" collection of methods.
* Typical usage is:
* <code>
* $plusService = new Google_PlusMomentsService(...);
* $moments = $plusService->moments;
* </code>
*/
class Google_MomentsServiceResource extends Google_ServiceResource {
/**
* Record a user activity (e.g Bill watched a video on Youtube) (moments.insert)
*
* @param string $userId The ID of the user to get activities for. The special value "me" can be used to indicate the authenticated user.
* @param string $collection The collection to which to write moments.
* @param Google_Moment $postBody
* @param array $optParams Optional parameters.
*
* @opt_param bool debug Return the moment as written. Should be used only for debugging.
* @return Google_Moment
*/
public function insert($userId, $collection, Google_Moment $postBody, $optParams = array()) {
$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
$params = array_merge($params, $optParams);
$data = $this->__call('insert', array($params));
if ($this->useObjects()) {
return new Google_Moment($data);
} else {
return $data;
}
}
}
/**
* Service definition for Google_Plus (v1moments).
*
* <p>
* The Google+ API enables developers to build on top of the Google+ platform.
* </p>
*
* <p>
* For more information about this service, see the
* <a href="https://developers.google.com/+/history/" target="_blank">API Documentation</a>
* </p>
*
* @author Google, Inc.
*/
class Google_PlusMomentsService extends Google_Service {
public $moments;
/**
* Constructs the internal representation of the Plus service.
*
* @param Google_Client $client
*/
public function __construct(Google_Client $client) {
$this->servicePath = 'plus/v1moments/people/';
$this->version = 'v1moments';
$this->serviceName = 'plus';
$client->addService($this->serviceName, $this->version);
$this->moments = new Google_MomentsServiceResource($this, $this->serviceName, 'moments',
json_decode('{"methods": {"insert": {"parameters": {"debug": {"type": "boolean", "location": "query"}, "userId": {"required": true, "type": "string", "location": "path"}, "collection": {"required": true, "type": "string", "location": "path", "enum": ["vault"]}}, "request": {"$ref": "Moment"}, "response": {"$ref": "Moment"}, "httpMethod": "POST", "path": "{userId}/moments/{collection}", "id": "plus.moments.insert"}}}', true));
}
}
class Google_ItemScope extends Google_Model {
public $startDate;
public $endDate;
public $text;
public $image;
protected $__addressType = 'Google_ItemScope';
protected $__addressDataType = '';
public $address;
public $birthDate;
public $datePublished;
public $addressLocality;
public $duration;
public $additionalName;
public $worstRating;
protected $__contributorType = 'Google_ItemScope';
protected $__contributorDataType = 'array';
public $contributor;
public $thumbnailUrl;
public $id;
public $postOfficeBoxNumber;
protected $__attendeesType = 'Google_ItemScope';
protected $__attendeesDataType = 'array';
public $attendees;
protected $__authorType = 'Google_ItemScope';
protected $__authorDataType = 'array';
public $author;
protected $__associated_mediaType = 'Google_ItemScope';
protected $__associated_mediaDataType = 'array';
public $associated_media;
public $bestRating;
public $addressCountry;
public $width;
public $streetAddress;
protected $__locationType = 'Google_ItemScope';
protected $__locationDataType = '';
public $location;
public $latitude;
protected $__byArtistType = 'Google_ItemScope';
protected $__byArtistDataType = '';
public $byArtist;
public $type;
public $dateModified;
public $contentSize;
public $contentUrl;
protected $__partOfTVSeriesType = 'Google_ItemScope';
protected $__partOfTVSeriesDataType = '';
public $partOfTVSeries;
public $description;
public $familyName;
public $kind;
public $dateCreated;
public $postalCode;
public $attendeeCount;
protected $__inAlbumType = 'Google_ItemScope';
protected $__inAlbumDataType = '';
public $inAlbum;
public $addressRegion;
public $height;
protected $__geoType = 'Google_ItemScope';
protected $__geoDataType = '';
public $geo;
public $embedUrl;
public $tickerSymbol;
public $playerType;
protected $__aboutType = 'Google_ItemScope';
protected $__aboutDataType = '';
public $about;
public $givenName;
public $name;
protected $__performersType = 'Google_ItemScope';
protected $__performersDataType = 'array';
public $performers;
public $url;
public $gender;
public $longitude;
protected $__thumbnailType = 'Google_ItemScope';
protected $__thumbnailDataType = '';
public $thumbnail;
public $caption;
public $ratingValue;
protected $__reviewRatingType = 'Google_ItemScope';
protected $__reviewRatingDataType = '';
public $reviewRating;
protected $__audioType = 'Google_ItemScope';
protected $__audioDataType = '';
public $audio;
public function setStartDate($startDate) {
$this->startDate = $startDate;
}
public function getStartDate() {
return $this->startDate;
}
public function setEndDate($endDate) {
$this->endDate = $endDate;
}
public function getEndDate() {
return $this->endDate;
}
public function setText($text) {
$this->text = $text;
}
public function getText() {
return $this->text;
}
public function setImage($image) {
$this->image = $image;
}
public function getImage() {
return $this->image;
}
public function setAddress(Google_ItemScope $address) {
$this->address = $address;
}
public function getAddress() {
return $this->address;
}
public function setBirthDate($birthDate) {
$this->birthDate = $birthDate;
}
public function getBirthDate() {
return $this->birthDate;
}
public function setDatePublished($datePublished) {
$this->datePublished = $datePublished;
}
public function getDatePublished() {
return $this->datePublished;
}
public function setAddressLocality($addressLocality) {
$this->addressLocality = $addressLocality;
}
public function getAddressLocality() {
return $this->addressLocality;
}
public function setDuration($duration) {
$this->duration = $duration;
}
public function getDuration() {
return $this->duration;
}
public function setAdditionalName(/* array(Google_string) */ $additionalName) {
$this->assertIsArray($additionalName, 'Google_string', __METHOD__);
$this->additionalName = $additionalName;
}
public function getAdditionalName() {
return $this->additionalName;
}
public function setWorstRating($worstRating) {
$this->worstRating = $worstRating;
}
public function getWorstRating() {
return $this->worstRating;
}
public function setContributor(/* array(Google_ItemScope) */ $contributor) {
$this->assertIsArray($contributor, 'Google_ItemScope', __METHOD__);
$this->contributor = $contributor;
}
public function getContributor() {
return $this->contributor;
}
public function setThumbnailUrl($thumbnailUrl) {
$this->thumbnailUrl = $thumbnailUrl;
}
public function getThumbnailUrl() {
return $this->thumbnailUrl;
}
public function setId($id) {
$this->id = $id;
}
public function getId() {
return $this->id;
}
public function setPostOfficeBoxNumber($postOfficeBoxNumber) {
$this->postOfficeBoxNumber = $postOfficeBoxNumber;
}
public function getPostOfficeBoxNumber() {
return $this->postOfficeBoxNumber;
}
public function setAttendees(/* array(Google_ItemScope) */ $attendees) {
$this->assertIsArray($attendees, 'Google_ItemScope', __METHOD__);
$this->attendees = $attendees;
}
public function getAttendees() {
return $this->attendees;
}
public function setAuthor(/* array(Google_ItemScope) */ $author) {
$this->assertIsArray($author, 'Google_ItemScope', __METHOD__);
$this->author = $author;
}
public function getAuthor() {
return $this->author;
}
public function setAssociated_media(/* array(Google_ItemScope) */ $associated_media) {
$this->assertIsArray($associated_media, 'Google_ItemScope', __METHOD__);
$this->associated_media = $associated_media;
}
public function getAssociated_media() {
return $this->associated_media;
}
public function setBestRating($bestRating) {
$this->bestRating = $bestRating;
}
public function getBestRating() {
return $this->bestRating;
}
public function setAddressCountry($addressCountry) {
$this->addressCountry = $addressCountry;
}
public function getAddressCountry() {
return $this->addressCountry;
}
public function setWidth($width) {
$this->width = $width;
}
public function getWidth() {
return $this->width;
}
public function setStreetAddress($streetAddress) {
$this->streetAddress = $streetAddress;
}
public function getStreetAddress() {
return $this->streetAddress;
}
public function setLocation(Google_ItemScope $location) {
$this->location = $location;
}
public function getLocation() {
return $this->location;
}
public function setLatitude($latitude) {
$this->latitude = $latitude;
}
public function getLatitude() {
return $this->latitude;
}
public function setByArtist(Google_ItemScope $byArtist) {
$this->byArtist = $byArtist;
}
public function getByArtist() {
return $this->byArtist;
}
public function setType($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
public function setDateModified($dateModified) {
$this->dateModified = $dateModified;
}
public function getDateModified() {
return $this->dateModified;
}
public function setContentSize($contentSize) {
$this->contentSize = $contentSize;
}
public function getContentSize() {
return $this->contentSize;
}
public function setContentUrl($contentUrl) {
$this->contentUrl = $contentUrl;
}
public function getContentUrl() {
return $this->contentUrl;
}
public function setPartOfTVSeries(Google_ItemScope $partOfTVSeries) {
$this->partOfTVSeries = $partOfTVSeries;
}
public function getPartOfTVSeries() {
return $this->partOfTVSeries;
}
public function setDescription($description) {
$this->description = $description;
}
public function getDescription() {
return $this->description;
}
public function setFamilyName($familyName) {
$this->familyName = $familyName;
}
public function getFamilyName() {
return $this->familyName;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setDateCreated($dateCreated) {
$this->dateCreated = $dateCreated;
}
public function getDateCreated() {
return $this->dateCreated;
}
public function setPostalCode($postalCode) {
$this->postalCode = $postalCode;
}
public function getPostalCode() {
return $this->postalCode;
}
public function setAttendeeCount($attendeeCount) {
$this->attendeeCount = $attendeeCount;
}
public function getAttendeeCount() {
return $this->attendeeCount;
}
public function setInAlbum(Google_ItemScope $inAlbum) {
$this->inAlbum = $inAlbum;
}
public function getInAlbum() {
return $this->inAlbum;
}
public function setAddressRegion($addressRegion) {
$this->addressRegion = $addressRegion;
}
public function getAddressRegion() {
return $this->addressRegion;
}
public function setHeight($height) {
$this->height = $height;
}
public function getHeight() {
return $this->height;
}
public function setGeo(Google_ItemScope $geo) {
$this->geo = $geo;
}
public function getGeo() {
return $this->geo;
}
public function setEmbedUrl($embedUrl) {
$this->embedUrl = $embedUrl;
}
public function getEmbedUrl() {
return $this->embedUrl;
}
public function setTickerSymbol($tickerSymbol) {
$this->tickerSymbol = $tickerSymbol;
}
public function getTickerSymbol() {
return $this->tickerSymbol;
}
public function setPlayerType($playerType) {
$this->playerType = $playerType;
}
public function getPlayerType() {
return $this->playerType;
}
public function setAbout(Google_ItemScope $about) {
$this->about = $about;
}
public function getAbout() {
return $this->about;
}
public function setGivenName($givenName) {
$this->givenName = $givenName;
}
public function getGivenName() {
return $this->givenName;
}
public function setName($name) {
$this->name = $name;
}
public function getName() {
return $this->name;
}
public function setPerformers(/* array(Google_ItemScope) */ $performers) {
$this->assertIsArray($performers, 'Google_ItemScope', __METHOD__);
$this->performers = $performers;
}
public function getPerformers() {
return $this->performers;
}
public function setUrl($url) {
$this->url = $url;
}
public function getUrl() {
return $this->url;
}
public function setGender($gender) {
$this->gender = $gender;
}
public function getGender() {
return $this->gender;
}
public function setLongitude($longitude) {
$this->longitude = $longitude;
}
public function getLongitude() {
return $this->longitude;
}
public function setThumbnail(Google_ItemScope $thumbnail) {
$this->thumbnail = $thumbnail;
}
public function getThumbnail() {
return $this->thumbnail;
}
public function setCaption($caption) {
$this->caption = $caption;
}
public function getCaption() {
return $this->caption;
}
public function setRatingValue($ratingValue) {
$this->ratingValue = $ratingValue;
}
public function getRatingValue() {
return $this->ratingValue;
}
public function setReviewRating(Google_ItemScope $reviewRating) {
$this->reviewRating = $reviewRating;
}
public function getReviewRating() {
return $this->reviewRating;
}
public function setAudio(Google_ItemScope $audio) {
$this->audio = $audio;
}
public function getAudio() {
return $this->audio;
}
}
class Google_Moment extends Google_Model {
public $startDate;
public $kind;
protected $__targetType = 'Google_ItemScope';
protected $__targetDataType = '';
public $target;
protected $__verbType = 'Google_MomentVerb';
protected $__verbDataType = '';
public $verb;
protected $__resultType = 'Google_ItemScope';
protected $__resultDataType = '';
public $result;
public $type;
public function setStartDate($startDate) {
$this->startDate = $startDate;
}
public function getStartDate() {
return $this->startDate;
}
public function setKind($kind) {
$this->kind = $kind;
}
public function getKind() {
return $this->kind;
}
public function setTarget(Google_ItemScope $target) {
$this->target = $target;
}
public function getTarget() {
return $this->target;
}
public function setVerb(Google_MomentVerb $verb) {
$this->verb = $verb;
}
public function getVerb() {
return $this->verb;
}
public function setResult(Google_ItemScope $result) {
$this->result = $result;
}
public function getResult() {
return $this->result;
}
public function setType($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
}
class Google_MomentVerb extends Google_Model {
public $url;
public function setUrl($url) {
$this->url = $url;
}
public function getUrl() {
return $this->url;
}
}