currentExperiencePoints = $currentExperiencePoints; } /** * @return string */ public function getCurrentExperiencePoints() { return $this->currentExperiencePoints; } /** * @param PlayerLevel */ public function setCurrentLevel(PlayerLevel $currentLevel) { $this->currentLevel = $currentLevel; } /** * @return PlayerLevel */ public function getCurrentLevel() { return $this->currentLevel; } /** * @param string */ public function setKind($kind) { $this->kind = $kind; } /** * @return string */ public function getKind() { return $this->kind; } /** * @param string */ public function setLastLevelUpTimestampMillis($lastLevelUpTimestampMillis) { $this->lastLevelUpTimestampMillis = $lastLevelUpTimestampMillis; } /** * @return string */ public function getLastLevelUpTimestampMillis() { return $this->lastLevelUpTimestampMillis; } /** * @param PlayerLevel */ public function setNextLevel(PlayerLevel $nextLevel) { $this->nextLevel = $nextLevel; } /** * @return PlayerLevel */ public function getNextLevel() { return $this->nextLevel; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(PlayerExperienceInfo::class, 'Google_Service_Games_PlayerExperienceInfo');