PluginProbe
Authorizer / 2.2
Authorizer v2.2
3.15.3 3.15.2 3.15.1 3.15.0 3.14.3 3.14.4 3.14.2 3.14.1 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.9.0 2.9.1 2.9.10 2.9.11 2.9.12 2.9.13 2.9.2 2.9.3 2.9.6 All 126 releases
authorizer / inc / google-api-php-client / src / Google / Service / Plus.php

Plus.php in Authorizer 2.2, at inc/google-api-php-client/src/Google/Service/Plus.php

3,822 lines 75.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Copyright 2010 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18 /**
19 * Service definition for Plus (v1).
20 *
21 * <p>
22 * The Google+ API enables developers to build on top of the Google+ platform.
23 * </p>
24 *
25 * <p>
26 * For more information about this service, see the API
27 * <a href="https://developers.google.com/+/api/" target="_blank">Documentation</a>
28 * </p>
29 *
30 * @author Google, Inc.
31 */
32 class Google_Service_Plus extends Google_Service
33 {
34 /** Know your basic profile info and list of people in your circles.. */
35 const PLUS_LOGIN = "https://www.googleapis.com/auth/plus.login";
36 /** Know who you are on Google. */
37 const PLUS_ME = "https://www.googleapis.com/auth/plus.me";
38 /** View your email address. */
39 const USERINFO_EMAIL = "https://www.googleapis.com/auth/userinfo.email";
40 /** View basic information about your account. */
41 const USERINFO_PROFILE = "https://www.googleapis.com/auth/userinfo.profile";
42
43 public $activities;
44 public $comments;
45 public $moments;
46 public $people;
47
48
49 /**
50 * Constructs the internal representation of the Plus service.
51 *
52 * @param Google_Client $client
53 */
54 public function __construct(Google_Client $client)
55 {
56 parent::__construct($client);
57 $this->servicePath = 'plus/v1/';
58 $this->version = 'v1';
59 $this->serviceName = 'plus';
60
61 $this->activities = new Google_Service_Plus_Activities_Resource(
62 $this,
63 $this->serviceName,
64 'activities',
65 array(
66 'methods' => array(
67 'get' => array(
68 'path' => 'activities/{activityId}',
69 'httpMethod' => 'GET',
70 'parameters' => array(
71 'activityId' => array(
72 'location' => 'path',
73 'type' => 'string',
74 'required' => true,
75 ),
76 ),
77 ),'list' => array(
78 'path' => 'people/{userId}/activities/{collection}',
79 'httpMethod' => 'GET',
80 'parameters' => array(
81 'userId' => array(
82 'location' => 'path',
83 'type' => 'string',
84 'required' => true,
85 ),
86 'collection' => array(
87 'location' => 'path',
88 'type' => 'string',
89 'required' => true,
90 ),
91 'pageToken' => array(
92 'location' => 'query',
93 'type' => 'string',
94 ),
95 'maxResults' => array(
96 'location' => 'query',
97 'type' => 'integer',
98 ),
99 ),
100 ),'search' => array(
101 'path' => 'activities',
102 'httpMethod' => 'GET',
103 'parameters' => array(
104 'query' => array(
105 'location' => 'query',
106 'type' => 'string',
107 'required' => true,
108 ),
109 'orderBy' => array(
110 'location' => 'query',
111 'type' => 'string',
112 ),
113 'pageToken' => array(
114 'location' => 'query',
115 'type' => 'string',
116 ),
117 'maxResults' => array(
118 'location' => 'query',
119 'type' => 'integer',
120 ),
121 'language' => array(
122 'location' => 'query',
123 'type' => 'string',
124 ),
125 ),
126 ),
127 )
128 )
129 );
130 $this->comments = new Google_Service_Plus_Comments_Resource(
131 $this,
132 $this->serviceName,
133 'comments',
134 array(
135 'methods' => array(
136 'get' => array(
137 'path' => 'comments/{commentId}',
138 'httpMethod' => 'GET',
139 'parameters' => array(
140 'commentId' => array(
141 'location' => 'path',
142 'type' => 'string',
143 'required' => true,
144 ),
145 ),
146 ),'list' => array(
147 'path' => 'activities/{activityId}/comments',
148 'httpMethod' => 'GET',
149 'parameters' => array(
150 'activityId' => array(
151 'location' => 'path',
152 'type' => 'string',
153 'required' => true,
154 ),
155 'pageToken' => array(
156 'location' => 'query',
157 'type' => 'string',
158 ),
159 'sortOrder' => array(
160 'location' => 'query',
161 'type' => 'string',
162 ),
163 'maxResults' => array(
164 'location' => 'query',
165 'type' => 'integer',
166 ),
167 ),
168 ),
169 )
170 )
171 );
172 $this->moments = new Google_Service_Plus_Moments_Resource(
173 $this,
174 $this->serviceName,
175 'moments',
176 array(
177 'methods' => array(
178 'insert' => array(
179 'path' => 'people/{userId}/moments/{collection}',
180 'httpMethod' => 'POST',
181 'parameters' => array(
182 'userId' => array(
183 'location' => 'path',
184 'type' => 'string',
185 'required' => true,
186 ),
187 'collection' => array(
188 'location' => 'path',
189 'type' => 'string',
190 'required' => true,
191 ),
192 'debug' => array(
193 'location' => 'query',
194 'type' => 'boolean',
195 ),
196 ),
197 ),'list' => array(
198 'path' => 'people/{userId}/moments/{collection}',
199 'httpMethod' => 'GET',
200 'parameters' => array(
201 'userId' => array(
202 'location' => 'path',
203 'type' => 'string',
204 'required' => true,
205 ),
206 'collection' => array(
207 'location' => 'path',
208 'type' => 'string',
209 'required' => true,
210 ),
211 'maxResults' => array(
212 'location' => 'query',
213 'type' => 'integer',
214 ),
215 'pageToken' => array(
216 'location' => 'query',
217 'type' => 'string',
218 ),
219 'targetUrl' => array(
220 'location' => 'query',
221 'type' => 'string',
222 ),
223 'type' => array(
224 'location' => 'query',
225 'type' => 'string',
226 ),
227 ),
228 ),'remove' => array(
229 'path' => 'moments/{id}',
230 'httpMethod' => 'DELETE',
231 'parameters' => array(
232 'id' => array(
233 'location' => 'path',
234 'type' => 'string',
235 'required' => true,
236 ),
237 ),
238 ),
239 )
240 )
241 );
242 $this->people = new Google_Service_Plus_People_Resource(
243 $this,
244 $this->serviceName,
245 'people',
246 array(
247 'methods' => array(
248 'get' => array(
249 'path' => 'people/{userId}',
250 'httpMethod' => 'GET',
251 'parameters' => array(
252 'userId' => array(
253 'location' => 'path',
254 'type' => 'string',
255 'required' => true,
256 ),
257 ),
258 ),'list' => array(
259 'path' => 'people/{userId}/people/{collection}',
260 'httpMethod' => 'GET',
261 'parameters' => array(
262 'userId' => array(
263 'location' => 'path',
264 'type' => 'string',
265 'required' => true,
266 ),
267 'collection' => array(
268 'location' => 'path',
269 'type' => 'string',
270 'required' => true,
271 ),
272 'orderBy' => array(
273 'location' => 'query',
274 'type' => 'string',
275 ),
276 'pageToken' => array(
277 'location' => 'query',
278 'type' => 'string',
279 ),
280 'maxResults' => array(
281 'location' => 'query',
282 'type' => 'integer',
283 ),
284 ),
285 ),'listByActivity' => array(
286 'path' => 'activities/{activityId}/people/{collection}',
287 'httpMethod' => 'GET',
288 'parameters' => array(
289 'activityId' => array(
290 'location' => 'path',
291 'type' => 'string',
292 'required' => true,
293 ),
294 'collection' => array(
295 'location' => 'path',
296 'type' => 'string',
297 'required' => true,
298 ),
299 'pageToken' => array(
300 'location' => 'query',
301 'type' => 'string',
302 ),
303 'maxResults' => array(
304 'location' => 'query',
305 'type' => 'integer',
306 ),
307 ),
308 ),'search' => array(
309 'path' => 'people',
310 'httpMethod' => 'GET',
311 'parameters' => array(
312 'query' => array(
313 'location' => 'query',
314 'type' => 'string',
315 'required' => true,
316 ),
317 'pageToken' => array(
318 'location' => 'query',
319 'type' => 'string',
320 ),
321 'maxResults' => array(
322 'location' => 'query',
323 'type' => 'integer',
324 ),
325 'language' => array(
326 'location' => 'query',
327 'type' => 'string',
328 ),
329 ),
330 ),
331 )
332 )
333 );
334 }
335 }
336
337
338 /**
339 * The "activities" collection of methods.
340 * Typical usage is:
341 * <code>
342 * $plusService = new Google_Service_Plus(...);
343 * $activities = $plusService->activities;
344 * </code>
345 */
346 class Google_Service_Plus_Activities_Resource extends Google_Service_Resource
347 {
348
349 /**
350 * Get an activity. (activities.get)
351 *
352 * @param string $activityId
353 * The ID of the activity to get.
354 * @param array $optParams Optional parameters.
355 * @return Google_Service_Plus_Activity
356 */
357 public function get($activityId, $optParams = array())
358 {
359 $params = array('activityId' => $activityId);
360 $params = array_merge($params, $optParams);
361 return $this->call('get', array($params), "Google_Service_Plus_Activity");
362 }
363 /**
364 * List all of the activities in the specified collection for a particular user.
365 * (activities.listActivities)
366 *
367 * @param string $userId
368 * The ID of the user to get activities for. The special value "me" can be used to indicate the
369 * authenticated user.
370 * @param string $collection
371 * The collection of activities to list.
372 * @param array $optParams Optional parameters.
373 *
374 * @opt_param string pageToken
375 * The continuation token, which is used to page through large result sets. To get the next page of
376 * results, set this parameter to the value of "nextPageToken" from the previous response.
377 * @opt_param string maxResults
378 * The maximum number of activities to include in the response, which is used for paging. For any
379 * response, the actual number returned might be less than the specified maxResults.
380 * @return Google_Service_Plus_ActivityFeed
381 */
382 public function listActivities($userId, $collection, $optParams = array())
383 {
384 $params = array('userId' => $userId, 'collection' => $collection);
385 $params = array_merge($params, $optParams);
386 return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
387 }
388 /**
389 * Search public activities. (activities.search)
390 *
391 * @param string $query
392 * Full-text search query string.
393 * @param array $optParams Optional parameters.
394 *
395 * @opt_param string orderBy
396 * Specifies how to order search results.
397 * @opt_param string pageToken
398 * The continuation token, which is used to page through large result sets. To get the next page of
399 * results, set this parameter to the value of "nextPageToken" from the previous response. This
400 * token can be of any length.
401 * @opt_param string maxResults
402 * The maximum number of activities to include in the response, which is used for paging. For any
403 * response, the actual number returned might be less than the specified maxResults.
404 * @opt_param string language
405 * Specify the preferred language to search with. See search language codes for available values.
406 * @return Google_Service_Plus_ActivityFeed
407 */
408 public function search($query, $optParams = array())
409 {
410 $params = array('query' => $query);
411 $params = array_merge($params, $optParams);
412 return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
413 }
414 }
415
416 /**
417 * The "comments" collection of methods.
418 * Typical usage is:
419 * <code>
420 * $plusService = new Google_Service_Plus(...);
421 * $comments = $plusService->comments;
422 * </code>
423 */
424 class Google_Service_Plus_Comments_Resource extends Google_Service_Resource
425 {
426
427 /**
428 * Get a comment. (comments.get)
429 *
430 * @param string $commentId
431 * The ID of the comment to get.
432 * @param array $optParams Optional parameters.
433 * @return Google_Service_Plus_Comment
434 */
435 public function get($commentId, $optParams = array())
436 {
437 $params = array('commentId' => $commentId);
438 $params = array_merge($params, $optParams);
439 return $this->call('get', array($params), "Google_Service_Plus_Comment");
440 }
441 /**
442 * List all of the comments for an activity. (comments.listComments)
443 *
444 * @param string $activityId
445 * The ID of the activity to get comments for.
446 * @param array $optParams Optional parameters.
447 *
448 * @opt_param string pageToken
449 * The continuation token, which is used to page through large result sets. To get the next page of
450 * results, set this parameter to the value of "nextPageToken" from the previous response.
451 * @opt_param string sortOrder
452 * The order in which to sort the list of comments.
453 * @opt_param string maxResults
454 * The maximum number of comments to include in the response, which is used for paging. For any
455 * response, the actual number returned might be less than the specified maxResults.
456 * @return Google_Service_Plus_CommentFeed
457 */
458 public function listComments($activityId, $optParams = array())
459 {
460 $params = array('activityId' => $activityId);
461 $params = array_merge($params, $optParams);
462 return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
463 }
464 }
465
466 /**
467 * The "moments" collection of methods.
468 * Typical usage is:
469 * <code>
470 * $plusService = new Google_Service_Plus(...);
471 * $moments = $plusService->moments;
472 * </code>
473 */
474 class Google_Service_Plus_Moments_Resource extends Google_Service_Resource
475 {
476
477 /**
478 * Record a moment representing a user's activity such as making a purchase or
479 * commenting on a blog. (moments.insert)
480 *
481 * @param string $userId
482 * The ID of the user to record activities for. The only valid values are "me" and the ID of the
483 * authenticated user.
484 * @param string $collection
485 * The collection to which to write moments.
486 * @param Google_Moment $postBody
487 * @param array $optParams Optional parameters.
488 *
489 * @opt_param bool debug
490 * Return the moment as written. Should be used only for debugging.
491 * @return Google_Service_Plus_Moment
492 */
493 public function insert($userId, $collection, Google_Service_Plus_Moment $postBody, $optParams = array())
494 {
495 $params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
496 $params = array_merge($params, $optParams);
497 return $this->call('insert', array($params), "Google_Service_Plus_Moment");
498 }
499 /**
500 * List all of the moments for a particular user. (moments.listMoments)
501 *
502 * @param string $userId
503 * The ID of the user to get moments for. The special value "me" can be used to indicate the
504 * authenticated user.
505 * @param string $collection
506 * The collection of moments to list.
507 * @param array $optParams Optional parameters.
508 *
509 * @opt_param string maxResults
510 * The maximum number of moments to include in the response, which is used for paging. For any
511 * response, the actual number returned might be less than the specified maxResults.
512 * @opt_param string pageToken
513 * The continuation token, which is used to page through large result sets. To get the next page of
514 * results, set this parameter to the value of "nextPageToken" from the previous response.
515 * @opt_param string targetUrl
516 * Only moments containing this targetUrl will be returned.
517 * @opt_param string type
518 * Only moments of this type will be returned.
519 * @return Google_Service_Plus_MomentsFeed
520 */
521 public function listMoments($userId, $collection, $optParams = array())
522 {
523 $params = array('userId' => $userId, 'collection' => $collection);
524 $params = array_merge($params, $optParams);
525 return $this->call('list', array($params), "Google_Service_Plus_MomentsFeed");
526 }
527 /**
528 * Delete a moment. (moments.remove)
529 *
530 * @param string $id
531 * The ID of the moment to delete.
532 * @param array $optParams Optional parameters.
533 */
534 public function remove($id, $optParams = array())
535 {
536 $params = array('id' => $id);
537 $params = array_merge($params, $optParams);
538 return $this->call('remove', array($params));
539 }
540 }
541
542 /**
543 * The "people" collection of methods.
544 * Typical usage is:
545 * <code>
546 * $plusService = new Google_Service_Plus(...);
547 * $people = $plusService->people;
548 * </code>
549 */
550 class Google_Service_Plus_People_Resource extends Google_Service_Resource
551 {
552
553 /**
554 * Get a person's profile. If your app uses scope
555 * https://www.googleapis.com/auth/plus.login, this method is guaranteed to
556 * return ageRange and language. (people.get)
557 *
558 * @param string $userId
559 * The ID of the person to get the profile for. The special value "me" can be used to indicate the
560 * authenticated user.
561 * @param array $optParams Optional parameters.
562 * @return Google_Service_Plus_Person
563 */
564 public function get($userId, $optParams = array())
565 {
566 $params = array('userId' => $userId);
567 $params = array_merge($params, $optParams);
568 return $this->call('get', array($params), "Google_Service_Plus_Person");
569 }
570 /**
571 * List all of the people in the specified collection. (people.listPeople)
572 *
573 * @param string $userId
574 * Get the collection of people for the person identified. Use "me" to indicate the authenticated
575 * user.
576 * @param string $collection
577 * The collection of people to list.
578 * @param array $optParams Optional parameters.
579 *
580 * @opt_param string orderBy
581 * The order to return people in.
582 * @opt_param string pageToken
583 * The continuation token, which is used to page through large result sets. To get the next page of
584 * results, set this parameter to the value of "nextPageToken" from the previous response.
585 * @opt_param string maxResults
586 * The maximum number of people to include in the response, which is used for paging. For any
587 * response, the actual number returned might be less than the specified maxResults.
588 * @return Google_Service_Plus_PeopleFeed
589 */
590 public function listPeople($userId, $collection, $optParams = array())
591 {
592 $params = array('userId' => $userId, 'collection' => $collection);
593 $params = array_merge($params, $optParams);
594 return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
595 }
596 /**
597 * List all of the people in the specified collection for a particular activity.
598 * (people.listByActivity)
599 *
600 * @param string $activityId
601 * The ID of the activity to get the list of people for.
602 * @param string $collection
603 * The collection of people to list.
604 * @param array $optParams Optional parameters.
605 *
606 * @opt_param string pageToken
607 * The continuation token, which is used to page through large result sets. To get the next page of
608 * results, set this parameter to the value of "nextPageToken" from the previous response.
609 * @opt_param string maxResults
610 * The maximum number of people to include in the response, which is used for paging. For any
611 * response, the actual number returned might be less than the specified maxResults.
612 * @return Google_Service_Plus_PeopleFeed
613 */
614 public function listByActivity($activityId, $collection, $optParams = array())
615 {
616 $params = array('activityId' => $activityId, 'collection' => $collection);
617 $params = array_merge($params, $optParams);
618 return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
619 }
620 /**
621 * Search all public profiles. (people.search)
622 *
623 * @param string $query
624 * Specify a query string for full text search of public text in all profiles.
625 * @param array $optParams Optional parameters.
626 *
627 * @opt_param string pageToken
628 * The continuation token, which is used to page through large result sets. To get the next page of
629 * results, set this parameter to the value of "nextPageToken" from the previous response. This
630 * token can be of any length.
631 * @opt_param string maxResults
632 * The maximum number of people to include in the response, which is used for paging. For any
633 * response, the actual number returned might be less than the specified maxResults.
634 * @opt_param string language
635 * Specify the preferred language to search with. See search language codes for available values.
636 * @return Google_Service_Plus_PeopleFeed
637 */
638 public function search($query, $optParams = array())
639 {
640 $params = array('query' => $query);
641 $params = array_merge($params, $optParams);
642 return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
643 }
644 }
645
646
647
648
649 class Google_Service_Plus_Acl extends Google_Collection
650 {
651 public $description;
652 protected $itemsType = 'Google_Service_Plus_PlusAclentryResource';
653 protected $itemsDataType = 'array';
654 public $kind;
655
656 public function setDescription($description)
657 {
658 $this->description = $description;
659 }
660
661 public function getDescription()
662 {
663 return $this->description;
664 }
665
666 public function setItems($items)
667 {
668 $this->items = $items;
669 }
670
671 public function getItems()
672 {
673 return $this->items;
674 }
675
676 public function setKind($kind)
677 {
678 $this->kind = $kind;
679 }
680
681 public function getKind()
682 {
683 return $this->kind;
684 }
685 }
686
687 class Google_Service_Plus_Activity extends Google_Model
688 {
689 protected $accessType = 'Google_Service_Plus_Acl';
690 protected $accessDataType = '';
691 protected $actorType = 'Google_Service_Plus_ActivityActor';
692 protected $actorDataType = '';
693 public $address;
694 public $annotation;
695 public $crosspostSource;
696 public $etag;
697 public $geocode;
698 public $id;
699 public $kind;
700 protected $locationType = 'Google_Service_Plus_Place';
701 protected $locationDataType = '';
702 protected $objectType = 'Google_Service_Plus_ActivityObject';
703 protected $objectDataType = '';
704 public $placeId;
705 public $placeName;
706 protected $providerType = 'Google_Service_Plus_ActivityProvider';
707 protected $providerDataType = '';
708 public $published;
709 public $radius;
710 public $title;
711 public $updated;
712 public $url;
713 public $verb;
714
715 public function setAccess(Google_Service_Plus_Acl $access)
716 {
717 $this->access = $access;
718 }
719
720 public function getAccess()
721 {
722 return $this->access;
723 }
724
725 public function setActor(Google_Service_Plus_ActivityActor $actor)
726 {
727 $this->actor = $actor;
728 }
729
730 public function getActor()
731 {
732 return $this->actor;
733 }
734
735 public function setAddress($address)
736 {
737 $this->address = $address;
738 }
739
740 public function getAddress()
741 {
742 return $this->address;
743 }
744
745 public function setAnnotation($annotation)
746 {
747 $this->annotation = $annotation;
748 }
749
750 public function getAnnotation()
751 {
752 return $this->annotation;
753 }
754
755 public function setCrosspostSource($crosspostSource)
756 {
757 $this->crosspostSource = $crosspostSource;
758 }
759
760 public function getCrosspostSource()
761 {
762 return $this->crosspostSource;
763 }
764
765 public function setEtag($etag)
766 {
767 $this->etag = $etag;
768 }
769
770 public function getEtag()
771 {
772 return $this->etag;
773 }
774
775 public function setGeocode($geocode)
776 {
777 $this->geocode = $geocode;
778 }
779
780 public function getGeocode()
781 {
782 return $this->geocode;
783 }
784
785 public function setId($id)
786 {
787 $this->id = $id;
788 }
789
790 public function getId()
791 {
792 return $this->id;
793 }
794
795 public function setKind($kind)
796 {
797 $this->kind = $kind;
798 }
799
800 public function getKind()
801 {
802 return $this->kind;
803 }
804
805 public function setLocation(Google_Service_Plus_Place $location)
806 {
807 $this->location = $location;
808 }
809
810 public function getLocation()
811 {
812 return $this->location;
813 }
814
815 public function setObject(Google_Service_Plus_ActivityObject $object)
816 {
817 $this->object = $object;
818 }
819
820 public function getObject()
821 {
822 return $this->object;
823 }
824
825 public function setPlaceId($placeId)
826 {
827 $this->placeId = $placeId;
828 }
829
830 public function getPlaceId()
831 {
832 return $this->placeId;
833 }
834
835 public function setPlaceName($placeName)
836 {
837 $this->placeName = $placeName;
838 }
839
840 public function getPlaceName()
841 {
842 return $this->placeName;
843 }
844
845 public function setProvider(Google_Service_Plus_ActivityProvider $provider)
846 {
847 $this->provider = $provider;
848 }
849
850 public function getProvider()
851 {
852 return $this->provider;
853 }
854
855 public function setPublished($published)
856 {
857 $this->published = $published;
858 }
859
860 public function getPublished()
861 {
862 return $this->published;
863 }
864
865 public function setRadius($radius)
866 {
867 $this->radius = $radius;
868 }
869
870 public function getRadius()
871 {
872 return $this->radius;
873 }
874
875 public function setTitle($title)
876 {
877 $this->title = $title;
878 }
879
880 public function getTitle()
881 {
882 return $this->title;
883 }
884
885 public function setUpdated($updated)
886 {
887 $this->updated = $updated;
888 }
889
890 public function getUpdated()
891 {
892 return $this->updated;
893 }
894
895 public function setUrl($url)
896 {
897 $this->url = $url;
898 }
899
900 public function getUrl()
901 {
902 return $this->url;
903 }
904
905 public function setVerb($verb)
906 {
907 $this->verb = $verb;
908 }
909
910 public function getVerb()
911 {
912 return $this->verb;
913 }
914 }
915
916 class Google_Service_Plus_ActivityActor extends Google_Model
917 {
918 public $displayName;
919 public $id;
920 protected $imageType = 'Google_Service_Plus_ActivityActorImage';
921 protected $imageDataType = '';
922 protected $nameType = 'Google_Service_Plus_ActivityActorName';
923 protected $nameDataType = '';
924 public $url;
925
926 public function setDisplayName($displayName)
927 {
928 $this->displayName = $displayName;
929 }
930
931 public function getDisplayName()
932 {
933 return $this->displayName;
934 }
935
936 public function setId($id)
937 {
938 $this->id = $id;
939 }
940
941 public function getId()
942 {
943 return $this->id;
944 }
945
946 public function setImage(Google_Service_Plus_ActivityActorImage $image)
947 {
948 $this->image = $image;
949 }
950
951 public function getImage()
952 {
953 return $this->image;
954 }
955
956 public function setName(Google_Service_Plus_ActivityActorName $name)
957 {
958 $this->name = $name;
959 }
960
961 public function getName()
962 {
963 return $this->name;
964 }
965
966 public function setUrl($url)
967 {
968 $this->url = $url;
969 }
970
971 public function getUrl()
972 {
973 return $this->url;
974 }
975 }
976
977 class Google_Service_Plus_ActivityActorImage extends Google_Model
978 {
979 public $url;
980
981 public function setUrl($url)
982 {
983 $this->url = $url;
984 }
985
986 public function getUrl()
987 {
988 return $this->url;
989 }
990 }
991
992 class Google_Service_Plus_ActivityActorName extends Google_Model
993 {
994 public $familyName;
995 public $givenName;
996
997 public function setFamilyName($familyName)
998 {
999 $this->familyName = $familyName;
1000 }
1001
1002 public function getFamilyName()
1003 {
1004 return $this->familyName;
1005 }
1006
1007 public function setGivenName($givenName)
1008 {
1009 $this->givenName = $givenName;
1010 }
1011
1012 public function getGivenName()
1013 {
1014 return $this->givenName;
1015 }
1016 }
1017
1018 class Google_Service_Plus_ActivityFeed extends Google_Collection
1019 {
1020 public $etag;
1021 public $id;
1022 protected $itemsType = 'Google_Service_Plus_Activity';
1023 protected $itemsDataType = 'array';
1024 public $kind;
1025 public $nextLink;
1026 public $nextPageToken;
1027 public $selfLink;
1028 public $title;
1029 public $updated;
1030
1031 public function setEtag($etag)
1032 {
1033 $this->etag = $etag;
1034 }
1035
1036 public function getEtag()
1037 {
1038 return $this->etag;
1039 }
1040
1041 public function setId($id)
1042 {
1043 $this->id = $id;
1044 }
1045
1046 public function getId()
1047 {
1048 return $this->id;
1049 }
1050
1051 public function setItems($items)
1052 {
1053 $this->items = $items;
1054 }
1055
1056 public function getItems()
1057 {
1058 return $this->items;
1059 }
1060
1061 public function setKind($kind)
1062 {
1063 $this->kind = $kind;
1064 }
1065
1066 public function getKind()
1067 {
1068 return $this->kind;
1069 }
1070
1071 public function setNextLink($nextLink)
1072 {
1073 $this->nextLink = $nextLink;
1074 }
1075
1076 public function getNextLink()
1077 {
1078 return $this->nextLink;
1079 }
1080
1081 public function setNextPageToken($nextPageToken)
1082 {
1083 $this->nextPageToken = $nextPageToken;
1084 }
1085
1086 public function getNextPageToken()
1087 {
1088 return $this->nextPageToken;
1089 }
1090
1091 public function setSelfLink($selfLink)
1092 {
1093 $this->selfLink = $selfLink;
1094 }
1095
1096 public function getSelfLink()
1097 {
1098 return $this->selfLink;
1099 }
1100
1101 public function setTitle($title)
1102 {
1103 $this->title = $title;
1104 }
1105
1106 public function getTitle()
1107 {
1108 return $this->title;
1109 }
1110
1111 public function setUpdated($updated)
1112 {
1113 $this->updated = $updated;
1114 }
1115
1116 public function getUpdated()
1117 {
1118 return $this->updated;
1119 }
1120 }
1121
1122 class Google_Service_Plus_ActivityObject extends Google_Collection
1123 {
1124 protected $actorType = 'Google_Service_Plus_ActivityObjectActor';
1125 protected $actorDataType = '';
1126 protected $attachmentsType = 'Google_Service_Plus_ActivityObjectAttachments';
1127 protected $attachmentsDataType = 'array';
1128 public $content;
1129 public $id;
1130 public $objectType;
1131 public $originalContent;
1132 protected $plusonersType = 'Google_Service_Plus_ActivityObjectPlusoners';
1133 protected $plusonersDataType = '';
1134 protected $repliesType = 'Google_Service_Plus_ActivityObjectReplies';
1135 protected $repliesDataType = '';
1136 protected $resharersType = 'Google_Service_Plus_ActivityObjectResharers';
1137 protected $resharersDataType = '';
1138 public $url;
1139
1140 public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
1141 {
1142 $this->actor = $actor;
1143 }
1144
1145 public function getActor()
1146 {
1147 return $this->actor;
1148 }
1149
1150 public function setAttachments($attachments)
1151 {
1152 $this->attachments = $attachments;
1153 }
1154
1155 public function getAttachments()
1156 {
1157 return $this->attachments;
1158 }
1159
1160 public function setContent($content)
1161 {
1162 $this->content = $content;
1163 }
1164
1165 public function getContent()
1166 {
1167 return $this->content;
1168 }
1169
1170 public function setId($id)
1171 {
1172 $this->id = $id;
1173 }
1174
1175 public function getId()
1176 {
1177 return $this->id;
1178 }
1179
1180 public function setObjectType($objectType)
1181 {
1182 $this->objectType = $objectType;
1183 }
1184
1185 public function getObjectType()
1186 {
1187 return $this->objectType;
1188 }
1189
1190 public function setOriginalContent($originalContent)
1191 {
1192 $this->originalContent = $originalContent;
1193 }
1194
1195 public function getOriginalContent()
1196 {
1197 return $this->originalContent;
1198 }
1199
1200 public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
1201 {
1202 $this->plusoners = $plusoners;
1203 }
1204
1205 public function getPlusoners()
1206 {
1207 return $this->plusoners;
1208 }
1209
1210 public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
1211 {
1212 $this->replies = $replies;
1213 }
1214
1215 public function getReplies()
1216 {
1217 return $this->replies;
1218 }
1219
1220 public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
1221 {
1222 $this->resharers = $resharers;
1223 }
1224
1225 public function getResharers()
1226 {
1227 return $this->resharers;
1228 }
1229
1230 public function setUrl($url)
1231 {
1232 $this->url = $url;
1233 }
1234
1235 public function getUrl()
1236 {
1237 return $this->url;
1238 }
1239 }
1240
1241 class Google_Service_Plus_ActivityObjectActor extends Google_Model
1242 {
1243 public $displayName;
1244 public $id;
1245 protected $imageType = 'Google_Service_Plus_ActivityObjectActorImage';
1246 protected $imageDataType = '';
1247 public $url;
1248
1249 public function setDisplayName($displayName)
1250 {
1251 $this->displayName = $displayName;
1252 }
1253
1254 public function getDisplayName()
1255 {
1256 return $this->displayName;
1257 }
1258
1259 public function setId($id)
1260 {
1261 $this->id = $id;
1262 }
1263
1264 public function getId()
1265 {
1266 return $this->id;
1267 }
1268
1269 public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
1270 {
1271 $this->image = $image;
1272 }
1273
1274 public function getImage()
1275 {
1276 return $this->image;
1277 }
1278
1279 public function setUrl($url)
1280 {
1281 $this->url = $url;
1282 }
1283
1284 public function getUrl()
1285 {
1286 return $this->url;
1287 }
1288 }
1289
1290 class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
1291 {
1292 public $url;
1293
1294 public function setUrl($url)
1295 {
1296 $this->url = $url;
1297 }
1298
1299 public function getUrl()
1300 {
1301 return $this->url;
1302 }
1303 }
1304
1305 class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
1306 {
1307 public $content;
1308 public $displayName;
1309 protected $embedType = 'Google_Service_Plus_ActivityObjectAttachmentsEmbed';
1310 protected $embedDataType = '';
1311 protected $fullImageType = 'Google_Service_Plus_ActivityObjectAttachmentsFullImage';
1312 protected $fullImageDataType = '';
1313 public $id;
1314 protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsImage';
1315 protected $imageDataType = '';
1316 public $objectType;
1317 protected $thumbnailsType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnails';
1318 protected $thumbnailsDataType = 'array';
1319 public $url;
1320
1321 public function setContent($content)
1322 {
1323 $this->content = $content;
1324 }
1325
1326 public function getContent()
1327 {
1328 return $this->content;
1329 }
1330
1331 public function setDisplayName($displayName)
1332 {
1333 $this->displayName = $displayName;
1334 }
1335
1336 public function getDisplayName()
1337 {
1338 return $this->displayName;
1339 }
1340
1341 public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
1342 {
1343 $this->embed = $embed;
1344 }
1345
1346 public function getEmbed()
1347 {
1348 return $this->embed;
1349 }
1350
1351 public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
1352 {
1353 $this->fullImage = $fullImage;
1354 }
1355
1356 public function getFullImage()
1357 {
1358 return $this->fullImage;
1359 }
1360
1361 public function setId($id)
1362 {
1363 $this->id = $id;
1364 }
1365
1366 public function getId()
1367 {
1368 return $this->id;
1369 }
1370
1371 public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
1372 {
1373 $this->image = $image;
1374 }
1375
1376 public function getImage()
1377 {
1378 return $this->image;
1379 }
1380
1381 public function setObjectType($objectType)
1382 {
1383 $this->objectType = $objectType;
1384 }
1385
1386 public function getObjectType()
1387 {
1388 return $this->objectType;
1389 }
1390
1391 public function setThumbnails($thumbnails)
1392 {
1393 $this->thumbnails = $thumbnails;
1394 }
1395
1396 public function getThumbnails()
1397 {
1398 return $this->thumbnails;
1399 }
1400
1401 public function setUrl($url)
1402 {
1403 $this->url = $url;
1404 }
1405
1406 public function getUrl()
1407 {
1408 return $this->url;
1409 }
1410 }
1411
1412 class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
1413 {
1414 public $type;
1415 public $url;
1416
1417 public function setType($type)
1418 {
1419 $this->type = $type;
1420 }
1421
1422 public function getType()
1423 {
1424 return $this->type;
1425 }
1426
1427 public function setUrl($url)
1428 {
1429 $this->url = $url;
1430 }
1431
1432 public function getUrl()
1433 {
1434 return $this->url;
1435 }
1436 }
1437
1438 class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Model
1439 {
1440 public $height;
1441 public $type;
1442 public $url;
1443 public $width;
1444
1445 public function setHeight($height)
1446 {
1447 $this->height = $height;
1448 }
1449
1450 public function getHeight()
1451 {
1452 return $this->height;
1453 }
1454
1455 public function setType($type)
1456 {
1457 $this->type = $type;
1458 }
1459
1460 public function getType()
1461 {
1462 return $this->type;
1463 }
1464
1465 public function setUrl($url)
1466 {
1467 $this->url = $url;
1468 }
1469
1470 public function getUrl()
1471 {
1472 return $this->url;
1473 }
1474
1475 public function setWidth($width)
1476 {
1477 $this->width = $width;
1478 }
1479
1480 public function getWidth()
1481 {
1482 return $this->width;
1483 }
1484 }
1485
1486 class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
1487 {
1488 public $height;
1489 public $type;
1490 public $url;
1491 public $width;
1492
1493 public function setHeight($height)
1494 {
1495 $this->height = $height;
1496 }
1497
1498 public function getHeight()
1499 {
1500 return $this->height;
1501 }
1502
1503 public function setType($type)
1504 {
1505 $this->type = $type;
1506 }
1507
1508 public function getType()
1509 {
1510 return $this->type;
1511 }
1512
1513 public function setUrl($url)
1514 {
1515 $this->url = $url;
1516 }
1517
1518 public function getUrl()
1519 {
1520 return $this->url;
1521 }
1522
1523 public function setWidth($width)
1524 {
1525 $this->width = $width;
1526 }
1527
1528 public function getWidth()
1529 {
1530 return $this->width;
1531 }
1532 }
1533
1534 class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Model
1535 {
1536 public $description;
1537 protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage';
1538 protected $imageDataType = '';
1539 public $url;
1540
1541 public function setDescription($description)
1542 {
1543 $this->description = $description;
1544 }
1545
1546 public function getDescription()
1547 {
1548 return $this->description;
1549 }
1550
1551 public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
1552 {
1553 $this->image = $image;
1554 }
1555
1556 public function getImage()
1557 {
1558 return $this->image;
1559 }
1560
1561 public function setUrl($url)
1562 {
1563 $this->url = $url;
1564 }
1565
1566 public function getUrl()
1567 {
1568 return $this->url;
1569 }
1570 }
1571
1572 class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
1573 {
1574 public $height;
1575 public $type;
1576 public $url;
1577 public $width;
1578
1579 public function setHeight($height)
1580 {
1581 $this->height = $height;
1582 }
1583
1584 public function getHeight()
1585 {
1586 return $this->height;
1587 }
1588
1589 public function setType($type)
1590 {
1591 $this->type = $type;
1592 }
1593
1594 public function getType()
1595 {
1596 return $this->type;
1597 }
1598
1599 public function setUrl($url)
1600 {
1601 $this->url = $url;
1602 }
1603
1604 public function getUrl()
1605 {
1606 return $this->url;
1607 }
1608
1609 public function setWidth($width)
1610 {
1611 $this->width = $width;
1612 }
1613
1614 public function getWidth()
1615 {
1616 return $this->width;
1617 }
1618 }
1619
1620 class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
1621 {
1622 public $selfLink;
1623 public $totalItems;
1624
1625 public function setSelfLink($selfLink)
1626 {
1627 $this->selfLink = $selfLink;
1628 }
1629
1630 public function getSelfLink()
1631 {
1632 return $this->selfLink;
1633 }
1634
1635 public function setTotalItems($totalItems)
1636 {
1637 $this->totalItems = $totalItems;
1638 }
1639
1640 public function getTotalItems()
1641 {
1642 return $this->totalItems;
1643 }
1644 }
1645
1646 class Google_Service_Plus_ActivityObjectReplies extends Google_Model
1647 {
1648 public $selfLink;
1649 public $totalItems;
1650
1651 public function setSelfLink($selfLink)
1652 {
1653 $this->selfLink = $selfLink;
1654 }
1655
1656 public function getSelfLink()
1657 {
1658 return $this->selfLink;
1659 }
1660
1661 public function setTotalItems($totalItems)
1662 {
1663 $this->totalItems = $totalItems;
1664 }
1665
1666 public function getTotalItems()
1667 {
1668 return $this->totalItems;
1669 }
1670 }
1671
1672 class Google_Service_Plus_ActivityObjectResharers extends Google_Model
1673 {
1674 public $selfLink;
1675 public $totalItems;
1676
1677 public function setSelfLink($selfLink)
1678 {
1679 $this->selfLink = $selfLink;
1680 }
1681
1682 public function getSelfLink()
1683 {
1684 return $this->selfLink;
1685 }
1686
1687 public function setTotalItems($totalItems)
1688 {
1689 $this->totalItems = $totalItems;
1690 }
1691
1692 public function getTotalItems()
1693 {
1694 return $this->totalItems;
1695 }
1696 }
1697
1698 class Google_Service_Plus_ActivityProvider extends Google_Model
1699 {
1700 public $title;
1701
1702 public function setTitle($title)
1703 {
1704 $this->title = $title;
1705 }
1706
1707 public function getTitle()
1708 {
1709 return $this->title;
1710 }
1711 }
1712
1713 class Google_Service_Plus_Comment extends Google_Collection
1714 {
1715 protected $actorType = 'Google_Service_Plus_CommentActor';
1716 protected $actorDataType = '';
1717 public $etag;
1718 public $id;
1719 protected $inReplyToType = 'Google_Service_Plus_CommentInReplyTo';
1720 protected $inReplyToDataType = 'array';
1721 public $kind;
1722 protected $objectType = 'Google_Service_Plus_CommentObject';
1723 protected $objectDataType = '';
1724 protected $plusonersType = 'Google_Service_Plus_CommentPlusoners';
1725 protected $plusonersDataType = '';
1726 public $published;
1727 public $selfLink;
1728 public $updated;
1729 public $verb;
1730
1731 public function setActor(Google_Service_Plus_CommentActor $actor)
1732 {
1733 $this->actor = $actor;
1734 }
1735
1736 public function getActor()
1737 {
1738 return $this->actor;
1739 }
1740
1741 public function setEtag($etag)
1742 {
1743 $this->etag = $etag;
1744 }
1745
1746 public function getEtag()
1747 {
1748 return $this->etag;
1749 }
1750
1751 public function setId($id)
1752 {
1753 $this->id = $id;
1754 }
1755
1756 public function getId()
1757 {
1758 return $this->id;
1759 }
1760
1761 public function setInReplyTo($inReplyTo)
1762 {
1763 $this->inReplyTo = $inReplyTo;
1764 }
1765
1766 public function getInReplyTo()
1767 {
1768 return $this->inReplyTo;
1769 }
1770
1771 public function setKind($kind)
1772 {
1773 $this->kind = $kind;
1774 }
1775
1776 public function getKind()
1777 {
1778 return $this->kind;
1779 }
1780
1781 public function setObject(Google_Service_Plus_CommentObject $object)
1782 {
1783 $this->object = $object;
1784 }
1785
1786 public function getObject()
1787 {
1788 return $this->object;
1789 }
1790
1791 public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
1792 {
1793 $this->plusoners = $plusoners;
1794 }
1795
1796 public function getPlusoners()
1797 {
1798 return $this->plusoners;
1799 }
1800
1801 public function setPublished($published)
1802 {
1803 $this->published = $published;
1804 }
1805
1806 public function getPublished()
1807 {
1808 return $this->published;
1809 }
1810
1811 public function setSelfLink($selfLink)
1812 {
1813 $this->selfLink = $selfLink;
1814 }
1815
1816 public function getSelfLink()
1817 {
1818 return $this->selfLink;
1819 }
1820
1821 public function setUpdated($updated)
1822 {
1823 $this->updated = $updated;
1824 }
1825
1826 public function getUpdated()
1827 {
1828 return $this->updated;
1829 }
1830
1831 public function setVerb($verb)
1832 {
1833 $this->verb = $verb;
1834 }
1835
1836 public function getVerb()
1837 {
1838 return $this->verb;
1839 }
1840 }
1841
1842 class Google_Service_Plus_CommentActor extends Google_Model
1843 {
1844 public $displayName;
1845 public $id;
1846 protected $imageType = 'Google_Service_Plus_CommentActorImage';
1847 protected $imageDataType = '';
1848 public $url;
1849
1850 public function setDisplayName($displayName)
1851 {
1852 $this->displayName = $displayName;
1853 }
1854
1855 public function getDisplayName()
1856 {
1857 return $this->displayName;
1858 }
1859
1860 public function setId($id)
1861 {
1862 $this->id = $id;
1863 }
1864
1865 public function getId()
1866 {
1867 return $this->id;
1868 }
1869
1870 public function setImage(Google_Service_Plus_CommentActorImage $image)
1871 {
1872 $this->image = $image;
1873 }
1874
1875 public function getImage()
1876 {
1877 return $this->image;
1878 }
1879
1880 public function setUrl($url)
1881 {
1882 $this->url = $url;
1883 }
1884
1885 public function getUrl()
1886 {
1887 return $this->url;
1888 }
1889 }
1890
1891 class Google_Service_Plus_CommentActorImage extends Google_Model
1892 {
1893 public $url;
1894
1895 public function setUrl($url)
1896 {
1897 $this->url = $url;
1898 }
1899
1900 public function getUrl()
1901 {
1902 return $this->url;
1903 }
1904 }
1905
1906 class Google_Service_Plus_CommentFeed extends Google_Collection
1907 {
1908 public $etag;
1909 public $id;
1910 protected $itemsType = 'Google_Service_Plus_Comment';
1911 protected $itemsDataType = 'array';
1912 public $kind;
1913 public $nextLink;
1914 public $nextPageToken;
1915 public $title;
1916 public $updated;
1917
1918 public function setEtag($etag)
1919 {
1920 $this->etag = $etag;
1921 }
1922
1923 public function getEtag()
1924 {
1925 return $this->etag;
1926 }
1927
1928 public function setId($id)
1929 {
1930 $this->id = $id;
1931 }
1932
1933 public function getId()
1934 {
1935 return $this->id;
1936 }
1937
1938 public function setItems($items)
1939 {
1940 $this->items = $items;
1941 }
1942
1943 public function getItems()
1944 {
1945 return $this->items;
1946 }
1947
1948 public function setKind($kind)
1949 {
1950 $this->kind = $kind;
1951 }
1952
1953 public function getKind()
1954 {
1955 return $this->kind;
1956 }
1957
1958 public function setNextLink($nextLink)
1959 {
1960 $this->nextLink = $nextLink;
1961 }
1962
1963 public function getNextLink()
1964 {
1965 return $this->nextLink;
1966 }
1967
1968 public function setNextPageToken($nextPageToken)
1969 {
1970 $this->nextPageToken = $nextPageToken;
1971 }
1972
1973 public function getNextPageToken()
1974 {
1975 return $this->nextPageToken;
1976 }
1977
1978 public function setTitle($title)
1979 {
1980 $this->title = $title;
1981 }
1982
1983 public function getTitle()
1984 {
1985 return $this->title;
1986 }
1987
1988 public function setUpdated($updated)
1989 {
1990 $this->updated = $updated;
1991 }
1992
1993 public function getUpdated()
1994 {
1995 return $this->updated;
1996 }
1997 }
1998
1999 class Google_Service_Plus_CommentInReplyTo extends Google_Model
2000 {
2001 public $id;
2002 public $url;
2003
2004 public function setId($id)
2005 {
2006 $this->id = $id;
2007 }
2008
2009 public function getId()
2010 {
2011 return $this->id;
2012 }
2013
2014 public function setUrl($url)
2015 {
2016 $this->url = $url;
2017 }
2018
2019 public function getUrl()
2020 {
2021 return $this->url;
2022 }
2023 }
2024
2025 class Google_Service_Plus_CommentObject extends Google_Model
2026 {
2027 public $content;
2028 public $objectType;
2029 public $originalContent;
2030
2031 public function setContent($content)
2032 {
2033 $this->content = $content;
2034 }
2035
2036 public function getContent()
2037 {
2038 return $this->content;
2039 }
2040
2041 public function setObjectType($objectType)
2042 {
2043 $this->objectType = $objectType;
2044 }
2045
2046 public function getObjectType()
2047 {
2048 return $this->objectType;
2049 }
2050
2051 public function setOriginalContent($originalContent)
2052 {
2053 $this->originalContent = $originalContent;
2054 }
2055
2056 public function getOriginalContent()
2057 {
2058 return $this->originalContent;
2059 }
2060 }
2061
2062 class Google_Service_Plus_CommentPlusoners extends Google_Model
2063 {
2064 public $totalItems;
2065
2066 public function setTotalItems($totalItems)
2067 {
2068 $this->totalItems = $totalItems;
2069 }
2070
2071 public function getTotalItems()
2072 {
2073 return $this->totalItems;
2074 }
2075 }
2076
2077 class Google_Service_Plus_ItemScope extends Google_Collection
2078 {
2079 protected $aboutType = 'Google_Service_Plus_ItemScope';
2080 protected $aboutDataType = '';
2081 public $additionalName;
2082 protected $addressType = 'Google_Service_Plus_ItemScope';
2083 protected $addressDataType = '';
2084 public $addressCountry;
2085 public $addressLocality;
2086 public $addressRegion;
2087 protected $associatedMediaType = 'Google_Service_Plus_ItemScope';
2088 protected $associatedMediaDataType = 'array';
2089 public $attendeeCount;
2090 protected $attendeesType = 'Google_Service_Plus_ItemScope';
2091 protected $attendeesDataType = 'array';
2092 protected $audioType = 'Google_Service_Plus_ItemScope';
2093 protected $audioDataType = '';
2094 protected $authorType = 'Google_Service_Plus_ItemScope';
2095 protected $authorDataType = 'array';
2096 public $bestRating;
2097 public $birthDate;
2098 protected $byArtistType = 'Google_Service_Plus_ItemScope';
2099 protected $byArtistDataType = '';
2100 public $caption;
2101 public $contentSize;
2102 public $contentUrl;
2103 protected $contributorType = 'Google_Service_Plus_ItemScope';
2104 protected $contributorDataType = 'array';
2105 public $dateCreated;
2106 public $dateModified;
2107 public $datePublished;
2108 public $description;
2109 public $duration;
2110 public $embedUrl;
2111 public $endDate;
2112 public $familyName;
2113 public $gender;
2114 protected $geoType = 'Google_Service_Plus_ItemScope';
2115 protected $geoDataType = '';
2116 public $givenName;
2117 public $height;
2118 public $id;
2119 public $image;
2120 protected $inAlbumType = 'Google_Service_Plus_ItemScope';
2121 protected $inAlbumDataType = '';
2122 public $kind;
2123 public $latitude;
2124 protected $locationType = 'Google_Service_Plus_ItemScope';
2125 protected $locationDataType = '';
2126 public $longitude;
2127 public $name;
2128 protected $partOfTVSeriesType = 'Google_Service_Plus_ItemScope';
2129 protected $partOfTVSeriesDataType = '';
2130 protected $performersType = 'Google_Service_Plus_ItemScope';
2131 protected $performersDataType = 'array';
2132 public $playerType;
2133 public $postOfficeBoxNumber;
2134 public $postalCode;
2135 public $ratingValue;
2136 protected $reviewRatingType = 'Google_Service_Plus_ItemScope';
2137 protected $reviewRatingDataType = '';
2138 public $startDate;
2139 public $streetAddress;
2140 public $text;
2141 protected $thumbnailType = 'Google_Service_Plus_ItemScope';
2142 protected $thumbnailDataType = '';
2143 public $thumbnailUrl;
2144 public $tickerSymbol;
2145 public $type;
2146 public $url;
2147 public $width;
2148 public $worstRating;
2149
2150 public function setAbout(Google_Service_Plus_ItemScope $about)
2151 {
2152 $this->about = $about;
2153 }
2154
2155 public function getAbout()
2156 {
2157 return $this->about;
2158 }
2159
2160 public function setAdditionalName($additionalName)
2161 {
2162 $this->additionalName = $additionalName;
2163 }
2164
2165 public function getAdditionalName()
2166 {
2167 return $this->additionalName;
2168 }
2169
2170 public function setAddress(Google_Service_Plus_ItemScope $address)
2171 {
2172 $this->address = $address;
2173 }
2174
2175 public function getAddress()
2176 {
2177 return $this->address;
2178 }
2179
2180 public function setAddressCountry($addressCountry)
2181 {
2182 $this->addressCountry = $addressCountry;
2183 }
2184
2185 public function getAddressCountry()
2186 {
2187 return $this->addressCountry;
2188 }
2189
2190 public function setAddressLocality($addressLocality)
2191 {
2192 $this->addressLocality = $addressLocality;
2193 }
2194
2195 public function getAddressLocality()
2196 {
2197 return $this->addressLocality;
2198 }
2199
2200 public function setAddressRegion($addressRegion)
2201 {
2202 $this->addressRegion = $addressRegion;
2203 }
2204
2205 public function getAddressRegion()
2206 {
2207 return $this->addressRegion;
2208 }
2209
2210 public function setAssociatedMedia($associatedMedia)
2211 {
2212 $this->associatedMedia = $associatedMedia;
2213 }
2214
2215 public function getAssociatedMedia()
2216 {
2217 return $this->associatedMedia;
2218 }
2219
2220 public function setAttendeeCount($attendeeCount)
2221 {
2222 $this->attendeeCount = $attendeeCount;
2223 }
2224
2225 public function getAttendeeCount()
2226 {
2227 return $this->attendeeCount;
2228 }
2229
2230 public function setAttendees($attendees)
2231 {
2232 $this->attendees = $attendees;
2233 }
2234
2235 public function getAttendees()
2236 {
2237 return $this->attendees;
2238 }
2239
2240 public function setAudio(Google_Service_Plus_ItemScope $audio)
2241 {
2242 $this->audio = $audio;
2243 }
2244
2245 public function getAudio()
2246 {
2247 return $this->audio;
2248 }
2249
2250 public function setAuthor($author)
2251 {
2252 $this->author = $author;
2253 }
2254
2255 public function getAuthor()
2256 {
2257 return $this->author;
2258 }
2259
2260 public function setBestRating($bestRating)
2261 {
2262 $this->bestRating = $bestRating;
2263 }
2264
2265 public function getBestRating()
2266 {
2267 return $this->bestRating;
2268 }
2269
2270 public function setBirthDate($birthDate)
2271 {
2272 $this->birthDate = $birthDate;
2273 }
2274
2275 public function getBirthDate()
2276 {
2277 return $this->birthDate;
2278 }
2279
2280 public function setByArtist(Google_Service_Plus_ItemScope $byArtist)
2281 {
2282 $this->byArtist = $byArtist;
2283 }
2284
2285 public function getByArtist()
2286 {
2287 return $this->byArtist;
2288 }
2289
2290 public function setCaption($caption)
2291 {
2292 $this->caption = $caption;
2293 }
2294
2295 public function getCaption()
2296 {
2297 return $this->caption;
2298 }
2299
2300 public function setContentSize($contentSize)
2301 {
2302 $this->contentSize = $contentSize;
2303 }
2304
2305 public function getContentSize()
2306 {
2307 return $this->contentSize;
2308 }
2309
2310 public function setContentUrl($contentUrl)
2311 {
2312 $this->contentUrl = $contentUrl;
2313 }
2314
2315 public function getContentUrl()
2316 {
2317 return $this->contentUrl;
2318 }
2319
2320 public function setContributor($contributor)
2321 {
2322 $this->contributor = $contributor;
2323 }
2324
2325 public function getContributor()
2326 {
2327 return $this->contributor;
2328 }
2329
2330 public function setDateCreated($dateCreated)
2331 {
2332 $this->dateCreated = $dateCreated;
2333 }
2334
2335 public function getDateCreated()
2336 {
2337 return $this->dateCreated;
2338 }
2339
2340 public function setDateModified($dateModified)
2341 {
2342 $this->dateModified = $dateModified;
2343 }
2344
2345 public function getDateModified()
2346 {
2347 return $this->dateModified;
2348 }
2349
2350 public function setDatePublished($datePublished)
2351 {
2352 $this->datePublished = $datePublished;
2353 }
2354
2355 public function getDatePublished()
2356 {
2357 return $this->datePublished;
2358 }
2359
2360 public function setDescription($description)
2361 {
2362 $this->description = $description;
2363 }
2364
2365 public function getDescription()
2366 {
2367 return $this->description;
2368 }
2369
2370 public function setDuration($duration)
2371 {
2372 $this->duration = $duration;
2373 }
2374
2375 public function getDuration()
2376 {
2377 return $this->duration;
2378 }
2379
2380 public function setEmbedUrl($embedUrl)
2381 {
2382 $this->embedUrl = $embedUrl;
2383 }
2384
2385 public function getEmbedUrl()
2386 {
2387 return $this->embedUrl;
2388 }
2389
2390 public function setEndDate($endDate)
2391 {
2392 $this->endDate = $endDate;
2393 }
2394
2395 public function getEndDate()
2396 {
2397 return $this->endDate;
2398 }
2399
2400 public function setFamilyName($familyName)
2401 {
2402 $this->familyName = $familyName;
2403 }
2404
2405 public function getFamilyName()
2406 {
2407 return $this->familyName;
2408 }
2409
2410 public function setGender($gender)
2411 {
2412 $this->gender = $gender;
2413 }
2414
2415 public function getGender()
2416 {
2417 return $this->gender;
2418 }
2419
2420 public function setGeo(Google_Service_Plus_ItemScope $geo)
2421 {
2422 $this->geo = $geo;
2423 }
2424
2425 public function getGeo()
2426 {
2427 return $this->geo;
2428 }
2429
2430 public function setGivenName($givenName)
2431 {
2432 $this->givenName = $givenName;
2433 }
2434
2435 public function getGivenName()
2436 {
2437 return $this->givenName;
2438 }
2439
2440 public function setHeight($height)
2441 {
2442 $this->height = $height;
2443 }
2444
2445 public function getHeight()
2446 {
2447 return $this->height;
2448 }
2449
2450 public function setId($id)
2451 {
2452 $this->id = $id;
2453 }
2454
2455 public function getId()
2456 {
2457 return $this->id;
2458 }
2459
2460 public function setImage($image)
2461 {
2462 $this->image = $image;
2463 }
2464
2465 public function getImage()
2466 {
2467 return $this->image;
2468 }
2469
2470 public function setInAlbum(Google_Service_Plus_ItemScope $inAlbum)
2471 {
2472 $this->inAlbum = $inAlbum;
2473 }
2474
2475 public function getInAlbum()
2476 {
2477 return $this->inAlbum;
2478 }
2479
2480 public function setKind($kind)
2481 {
2482 $this->kind = $kind;
2483 }
2484
2485 public function getKind()
2486 {
2487 return $this->kind;
2488 }
2489
2490 public function setLatitude($latitude)
2491 {
2492 $this->latitude = $latitude;
2493 }
2494
2495 public function getLatitude()
2496 {
2497 return $this->latitude;
2498 }
2499
2500 public function setLocation(Google_Service_Plus_ItemScope $location)
2501 {
2502 $this->location = $location;
2503 }
2504
2505 public function getLocation()
2506 {
2507 return $this->location;
2508 }
2509
2510 public function setLongitude($longitude)
2511 {
2512 $this->longitude = $longitude;
2513 }
2514
2515 public function getLongitude()
2516 {
2517 return $this->longitude;
2518 }
2519
2520 public function setName($name)
2521 {
2522 $this->name = $name;
2523 }
2524
2525 public function getName()
2526 {
2527 return $this->name;
2528 }
2529
2530 public function setPartOfTVSeries(Google_Service_Plus_ItemScope $partOfTVSeries)
2531 {
2532 $this->partOfTVSeries = $partOfTVSeries;
2533 }
2534
2535 public function getPartOfTVSeries()
2536 {
2537 return $this->partOfTVSeries;
2538 }
2539
2540 public function setPerformers($performers)
2541 {
2542 $this->performers = $performers;
2543 }
2544
2545 public function getPerformers()
2546 {
2547 return $this->performers;
2548 }
2549
2550 public function setPlayerType($playerType)
2551 {
2552 $this->playerType = $playerType;
2553 }
2554
2555 public function getPlayerType()
2556 {
2557 return $this->playerType;
2558 }
2559
2560 public function setPostOfficeBoxNumber($postOfficeBoxNumber)
2561 {
2562 $this->postOfficeBoxNumber = $postOfficeBoxNumber;
2563 }
2564
2565 public function getPostOfficeBoxNumber()
2566 {
2567 return $this->postOfficeBoxNumber;
2568 }
2569
2570 public function setPostalCode($postalCode)
2571 {
2572 $this->postalCode = $postalCode;
2573 }
2574
2575 public function getPostalCode()
2576 {
2577 return $this->postalCode;
2578 }
2579
2580 public function setRatingValue($ratingValue)
2581 {
2582 $this->ratingValue = $ratingValue;
2583 }
2584
2585 public function getRatingValue()
2586 {
2587 return $this->ratingValue;
2588 }
2589
2590 public function setReviewRating(Google_Service_Plus_ItemScope $reviewRating)
2591 {
2592 $this->reviewRating = $reviewRating;
2593 }
2594
2595 public function getReviewRating()
2596 {
2597 return $this->reviewRating;
2598 }
2599
2600 public function setStartDate($startDate)
2601 {
2602 $this->startDate = $startDate;
2603 }
2604
2605 public function getStartDate()
2606 {
2607 return $this->startDate;
2608 }
2609
2610 public function setStreetAddress($streetAddress)
2611 {
2612 $this->streetAddress = $streetAddress;
2613 }
2614
2615 public function getStreetAddress()
2616 {
2617 return $this->streetAddress;
2618 }
2619
2620 public function setText($text)
2621 {
2622 $this->text = $text;
2623 }
2624
2625 public function getText()
2626 {
2627 return $this->text;
2628 }
2629
2630 public function setThumbnail(Google_Service_Plus_ItemScope $thumbnail)
2631 {
2632 $this->thumbnail = $thumbnail;
2633 }
2634
2635 public function getThumbnail()
2636 {
2637 return $this->thumbnail;
2638 }
2639
2640 public function setThumbnailUrl($thumbnailUrl)
2641 {
2642 $this->thumbnailUrl = $thumbnailUrl;
2643 }
2644
2645 public function getThumbnailUrl()
2646 {
2647 return $this->thumbnailUrl;
2648 }
2649
2650 public function setTickerSymbol($tickerSymbol)
2651 {
2652 $this->tickerSymbol = $tickerSymbol;
2653 }
2654
2655 public function getTickerSymbol()
2656 {
2657 return $this->tickerSymbol;
2658 }
2659
2660 public function setType($type)
2661 {
2662 $this->type = $type;
2663 }
2664
2665 public function getType()
2666 {
2667 return $this->type;
2668 }
2669
2670 public function setUrl($url)
2671 {
2672 $this->url = $url;
2673 }
2674
2675 public function getUrl()
2676 {
2677 return $this->url;
2678 }
2679
2680 public function setWidth($width)
2681 {
2682 $this->width = $width;
2683 }
2684
2685 public function getWidth()
2686 {
2687 return $this->width;
2688 }
2689
2690 public function setWorstRating($worstRating)
2691 {
2692 $this->worstRating = $worstRating;
2693 }
2694
2695 public function getWorstRating()
2696 {
2697 return $this->worstRating;
2698 }
2699 }
2700
2701 class Google_Service_Plus_Moment extends Google_Model
2702 {
2703 public $id;
2704 public $kind;
2705 protected $resultType = 'Google_Service_Plus_ItemScope';
2706 protected $resultDataType = '';
2707 public $startDate;
2708 protected $targetType = 'Google_Service_Plus_ItemScope';
2709 protected $targetDataType = '';
2710 public $type;
2711
2712 public function setId($id)
2713 {
2714 $this->id = $id;
2715 }
2716
2717 public function getId()
2718 {
2719 return $this->id;
2720 }
2721
2722 public function setKind($kind)
2723 {
2724 $this->kind = $kind;
2725 }
2726
2727 public function getKind()
2728 {
2729 return $this->kind;
2730 }
2731
2732 public function setResult(Google_Service_Plus_ItemScope $result)
2733 {
2734 $this->result = $result;
2735 }
2736
2737 public function getResult()
2738 {
2739 return $this->result;
2740 }
2741
2742 public function setStartDate($startDate)
2743 {
2744 $this->startDate = $startDate;
2745 }
2746
2747 public function getStartDate()
2748 {
2749 return $this->startDate;
2750 }
2751
2752 public function setTarget(Google_Service_Plus_ItemScope $target)
2753 {
2754 $this->target = $target;
2755 }
2756
2757 public function getTarget()
2758 {
2759 return $this->target;
2760 }
2761
2762 public function setType($type)
2763 {
2764 $this->type = $type;
2765 }
2766
2767 public function getType()
2768 {
2769 return $this->type;
2770 }
2771 }
2772
2773 class Google_Service_Plus_MomentsFeed extends Google_Collection
2774 {
2775 public $etag;
2776 protected $itemsType = 'Google_Service_Plus_Moment';
2777 protected $itemsDataType = 'array';
2778 public $kind;
2779 public $nextLink;
2780 public $nextPageToken;
2781 public $selfLink;
2782 public $title;
2783 public $updated;
2784
2785 public function setEtag($etag)
2786 {
2787 $this->etag = $etag;
2788 }
2789
2790 public function getEtag()
2791 {
2792 return $this->etag;
2793 }
2794
2795 public function setItems($items)
2796 {
2797 $this->items = $items;
2798 }
2799
2800 public function getItems()
2801 {
2802 return $this->items;
2803 }
2804
2805 public function setKind($kind)
2806 {
2807 $this->kind = $kind;
2808 }
2809
2810 public function getKind()
2811 {
2812 return $this->kind;
2813 }
2814
2815 public function setNextLink($nextLink)
2816 {
2817 $this->nextLink = $nextLink;
2818 }
2819
2820 public function getNextLink()
2821 {
2822 return $this->nextLink;
2823 }
2824
2825 public function setNextPageToken($nextPageToken)
2826 {
2827 $this->nextPageToken = $nextPageToken;
2828 }
2829
2830 public function getNextPageToken()
2831 {
2832 return $this->nextPageToken;
2833 }
2834
2835 public function setSelfLink($selfLink)
2836 {
2837 $this->selfLink = $selfLink;
2838 }
2839
2840 public function getSelfLink()
2841 {
2842 return $this->selfLink;
2843 }
2844
2845 public function setTitle($title)
2846 {
2847 $this->title = $title;
2848 }
2849
2850 public function getTitle()
2851 {
2852 return $this->title;
2853 }
2854
2855 public function setUpdated($updated)
2856 {
2857 $this->updated = $updated;
2858 }
2859
2860 public function getUpdated()
2861 {
2862 return $this->updated;
2863 }
2864 }
2865
2866 class Google_Service_Plus_PeopleFeed extends Google_Collection
2867 {
2868 public $etag;
2869 protected $itemsType = 'Google_Service_Plus_Person';
2870 protected $itemsDataType = 'array';
2871 public $kind;
2872 public $nextPageToken;
2873 public $selfLink;
2874 public $title;
2875 public $totalItems;
2876
2877 public function setEtag($etag)
2878 {
2879 $this->etag = $etag;
2880 }
2881
2882 public function getEtag()
2883 {
2884 return $this->etag;
2885 }
2886
2887 public function setItems($items)
2888 {
2889 $this->items = $items;
2890 }
2891
2892 public function getItems()
2893 {
2894 return $this->items;
2895 }
2896
2897 public function setKind($kind)
2898 {
2899 $this->kind = $kind;
2900 }
2901
2902 public function getKind()
2903 {
2904 return $this->kind;
2905 }
2906
2907 public function setNextPageToken($nextPageToken)
2908 {
2909 $this->nextPageToken = $nextPageToken;
2910 }
2911
2912 public function getNextPageToken()
2913 {
2914 return $this->nextPageToken;
2915 }
2916
2917 public function setSelfLink($selfLink)
2918 {
2919 $this->selfLink = $selfLink;
2920 }
2921
2922 public function getSelfLink()
2923 {
2924 return $this->selfLink;
2925 }
2926
2927 public function setTitle($title)
2928 {
2929 $this->title = $title;
2930 }
2931
2932 public function getTitle()
2933 {
2934 return $this->title;
2935 }
2936
2937 public function setTotalItems($totalItems)
2938 {
2939 $this->totalItems = $totalItems;
2940 }
2941
2942 public function getTotalItems()
2943 {
2944 return $this->totalItems;
2945 }
2946 }
2947
2948 class Google_Service_Plus_Person extends Google_Collection
2949 {
2950 public $aboutMe;
2951 protected $ageRangeType = 'Google_Service_Plus_PersonAgeRange';
2952 protected $ageRangeDataType = '';
2953 public $birthday;
2954 public $braggingRights;
2955 public $circledByCount;
2956 protected $coverType = 'Google_Service_Plus_PersonCover';
2957 protected $coverDataType = '';
2958 public $currentLocation;
2959 public $displayName;
2960 public $domain;
2961 protected $emailsType = 'Google_Service_Plus_PersonEmails';
2962 protected $emailsDataType = 'array';
2963 public $etag;
2964 public $gender;
2965 public $id;
2966 protected $imageType = 'Google_Service_Plus_PersonImage';
2967 protected $imageDataType = '';
2968 public $isPlusUser;
2969 public $kind;
2970 public $language;
2971 protected $nameType = 'Google_Service_Plus_PersonName';
2972 protected $nameDataType = '';
2973 public $nickname;
2974 public $objectType;
2975 public $occupation;
2976 protected $organizationsType = 'Google_Service_Plus_PersonOrganizations';
2977 protected $organizationsDataType = 'array';
2978 protected $placesLivedType = 'Google_Service_Plus_PersonPlacesLived';
2979 protected $placesLivedDataType = 'array';
2980 public $plusOneCount;
2981 public $relationshipStatus;
2982 public $skills;
2983 public $tagline;
2984 public $url;
2985 protected $urlsType = 'Google_Service_Plus_PersonUrls';
2986 protected $urlsDataType = 'array';
2987 public $verified;
2988
2989 public function setAboutMe($aboutMe)
2990 {
2991 $this->aboutMe = $aboutMe;
2992 }
2993
2994 public function getAboutMe()
2995 {
2996 return $this->aboutMe;
2997 }
2998
2999 public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
3000 {
3001 $this->ageRange = $ageRange;
3002 }
3003
3004 public function getAgeRange()
3005 {
3006 return $this->ageRange;
3007 }
3008
3009 public function setBirthday($birthday)
3010 {
3011 $this->birthday = $birthday;
3012 }
3013
3014 public function getBirthday()
3015 {
3016 return $this->birthday;
3017 }
3018
3019 public function setBraggingRights($braggingRights)
3020 {
3021 $this->braggingRights = $braggingRights;
3022 }
3023
3024 public function getBraggingRights()
3025 {
3026 return $this->braggingRights;
3027 }
3028
3029 public function setCircledByCount($circledByCount)
3030 {
3031 $this->circledByCount = $circledByCount;
3032 }
3033
3034 public function getCircledByCount()
3035 {
3036 return $this->circledByCount;
3037 }
3038
3039 public function setCover(Google_Service_Plus_PersonCover $cover)
3040 {
3041 $this->cover = $cover;
3042 }
3043
3044 public function getCover()
3045 {
3046 return $this->cover;
3047 }
3048
3049 public function setCurrentLocation($currentLocation)
3050 {
3051 $this->currentLocation = $currentLocation;
3052 }
3053
3054 public function getCurrentLocation()
3055 {
3056 return $this->currentLocation;
3057 }
3058
3059 public function setDisplayName($displayName)
3060 {
3061 $this->displayName = $displayName;
3062 }
3063
3064 public function getDisplayName()
3065 {
3066 return $this->displayName;
3067 }
3068
3069 public function setDomain($domain)
3070 {
3071 $this->domain = $domain;
3072 }
3073
3074 public function getDomain()
3075 {
3076 return $this->domain;
3077 }
3078
3079 public function setEmails($emails)
3080 {
3081 $this->emails = $emails;
3082 }
3083
3084 public function getEmails()
3085 {
3086 return $this->emails;
3087 }
3088
3089 public function setEtag($etag)
3090 {
3091 $this->etag = $etag;
3092 }
3093
3094 public function getEtag()
3095 {
3096 return $this->etag;
3097 }
3098
3099 public function setGender($gender)
3100 {
3101 $this->gender = $gender;
3102 }
3103
3104 public function getGender()
3105 {
3106 return $this->gender;
3107 }
3108
3109 public function setId($id)
3110 {
3111 $this->id = $id;
3112 }
3113
3114 public function getId()
3115 {
3116 return $this->id;
3117 }
3118
3119 public function setImage(Google_Service_Plus_PersonImage $image)
3120 {
3121 $this->image = $image;
3122 }
3123
3124 public function getImage()
3125 {
3126 return $this->image;
3127 }
3128
3129 public function setIsPlusUser($isPlusUser)
3130 {
3131 $this->isPlusUser = $isPlusUser;
3132 }
3133
3134 public function getIsPlusUser()
3135 {
3136 return $this->isPlusUser;
3137 }
3138
3139 public function setKind($kind)
3140 {
3141 $this->kind = $kind;
3142 }
3143
3144 public function getKind()
3145 {
3146 return $this->kind;
3147 }
3148
3149 public function setLanguage($language)
3150 {
3151 $this->language = $language;
3152 }
3153
3154 public function getLanguage()
3155 {
3156 return $this->language;
3157 }
3158
3159 public function setName(Google_Service_Plus_PersonName $name)
3160 {
3161 $this->name = $name;
3162 }
3163
3164 public function getName()
3165 {
3166 return $this->name;
3167 }
3168
3169 public function setNickname($nickname)
3170 {
3171 $this->nickname = $nickname;
3172 }
3173
3174 public function getNickname()
3175 {
3176 return $this->nickname;
3177 }
3178
3179 public function setObjectType($objectType)
3180 {
3181 $this->objectType = $objectType;
3182 }
3183
3184 public function getObjectType()
3185 {
3186 return $this->objectType;
3187 }
3188
3189 public function setOccupation($occupation)
3190 {
3191 $this->occupation = $occupation;
3192 }
3193
3194 public function getOccupation()
3195 {
3196 return $this->occupation;
3197 }
3198
3199 public function setOrganizations($organizations)
3200 {
3201 $this->organizations = $organizations;
3202 }
3203
3204 public function getOrganizations()
3205 {
3206 return $this->organizations;
3207 }
3208
3209 public function setPlacesLived($placesLived)
3210 {
3211 $this->placesLived = $placesLived;
3212 }
3213
3214 public function getPlacesLived()
3215 {
3216 return $this->placesLived;
3217 }
3218
3219 public function setPlusOneCount($plusOneCount)
3220 {
3221 $this->plusOneCount = $plusOneCount;
3222 }
3223
3224 public function getPlusOneCount()
3225 {
3226 return $this->plusOneCount;
3227 }
3228
3229 public function setRelationshipStatus($relationshipStatus)
3230 {
3231 $this->relationshipStatus = $relationshipStatus;
3232 }
3233
3234 public function getRelationshipStatus()
3235 {
3236 return $this->relationshipStatus;
3237 }
3238
3239 public function setSkills($skills)
3240 {
3241 $this->skills = $skills;
3242 }
3243
3244 public function getSkills()
3245 {
3246 return $this->skills;
3247 }
3248
3249 public function setTagline($tagline)
3250 {
3251 $this->tagline = $tagline;
3252 }
3253
3254 public function getTagline()
3255 {
3256 return $this->tagline;
3257 }
3258
3259 public function setUrl($url)
3260 {
3261 $this->url = $url;
3262 }
3263
3264 public function getUrl()
3265 {
3266 return $this->url;
3267 }
3268
3269 public function setUrls($urls)
3270 {
3271 $this->urls = $urls;
3272 }
3273
3274 public function getUrls()
3275 {
3276 return $this->urls;
3277 }
3278
3279 public function setVerified($verified)
3280 {
3281 $this->verified = $verified;
3282 }
3283
3284 public function getVerified()
3285 {
3286 return $this->verified;
3287 }
3288 }
3289
3290 class Google_Service_Plus_PersonAgeRange extends Google_Model
3291 {
3292 public $max;
3293 public $min;
3294
3295 public function setMax($max)
3296 {
3297 $this->max = $max;
3298 }
3299
3300 public function getMax()
3301 {
3302 return $this->max;
3303 }
3304
3305 public function setMin($min)
3306 {
3307 $this->min = $min;
3308 }
3309
3310 public function getMin()
3311 {
3312 return $this->min;
3313 }
3314 }
3315
3316 class Google_Service_Plus_PersonCover extends Google_Model
3317 {
3318 protected $coverInfoType = 'Google_Service_Plus_PersonCoverCoverInfo';
3319 protected $coverInfoDataType = '';
3320 protected $coverPhotoType = 'Google_Service_Plus_PersonCoverCoverPhoto';
3321 protected $coverPhotoDataType = '';
3322 public $layout;
3323
3324 public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
3325 {
3326 $this->coverInfo = $coverInfo;
3327 }
3328
3329 public function getCoverInfo()
3330 {
3331 return $this->coverInfo;
3332 }
3333
3334 public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
3335 {
3336 $this->coverPhoto = $coverPhoto;
3337 }
3338
3339 public function getCoverPhoto()
3340 {
3341 return $this->coverPhoto;
3342 }
3343
3344 public function setLayout($layout)
3345 {
3346 $this->layout = $layout;
3347 }
3348
3349 public function getLayout()
3350 {
3351 return $this->layout;
3352 }
3353 }
3354
3355 class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
3356 {
3357 public $leftImageOffset;
3358 public $topImageOffset;
3359
3360 public function setLeftImageOffset($leftImageOffset)
3361 {
3362 $this->leftImageOffset = $leftImageOffset;
3363 }
3364
3365 public function getLeftImageOffset()
3366 {
3367 return $this->leftImageOffset;
3368 }
3369
3370 public function setTopImageOffset($topImageOffset)
3371 {
3372 $this->topImageOffset = $topImageOffset;
3373 }
3374
3375 public function getTopImageOffset()
3376 {
3377 return $this->topImageOffset;
3378 }
3379 }
3380
3381 class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
3382 {
3383 public $height;
3384 public $url;
3385 public $width;
3386
3387 public function setHeight($height)
3388 {
3389 $this->height = $height;
3390 }
3391
3392 public function getHeight()
3393 {
3394 return $this->height;
3395 }
3396
3397 public function setUrl($url)
3398 {
3399 $this->url = $url;
3400 }
3401
3402 public function getUrl()
3403 {
3404 return $this->url;
3405 }
3406
3407 public function setWidth($width)
3408 {
3409 $this->width = $width;
3410 }
3411
3412 public function getWidth()
3413 {
3414 return $this->width;
3415 }
3416 }
3417
3418 class Google_Service_Plus_PersonEmails extends Google_Model
3419 {
3420 public $type;
3421 public $value;
3422
3423 public function setType($type)
3424 {
3425 $this->type = $type;
3426 }
3427
3428 public function getType()
3429 {
3430 return $this->type;
3431 }
3432
3433 public function setValue($value)
3434 {
3435 $this->value = $value;
3436 }
3437
3438 public function getValue()
3439 {
3440 return $this->value;
3441 }
3442 }
3443
3444 class Google_Service_Plus_PersonImage extends Google_Model
3445 {
3446 public $url;
3447
3448 public function setUrl($url)
3449 {
3450 $this->url = $url;
3451 }
3452
3453 public function getUrl()
3454 {
3455 return $this->url;
3456 }
3457 }
3458
3459 class Google_Service_Plus_PersonName extends Google_Model
3460 {
3461 public $familyName;
3462 public $formatted;
3463 public $givenName;
3464 public $honorificPrefix;
3465 public $honorificSuffix;
3466 public $middleName;
3467
3468 public function setFamilyName($familyName)
3469 {
3470 $this->familyName = $familyName;
3471 }
3472
3473 public function getFamilyName()
3474 {
3475 return $this->familyName;
3476 }
3477
3478 public function setFormatted($formatted)
3479 {
3480 $this->formatted = $formatted;
3481 }
3482
3483 public function getFormatted()
3484 {
3485 return $this->formatted;
3486 }
3487
3488 public function setGivenName($givenName)
3489 {
3490 $this->givenName = $givenName;
3491 }
3492
3493 public function getGivenName()
3494 {
3495 return $this->givenName;
3496 }
3497
3498 public function setHonorificPrefix($honorificPrefix)
3499 {
3500 $this->honorificPrefix = $honorificPrefix;
3501 }
3502
3503 public function getHonorificPrefix()
3504 {
3505 return $this->honorificPrefix;
3506 }
3507
3508 public function setHonorificSuffix($honorificSuffix)
3509 {
3510 $this->honorificSuffix = $honorificSuffix;
3511 }
3512
3513 public function getHonorificSuffix()
3514 {
3515 return $this->honorificSuffix;
3516 }
3517
3518 public function setMiddleName($middleName)
3519 {
3520 $this->middleName = $middleName;
3521 }
3522
3523 public function getMiddleName()
3524 {
3525 return $this->middleName;
3526 }
3527 }
3528
3529 class Google_Service_Plus_PersonOrganizations extends Google_Model
3530 {
3531 public $department;
3532 public $description;
3533 public $endDate;
3534 public $location;
3535 public $name;
3536 public $primary;
3537 public $startDate;
3538 public $title;
3539 public $type;
3540
3541 public function setDepartment($department)
3542 {
3543 $this->department = $department;
3544 }
3545
3546 public function getDepartment()
3547 {
3548 return $this->department;
3549 }
3550
3551 public function setDescription($description)
3552 {
3553 $this->description = $description;
3554 }
3555
3556 public function getDescription()
3557 {
3558 return $this->description;
3559 }
3560
3561 public function setEndDate($endDate)
3562 {
3563 $this->endDate = $endDate;
3564 }
3565
3566 public function getEndDate()
3567 {
3568 return $this->endDate;
3569 }
3570
3571 public function setLocation($location)
3572 {
3573 $this->location = $location;
3574 }
3575
3576 public function getLocation()
3577 {
3578 return $this->location;
3579 }
3580
3581 public function setName($name)
3582 {
3583 $this->name = $name;
3584 }
3585
3586 public function getName()
3587 {
3588 return $this->name;
3589 }
3590
3591 public function setPrimary($primary)
3592 {
3593 $this->primary = $primary;
3594 }
3595
3596 public function getPrimary()
3597 {
3598 return $this->primary;
3599 }
3600
3601 public function setStartDate($startDate)
3602 {
3603 $this->startDate = $startDate;
3604 }
3605
3606 public function getStartDate()
3607 {
3608 return $this->startDate;
3609 }
3610
3611 public function setTitle($title)
3612 {
3613 $this->title = $title;
3614 }
3615
3616 public function getTitle()
3617 {
3618 return $this->title;
3619 }
3620
3621 public function setType($type)
3622 {
3623 $this->type = $type;
3624 }
3625
3626 public function getType()
3627 {
3628 return $this->type;
3629 }
3630 }
3631
3632 class Google_Service_Plus_PersonPlacesLived extends Google_Model
3633 {
3634 public $primary;
3635 public $value;
3636
3637 public function setPrimary($primary)
3638 {
3639 $this->primary = $primary;
3640 }
3641
3642 public function getPrimary()
3643 {
3644 return $this->primary;
3645 }
3646
3647 public function setValue($value)
3648 {
3649 $this->value = $value;
3650 }
3651
3652 public function getValue()
3653 {
3654 return $this->value;
3655 }
3656 }
3657
3658 class Google_Service_Plus_PersonUrls extends Google_Model
3659 {
3660 public $label;
3661 public $type;
3662 public $value;
3663
3664 public function setLabel($label)
3665 {
3666 $this->label = $label;
3667 }
3668
3669 public function getLabel()
3670 {
3671 return $this->label;
3672 }
3673
3674 public function setType($type)
3675 {
3676 $this->type = $type;
3677 }
3678
3679 public function getType()
3680 {
3681 return $this->type;
3682 }
3683
3684 public function setValue($value)
3685 {
3686 $this->value = $value;
3687 }
3688
3689 public function getValue()
3690 {
3691 return $this->value;
3692 }
3693 }
3694
3695 class Google_Service_Plus_Place extends Google_Model
3696 {
3697 protected $addressType = 'Google_Service_Plus_PlaceAddress';
3698 protected $addressDataType = '';
3699 public $displayName;
3700 public $kind;
3701 protected $positionType = 'Google_Service_Plus_PlacePosition';
3702 protected $positionDataType = '';
3703
3704 public function setAddress(Google_Service_Plus_PlaceAddress $address)
3705 {
3706 $this->address = $address;
3707 }
3708
3709 public function getAddress()
3710 {
3711 return $this->address;
3712 }
3713
3714 public function setDisplayName($displayName)
3715 {
3716 $this->displayName = $displayName;
3717 }
3718
3719 public function getDisplayName()
3720 {
3721 return $this->displayName;
3722 }
3723
3724 public function setKind($kind)
3725 {
3726 $this->kind = $kind;
3727 }
3728
3729 public function getKind()
3730 {
3731 return $this->kind;
3732 }
3733
3734 public function setPosition(Google_Service_Plus_PlacePosition $position)
3735 {
3736 $this->position = $position;
3737 }
3738
3739 public function getPosition()
3740 {
3741 return $this->position;
3742 }
3743 }
3744
3745 class Google_Service_Plus_PlaceAddress extends Google_Model
3746 {
3747 public $formatted;
3748
3749 public function setFormatted($formatted)
3750 {
3751 $this->formatted = $formatted;
3752 }
3753
3754 public function getFormatted()
3755 {
3756 return $this->formatted;
3757 }
3758 }
3759
3760 class Google_Service_Plus_PlacePosition extends Google_Model
3761 {
3762 public $latitude;
3763 public $longitude;
3764
3765 public function setLatitude($latitude)
3766 {
3767 $this->latitude = $latitude;
3768 }
3769
3770 public function getLatitude()
3771 {
3772 return $this->latitude;
3773 }
3774
3775 public function setLongitude($longitude)
3776 {
3777 $this->longitude = $longitude;
3778 }
3779
3780 public function getLongitude()
3781 {
3782 return $this->longitude;
3783 }
3784 }
3785
3786 class Google_Service_Plus_PlusAclentryResource extends Google_Model
3787 {
3788 public $displayName;
3789 public $id;
3790 public $type;
3791
3792 public function setDisplayName($displayName)
3793 {
3794 $this->displayName = $displayName;
3795 }
3796
3797 public function getDisplayName()
3798 {
3799 return $this->displayName;
3800 }
3801
3802 public function setId($id)
3803 {
3804 $this->id = $id;
3805 }
3806
3807 public function getId()
3808 {
3809 return $this->id;
3810 }
3811
3812 public function setType($type)
3813 {
3814 $this->type = $type;
3815 }
3816
3817 public function getType()
3818 {
3819 return $this->type;
3820 }
3821 }
3822