Google_Leaderboard
The Google Pagespeed Insights Google Leaderboard class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_Leaderboard extends Google_Model {
- public $iconUrl;
- public $id;
- public $kind;
- public $name;
- public $order;
- public function setIconUrl($iconUrl) {
- $this->iconUrl = $iconUrl;
- }
- public function getIconUrl() {
- return $this->iconUrl;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setName($name) {
- $this->name = $name;
- }
- public function getName() {
- return $this->name;
- }
- public function setOrder($order) {
- $this->order = $order;
- }
- public function getOrder() {
- return $this->order;
- }
- }