📂 File Browser

/AgentAI/vendor/google/apiclient-services/src/GamesConfiguration
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📁 Resource/ 🔓 Open

📄 Files

🐘 AchievementConfiguration.php
▶ Open 📄 View Source
🐘 AchievementConfigurationDetail.php
▶ Open 📄 View Source
🐘 AchievementConfigurationListResponse.php
▶ Open 📄 View Source
🐘 GamesNumberAffixConfiguration.php
▶ Open 📄 View Source
🐘 GamesNumberFormatConfiguration.php
▶ Open 📄 View Source
🐘 ImageConfiguration.php
▶ Open 📄 View Source
🐘 LeaderboardConfiguration.php
▶ Open 📄 View Source
🐘 LeaderboardConfigurationDetail.php
▶ Open 📄 View Source
🐘 LeaderboardConfigurationListResponse.php
▶ Open 📄 View Source
🐘 LocalizedString.php
▶ Open 📄 View Source
🐘 LocalizedStringBundle.php
▶ Open 📄 View Source

📄 Source: AchievementConfigurationListResponse.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\GamesConfiguration;

class AchievementConfigurationListResponse extends \Google\Collection
{
  protected $collection_key = 'items';
  protected $itemsType = AchievementConfiguration::class;
  protected $itemsDataType = 'array';
  /**
   * Uniquely identifies the type of this resource. Value is always the fixed
   * string `gamesConfiguration#achievementConfigurationListResponse`.
   *
   * @var string
   */
  public $kind;
  /**
   * The pagination token for the next page of results.
   *
   * @var string
   */
  public $nextPageToken;

  /**
   * The achievement configurations.
   *
   * @param AchievementConfiguration[] $items
   */
  public function setItems($items)
  {
    $this->items = $items;
  }
  /**
   * @return AchievementConfiguration[]
   */
  public function getItems()
  {
    return $this->items;
  }
  /**
   * Uniquely identifies the type of this resource. Value is always the fixed
   * string `gamesConfiguration#achievementConfigurationListResponse`.
   *
   * @param string $kind
   */
  public function setKind($kind)
  {
    $this->kind = $kind;
  }
  /**
   * @return string
   */
  public function getKind()
  {
    return $this->kind;
  }
  /**
   * The pagination token for the next page of results.
   *
   * @param string $nextPageToken
   */
  public function setNextPageToken($nextPageToken)
  {
    $this->nextPageToken = $nextPageToken;
  }
  /**
   * @return string
   */
  public function getNextPageToken()
  {
    return $this->nextPageToken;
  }
}

// Adding a class alias for backwards compatibility with the previous class name.
class_alias(AchievementConfigurationListResponse::class, 'Google_Service_GamesConfiguration_AchievementConfigurationListResponse');
← Back