PluginProbe
Authorizer / 2.8.0
Authorizer v2.8.0
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 / vendor / google-api-php-client / src / Google / Service / Plus.php

Plus.php in Authorizer 2.8.0, at vendor/google-api-php-client/src/Google/Service/Plus.php

2,895 lines 64.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
4 * use this file except in compliance with the License. You may obtain a copy of
5 * the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12 * License for the specific language governing permissions and limitations under
13 * the License.
14 */
15
16 /**
17 * Service definition for Plus (v1).
18 *
19 * <p>
20 * The Google+ API enables developers to build on top of the Google+ platform.</p>
21 *
22 * <p>
23 * For more information about this service, see the API
24 * <a href="https://developers.google.com/+/api/" target="_blank">Documentation</a>
25 * </p>
26 *
27 * @author Google, Inc.
28 */
29 class Google_Service_Plus extends Google_Service
30 {
31 /** Know the list of people in your circles, your age range, and language. */
32 const PLUS_LOGIN =
33 "https://www.googleapis.com/auth/plus.login";
34 /** Know who you are on Google. */
35 const PLUS_ME =
36 "https://www.googleapis.com/auth/plus.me";
37 /** View your email address. */
38 const USERINFO_EMAIL =
39 "https://www.googleapis.com/auth/userinfo.email";
40 /** View your basic profile info. */
41 const USERINFO_PROFILE =
42 "https://www.googleapis.com/auth/userinfo.profile";
43
44 public $activities;
45 public $comments;
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->rootUrl = 'https://www.googleapis.com/';
58 $this->servicePath = 'plus/v1/';
59 $this->version = 'v1';
60 $this->serviceName = 'plus';
61
62 $this->activities = new Google_Service_Plus_Activities_Resource(
63 $this,
64 $this->serviceName,
65 'activities',
66 array(
67 'methods' => array(
68 'get' => array(
69 'path' => 'activities/{activityId}',
70 'httpMethod' => 'GET',
71 'parameters' => array(
72 'activityId' => array(
73 'location' => 'path',
74 'type' => 'string',
75 'required' => true,
76 ),
77 ),
78 ),'list' => array(
79 'path' => 'people/{userId}/activities/{collection}',
80 'httpMethod' => 'GET',
81 'parameters' => array(
82 'userId' => array(
83 'location' => 'path',
84 'type' => 'string',
85 'required' => true,
86 ),
87 'collection' => array(
88 'location' => 'path',
89 'type' => 'string',
90 'required' => true,
91 ),
92 'maxResults' => array(
93 'location' => 'query',
94 'type' => 'integer',
95 ),
96 'pageToken' => array(
97 'location' => 'query',
98 'type' => 'string',
99 ),
100 ),
101 ),'search' => array(
102 'path' => 'activities',
103 'httpMethod' => 'GET',
104 'parameters' => array(
105 'query' => array(
106 'location' => 'query',
107 'type' => 'string',
108 'required' => true,
109 ),
110 'language' => array(
111 'location' => 'query',
112 'type' => 'string',
113 ),
114 'maxResults' => array(
115 'location' => 'query',
116 'type' => 'integer',
117 ),
118 'orderBy' => array(
119 'location' => 'query',
120 'type' => 'string',
121 ),
122 'pageToken' => array(
123 'location' => 'query',
124 'type' => 'string',
125 ),
126 ),
127 ),
128 )
129 )
130 );
131 $this->comments = new Google_Service_Plus_Comments_Resource(
132 $this,
133 $this->serviceName,
134 'comments',
135 array(
136 'methods' => array(
137 'get' => array(
138 'path' => 'comments/{commentId}',
139 'httpMethod' => 'GET',
140 'parameters' => array(
141 'commentId' => array(
142 'location' => 'path',
143 'type' => 'string',
144 'required' => true,
145 ),
146 ),
147 ),'list' => array(
148 'path' => 'activities/{activityId}/comments',
149 'httpMethod' => 'GET',
150 'parameters' => array(
151 'activityId' => array(
152 'location' => 'path',
153 'type' => 'string',
154 'required' => true,
155 ),
156 'maxResults' => array(
157 'location' => 'query',
158 'type' => 'integer',
159 ),
160 'pageToken' => array(
161 'location' => 'query',
162 'type' => 'string',
163 ),
164 'sortOrder' => array(
165 'location' => 'query',
166 'type' => 'string',
167 ),
168 ),
169 ),
170 )
171 )
172 );
173 $this->people = new Google_Service_Plus_People_Resource(
174 $this,
175 $this->serviceName,
176 'people',
177 array(
178 'methods' => array(
179 'get' => array(
180 'path' => 'people/{userId}',
181 'httpMethod' => 'GET',
182 'parameters' => array(
183 'userId' => array(
184 'location' => 'path',
185 'type' => 'string',
186 'required' => true,
187 ),
188 ),
189 ),'list' => array(
190 'path' => 'people/{userId}/people/{collection}',
191 'httpMethod' => 'GET',
192 'parameters' => array(
193 'userId' => array(
194 'location' => 'path',
195 'type' => 'string',
196 'required' => true,
197 ),
198 'collection' => array(
199 'location' => 'path',
200 'type' => 'string',
201 'required' => true,
202 ),
203 'maxResults' => array(
204 'location' => 'query',
205 'type' => 'integer',
206 ),
207 'orderBy' => array(
208 'location' => 'query',
209 'type' => 'string',
210 ),
211 'pageToken' => array(
212 'location' => 'query',
213 'type' => 'string',
214 ),
215 ),
216 ),'listByActivity' => array(
217 'path' => 'activities/{activityId}/people/{collection}',
218 'httpMethod' => 'GET',
219 'parameters' => array(
220 'activityId' => array(
221 'location' => 'path',
222 'type' => 'string',
223 'required' => true,
224 ),
225 'collection' => array(
226 'location' => 'path',
227 'type' => 'string',
228 'required' => true,
229 ),
230 'maxResults' => array(
231 'location' => 'query',
232 'type' => 'integer',
233 ),
234 'pageToken' => array(
235 'location' => 'query',
236 'type' => 'string',
237 ),
238 ),
239 ),'search' => array(
240 'path' => 'people',
241 'httpMethod' => 'GET',
242 'parameters' => array(
243 'query' => array(
244 'location' => 'query',
245 'type' => 'string',
246 'required' => true,
247 ),
248 'language' => array(
249 'location' => 'query',
250 'type' => 'string',
251 ),
252 'maxResults' => array(
253 'location' => 'query',
254 'type' => 'integer',
255 ),
256 'pageToken' => array(
257 'location' => 'query',
258 'type' => 'string',
259 ),
260 ),
261 ),
262 )
263 )
264 );
265 }
266 }
267
268
269 /**
270 * The "activities" collection of methods.
271 * Typical usage is:
272 * <code>
273 * $plusService = new Google_Service_Plus(...);
274 * $activities = $plusService->activities;
275 * </code>
276 */
277 class Google_Service_Plus_Activities_Resource extends Google_Service_Resource
278 {
279
280 /**
281 * Get an activity. (activities.get)
282 *
283 * @param string $activityId The ID of the activity to get.
284 * @param array $optParams Optional parameters.
285 * @return Google_Service_Plus_Activity
286 */
287 public function get($activityId, $optParams = array())
288 {
289 $params = array('activityId' => $activityId);
290 $params = array_merge($params, $optParams);
291 return $this->call('get', array($params), "Google_Service_Plus_Activity");
292 }
293
294 /**
295 * List all of the activities in the specified collection for a particular user.
296 * (activities.listActivities)
297 *
298 * @param string $userId The ID of the user to get activities for. The special
299 * value "me" can be used to indicate the authenticated user.
300 * @param string $collection The collection of activities to list.
301 * @param array $optParams Optional parameters.
302 *
303 * @opt_param string maxResults The maximum number of activities to include in
304 * the response, which is used for paging. For any response, the actual number
305 * returned might be less than the specified maxResults.
306 * @opt_param string pageToken The continuation token, which is used to page
307 * through large result sets. To get the next page of results, set this
308 * parameter to the value of "nextPageToken" from the previous response.
309 * @return Google_Service_Plus_ActivityFeed
310 */
311 public function listActivities($userId, $collection, $optParams = array())
312 {
313 $params = array('userId' => $userId, 'collection' => $collection);
314 $params = array_merge($params, $optParams);
315 return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
316 }
317
318 /**
319 * Search public activities. (activities.search)
320 *
321 * @param string $query Full-text search query string.
322 * @param array $optParams Optional parameters.
323 *
324 * @opt_param string language Specify the preferred language to search with. See
325 * search language codes for available values.
326 * @opt_param string maxResults The maximum number of activities to include in
327 * the response, which is used for paging. For any response, the actual number
328 * returned might be less than the specified maxResults.
329 * @opt_param string orderBy Specifies how to order search results.
330 * @opt_param string pageToken The continuation token, which is used to page
331 * through large result sets. To get the next page of results, set this
332 * parameter to the value of "nextPageToken" from the previous response. This
333 * token can be of any length.
334 * @return Google_Service_Plus_ActivityFeed
335 */
336 public function search($query, $optParams = array())
337 {
338 $params = array('query' => $query);
339 $params = array_merge($params, $optParams);
340 return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
341 }
342 }
343
344 /**
345 * The "comments" collection of methods.
346 * Typical usage is:
347 * <code>
348 * $plusService = new Google_Service_Plus(...);
349 * $comments = $plusService->comments;
350 * </code>
351 */
352 class Google_Service_Plus_Comments_Resource extends Google_Service_Resource
353 {
354
355 /**
356 * Get a comment. (comments.get)
357 *
358 * @param string $commentId The ID of the comment to get.
359 * @param array $optParams Optional parameters.
360 * @return Google_Service_Plus_Comment
361 */
362 public function get($commentId, $optParams = array())
363 {
364 $params = array('commentId' => $commentId);
365 $params = array_merge($params, $optParams);
366 return $this->call('get', array($params), "Google_Service_Plus_Comment");
367 }
368
369 /**
370 * List all of the comments for an activity. (comments.listComments)
371 *
372 * @param string $activityId The ID of the activity to get comments for.
373 * @param array $optParams Optional parameters.
374 *
375 * @opt_param string maxResults The maximum number of comments to include in the
376 * response, which is used for paging. For any response, the actual number
377 * returned might be less than the specified maxResults.
378 * @opt_param string pageToken The continuation token, which is used to page
379 * through large result sets. To get the next page of results, set this
380 * parameter to the value of "nextPageToken" from the previous response.
381 * @opt_param string sortOrder The order in which to sort the list of comments.
382 * @return Google_Service_Plus_CommentFeed
383 */
384 public function listComments($activityId, $optParams = array())
385 {
386 $params = array('activityId' => $activityId);
387 $params = array_merge($params, $optParams);
388 return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
389 }
390 }
391
392 /**
393 * The "people" collection of methods.
394 * Typical usage is:
395 * <code>
396 * $plusService = new Google_Service_Plus(...);
397 * $people = $plusService->people;
398 * </code>
399 */
400 class Google_Service_Plus_People_Resource extends Google_Service_Resource
401 {
402
403 /**
404 * Get a person's profile. If your app uses scope
405 * https://www.googleapis.com/auth/plus.login, this method is guaranteed to
406 * return ageRange and language. (people.get)
407 *
408 * @param string $userId The ID of the person to get the profile for. The
409 * special value "me" can be used to indicate the authenticated user.
410 * @param array $optParams Optional parameters.
411 * @return Google_Service_Plus_Person
412 */
413 public function get($userId, $optParams = array())
414 {
415 $params = array('userId' => $userId);
416 $params = array_merge($params, $optParams);
417 return $this->call('get', array($params), "Google_Service_Plus_Person");
418 }
419
420 /**
421 * List all of the people in the specified collection. (people.listPeople)
422 *
423 * @param string $userId Get the collection of people for the person identified.
424 * Use "me" to indicate the authenticated user.
425 * @param string $collection The collection of people to list.
426 * @param array $optParams Optional parameters.
427 *
428 * @opt_param string maxResults The maximum number of people to include in the
429 * response, which is used for paging. For any response, the actual number
430 * returned might be less than the specified maxResults.
431 * @opt_param string orderBy The order to return people in.
432 * @opt_param string pageToken The continuation token, which is used to page
433 * through large result sets. To get the next page of results, set this
434 * parameter to the value of "nextPageToken" from the previous response.
435 * @return Google_Service_Plus_PeopleFeed
436 */
437 public function listPeople($userId, $collection, $optParams = array())
438 {
439 $params = array('userId' => $userId, 'collection' => $collection);
440 $params = array_merge($params, $optParams);
441 return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
442 }
443
444 /**
445 * List all of the people in the specified collection for a particular activity.
446 * (people.listByActivity)
447 *
448 * @param string $activityId The ID of the activity to get the list of people
449 * for.
450 * @param string $collection The collection of people to list.
451 * @param array $optParams Optional parameters.
452 *
453 * @opt_param string maxResults The maximum number of people to include in the
454 * response, which is used for paging. For any response, the actual number
455 * returned might be less than the specified maxResults.
456 * @opt_param string pageToken The continuation token, which is used to page
457 * through large result sets. To get the next page of results, set this
458 * parameter to the value of "nextPageToken" from the previous response.
459 * @return Google_Service_Plus_PeopleFeed
460 */
461 public function listByActivity($activityId, $collection, $optParams = array())
462 {
463 $params = array('activityId' => $activityId, 'collection' => $collection);
464 $params = array_merge($params, $optParams);
465 return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
466 }
467
468 /**
469 * Search all public profiles. (people.search)
470 *
471 * @param string $query Specify a query string for full text search of public
472 * text in all profiles.
473 * @param array $optParams Optional parameters.
474 *
475 * @opt_param string language Specify the preferred language to search with. See
476 * search language codes for available values.
477 * @opt_param string maxResults The maximum number of people to include in the
478 * response, which is used for paging. For any response, the actual number
479 * returned might be less than the specified maxResults.
480 * @opt_param string pageToken The continuation token, which is used to page
481 * through large result sets. To get the next page of results, set this
482 * parameter to the value of "nextPageToken" from the previous response. This
483 * token can be of any length.
484 * @return Google_Service_Plus_PeopleFeed
485 */
486 public function search($query, $optParams = array())
487 {
488 $params = array('query' => $query);
489 $params = array_merge($params, $optParams);
490 return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
491 }
492 }
493
494
495
496
497 class Google_Service_Plus_Acl extends Google_Collection
498 {
499 protected $collection_key = 'items';
500 protected $internal_gapi_mappings = array(
501 );
502 public $description;
503 protected $itemsType = 'Google_Service_Plus_PlusAclentryResource';
504 protected $itemsDataType = 'array';
505 public $kind;
506
507
508 public function setDescription($description)
509 {
510 $this->description = $description;
511 }
512 public function getDescription()
513 {
514 return $this->description;
515 }
516 public function setItems($items)
517 {
518 $this->items = $items;
519 }
520 public function getItems()
521 {
522 return $this->items;
523 }
524 public function setKind($kind)
525 {
526 $this->kind = $kind;
527 }
528 public function getKind()
529 {
530 return $this->kind;
531 }
532 }
533
534 class Google_Service_Plus_Activity extends Google_Model
535 {
536 protected $internal_gapi_mappings = array(
537 );
538 protected $accessType = 'Google_Service_Plus_Acl';
539 protected $accessDataType = '';
540 protected $actorType = 'Google_Service_Plus_ActivityActor';
541 protected $actorDataType = '';
542 public $address;
543 public $annotation;
544 public $crosspostSource;
545 public $etag;
546 public $geocode;
547 public $id;
548 public $kind;
549 protected $locationType = 'Google_Service_Plus_Place';
550 protected $locationDataType = '';
551 protected $objectType = 'Google_Service_Plus_ActivityObject';
552 protected $objectDataType = '';
553 public $placeId;
554 public $placeName;
555 protected $providerType = 'Google_Service_Plus_ActivityProvider';
556 protected $providerDataType = '';
557 public $published;
558 public $radius;
559 public $title;
560 public $updated;
561 public $url;
562 public $verb;
563
564
565 public function setAccess(Google_Service_Plus_Acl $access)
566 {
567 $this->access = $access;
568 }
569 public function getAccess()
570 {
571 return $this->access;
572 }
573 public function setActor(Google_Service_Plus_ActivityActor $actor)
574 {
575 $this->actor = $actor;
576 }
577 public function getActor()
578 {
579 return $this->actor;
580 }
581 public function setAddress($address)
582 {
583 $this->address = $address;
584 }
585 public function getAddress()
586 {
587 return $this->address;
588 }
589 public function setAnnotation($annotation)
590 {
591 $this->annotation = $annotation;
592 }
593 public function getAnnotation()
594 {
595 return $this->annotation;
596 }
597 public function setCrosspostSource($crosspostSource)
598 {
599 $this->crosspostSource = $crosspostSource;
600 }
601 public function getCrosspostSource()
602 {
603 return $this->crosspostSource;
604 }
605 public function setEtag($etag)
606 {
607 $this->etag = $etag;
608 }
609 public function getEtag()
610 {
611 return $this->etag;
612 }
613 public function setGeocode($geocode)
614 {
615 $this->geocode = $geocode;
616 }
617 public function getGeocode()
618 {
619 return $this->geocode;
620 }
621 public function setId($id)
622 {
623 $this->id = $id;
624 }
625 public function getId()
626 {
627 return $this->id;
628 }
629 public function setKind($kind)
630 {
631 $this->kind = $kind;
632 }
633 public function getKind()
634 {
635 return $this->kind;
636 }
637 public function setLocation(Google_Service_Plus_Place $location)
638 {
639 $this->location = $location;
640 }
641 public function getLocation()
642 {
643 return $this->location;
644 }
645 public function setObject(Google_Service_Plus_ActivityObject $object)
646 {
647 $this->object = $object;
648 }
649 public function getObject()
650 {
651 return $this->object;
652 }
653 public function setPlaceId($placeId)
654 {
655 $this->placeId = $placeId;
656 }
657 public function getPlaceId()
658 {
659 return $this->placeId;
660 }
661 public function setPlaceName($placeName)
662 {
663 $this->placeName = $placeName;
664 }
665 public function getPlaceName()
666 {
667 return $this->placeName;
668 }
669 public function setProvider(Google_Service_Plus_ActivityProvider $provider)
670 {
671 $this->provider = $provider;
672 }
673 public function getProvider()
674 {
675 return $this->provider;
676 }
677 public function setPublished($published)
678 {
679 $this->published = $published;
680 }
681 public function getPublished()
682 {
683 return $this->published;
684 }
685 public function setRadius($radius)
686 {
687 $this->radius = $radius;
688 }
689 public function getRadius()
690 {
691 return $this->radius;
692 }
693 public function setTitle($title)
694 {
695 $this->title = $title;
696 }
697 public function getTitle()
698 {
699 return $this->title;
700 }
701 public function setUpdated($updated)
702 {
703 $this->updated = $updated;
704 }
705 public function getUpdated()
706 {
707 return $this->updated;
708 }
709 public function setUrl($url)
710 {
711 $this->url = $url;
712 }
713 public function getUrl()
714 {
715 return $this->url;
716 }
717 public function setVerb($verb)
718 {
719 $this->verb = $verb;
720 }
721 public function getVerb()
722 {
723 return $this->verb;
724 }
725 }
726
727 class Google_Service_Plus_ActivityActor extends Google_Model
728 {
729 protected $internal_gapi_mappings = array(
730 );
731 protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfo';
732 protected $clientSpecificActorInfoDataType = '';
733 public $displayName;
734 public $id;
735 protected $imageType = 'Google_Service_Plus_ActivityActorImage';
736 protected $imageDataType = '';
737 protected $nameType = 'Google_Service_Plus_ActivityActorName';
738 protected $nameDataType = '';
739 public $url;
740 protected $verificationType = 'Google_Service_Plus_ActivityActorVerification';
741 protected $verificationDataType = '';
742
743
744 public function setClientSpecificActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfo $clientSpecificActorInfo)
745 {
746 $this->clientSpecificActorInfo = $clientSpecificActorInfo;
747 }
748 public function getClientSpecificActorInfo()
749 {
750 return $this->clientSpecificActorInfo;
751 }
752 public function setDisplayName($displayName)
753 {
754 $this->displayName = $displayName;
755 }
756 public function getDisplayName()
757 {
758 return $this->displayName;
759 }
760 public function setId($id)
761 {
762 $this->id = $id;
763 }
764 public function getId()
765 {
766 return $this->id;
767 }
768 public function setImage(Google_Service_Plus_ActivityActorImage $image)
769 {
770 $this->image = $image;
771 }
772 public function getImage()
773 {
774 return $this->image;
775 }
776 public function setName(Google_Service_Plus_ActivityActorName $name)
777 {
778 $this->name = $name;
779 }
780 public function getName()
781 {
782 return $this->name;
783 }
784 public function setUrl($url)
785 {
786 $this->url = $url;
787 }
788 public function getUrl()
789 {
790 return $this->url;
791 }
792 public function setVerification(Google_Service_Plus_ActivityActorVerification $verification)
793 {
794 $this->verification = $verification;
795 }
796 public function getVerification()
797 {
798 return $this->verification;
799 }
800 }
801
802 class Google_Service_Plus_ActivityActorClientSpecificActorInfo extends Google_Model
803 {
804 protected $internal_gapi_mappings = array(
805 );
806 protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo';
807 protected $youtubeActorInfoDataType = '';
808
809
810 public function setYoutubeActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
811 {
812 $this->youtubeActorInfo = $youtubeActorInfo;
813 }
814 public function getYoutubeActorInfo()
815 {
816 return $this->youtubeActorInfo;
817 }
818 }
819
820 class Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
821 {
822 protected $internal_gapi_mappings = array(
823 );
824 public $channelId;
825
826
827 public function setChannelId($channelId)
828 {
829 $this->channelId = $channelId;
830 }
831 public function getChannelId()
832 {
833 return $this->channelId;
834 }
835 }
836
837 class Google_Service_Plus_ActivityActorImage extends Google_Model
838 {
839 protected $internal_gapi_mappings = array(
840 );
841 public $url;
842
843
844 public function setUrl($url)
845 {
846 $this->url = $url;
847 }
848 public function getUrl()
849 {
850 return $this->url;
851 }
852 }
853
854 class Google_Service_Plus_ActivityActorName extends Google_Model
855 {
856 protected $internal_gapi_mappings = array(
857 );
858 public $familyName;
859 public $givenName;
860
861
862 public function setFamilyName($familyName)
863 {
864 $this->familyName = $familyName;
865 }
866 public function getFamilyName()
867 {
868 return $this->familyName;
869 }
870 public function setGivenName($givenName)
871 {
872 $this->givenName = $givenName;
873 }
874 public function getGivenName()
875 {
876 return $this->givenName;
877 }
878 }
879
880 class Google_Service_Plus_ActivityActorVerification extends Google_Model
881 {
882 protected $internal_gapi_mappings = array(
883 );
884 public $adHocVerified;
885
886
887 public function setAdHocVerified($adHocVerified)
888 {
889 $this->adHocVerified = $adHocVerified;
890 }
891 public function getAdHocVerified()
892 {
893 return $this->adHocVerified;
894 }
895 }
896
897 class Google_Service_Plus_ActivityFeed extends Google_Collection
898 {
899 protected $collection_key = 'items';
900 protected $internal_gapi_mappings = array(
901 );
902 public $etag;
903 public $id;
904 protected $itemsType = 'Google_Service_Plus_Activity';
905 protected $itemsDataType = 'array';
906 public $kind;
907 public $nextLink;
908 public $nextPageToken;
909 public $selfLink;
910 public $title;
911 public $updated;
912
913
914 public function setEtag($etag)
915 {
916 $this->etag = $etag;
917 }
918 public function getEtag()
919 {
920 return $this->etag;
921 }
922 public function setId($id)
923 {
924 $this->id = $id;
925 }
926 public function getId()
927 {
928 return $this->id;
929 }
930 public function setItems($items)
931 {
932 $this->items = $items;
933 }
934 public function getItems()
935 {
936 return $this->items;
937 }
938 public function setKind($kind)
939 {
940 $this->kind = $kind;
941 }
942 public function getKind()
943 {
944 return $this->kind;
945 }
946 public function setNextLink($nextLink)
947 {
948 $this->nextLink = $nextLink;
949 }
950 public function getNextLink()
951 {
952 return $this->nextLink;
953 }
954 public function setNextPageToken($nextPageToken)
955 {
956 $this->nextPageToken = $nextPageToken;
957 }
958 public function getNextPageToken()
959 {
960 return $this->nextPageToken;
961 }
962 public function setSelfLink($selfLink)
963 {
964 $this->selfLink = $selfLink;
965 }
966 public function getSelfLink()
967 {
968 return $this->selfLink;
969 }
970 public function setTitle($title)
971 {
972 $this->title = $title;
973 }
974 public function getTitle()
975 {
976 return $this->title;
977 }
978 public function setUpdated($updated)
979 {
980 $this->updated = $updated;
981 }
982 public function getUpdated()
983 {
984 return $this->updated;
985 }
986 }
987
988 class Google_Service_Plus_ActivityObject extends Google_Collection
989 {
990 protected $collection_key = 'attachments';
991 protected $internal_gapi_mappings = array(
992 );
993 protected $actorType = 'Google_Service_Plus_ActivityObjectActor';
994 protected $actorDataType = '';
995 protected $attachmentsType = 'Google_Service_Plus_ActivityObjectAttachments';
996 protected $attachmentsDataType = 'array';
997 public $content;
998 public $id;
999 public $objectType;
1000 public $originalContent;
1001 protected $plusonersType = 'Google_Service_Plus_ActivityObjectPlusoners';
1002 protected $plusonersDataType = '';
1003 protected $repliesType = 'Google_Service_Plus_ActivityObjectReplies';
1004 protected $repliesDataType = '';
1005 protected $resharersType = 'Google_Service_Plus_ActivityObjectResharers';
1006 protected $resharersDataType = '';
1007 public $url;
1008
1009
1010 public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
1011 {
1012 $this->actor = $actor;
1013 }
1014 public function getActor()
1015 {
1016 return $this->actor;
1017 }
1018 public function setAttachments($attachments)
1019 {
1020 $this->attachments = $attachments;
1021 }
1022 public function getAttachments()
1023 {
1024 return $this->attachments;
1025 }
1026 public function setContent($content)
1027 {
1028 $this->content = $content;
1029 }
1030 public function getContent()
1031 {
1032 return $this->content;
1033 }
1034 public function setId($id)
1035 {
1036 $this->id = $id;
1037 }
1038 public function getId()
1039 {
1040 return $this->id;
1041 }
1042 public function setObjectType($objectType)
1043 {
1044 $this->objectType = $objectType;
1045 }
1046 public function getObjectType()
1047 {
1048 return $this->objectType;
1049 }
1050 public function setOriginalContent($originalContent)
1051 {
1052 $this->originalContent = $originalContent;
1053 }
1054 public function getOriginalContent()
1055 {
1056 return $this->originalContent;
1057 }
1058 public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
1059 {
1060 $this->plusoners = $plusoners;
1061 }
1062 public function getPlusoners()
1063 {
1064 return $this->plusoners;
1065 }
1066 public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
1067 {
1068 $this->replies = $replies;
1069 }
1070 public function getReplies()
1071 {
1072 return $this->replies;
1073 }
1074 public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
1075 {
1076 $this->resharers = $resharers;
1077 }
1078 public function getResharers()
1079 {
1080 return $this->resharers;
1081 }
1082 public function setUrl($url)
1083 {
1084 $this->url = $url;
1085 }
1086 public function getUrl()
1087 {
1088 return $this->url;
1089 }
1090 }
1091
1092 class Google_Service_Plus_ActivityObjectActor extends Google_Model
1093 {
1094 protected $internal_gapi_mappings = array(
1095 );
1096 protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo';
1097 protected $clientSpecificActorInfoDataType = '';
1098 public $displayName;
1099 public $id;
1100 protected $imageType = 'Google_Service_Plus_ActivityObjectActorImage';
1101 protected $imageDataType = '';
1102 public $url;
1103 protected $verificationType = 'Google_Service_Plus_ActivityObjectActorVerification';
1104 protected $verificationDataType = '';
1105
1106
1107 public function setClientSpecificActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo $clientSpecificActorInfo)
1108 {
1109 $this->clientSpecificActorInfo = $clientSpecificActorInfo;
1110 }
1111 public function getClientSpecificActorInfo()
1112 {
1113 return $this->clientSpecificActorInfo;
1114 }
1115 public function setDisplayName($displayName)
1116 {
1117 $this->displayName = $displayName;
1118 }
1119 public function getDisplayName()
1120 {
1121 return $this->displayName;
1122 }
1123 public function setId($id)
1124 {
1125 $this->id = $id;
1126 }
1127 public function getId()
1128 {
1129 return $this->id;
1130 }
1131 public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
1132 {
1133 $this->image = $image;
1134 }
1135 public function getImage()
1136 {
1137 return $this->image;
1138 }
1139 public function setUrl($url)
1140 {
1141 $this->url = $url;
1142 }
1143 public function getUrl()
1144 {
1145 return $this->url;
1146 }
1147 public function setVerification(Google_Service_Plus_ActivityObjectActorVerification $verification)
1148 {
1149 $this->verification = $verification;
1150 }
1151 public function getVerification()
1152 {
1153 return $this->verification;
1154 }
1155 }
1156
1157 class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo extends Google_Model
1158 {
1159 protected $internal_gapi_mappings = array(
1160 );
1161 protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo';
1162 protected $youtubeActorInfoDataType = '';
1163
1164
1165 public function setYoutubeActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
1166 {
1167 $this->youtubeActorInfo = $youtubeActorInfo;
1168 }
1169 public function getYoutubeActorInfo()
1170 {
1171 return $this->youtubeActorInfo;
1172 }
1173 }
1174
1175 class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
1176 {
1177 protected $internal_gapi_mappings = array(
1178 );
1179 public $channelId;
1180
1181
1182 public function setChannelId($channelId)
1183 {
1184 $this->channelId = $channelId;
1185 }
1186 public function getChannelId()
1187 {
1188 return $this->channelId;
1189 }
1190 }
1191
1192 class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
1193 {
1194 protected $internal_gapi_mappings = array(
1195 );
1196 public $url;
1197
1198
1199 public function setUrl($url)
1200 {
1201 $this->url = $url;
1202 }
1203 public function getUrl()
1204 {
1205 return $this->url;
1206 }
1207 }
1208
1209 class Google_Service_Plus_ActivityObjectActorVerification extends Google_Model
1210 {
1211 protected $internal_gapi_mappings = array(
1212 );
1213 public $adHocVerified;
1214
1215
1216 public function setAdHocVerified($adHocVerified)
1217 {
1218 $this->adHocVerified = $adHocVerified;
1219 }
1220 public function getAdHocVerified()
1221 {
1222 return $this->adHocVerified;
1223 }
1224 }
1225
1226 class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
1227 {
1228 protected $collection_key = 'thumbnails';
1229 protected $internal_gapi_mappings = array(
1230 );
1231 public $content;
1232 public $displayName;
1233 protected $embedType = 'Google_Service_Plus_ActivityObjectAttachmentsEmbed';
1234 protected $embedDataType = '';
1235 protected $fullImageType = 'Google_Service_Plus_ActivityObjectAttachmentsFullImage';
1236 protected $fullImageDataType = '';
1237 public $id;
1238 protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsImage';
1239 protected $imageDataType = '';
1240 public $objectType;
1241 protected $thumbnailsType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnails';
1242 protected $thumbnailsDataType = 'array';
1243 public $url;
1244
1245
1246 public function setContent($content)
1247 {
1248 $this->content = $content;
1249 }
1250 public function getContent()
1251 {
1252 return $this->content;
1253 }
1254 public function setDisplayName($displayName)
1255 {
1256 $this->displayName = $displayName;
1257 }
1258 public function getDisplayName()
1259 {
1260 return $this->displayName;
1261 }
1262 public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
1263 {
1264 $this->embed = $embed;
1265 }
1266 public function getEmbed()
1267 {
1268 return $this->embed;
1269 }
1270 public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
1271 {
1272 $this->fullImage = $fullImage;
1273 }
1274 public function getFullImage()
1275 {
1276 return $this->fullImage;
1277 }
1278 public function setId($id)
1279 {
1280 $this->id = $id;
1281 }
1282 public function getId()
1283 {
1284 return $this->id;
1285 }
1286 public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
1287 {
1288 $this->image = $image;
1289 }
1290 public function getImage()
1291 {
1292 return $this->image;
1293 }
1294 public function setObjectType($objectType)
1295 {
1296 $this->objectType = $objectType;
1297 }
1298 public function getObjectType()
1299 {
1300 return $this->objectType;
1301 }
1302 public function setThumbnails($thumbnails)
1303 {
1304 $this->thumbnails = $thumbnails;
1305 }
1306 public function getThumbnails()
1307 {
1308 return $this->thumbnails;
1309 }
1310 public function setUrl($url)
1311 {
1312 $this->url = $url;
1313 }
1314 public function getUrl()
1315 {
1316 return $this->url;
1317 }
1318 }
1319
1320 class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
1321 {
1322 protected $internal_gapi_mappings = array(
1323 );
1324 public $type;
1325 public $url;
1326
1327
1328 public function setType($type)
1329 {
1330 $this->type = $type;
1331 }
1332 public function getType()
1333 {
1334 return $this->type;
1335 }
1336 public function setUrl($url)
1337 {
1338 $this->url = $url;
1339 }
1340 public function getUrl()
1341 {
1342 return $this->url;
1343 }
1344 }
1345
1346 class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Model
1347 {
1348 protected $internal_gapi_mappings = array(
1349 );
1350 public $height;
1351 public $type;
1352 public $url;
1353 public $width;
1354
1355
1356 public function setHeight($height)
1357 {
1358 $this->height = $height;
1359 }
1360 public function getHeight()
1361 {
1362 return $this->height;
1363 }
1364 public function setType($type)
1365 {
1366 $this->type = $type;
1367 }
1368 public function getType()
1369 {
1370 return $this->type;
1371 }
1372 public function setUrl($url)
1373 {
1374 $this->url = $url;
1375 }
1376 public function getUrl()
1377 {
1378 return $this->url;
1379 }
1380 public function setWidth($width)
1381 {
1382 $this->width = $width;
1383 }
1384 public function getWidth()
1385 {
1386 return $this->width;
1387 }
1388 }
1389
1390 class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
1391 {
1392 protected $internal_gapi_mappings = array(
1393 );
1394 public $height;
1395 public $type;
1396 public $url;
1397 public $width;
1398
1399
1400 public function setHeight($height)
1401 {
1402 $this->height = $height;
1403 }
1404 public function getHeight()
1405 {
1406 return $this->height;
1407 }
1408 public function setType($type)
1409 {
1410 $this->type = $type;
1411 }
1412 public function getType()
1413 {
1414 return $this->type;
1415 }
1416 public function setUrl($url)
1417 {
1418 $this->url = $url;
1419 }
1420 public function getUrl()
1421 {
1422 return $this->url;
1423 }
1424 public function setWidth($width)
1425 {
1426 $this->width = $width;
1427 }
1428 public function getWidth()
1429 {
1430 return $this->width;
1431 }
1432 }
1433
1434 class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Model
1435 {
1436 protected $internal_gapi_mappings = array(
1437 );
1438 public $description;
1439 protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage';
1440 protected $imageDataType = '';
1441 public $url;
1442
1443
1444 public function setDescription($description)
1445 {
1446 $this->description = $description;
1447 }
1448 public function getDescription()
1449 {
1450 return $this->description;
1451 }
1452 public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
1453 {
1454 $this->image = $image;
1455 }
1456 public function getImage()
1457 {
1458 return $this->image;
1459 }
1460 public function setUrl($url)
1461 {
1462 $this->url = $url;
1463 }
1464 public function getUrl()
1465 {
1466 return $this->url;
1467 }
1468 }
1469
1470 class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
1471 {
1472 protected $internal_gapi_mappings = array(
1473 );
1474 public $height;
1475 public $type;
1476 public $url;
1477 public $width;
1478
1479
1480 public function setHeight($height)
1481 {
1482 $this->height = $height;
1483 }
1484 public function getHeight()
1485 {
1486 return $this->height;
1487 }
1488 public function setType($type)
1489 {
1490 $this->type = $type;
1491 }
1492 public function getType()
1493 {
1494 return $this->type;
1495 }
1496 public function setUrl($url)
1497 {
1498 $this->url = $url;
1499 }
1500 public function getUrl()
1501 {
1502 return $this->url;
1503 }
1504 public function setWidth($width)
1505 {
1506 $this->width = $width;
1507 }
1508 public function getWidth()
1509 {
1510 return $this->width;
1511 }
1512 }
1513
1514 class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
1515 {
1516 protected $internal_gapi_mappings = array(
1517 );
1518 public $selfLink;
1519 public $totalItems;
1520
1521
1522 public function setSelfLink($selfLink)
1523 {
1524 $this->selfLink = $selfLink;
1525 }
1526 public function getSelfLink()
1527 {
1528 return $this->selfLink;
1529 }
1530 public function setTotalItems($totalItems)
1531 {
1532 $this->totalItems = $totalItems;
1533 }
1534 public function getTotalItems()
1535 {
1536 return $this->totalItems;
1537 }
1538 }
1539
1540 class Google_Service_Plus_ActivityObjectReplies extends Google_Model
1541 {
1542 protected $internal_gapi_mappings = array(
1543 );
1544 public $selfLink;
1545 public $totalItems;
1546
1547
1548 public function setSelfLink($selfLink)
1549 {
1550 $this->selfLink = $selfLink;
1551 }
1552 public function getSelfLink()
1553 {
1554 return $this->selfLink;
1555 }
1556 public function setTotalItems($totalItems)
1557 {
1558 $this->totalItems = $totalItems;
1559 }
1560 public function getTotalItems()
1561 {
1562 return $this->totalItems;
1563 }
1564 }
1565
1566 class Google_Service_Plus_ActivityObjectResharers extends Google_Model
1567 {
1568 protected $internal_gapi_mappings = array(
1569 );
1570 public $selfLink;
1571 public $totalItems;
1572
1573
1574 public function setSelfLink($selfLink)
1575 {
1576 $this->selfLink = $selfLink;
1577 }
1578 public function getSelfLink()
1579 {
1580 return $this->selfLink;
1581 }
1582 public function setTotalItems($totalItems)
1583 {
1584 $this->totalItems = $totalItems;
1585 }
1586 public function getTotalItems()
1587 {
1588 return $this->totalItems;
1589 }
1590 }
1591
1592 class Google_Service_Plus_ActivityProvider extends Google_Model
1593 {
1594 protected $internal_gapi_mappings = array(
1595 );
1596 public $title;
1597
1598
1599 public function setTitle($title)
1600 {
1601 $this->title = $title;
1602 }
1603 public function getTitle()
1604 {
1605 return $this->title;
1606 }
1607 }
1608
1609 class Google_Service_Plus_Comment extends Google_Collection
1610 {
1611 protected $collection_key = 'inReplyTo';
1612 protected $internal_gapi_mappings = array(
1613 );
1614 protected $actorType = 'Google_Service_Plus_CommentActor';
1615 protected $actorDataType = '';
1616 public $etag;
1617 public $id;
1618 protected $inReplyToType = 'Google_Service_Plus_CommentInReplyTo';
1619 protected $inReplyToDataType = 'array';
1620 public $kind;
1621 protected $objectType = 'Google_Service_Plus_CommentObject';
1622 protected $objectDataType = '';
1623 protected $plusonersType = 'Google_Service_Plus_CommentPlusoners';
1624 protected $plusonersDataType = '';
1625 public $published;
1626 public $selfLink;
1627 public $updated;
1628 public $verb;
1629
1630
1631 public function setActor(Google_Service_Plus_CommentActor $actor)
1632 {
1633 $this->actor = $actor;
1634 }
1635 public function getActor()
1636 {
1637 return $this->actor;
1638 }
1639 public function setEtag($etag)
1640 {
1641 $this->etag = $etag;
1642 }
1643 public function getEtag()
1644 {
1645 return $this->etag;
1646 }
1647 public function setId($id)
1648 {
1649 $this->id = $id;
1650 }
1651 public function getId()
1652 {
1653 return $this->id;
1654 }
1655 public function setInReplyTo($inReplyTo)
1656 {
1657 $this->inReplyTo = $inReplyTo;
1658 }
1659 public function getInReplyTo()
1660 {
1661 return $this->inReplyTo;
1662 }
1663 public function setKind($kind)
1664 {
1665 $this->kind = $kind;
1666 }
1667 public function getKind()
1668 {
1669 return $this->kind;
1670 }
1671 public function setObject(Google_Service_Plus_CommentObject $object)
1672 {
1673 $this->object = $object;
1674 }
1675 public function getObject()
1676 {
1677 return $this->object;
1678 }
1679 public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
1680 {
1681 $this->plusoners = $plusoners;
1682 }
1683 public function getPlusoners()
1684 {
1685 return $this->plusoners;
1686 }
1687 public function setPublished($published)
1688 {
1689 $this->published = $published;
1690 }
1691 public function getPublished()
1692 {
1693 return $this->published;
1694 }
1695 public function setSelfLink($selfLink)
1696 {
1697 $this->selfLink = $selfLink;
1698 }
1699 public function getSelfLink()
1700 {
1701 return $this->selfLink;
1702 }
1703 public function setUpdated($updated)
1704 {
1705 $this->updated = $updated;
1706 }
1707 public function getUpdated()
1708 {
1709 return $this->updated;
1710 }
1711 public function setVerb($verb)
1712 {
1713 $this->verb = $verb;
1714 }
1715 public function getVerb()
1716 {
1717 return $this->verb;
1718 }
1719 }
1720
1721 class Google_Service_Plus_CommentActor extends Google_Model
1722 {
1723 protected $internal_gapi_mappings = array(
1724 );
1725 protected $clientSpecificActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfo';
1726 protected $clientSpecificActorInfoDataType = '';
1727 public $displayName;
1728 public $id;
1729 protected $imageType = 'Google_Service_Plus_CommentActorImage';
1730 protected $imageDataType = '';
1731 public $url;
1732 protected $verificationType = 'Google_Service_Plus_CommentActorVerification';
1733 protected $verificationDataType = '';
1734
1735
1736 public function setClientSpecificActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfo $clientSpecificActorInfo)
1737 {
1738 $this->clientSpecificActorInfo = $clientSpecificActorInfo;
1739 }
1740 public function getClientSpecificActorInfo()
1741 {
1742 return $this->clientSpecificActorInfo;
1743 }
1744 public function setDisplayName($displayName)
1745 {
1746 $this->displayName = $displayName;
1747 }
1748 public function getDisplayName()
1749 {
1750 return $this->displayName;
1751 }
1752 public function setId($id)
1753 {
1754 $this->id = $id;
1755 }
1756 public function getId()
1757 {
1758 return $this->id;
1759 }
1760 public function setImage(Google_Service_Plus_CommentActorImage $image)
1761 {
1762 $this->image = $image;
1763 }
1764 public function getImage()
1765 {
1766 return $this->image;
1767 }
1768 public function setUrl($url)
1769 {
1770 $this->url = $url;
1771 }
1772 public function getUrl()
1773 {
1774 return $this->url;
1775 }
1776 public function setVerification(Google_Service_Plus_CommentActorVerification $verification)
1777 {
1778 $this->verification = $verification;
1779 }
1780 public function getVerification()
1781 {
1782 return $this->verification;
1783 }
1784 }
1785
1786 class Google_Service_Plus_CommentActorClientSpecificActorInfo extends Google_Model
1787 {
1788 protected $internal_gapi_mappings = array(
1789 );
1790 protected $youtubeActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo';
1791 protected $youtubeActorInfoDataType = '';
1792
1793
1794 public function setYoutubeActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
1795 {
1796 $this->youtubeActorInfo = $youtubeActorInfo;
1797 }
1798 public function getYoutubeActorInfo()
1799 {
1800 return $this->youtubeActorInfo;
1801 }
1802 }
1803
1804 class Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
1805 {
1806 protected $internal_gapi_mappings = array(
1807 );
1808 public $channelId;
1809
1810
1811 public function setChannelId($channelId)
1812 {
1813 $this->channelId = $channelId;
1814 }
1815 public function getChannelId()
1816 {
1817 return $this->channelId;
1818 }
1819 }
1820
1821 class Google_Service_Plus_CommentActorImage extends Google_Model
1822 {
1823 protected $internal_gapi_mappings = array(
1824 );
1825 public $url;
1826
1827
1828 public function setUrl($url)
1829 {
1830 $this->url = $url;
1831 }
1832 public function getUrl()
1833 {
1834 return $this->url;
1835 }
1836 }
1837
1838 class Google_Service_Plus_CommentActorVerification extends Google_Model
1839 {
1840 protected $internal_gapi_mappings = array(
1841 );
1842 public $adHocVerified;
1843
1844
1845 public function setAdHocVerified($adHocVerified)
1846 {
1847 $this->adHocVerified = $adHocVerified;
1848 }
1849 public function getAdHocVerified()
1850 {
1851 return $this->adHocVerified;
1852 }
1853 }
1854
1855 class Google_Service_Plus_CommentFeed extends Google_Collection
1856 {
1857 protected $collection_key = 'items';
1858 protected $internal_gapi_mappings = array(
1859 );
1860 public $etag;
1861 public $id;
1862 protected $itemsType = 'Google_Service_Plus_Comment';
1863 protected $itemsDataType = 'array';
1864 public $kind;
1865 public $nextLink;
1866 public $nextPageToken;
1867 public $title;
1868 public $updated;
1869
1870
1871 public function setEtag($etag)
1872 {
1873 $this->etag = $etag;
1874 }
1875 public function getEtag()
1876 {
1877 return $this->etag;
1878 }
1879 public function setId($id)
1880 {
1881 $this->id = $id;
1882 }
1883 public function getId()
1884 {
1885 return $this->id;
1886 }
1887 public function setItems($items)
1888 {
1889 $this->items = $items;
1890 }
1891 public function getItems()
1892 {
1893 return $this->items;
1894 }
1895 public function setKind($kind)
1896 {
1897 $this->kind = $kind;
1898 }
1899 public function getKind()
1900 {
1901 return $this->kind;
1902 }
1903 public function setNextLink($nextLink)
1904 {
1905 $this->nextLink = $nextLink;
1906 }
1907 public function getNextLink()
1908 {
1909 return $this->nextLink;
1910 }
1911 public function setNextPageToken($nextPageToken)
1912 {
1913 $this->nextPageToken = $nextPageToken;
1914 }
1915 public function getNextPageToken()
1916 {
1917 return $this->nextPageToken;
1918 }
1919 public function setTitle($title)
1920 {
1921 $this->title = $title;
1922 }
1923 public function getTitle()
1924 {
1925 return $this->title;
1926 }
1927 public function setUpdated($updated)
1928 {
1929 $this->updated = $updated;
1930 }
1931 public function getUpdated()
1932 {
1933 return $this->updated;
1934 }
1935 }
1936
1937 class Google_Service_Plus_CommentInReplyTo extends Google_Model
1938 {
1939 protected $internal_gapi_mappings = array(
1940 );
1941 public $id;
1942 public $url;
1943
1944
1945 public function setId($id)
1946 {
1947 $this->id = $id;
1948 }
1949 public function getId()
1950 {
1951 return $this->id;
1952 }
1953 public function setUrl($url)
1954 {
1955 $this->url = $url;
1956 }
1957 public function getUrl()
1958 {
1959 return $this->url;
1960 }
1961 }
1962
1963 class Google_Service_Plus_CommentObject extends Google_Model
1964 {
1965 protected $internal_gapi_mappings = array(
1966 );
1967 public $content;
1968 public $objectType;
1969 public $originalContent;
1970
1971
1972 public function setContent($content)
1973 {
1974 $this->content = $content;
1975 }
1976 public function getContent()
1977 {
1978 return $this->content;
1979 }
1980 public function setObjectType($objectType)
1981 {
1982 $this->objectType = $objectType;
1983 }
1984 public function getObjectType()
1985 {
1986 return $this->objectType;
1987 }
1988 public function setOriginalContent($originalContent)
1989 {
1990 $this->originalContent = $originalContent;
1991 }
1992 public function getOriginalContent()
1993 {
1994 return $this->originalContent;
1995 }
1996 }
1997
1998 class Google_Service_Plus_CommentPlusoners extends Google_Model
1999 {
2000 protected $internal_gapi_mappings = array(
2001 );
2002 public $totalItems;
2003
2004
2005 public function setTotalItems($totalItems)
2006 {
2007 $this->totalItems = $totalItems;
2008 }
2009 public function getTotalItems()
2010 {
2011 return $this->totalItems;
2012 }
2013 }
2014
2015 class Google_Service_Plus_PeopleFeed extends Google_Collection
2016 {
2017 protected $collection_key = 'items';
2018 protected $internal_gapi_mappings = array(
2019 );
2020 public $etag;
2021 protected $itemsType = 'Google_Service_Plus_Person';
2022 protected $itemsDataType = 'array';
2023 public $kind;
2024 public $nextPageToken;
2025 public $selfLink;
2026 public $title;
2027 public $totalItems;
2028
2029
2030 public function setEtag($etag)
2031 {
2032 $this->etag = $etag;
2033 }
2034 public function getEtag()
2035 {
2036 return $this->etag;
2037 }
2038 public function setItems($items)
2039 {
2040 $this->items = $items;
2041 }
2042 public function getItems()
2043 {
2044 return $this->items;
2045 }
2046 public function setKind($kind)
2047 {
2048 $this->kind = $kind;
2049 }
2050 public function getKind()
2051 {
2052 return $this->kind;
2053 }
2054 public function setNextPageToken($nextPageToken)
2055 {
2056 $this->nextPageToken = $nextPageToken;
2057 }
2058 public function getNextPageToken()
2059 {
2060 return $this->nextPageToken;
2061 }
2062 public function setSelfLink($selfLink)
2063 {
2064 $this->selfLink = $selfLink;
2065 }
2066 public function getSelfLink()
2067 {
2068 return $this->selfLink;
2069 }
2070 public function setTitle($title)
2071 {
2072 $this->title = $title;
2073 }
2074 public function getTitle()
2075 {
2076 return $this->title;
2077 }
2078 public function setTotalItems($totalItems)
2079 {
2080 $this->totalItems = $totalItems;
2081 }
2082 public function getTotalItems()
2083 {
2084 return $this->totalItems;
2085 }
2086 }
2087
2088 class Google_Service_Plus_Person extends Google_Collection
2089 {
2090 protected $collection_key = 'urls';
2091 protected $internal_gapi_mappings = array(
2092 );
2093 public $aboutMe;
2094 protected $ageRangeType = 'Google_Service_Plus_PersonAgeRange';
2095 protected $ageRangeDataType = '';
2096 public $birthday;
2097 public $braggingRights;
2098 public $circledByCount;
2099 protected $coverType = 'Google_Service_Plus_PersonCover';
2100 protected $coverDataType = '';
2101 public $currentLocation;
2102 public $displayName;
2103 public $domain;
2104 protected $emailsType = 'Google_Service_Plus_PersonEmails';
2105 protected $emailsDataType = 'array';
2106 public $etag;
2107 public $gender;
2108 public $id;
2109 protected $imageType = 'Google_Service_Plus_PersonImage';
2110 protected $imageDataType = '';
2111 public $isPlusUser;
2112 public $kind;
2113 public $language;
2114 protected $nameType = 'Google_Service_Plus_PersonName';
2115 protected $nameDataType = '';
2116 public $nickname;
2117 public $objectType;
2118 public $occupation;
2119 protected $organizationsType = 'Google_Service_Plus_PersonOrganizations';
2120 protected $organizationsDataType = 'array';
2121 protected $placesLivedType = 'Google_Service_Plus_PersonPlacesLived';
2122 protected $placesLivedDataType = 'array';
2123 public $plusOneCount;
2124 public $relationshipStatus;
2125 public $skills;
2126 public $tagline;
2127 public $url;
2128 protected $urlsType = 'Google_Service_Plus_PersonUrls';
2129 protected $urlsDataType = 'array';
2130 public $verified;
2131
2132
2133 public function setAboutMe($aboutMe)
2134 {
2135 $this->aboutMe = $aboutMe;
2136 }
2137 public function getAboutMe()
2138 {
2139 return $this->aboutMe;
2140 }
2141 public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
2142 {
2143 $this->ageRange = $ageRange;
2144 }
2145 public function getAgeRange()
2146 {
2147 return $this->ageRange;
2148 }
2149 public function setBirthday($birthday)
2150 {
2151 $this->birthday = $birthday;
2152 }
2153 public function getBirthday()
2154 {
2155 return $this->birthday;
2156 }
2157 public function setBraggingRights($braggingRights)
2158 {
2159 $this->braggingRights = $braggingRights;
2160 }
2161 public function getBraggingRights()
2162 {
2163 return $this->braggingRights;
2164 }
2165 public function setCircledByCount($circledByCount)
2166 {
2167 $this->circledByCount = $circledByCount;
2168 }
2169 public function getCircledByCount()
2170 {
2171 return $this->circledByCount;
2172 }
2173 public function setCover(Google_Service_Plus_PersonCover $cover)
2174 {
2175 $this->cover = $cover;
2176 }
2177 public function getCover()
2178 {
2179 return $this->cover;
2180 }
2181 public function setCurrentLocation($currentLocation)
2182 {
2183 $this->currentLocation = $currentLocation;
2184 }
2185 public function getCurrentLocation()
2186 {
2187 return $this->currentLocation;
2188 }
2189 public function setDisplayName($displayName)
2190 {
2191 $this->displayName = $displayName;
2192 }
2193 public function getDisplayName()
2194 {
2195 return $this->displayName;
2196 }
2197 public function setDomain($domain)
2198 {
2199 $this->domain = $domain;
2200 }
2201 public function getDomain()
2202 {
2203 return $this->domain;
2204 }
2205 public function setEmails($emails)
2206 {
2207 $this->emails = $emails;
2208 }
2209 public function getEmails()
2210 {
2211 return $this->emails;
2212 }
2213 public function setEtag($etag)
2214 {
2215 $this->etag = $etag;
2216 }
2217 public function getEtag()
2218 {
2219 return $this->etag;
2220 }
2221 public function setGender($gender)
2222 {
2223 $this->gender = $gender;
2224 }
2225 public function getGender()
2226 {
2227 return $this->gender;
2228 }
2229 public function setId($id)
2230 {
2231 $this->id = $id;
2232 }
2233 public function getId()
2234 {
2235 return $this->id;
2236 }
2237 public function setImage(Google_Service_Plus_PersonImage $image)
2238 {
2239 $this->image = $image;
2240 }
2241 public function getImage()
2242 {
2243 return $this->image;
2244 }
2245 public function setIsPlusUser($isPlusUser)
2246 {
2247 $this->isPlusUser = $isPlusUser;
2248 }
2249 public function getIsPlusUser()
2250 {
2251 return $this->isPlusUser;
2252 }
2253 public function setKind($kind)
2254 {
2255 $this->kind = $kind;
2256 }
2257 public function getKind()
2258 {
2259 return $this->kind;
2260 }
2261 public function setLanguage($language)
2262 {
2263 $this->language = $language;
2264 }
2265 public function getLanguage()
2266 {
2267 return $this->language;
2268 }
2269 public function setName(Google_Service_Plus_PersonName $name)
2270 {
2271 $this->name = $name;
2272 }
2273 public function getName()
2274 {
2275 return $this->name;
2276 }
2277 public function setNickname($nickname)
2278 {
2279 $this->nickname = $nickname;
2280 }
2281 public function getNickname()
2282 {
2283 return $this->nickname;
2284 }
2285 public function setObjectType($objectType)
2286 {
2287 $this->objectType = $objectType;
2288 }
2289 public function getObjectType()
2290 {
2291 return $this->objectType;
2292 }
2293 public function setOccupation($occupation)
2294 {
2295 $this->occupation = $occupation;
2296 }
2297 public function getOccupation()
2298 {
2299 return $this->occupation;
2300 }
2301 public function setOrganizations($organizations)
2302 {
2303 $this->organizations = $organizations;
2304 }
2305 public function getOrganizations()
2306 {
2307 return $this->organizations;
2308 }
2309 public function setPlacesLived($placesLived)
2310 {
2311 $this->placesLived = $placesLived;
2312 }
2313 public function getPlacesLived()
2314 {
2315 return $this->placesLived;
2316 }
2317 public function setPlusOneCount($plusOneCount)
2318 {
2319 $this->plusOneCount = $plusOneCount;
2320 }
2321 public function getPlusOneCount()
2322 {
2323 return $this->plusOneCount;
2324 }
2325 public function setRelationshipStatus($relationshipStatus)
2326 {
2327 $this->relationshipStatus = $relationshipStatus;
2328 }
2329 public function getRelationshipStatus()
2330 {
2331 return $this->relationshipStatus;
2332 }
2333 public function setSkills($skills)
2334 {
2335 $this->skills = $skills;
2336 }
2337 public function getSkills()
2338 {
2339 return $this->skills;
2340 }
2341 public function setTagline($tagline)
2342 {
2343 $this->tagline = $tagline;
2344 }
2345 public function getTagline()
2346 {
2347 return $this->tagline;
2348 }
2349 public function setUrl($url)
2350 {
2351 $this->url = $url;
2352 }
2353 public function getUrl()
2354 {
2355 return $this->url;
2356 }
2357 public function setUrls($urls)
2358 {
2359 $this->urls = $urls;
2360 }
2361 public function getUrls()
2362 {
2363 return $this->urls;
2364 }
2365 public function setVerified($verified)
2366 {
2367 $this->verified = $verified;
2368 }
2369 public function getVerified()
2370 {
2371 return $this->verified;
2372 }
2373 }
2374
2375 class Google_Service_Plus_PersonAgeRange extends Google_Model
2376 {
2377 protected $internal_gapi_mappings = array(
2378 );
2379 public $max;
2380 public $min;
2381
2382
2383 public function setMax($max)
2384 {
2385 $this->max = $max;
2386 }
2387 public function getMax()
2388 {
2389 return $this->max;
2390 }
2391 public function setMin($min)
2392 {
2393 $this->min = $min;
2394 }
2395 public function getMin()
2396 {
2397 return $this->min;
2398 }
2399 }
2400
2401 class Google_Service_Plus_PersonCover extends Google_Model
2402 {
2403 protected $internal_gapi_mappings = array(
2404 );
2405 protected $coverInfoType = 'Google_Service_Plus_PersonCoverCoverInfo';
2406 protected $coverInfoDataType = '';
2407 protected $coverPhotoType = 'Google_Service_Plus_PersonCoverCoverPhoto';
2408 protected $coverPhotoDataType = '';
2409 public $layout;
2410
2411
2412 public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
2413 {
2414 $this->coverInfo = $coverInfo;
2415 }
2416 public function getCoverInfo()
2417 {
2418 return $this->coverInfo;
2419 }
2420 public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
2421 {
2422 $this->coverPhoto = $coverPhoto;
2423 }
2424 public function getCoverPhoto()
2425 {
2426 return $this->coverPhoto;
2427 }
2428 public function setLayout($layout)
2429 {
2430 $this->layout = $layout;
2431 }
2432 public function getLayout()
2433 {
2434 return $this->layout;
2435 }
2436 }
2437
2438 class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
2439 {
2440 protected $internal_gapi_mappings = array(
2441 );
2442 public $leftImageOffset;
2443 public $topImageOffset;
2444
2445
2446 public function setLeftImageOffset($leftImageOffset)
2447 {
2448 $this->leftImageOffset = $leftImageOffset;
2449 }
2450 public function getLeftImageOffset()
2451 {
2452 return $this->leftImageOffset;
2453 }
2454 public function setTopImageOffset($topImageOffset)
2455 {
2456 $this->topImageOffset = $topImageOffset;
2457 }
2458 public function getTopImageOffset()
2459 {
2460 return $this->topImageOffset;
2461 }
2462 }
2463
2464 class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
2465 {
2466 protected $internal_gapi_mappings = array(
2467 );
2468 public $height;
2469 public $url;
2470 public $width;
2471
2472
2473 public function setHeight($height)
2474 {
2475 $this->height = $height;
2476 }
2477 public function getHeight()
2478 {
2479 return $this->height;
2480 }
2481 public function setUrl($url)
2482 {
2483 $this->url = $url;
2484 }
2485 public function getUrl()
2486 {
2487 return $this->url;
2488 }
2489 public function setWidth($width)
2490 {
2491 $this->width = $width;
2492 }
2493 public function getWidth()
2494 {
2495 return $this->width;
2496 }
2497 }
2498
2499 class Google_Service_Plus_PersonEmails extends Google_Model
2500 {
2501 protected $internal_gapi_mappings = array(
2502 );
2503 public $type;
2504 public $value;
2505
2506
2507 public function setType($type)
2508 {
2509 $this->type = $type;
2510 }
2511 public function getType()
2512 {
2513 return $this->type;
2514 }
2515 public function setValue($value)
2516 {
2517 $this->value = $value;
2518 }
2519 public function getValue()
2520 {
2521 return $this->value;
2522 }
2523 }
2524
2525 class Google_Service_Plus_PersonImage extends Google_Model
2526 {
2527 protected $internal_gapi_mappings = array(
2528 );
2529 public $isDefault;
2530 public $url;
2531
2532
2533 public function setIsDefault($isDefault)
2534 {
2535 $this->isDefault = $isDefault;
2536 }
2537 public function getIsDefault()
2538 {
2539 return $this->isDefault;
2540 }
2541 public function setUrl($url)
2542 {
2543 $this->url = $url;
2544 }
2545 public function getUrl()
2546 {
2547 return $this->url;
2548 }
2549 }
2550
2551 class Google_Service_Plus_PersonName extends Google_Model
2552 {
2553 protected $internal_gapi_mappings = array(
2554 );
2555 public $familyName;
2556 public $formatted;
2557 public $givenName;
2558 public $honorificPrefix;
2559 public $honorificSuffix;
2560 public $middleName;
2561
2562
2563 public function setFamilyName($familyName)
2564 {
2565 $this->familyName = $familyName;
2566 }
2567 public function getFamilyName()
2568 {
2569 return $this->familyName;
2570 }
2571 public function setFormatted($formatted)
2572 {
2573 $this->formatted = $formatted;
2574 }
2575 public function getFormatted()
2576 {
2577 return $this->formatted;
2578 }
2579 public function setGivenName($givenName)
2580 {
2581 $this->givenName = $givenName;
2582 }
2583 public function getGivenName()
2584 {
2585 return $this->givenName;
2586 }
2587 public function setHonorificPrefix($honorificPrefix)
2588 {
2589 $this->honorificPrefix = $honorificPrefix;
2590 }
2591 public function getHonorificPrefix()
2592 {
2593 return $this->honorificPrefix;
2594 }
2595 public function setHonorificSuffix($honorificSuffix)
2596 {
2597 $this->honorificSuffix = $honorificSuffix;
2598 }
2599 public function getHonorificSuffix()
2600 {
2601 return $this->honorificSuffix;
2602 }
2603 public function setMiddleName($middleName)
2604 {
2605 $this->middleName = $middleName;
2606 }
2607 public function getMiddleName()
2608 {
2609 return $this->middleName;
2610 }
2611 }
2612
2613 class Google_Service_Plus_PersonOrganizations extends Google_Model
2614 {
2615 protected $internal_gapi_mappings = array(
2616 );
2617 public $department;
2618 public $description;
2619 public $endDate;
2620 public $location;
2621 public $name;
2622 public $primary;
2623 public $startDate;
2624 public $title;
2625 public $type;
2626
2627
2628 public function setDepartment($department)
2629 {
2630 $this->department = $department;
2631 }
2632 public function getDepartment()
2633 {
2634 return $this->department;
2635 }
2636 public function setDescription($description)
2637 {
2638 $this->description = $description;
2639 }
2640 public function getDescription()
2641 {
2642 return $this->description;
2643 }
2644 public function setEndDate($endDate)
2645 {
2646 $this->endDate = $endDate;
2647 }
2648 public function getEndDate()
2649 {
2650 return $this->endDate;
2651 }
2652 public function setLocation($location)
2653 {
2654 $this->location = $location;
2655 }
2656 public function getLocation()
2657 {
2658 return $this->location;
2659 }
2660 public function setName($name)
2661 {
2662 $this->name = $name;
2663 }
2664 public function getName()
2665 {
2666 return $this->name;
2667 }
2668 public function setPrimary($primary)
2669 {
2670 $this->primary = $primary;
2671 }
2672 public function getPrimary()
2673 {
2674 return $this->primary;
2675 }
2676 public function setStartDate($startDate)
2677 {
2678 $this->startDate = $startDate;
2679 }
2680 public function getStartDate()
2681 {
2682 return $this->startDate;
2683 }
2684 public function setTitle($title)
2685 {
2686 $this->title = $title;
2687 }
2688 public function getTitle()
2689 {
2690 return $this->title;
2691 }
2692 public function setType($type)
2693 {
2694 $this->type = $type;
2695 }
2696 public function getType()
2697 {
2698 return $this->type;
2699 }
2700 }
2701
2702 class Google_Service_Plus_PersonPlacesLived extends Google_Model
2703 {
2704 protected $internal_gapi_mappings = array(
2705 );
2706 public $primary;
2707 public $value;
2708
2709
2710 public function setPrimary($primary)
2711 {
2712 $this->primary = $primary;
2713 }
2714 public function getPrimary()
2715 {
2716 return $this->primary;
2717 }
2718 public function setValue($value)
2719 {
2720 $this->value = $value;
2721 }
2722 public function getValue()
2723 {
2724 return $this->value;
2725 }
2726 }
2727
2728 class Google_Service_Plus_PersonUrls extends Google_Model
2729 {
2730 protected $internal_gapi_mappings = array(
2731 );
2732 public $label;
2733 public $type;
2734 public $value;
2735
2736
2737 public function setLabel($label)
2738 {
2739 $this->label = $label;
2740 }
2741 public function getLabel()
2742 {
2743 return $this->label;
2744 }
2745 public function setType($type)
2746 {
2747 $this->type = $type;
2748 }
2749 public function getType()
2750 {
2751 return $this->type;
2752 }
2753 public function setValue($value)
2754 {
2755 $this->value = $value;
2756 }
2757 public function getValue()
2758 {
2759 return $this->value;
2760 }
2761 }
2762
2763 class Google_Service_Plus_Place extends Google_Model
2764 {
2765 protected $internal_gapi_mappings = array(
2766 );
2767 protected $addressType = 'Google_Service_Plus_PlaceAddress';
2768 protected $addressDataType = '';
2769 public $displayName;
2770 public $id;
2771 public $kind;
2772 protected $positionType = 'Google_Service_Plus_PlacePosition';
2773 protected $positionDataType = '';
2774
2775
2776 public function setAddress(Google_Service_Plus_PlaceAddress $address)
2777 {
2778 $this->address = $address;
2779 }
2780 public function getAddress()
2781 {
2782 return $this->address;
2783 }
2784 public function setDisplayName($displayName)
2785 {
2786 $this->displayName = $displayName;
2787 }
2788 public function getDisplayName()
2789 {
2790 return $this->displayName;
2791 }
2792 public function setId($id)
2793 {
2794 $this->id = $id;
2795 }
2796 public function getId()
2797 {
2798 return $this->id;
2799 }
2800 public function setKind($kind)
2801 {
2802 $this->kind = $kind;
2803 }
2804 public function getKind()
2805 {
2806 return $this->kind;
2807 }
2808 public function setPosition(Google_Service_Plus_PlacePosition $position)
2809 {
2810 $this->position = $position;
2811 }
2812 public function getPosition()
2813 {
2814 return $this->position;
2815 }
2816 }
2817
2818 class Google_Service_Plus_PlaceAddress extends Google_Model
2819 {
2820 protected $internal_gapi_mappings = array(
2821 );
2822 public $formatted;
2823
2824
2825 public function setFormatted($formatted)
2826 {
2827 $this->formatted = $formatted;
2828 }
2829 public function getFormatted()
2830 {
2831 return $this->formatted;
2832 }
2833 }
2834
2835 class Google_Service_Plus_PlacePosition extends Google_Model
2836 {
2837 protected $internal_gapi_mappings = array(
2838 );
2839 public $latitude;
2840 public $longitude;
2841
2842
2843 public function setLatitude($latitude)
2844 {
2845 $this->latitude = $latitude;
2846 }
2847 public function getLatitude()
2848 {
2849 return $this->latitude;
2850 }
2851 public function setLongitude($longitude)
2852 {
2853 $this->longitude = $longitude;
2854 }
2855 public function getLongitude()
2856 {
2857 return $this->longitude;
2858 }
2859 }
2860
2861 class Google_Service_Plus_PlusAclentryResource extends Google_Model
2862 {
2863 protected $internal_gapi_mappings = array(
2864 );
2865 public $displayName;
2866 public $id;
2867 public $type;
2868
2869
2870 public function setDisplayName($displayName)
2871 {
2872 $this->displayName = $displayName;
2873 }
2874 public function getDisplayName()
2875 {
2876 return $this->displayName;
2877 }
2878 public function setId($id)
2879 {
2880 $this->id = $id;
2881 }
2882 public function getId()
2883 {
2884 return $this->id;
2885 }
2886 public function setType($type)
2887 {
2888 $this->type = $type;
2889 }
2890 public function getType()
2891 {
2892 return $this->type;
2893 }
2894 }
2895