Google_LeaderboardEntry
The Google Pagespeed Insights Google LeaderboardEntry class.
Defined (1)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_GamesService.php
- class Google_LeaderboardEntry extends Google_Model {
- public $formattedScore;
- public $formattedScoreRank;
- public $kind;
- protected $__playerType = 'Google_Player';
- protected $__playerDataType = '';
- public $player;
- public $scoreRank;
- public $scoreValue;
- public $timeSpan;
- public $writeTimestampMillis;
- public function setFormattedScore($formattedScore) {
- $this->formattedScore = $formattedScore;
- }
- public function getFormattedScore() {
- return $this->formattedScore;
- }
- public function setFormattedScoreRank($formattedScoreRank) {
- $this->formattedScoreRank = $formattedScoreRank;
- }
- public function getFormattedScoreRank() {
- return $this->formattedScoreRank;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPlayer(Google_Player $player) {
- $this->player = $player;
- }
- public function getPlayer() {
- return $this->player;
- }
- public function setScoreRank($scoreRank) {
- $this->scoreRank = $scoreRank;
- }
- public function getScoreRank() {
- return $this->scoreRank;
- }
- public function setScoreValue($scoreValue) {
- $this->scoreValue = $scoreValue;
- }
- public function getScoreValue() {
- return $this->scoreValue;
- }
- public function setTimeSpan($timeSpan) {
- $this->timeSpan = $timeSpan;
- }
- public function getTimeSpan() {
- return $this->timeSpan;
- }
- public function setWriteTimestampMillis($writeTimestampMillis) {
- $this->writeTimestampMillis = $writeTimestampMillis;
- }
- public function getWriteTimestampMillis() {
- return $this->writeTimestampMillis;
- }
- }