name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPlatformType($platformType) { $this->platformType = $platformType; } /** * @return string */ public function getPlatformType() { return $this->platformType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Platform::class, 'Google_Service_VersionHistory_Platform');