Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.2.x will end 22 April 2024 (12 months).
  • Bug fixes for security issues in 4.2.x will end 7 October 2024 (18 months).
  • PHP version: minimum PHP 8.0.0 Note: minimum PHP version has increased since Moodle 4.1. PHP 8.1.x is supported too.

Differences Between: [Versions 310 and 402] [Versions 311 and 402] [Versions 39 and 402] [Versions 400 and 402] [Versions 401 and 402]

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