Google_PlayerScoreSubmissionList
The Google Books Importer Google PlayerScoreSubmissionList class.
Defined (1)
The class is defined in the following location(s).
- /src/contrib/Google_GamesService.php
- class Google_PlayerScoreSubmissionList extends Google_Model {
- public $kind;
- protected $__scoresType = 'Google_ScoreSubmission';
- protected $__scoresDataType = 'array';
- public $scores;
- public function setKind( $kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setScores(/** array(Google_ScoreSubmission) */ $scores) {
- $this->assertIsArray($scores, 'Google_ScoreSubmission', __METHOD__);
- $this->scores = $scores;
- }
- public function getScores() {
- return $this->scores;
- }
- }