Google_PlayerScoreResponse
The Google Books Importer Google PlayerScoreResponse class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_GamesService.php
- class Google_PlayerScoreResponse extends Google_Model {
- public $beatenScoreTimeSpans;
- public $formattedScore;
- public $kind;
- public $leaderboardId;
- protected $__unbeatenScoresType = 'Google_PlayerScore';
- protected $__unbeatenScoresDataType = 'array';
- public $unbeatenScores;
- public function setBeatenScoreTimeSpans(/** array(Google_string) */ $beatenScoreTimeSpans) {
- $this->assertIsArray($beatenScoreTimeSpans, 'Google_string', __METHOD__);
- $this->beatenScoreTimeSpans = $beatenScoreTimeSpans;
- }
- public function getBeatenScoreTimeSpans() {
- return $this->beatenScoreTimeSpans;
- }
- public function setFormattedScore( $formattedScore) {
- $this->formattedScore = $formattedScore;
- }
- public function getFormattedScore() {
- return $this->formattedScore;
- }
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setLeaderboardId( $leaderboardId) {
- $this->leaderboardId = $leaderboardId;
- }
- public function getLeaderboardId() {
- return $this->leaderboardId;
- }
- public function setUnbeatenScores(/** array(Google_PlayerScore) */ $unbeatenScores) {
- $this->assertIsArray($unbeatenScores, 'Google_PlayerScore', __METHOD__);
- $this->unbeatenScores = $unbeatenScores;
- }
- public function getUnbeatenScores() {
- return $this->unbeatenScores;
- }
- }