PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / 1.0.4
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) v1.0.4
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / lib / Google / Service / Plus.php

Plus.php in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) 1.0.4, at lib/Google/Service/Plus.php

3,856 lines 81.6 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 Analytify_Google_Service_Plus extends Analytify_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 your basic profile info. */
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 Analytify_Google_Client $client
53 */
54 public function __construct(Analytify_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 Analytify_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 Analytify_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 Analytify_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 Analytify_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 Analytify_Google_Service_Plus(...);
343 * $activities = $plusService->activities;
344 * </code>
345 */
346 class Analytify_Google_Service_Plus_Activities_Resource extends Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_Google_Service_Plus_ActivityFeed");
413 }
414 }
415
416 /**
417 * The "comments" collection of methods.
418 * Typical usage is:
419 * <code>
420 * $plusService = new Analytify_Google_Service_Plus(...);
421 * $comments = $plusService->comments;
422 * </code>
423 */
424 class Analytify_Google_Service_Plus_Comments_Resource extends Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_Google_Service_Plus_CommentFeed");
463 }
464 }
465
466 /**
467 * The "moments" collection of methods.
468 * Typical usage is:
469 * <code>
470 * $plusService = new Analytify_Google_Service_Plus(...);
471 * $moments = $plusService->moments;
472 * </code>
473 */
474 class Analytify_Google_Service_Plus_Moments_Resource extends Analytify_Google_Service_Resource
475 {
476
477 /**
478 * Record a moment representing a user's action 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 actions 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 Analytify_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 Analytify_Google_Service_Plus_Moment
492 */
493 public function insert($userId, $collection, Analytify_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), "Analytify_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 Analytify_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), "Analytify_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 Analytify_Google_Service_Plus(...);
547 * $people = $plusService->people;
548 * </code>
549 */
550 class Analytify_Google_Service_Plus_People_Resource extends Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_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 Analytify_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), "Analytify_Google_Service_Plus_PeopleFeed");
643 }
644 }
645
646
647
648
649 class Analytify_Google_Service_Plus_Acl extends Analytify_Google_Collection
650 {
651 public $description;
652 protected $itemsType = 'Analytify_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 Analytify_Google_Service_Plus_Activity extends Analytify_Google_Model
688 {
689 protected $accessType = 'Analytify_Google_Service_Plus_Acl';
690 protected $accessDataType = '';
691 protected $actorType = 'Analytify_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 = 'Analytify_Google_Service_Plus_Place';
701 protected $locationDataType = '';
702 protected $objectType = 'Analytify_Google_Service_Plus_ActivityObject';
703 protected $objectDataType = '';
704 public $placeId;
705 public $placeName;
706 protected $providerType = 'Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityActor extends Analytify_Google_Model
917 {
918 public $displayName;
919 public $id;
920 protected $imageType = 'Analytify_Google_Service_Plus_ActivityActorImage';
921 protected $imageDataType = '';
922 protected $nameType = 'Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityActorImage extends Analytify_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 Analytify_Google_Service_Plus_ActivityActorName extends Analytify_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 Analytify_Google_Service_Plus_ActivityFeed extends Analytify_Google_Collection
1019 {
1020 public $etag;
1021 public $id;
1022 protected $itemsType = 'Analytify_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 Analytify_Google_Service_Plus_ActivityObject extends Analytify_Google_Collection
1123 {
1124 protected $actorType = 'Analytify_Google_Service_Plus_ActivityObjectActor';
1125 protected $actorDataType = '';
1126 protected $attachmentsType = 'Analytify_Google_Service_Plus_ActivityObjectAttachments';
1127 protected $attachmentsDataType = 'array';
1128 public $content;
1129 public $id;
1130 public $objectType;
1131 public $originalContent;
1132 protected $plusonersType = 'Analytify_Google_Service_Plus_ActivityObjectPlusoners';
1133 protected $plusonersDataType = '';
1134 protected $repliesType = 'Analytify_Google_Service_Plus_ActivityObjectReplies';
1135 protected $repliesDataType = '';
1136 protected $resharersType = 'Analytify_Google_Service_Plus_ActivityObjectResharers';
1137 protected $resharersDataType = '';
1138 public $url;
1139
1140 public function setActor(Analytify_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(Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityObjectActor extends Analytify_Google_Model
1242 {
1243 public $displayName;
1244 public $id;
1245 protected $imageType = 'Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityObjectActorImage extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachments extends Analytify_Google_Collection
1306 {
1307 public $content;
1308 public $displayName;
1309 protected $embedType = 'Analytify_Google_Service_Plus_ActivityObjectAttachmentsEmbed';
1310 protected $embedDataType = '';
1311 protected $fullImageType = 'Analytify_Google_Service_Plus_ActivityObjectAttachmentsFullImage';
1312 protected $fullImageDataType = '';
1313 public $id;
1314 protected $imageType = 'Analytify_Google_Service_Plus_ActivityObjectAttachmentsImage';
1315 protected $imageDataType = '';
1316 public $objectType;
1317 protected $thumbnailsType = 'Analytify_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(Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachmentsImage extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Analytify_Google_Model
1535 {
1536 public $description;
1537 protected $imageType = 'Analytify_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(Analytify_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 Analytify_Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectPlusoners extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectReplies extends Analytify_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 Analytify_Google_Service_Plus_ActivityObjectResharers extends Analytify_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 Analytify_Google_Service_Plus_ActivityProvider extends Analytify_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 Analytify_Google_Service_Plus_Comment extends Analytify_Google_Collection
1714 {
1715 protected $actorType = 'Analytify_Google_Service_Plus_CommentActor';
1716 protected $actorDataType = '';
1717 public $etag;
1718 public $id;
1719 protected $inReplyToType = 'Analytify_Google_Service_Plus_CommentInReplyTo';
1720 protected $inReplyToDataType = 'array';
1721 public $kind;
1722 protected $objectType = 'Analytify_Google_Service_Plus_CommentObject';
1723 protected $objectDataType = '';
1724 protected $plusonersType = 'Analytify_Google_Service_Plus_CommentPlusoners';
1725 protected $plusonersDataType = '';
1726 public $published;
1727 public $selfLink;
1728 public $updated;
1729 public $verb;
1730
1731 public function setActor(Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_CommentActor extends Analytify_Google_Model
1843 {
1844 public $displayName;
1845 public $id;
1846 protected $imageType = 'Analytify_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(Analytify_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 Analytify_Google_Service_Plus_CommentActorImage extends Analytify_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 Analytify_Google_Service_Plus_CommentFeed extends Analytify_Google_Collection
1907 {
1908 public $etag;
1909 public $id;
1910 protected $itemsType = 'Analytify_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 Analytify_Google_Service_Plus_CommentInReplyTo extends Analytify_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 Analytify_Google_Service_Plus_CommentObject extends Analytify_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 Analytify_Google_Service_Plus_CommentPlusoners extends Analytify_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 Analytify_Google_Service_Plus_ItemScope extends Analytify_Google_Collection
2078 {
2079 protected $aboutType = 'Analytify_Google_Service_Plus_ItemScope';
2080 protected $aboutDataType = '';
2081 public $additionalName;
2082 protected $addressType = 'Analytify_Google_Service_Plus_ItemScope';
2083 protected $addressDataType = '';
2084 public $addressCountry;
2085 public $addressLocality;
2086 public $addressRegion;
2087 protected $associatedMediaType = 'Analytify_Google_Service_Plus_ItemScope';
2088 protected $associatedMediaDataType = 'array';
2089 public $attendeeCount;
2090 protected $attendeesType = 'Analytify_Google_Service_Plus_ItemScope';
2091 protected $attendeesDataType = 'array';
2092 protected $audioType = 'Analytify_Google_Service_Plus_ItemScope';
2093 protected $audioDataType = '';
2094 protected $authorType = 'Analytify_Google_Service_Plus_ItemScope';
2095 protected $authorDataType = 'array';
2096 public $bestRating;
2097 public $birthDate;
2098 protected $byArtistType = 'Analytify_Google_Service_Plus_ItemScope';
2099 protected $byArtistDataType = '';
2100 public $caption;
2101 public $contentSize;
2102 public $contentUrl;
2103 protected $contributorType = 'Analytify_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 = 'Analytify_Google_Service_Plus_ItemScope';
2115 protected $geoDataType = '';
2116 public $givenName;
2117 public $height;
2118 public $id;
2119 public $image;
2120 protected $inAlbumType = 'Analytify_Google_Service_Plus_ItemScope';
2121 protected $inAlbumDataType = '';
2122 public $kind;
2123 public $latitude;
2124 protected $locationType = 'Analytify_Google_Service_Plus_ItemScope';
2125 protected $locationDataType = '';
2126 public $longitude;
2127 public $name;
2128 protected $partOfTVSeriesType = 'Analytify_Google_Service_Plus_ItemScope';
2129 protected $partOfTVSeriesDataType = '';
2130 protected $performersType = 'Analytify_Google_Service_Plus_ItemScope';
2131 protected $performersDataType = 'array';
2132 public $playerType;
2133 public $postOfficeBoxNumber;
2134 public $postalCode;
2135 public $ratingValue;
2136 protected $reviewRatingType = 'Analytify_Google_Service_Plus_ItemScope';
2137 protected $reviewRatingDataType = '';
2138 public $startDate;
2139 public $streetAddress;
2140 public $text;
2141 protected $thumbnailType = 'Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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(Analytify_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 Analytify_Google_Service_Plus_Moment extends Analytify_Google_Model
2702 {
2703 public $id;
2704 public $kind;
2705 protected $objectType = 'Analytify_Google_Service_Plus_ItemScope';
2706 protected $objectDataType = '';
2707 protected $resultType = 'Analytify_Google_Service_Plus_ItemScope';
2708 protected $resultDataType = '';
2709 public $startDate;
2710 protected $targetType = 'Analytify_Google_Service_Plus_ItemScope';
2711 protected $targetDataType = '';
2712 public $type;
2713
2714 public function setId($id)
2715 {
2716 $this->id = $id;
2717 }
2718
2719 public function getId()
2720 {
2721 return $this->id;
2722 }
2723
2724 public function setKind($kind)
2725 {
2726 $this->kind = $kind;
2727 }
2728
2729 public function getKind()
2730 {
2731 return $this->kind;
2732 }
2733
2734 public function setObject(Analytify_Google_Service_Plus_ItemScope $object)
2735 {
2736 $this->object = $object;
2737 }
2738
2739 public function getObject()
2740 {
2741 return $this->object;
2742 }
2743
2744 public function setResult(Analytify_Google_Service_Plus_ItemScope $result)
2745 {
2746 $this->result = $result;
2747 }
2748
2749 public function getResult()
2750 {
2751 return $this->result;
2752 }
2753
2754 public function setStartDate($startDate)
2755 {
2756 $this->startDate = $startDate;
2757 }
2758
2759 public function getStartDate()
2760 {
2761 return $this->startDate;
2762 }
2763
2764 public function setTarget(Analytify_Google_Service_Plus_ItemScope $target)
2765 {
2766 $this->target = $target;
2767 }
2768
2769 public function getTarget()
2770 {
2771 return $this->target;
2772 }
2773
2774 public function setType($type)
2775 {
2776 $this->type = $type;
2777 }
2778
2779 public function getType()
2780 {
2781 return $this->type;
2782 }
2783 }
2784
2785 class Analytify_Google_Service_Plus_MomentsFeed extends Analytify_Google_Collection
2786 {
2787 public $etag;
2788 protected $itemsType = 'Analytify_Google_Service_Plus_Moment';
2789 protected $itemsDataType = 'array';
2790 public $kind;
2791 public $nextLink;
2792 public $nextPageToken;
2793 public $selfLink;
2794 public $title;
2795 public $updated;
2796
2797 public function setEtag($etag)
2798 {
2799 $this->etag = $etag;
2800 }
2801
2802 public function getEtag()
2803 {
2804 return $this->etag;
2805 }
2806
2807 public function setItems($items)
2808 {
2809 $this->items = $items;
2810 }
2811
2812 public function getItems()
2813 {
2814 return $this->items;
2815 }
2816
2817 public function setKind($kind)
2818 {
2819 $this->kind = $kind;
2820 }
2821
2822 public function getKind()
2823 {
2824 return $this->kind;
2825 }
2826
2827 public function setNextLink($nextLink)
2828 {
2829 $this->nextLink = $nextLink;
2830 }
2831
2832 public function getNextLink()
2833 {
2834 return $this->nextLink;
2835 }
2836
2837 public function setNextPageToken($nextPageToken)
2838 {
2839 $this->nextPageToken = $nextPageToken;
2840 }
2841
2842 public function getNextPageToken()
2843 {
2844 return $this->nextPageToken;
2845 }
2846
2847 public function setSelfLink($selfLink)
2848 {
2849 $this->selfLink = $selfLink;
2850 }
2851
2852 public function getSelfLink()
2853 {
2854 return $this->selfLink;
2855 }
2856
2857 public function setTitle($title)
2858 {
2859 $this->title = $title;
2860 }
2861
2862 public function getTitle()
2863 {
2864 return $this->title;
2865 }
2866
2867 public function setUpdated($updated)
2868 {
2869 $this->updated = $updated;
2870 }
2871
2872 public function getUpdated()
2873 {
2874 return $this->updated;
2875 }
2876 }
2877
2878 class Analytify_Google_Service_Plus_PeopleFeed extends Analytify_Google_Collection
2879 {
2880 public $etag;
2881 protected $itemsType = 'Analytify_Google_Service_Plus_Person';
2882 protected $itemsDataType = 'array';
2883 public $kind;
2884 public $nextPageToken;
2885 public $selfLink;
2886 public $title;
2887 public $totalItems;
2888
2889 public function setEtag($etag)
2890 {
2891 $this->etag = $etag;
2892 }
2893
2894 public function getEtag()
2895 {
2896 return $this->etag;
2897 }
2898
2899 public function setItems($items)
2900 {
2901 $this->items = $items;
2902 }
2903
2904 public function getItems()
2905 {
2906 return $this->items;
2907 }
2908
2909 public function setKind($kind)
2910 {
2911 $this->kind = $kind;
2912 }
2913
2914 public function getKind()
2915 {
2916 return $this->kind;
2917 }
2918
2919 public function setNextPageToken($nextPageToken)
2920 {
2921 $this->nextPageToken = $nextPageToken;
2922 }
2923
2924 public function getNextPageToken()
2925 {
2926 return $this->nextPageToken;
2927 }
2928
2929 public function setSelfLink($selfLink)
2930 {
2931 $this->selfLink = $selfLink;
2932 }
2933
2934 public function getSelfLink()
2935 {
2936 return $this->selfLink;
2937 }
2938
2939 public function setTitle($title)
2940 {
2941 $this->title = $title;
2942 }
2943
2944 public function getTitle()
2945 {
2946 return $this->title;
2947 }
2948
2949 public function setTotalItems($totalItems)
2950 {
2951 $this->totalItems = $totalItems;
2952 }
2953
2954 public function getTotalItems()
2955 {
2956 return $this->totalItems;
2957 }
2958 }
2959
2960 class Analytify_Google_Service_Plus_Person extends Analytify_Google_Collection
2961 {
2962 public $aboutMe;
2963 protected $ageRangeType = 'Analytify_Google_Service_Plus_PersonAgeRange';
2964 protected $ageRangeDataType = '';
2965 public $birthday;
2966 public $braggingRights;
2967 public $circledByCount;
2968 protected $coverType = 'Analytify_Google_Service_Plus_PersonCover';
2969 protected $coverDataType = '';
2970 public $currentLocation;
2971 public $displayName;
2972 public $domain;
2973 protected $emailsType = 'Analytify_Google_Service_Plus_PersonEmails';
2974 protected $emailsDataType = 'array';
2975 public $etag;
2976 public $gender;
2977 public $id;
2978 protected $imageType = 'Analytify_Google_Service_Plus_PersonImage';
2979 protected $imageDataType = '';
2980 public $isPlusUser;
2981 public $kind;
2982 public $language;
2983 protected $nameType = 'Analytify_Google_Service_Plus_PersonName';
2984 protected $nameDataType = '';
2985 public $nickname;
2986 public $objectType;
2987 public $occupation;
2988 protected $organizationsType = 'Analytify_Google_Service_Plus_PersonOrganizations';
2989 protected $organizationsDataType = 'array';
2990 protected $placesLivedType = 'Analytify_Google_Service_Plus_PersonPlacesLived';
2991 protected $placesLivedDataType = 'array';
2992 public $plusOneCount;
2993 public $relationshipStatus;
2994 public $skills;
2995 public $tagline;
2996 public $url;
2997 protected $urlsType = 'Analytify_Google_Service_Plus_PersonUrls';
2998 protected $urlsDataType = 'array';
2999 public $verified;
3000
3001 public function setAboutMe($aboutMe)
3002 {
3003 $this->aboutMe = $aboutMe;
3004 }
3005
3006 public function getAboutMe()
3007 {
3008 return $this->aboutMe;
3009 }
3010
3011 public function setAgeRange(Analytify_Google_Service_Plus_PersonAgeRange $ageRange)
3012 {
3013 $this->ageRange = $ageRange;
3014 }
3015
3016 public function getAgeRange()
3017 {
3018 return $this->ageRange;
3019 }
3020
3021 public function setBirthday($birthday)
3022 {
3023 $this->birthday = $birthday;
3024 }
3025
3026 public function getBirthday()
3027 {
3028 return $this->birthday;
3029 }
3030
3031 public function setBraggingRights($braggingRights)
3032 {
3033 $this->braggingRights = $braggingRights;
3034 }
3035
3036 public function getBraggingRights()
3037 {
3038 return $this->braggingRights;
3039 }
3040
3041 public function setCircledByCount($circledByCount)
3042 {
3043 $this->circledByCount = $circledByCount;
3044 }
3045
3046 public function getCircledByCount()
3047 {
3048 return $this->circledByCount;
3049 }
3050
3051 public function setCover(Analytify_Google_Service_Plus_PersonCover $cover)
3052 {
3053 $this->cover = $cover;
3054 }
3055
3056 public function getCover()
3057 {
3058 return $this->cover;
3059 }
3060
3061 public function setCurrentLocation($currentLocation)
3062 {
3063 $this->currentLocation = $currentLocation;
3064 }
3065
3066 public function getCurrentLocation()
3067 {
3068 return $this->currentLocation;
3069 }
3070
3071 public function setDisplayName($displayName)
3072 {
3073 $this->displayName = $displayName;
3074 }
3075
3076 public function getDisplayName()
3077 {
3078 return $this->displayName;
3079 }
3080
3081 public function setDomain($domain)
3082 {
3083 $this->domain = $domain;
3084 }
3085
3086 public function getDomain()
3087 {
3088 return $this->domain;
3089 }
3090
3091 public function setEmails($emails)
3092 {
3093 $this->emails = $emails;
3094 }
3095
3096 public function getEmails()
3097 {
3098 return $this->emails;
3099 }
3100
3101 public function setEtag($etag)
3102 {
3103 $this->etag = $etag;
3104 }
3105
3106 public function getEtag()
3107 {
3108 return $this->etag;
3109 }
3110
3111 public function setGender($gender)
3112 {
3113 $this->gender = $gender;
3114 }
3115
3116 public function getGender()
3117 {
3118 return $this->gender;
3119 }
3120
3121 public function setId($id)
3122 {
3123 $this->id = $id;
3124 }
3125
3126 public function getId()
3127 {
3128 return $this->id;
3129 }
3130
3131 public function setImage(Analytify_Google_Service_Plus_PersonImage $image)
3132 {
3133 $this->image = $image;
3134 }
3135
3136 public function getImage()
3137 {
3138 return $this->image;
3139 }
3140
3141 public function setIsPlusUser($isPlusUser)
3142 {
3143 $this->isPlusUser = $isPlusUser;
3144 }
3145
3146 public function getIsPlusUser()
3147 {
3148 return $this->isPlusUser;
3149 }
3150
3151 public function setKind($kind)
3152 {
3153 $this->kind = $kind;
3154 }
3155
3156 public function getKind()
3157 {
3158 return $this->kind;
3159 }
3160
3161 public function setLanguage($language)
3162 {
3163 $this->language = $language;
3164 }
3165
3166 public function getLanguage()
3167 {
3168 return $this->language;
3169 }
3170
3171 public function setName(Analytify_Google_Service_Plus_PersonName $name)
3172 {
3173 $this->name = $name;
3174 }
3175
3176 public function getName()
3177 {
3178 return $this->name;
3179 }
3180
3181 public function setNickname($nickname)
3182 {
3183 $this->nickname = $nickname;
3184 }
3185
3186 public function getNickname()
3187 {
3188 return $this->nickname;
3189 }
3190
3191 public function setObjectType($objectType)
3192 {
3193 $this->objectType = $objectType;
3194 }
3195
3196 public function getObjectType()
3197 {
3198 return $this->objectType;
3199 }
3200
3201 public function setOccupation($occupation)
3202 {
3203 $this->occupation = $occupation;
3204 }
3205
3206 public function getOccupation()
3207 {
3208 return $this->occupation;
3209 }
3210
3211 public function setOrganizations($organizations)
3212 {
3213 $this->organizations = $organizations;
3214 }
3215
3216 public function getOrganizations()
3217 {
3218 return $this->organizations;
3219 }
3220
3221 public function setPlacesLived($placesLived)
3222 {
3223 $this->placesLived = $placesLived;
3224 }
3225
3226 public function getPlacesLived()
3227 {
3228 return $this->placesLived;
3229 }
3230
3231 public function setPlusOneCount($plusOneCount)
3232 {
3233 $this->plusOneCount = $plusOneCount;
3234 }
3235
3236 public function getPlusOneCount()
3237 {
3238 return $this->plusOneCount;
3239 }
3240
3241 public function setRelationshipStatus($relationshipStatus)
3242 {
3243 $this->relationshipStatus = $relationshipStatus;
3244 }
3245
3246 public function getRelationshipStatus()
3247 {
3248 return $this->relationshipStatus;
3249 }
3250
3251 public function setSkills($skills)
3252 {
3253 $this->skills = $skills;
3254 }
3255
3256 public function getSkills()
3257 {
3258 return $this->skills;
3259 }
3260
3261 public function setTagline($tagline)
3262 {
3263 $this->tagline = $tagline;
3264 }
3265
3266 public function getTagline()
3267 {
3268 return $this->tagline;
3269 }
3270
3271 public function setUrl($url)
3272 {
3273 $this->url = $url;
3274 }
3275
3276 public function getUrl()
3277 {
3278 return $this->url;
3279 }
3280
3281 public function setUrls($urls)
3282 {
3283 $this->urls = $urls;
3284 }
3285
3286 public function getUrls()
3287 {
3288 return $this->urls;
3289 }
3290
3291 public function setVerified($verified)
3292 {
3293 $this->verified = $verified;
3294 }
3295
3296 public function getVerified()
3297 {
3298 return $this->verified;
3299 }
3300 }
3301
3302 class Analytify_Google_Service_Plus_PersonAgeRange extends Analytify_Google_Model
3303 {
3304 public $max;
3305 public $min;
3306
3307 public function setMax($max)
3308 {
3309 $this->max = $max;
3310 }
3311
3312 public function getMax()
3313 {
3314 return $this->max;
3315 }
3316
3317 public function setMin($min)
3318 {
3319 $this->min = $min;
3320 }
3321
3322 public function getMin()
3323 {
3324 return $this->min;
3325 }
3326 }
3327
3328 class Analytify_Google_Service_Plus_PersonCover extends Analytify_Google_Model
3329 {
3330 protected $coverInfoType = 'Analytify_Google_Service_Plus_PersonCoverCoverInfo';
3331 protected $coverInfoDataType = '';
3332 protected $coverPhotoType = 'Analytify_Google_Service_Plus_PersonCoverCoverPhoto';
3333 protected $coverPhotoDataType = '';
3334 public $layout;
3335
3336 public function setCoverInfo(Analytify_Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
3337 {
3338 $this->coverInfo = $coverInfo;
3339 }
3340
3341 public function getCoverInfo()
3342 {
3343 return $this->coverInfo;
3344 }
3345
3346 public function setCoverPhoto(Analytify_Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
3347 {
3348 $this->coverPhoto = $coverPhoto;
3349 }
3350
3351 public function getCoverPhoto()
3352 {
3353 return $this->coverPhoto;
3354 }
3355
3356 public function setLayout($layout)
3357 {
3358 $this->layout = $layout;
3359 }
3360
3361 public function getLayout()
3362 {
3363 return $this->layout;
3364 }
3365 }
3366
3367 class Analytify_Google_Service_Plus_PersonCoverCoverInfo extends Analytify_Google_Model
3368 {
3369 public $leftImageOffset;
3370 public $topImageOffset;
3371
3372 public function setLeftImageOffset($leftImageOffset)
3373 {
3374 $this->leftImageOffset = $leftImageOffset;
3375 }
3376
3377 public function getLeftImageOffset()
3378 {
3379 return $this->leftImageOffset;
3380 }
3381
3382 public function setTopImageOffset($topImageOffset)
3383 {
3384 $this->topImageOffset = $topImageOffset;
3385 }
3386
3387 public function getTopImageOffset()
3388 {
3389 return $this->topImageOffset;
3390 }
3391 }
3392
3393 class Analytify_Google_Service_Plus_PersonCoverCoverPhoto extends Analytify_Google_Model
3394 {
3395 public $height;
3396 public $url;
3397 public $width;
3398
3399 public function setHeight($height)
3400 {
3401 $this->height = $height;
3402 }
3403
3404 public function getHeight()
3405 {
3406 return $this->height;
3407 }
3408
3409 public function setUrl($url)
3410 {
3411 $this->url = $url;
3412 }
3413
3414 public function getUrl()
3415 {
3416 return $this->url;
3417 }
3418
3419 public function setWidth($width)
3420 {
3421 $this->width = $width;
3422 }
3423
3424 public function getWidth()
3425 {
3426 return $this->width;
3427 }
3428 }
3429
3430 class Analytify_Google_Service_Plus_PersonEmails extends Analytify_Google_Model
3431 {
3432 public $type;
3433 public $value;
3434
3435 public function setType($type)
3436 {
3437 $this->type = $type;
3438 }
3439
3440 public function getType()
3441 {
3442 return $this->type;
3443 }
3444
3445 public function setValue($value)
3446 {
3447 $this->value = $value;
3448 }
3449
3450 public function getValue()
3451 {
3452 return $this->value;
3453 }
3454 }
3455
3456 class Analytify_Google_Service_Plus_PersonImage extends Analytify_Google_Model
3457 {
3458 public $isDefault;
3459 public $url;
3460
3461 public function setIsDefault($isDefault)
3462 {
3463 $this->isDefault = $isDefault;
3464 }
3465
3466 public function getIsDefault()
3467 {
3468 return $this->isDefault;
3469 }
3470
3471 public function setUrl($url)
3472 {
3473 $this->url = $url;
3474 }
3475
3476 public function getUrl()
3477 {
3478 return $this->url;
3479 }
3480 }
3481
3482 class Analytify_Google_Service_Plus_PersonName extends Analytify_Google_Model
3483 {
3484 public $familyName;
3485 public $formatted;
3486 public $givenName;
3487 public $honorificPrefix;
3488 public $honorificSuffix;
3489 public $middleName;
3490
3491 public function setFamilyName($familyName)
3492 {
3493 $this->familyName = $familyName;
3494 }
3495
3496 public function getFamilyName()
3497 {
3498 return $this->familyName;
3499 }
3500
3501 public function setFormatted($formatted)
3502 {
3503 $this->formatted = $formatted;
3504 }
3505
3506 public function getFormatted()
3507 {
3508 return $this->formatted;
3509 }
3510
3511 public function setGivenName($givenName)
3512 {
3513 $this->givenName = $givenName;
3514 }
3515
3516 public function getGivenName()
3517 {
3518 return $this->givenName;
3519 }
3520
3521 public function setHonorificPrefix($honorificPrefix)
3522 {
3523 $this->honorificPrefix = $honorificPrefix;
3524 }
3525
3526 public function getHonorificPrefix()
3527 {
3528 return $this->honorificPrefix;
3529 }
3530
3531 public function setHonorificSuffix($honorificSuffix)
3532 {
3533 $this->honorificSuffix = $honorificSuffix;
3534 }
3535
3536 public function getHonorificSuffix()
3537 {
3538 return $this->honorificSuffix;
3539 }
3540
3541 public function setMiddleName($middleName)
3542 {
3543 $this->middleName = $middleName;
3544 }
3545
3546 public function getMiddleName()
3547 {
3548 return $this->middleName;
3549 }
3550 }
3551
3552 class Analytify_Google_Service_Plus_PersonOrganizations extends Analytify_Google_Model
3553 {
3554 public $department;
3555 public $description;
3556 public $endDate;
3557 public $location;
3558 public $name;
3559 public $primary;
3560 public $startDate;
3561 public $title;
3562 public $type;
3563
3564 public function setDepartment($department)
3565 {
3566 $this->department = $department;
3567 }
3568
3569 public function getDepartment()
3570 {
3571 return $this->department;
3572 }
3573
3574 public function setDescription($description)
3575 {
3576 $this->description = $description;
3577 }
3578
3579 public function getDescription()
3580 {
3581 return $this->description;
3582 }
3583
3584 public function setEndDate($endDate)
3585 {
3586 $this->endDate = $endDate;
3587 }
3588
3589 public function getEndDate()
3590 {
3591 return $this->endDate;
3592 }
3593
3594 public function setLocation($location)
3595 {
3596 $this->location = $location;
3597 }
3598
3599 public function getLocation()
3600 {
3601 return $this->location;
3602 }
3603
3604 public function setName($name)
3605 {
3606 $this->name = $name;
3607 }
3608
3609 public function getName()
3610 {
3611 return $this->name;
3612 }
3613
3614 public function setPrimary($primary)
3615 {
3616 $this->primary = $primary;
3617 }
3618
3619 public function getPrimary()
3620 {
3621 return $this->primary;
3622 }
3623
3624 public function setStartDate($startDate)
3625 {
3626 $this->startDate = $startDate;
3627 }
3628
3629 public function getStartDate()
3630 {
3631 return $this->startDate;
3632 }
3633
3634 public function setTitle($title)
3635 {
3636 $this->title = $title;
3637 }
3638
3639 public function getTitle()
3640 {
3641 return $this->title;
3642 }
3643
3644 public function setType($type)
3645 {
3646 $this->type = $type;
3647 }
3648
3649 public function getType()
3650 {
3651 return $this->type;
3652 }
3653 }
3654
3655 class Analytify_Google_Service_Plus_PersonPlacesLived extends Analytify_Google_Model
3656 {
3657 public $primary;
3658 public $value;
3659
3660 public function setPrimary($primary)
3661 {
3662 $this->primary = $primary;
3663 }
3664
3665 public function getPrimary()
3666 {
3667 return $this->primary;
3668 }
3669
3670 public function setValue($value)
3671 {
3672 $this->value = $value;
3673 }
3674
3675 public function getValue()
3676 {
3677 return $this->value;
3678 }
3679 }
3680
3681 class Analytify_Google_Service_Plus_PersonUrls extends Analytify_Google_Model
3682 {
3683 public $label;
3684 public $type;
3685 public $value;
3686
3687 public function setLabel($label)
3688 {
3689 $this->label = $label;
3690 }
3691
3692 public function getLabel()
3693 {
3694 return $this->label;
3695 }
3696
3697 public function setType($type)
3698 {
3699 $this->type = $type;
3700 }
3701
3702 public function getType()
3703 {
3704 return $this->type;
3705 }
3706
3707 public function setValue($value)
3708 {
3709 $this->value = $value;
3710 }
3711
3712 public function getValue()
3713 {
3714 return $this->value;
3715 }
3716 }
3717
3718 class Analytify_Google_Service_Plus_Place extends Analytify_Google_Model
3719 {
3720 protected $addressType = 'Analytify_Google_Service_Plus_PlaceAddress';
3721 protected $addressDataType = '';
3722 public $displayName;
3723 public $id;
3724 public $kind;
3725 protected $positionType = 'Analytify_Google_Service_Plus_PlacePosition';
3726 protected $positionDataType = '';
3727
3728 public function setAddress(Analytify_Google_Service_Plus_PlaceAddress $address)
3729 {
3730 $this->address = $address;
3731 }
3732
3733 public function getAddress()
3734 {
3735 return $this->address;
3736 }
3737
3738 public function setDisplayName($displayName)
3739 {
3740 $this->displayName = $displayName;
3741 }
3742
3743 public function getDisplayName()
3744 {
3745 return $this->displayName;
3746 }
3747
3748 public function setId($id)
3749 {
3750 $this->id = $id;
3751 }
3752
3753 public function getId()
3754 {
3755 return $this->id;
3756 }
3757
3758 public function setKind($kind)
3759 {
3760 $this->kind = $kind;
3761 }
3762
3763 public function getKind()
3764 {
3765 return $this->kind;
3766 }
3767
3768 public function setPosition(Analytify_Google_Service_Plus_PlacePosition $position)
3769 {
3770 $this->position = $position;
3771 }
3772
3773 public function getPosition()
3774 {
3775 return $this->position;
3776 }
3777 }
3778
3779 class Analytify_Google_Service_Plus_PlaceAddress extends Analytify_Google_Model
3780 {
3781 public $formatted;
3782
3783 public function setFormatted($formatted)
3784 {
3785 $this->formatted = $formatted;
3786 }
3787
3788 public function getFormatted()
3789 {
3790 return $this->formatted;
3791 }
3792 }
3793
3794 class Analytify_Google_Service_Plus_PlacePosition extends Analytify_Google_Model
3795 {
3796 public $latitude;
3797 public $longitude;
3798
3799 public function setLatitude($latitude)
3800 {
3801 $this->latitude = $latitude;
3802 }
3803
3804 public function getLatitude()
3805 {
3806 return $this->latitude;
3807 }
3808
3809 public function setLongitude($longitude)
3810 {
3811 $this->longitude = $longitude;
3812 }
3813
3814 public function getLongitude()
3815 {
3816 return $this->longitude;
3817 }
3818 }
3819
3820 class Analytify_Google_Service_Plus_PlusAclentryResource extends Analytify_Google_Model
3821 {
3822 public $displayName;
3823 public $id;
3824 public $type;
3825
3826 public function setDisplayName($displayName)
3827 {
3828 $this->displayName = $displayName;
3829 }
3830
3831 public function getDisplayName()
3832 {
3833 return $this->displayName;
3834 }
3835
3836 public function setId($id)
3837 {
3838 $this->id = $id;
3839 }
3840
3841 public function getId()
3842 {
3843 return $this->id;
3844 }
3845
3846 public function setType($type)
3847 {
3848 $this->type = $type;
3849 }
3850
3851 public function getType()
3852 {
3853 return $this->type;
3854 }
3855 }
3856