PluginProbe
Authorizer / 2.6.10
Authorizer v2.6.10
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 / PlusDomains.php

PlusDomains.php in Authorizer 2.6.10, at vendor/google-api-php-client/src/Google/Service/PlusDomains.php

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