fleet = $fleet; } /** * @return string */ public function getFleet() { return $this->fleet; } /** * @param string */ public function setFleetSpec($fleetSpec) { $this->fleetSpec = $fleetSpec; } /** * @return string */ public function getFleetSpec() { return $this->fleetSpec; } /** * @param SpecSource */ public function setSpecSource(SpecSource $specSource) { $this->specSource = $specSource; } /** * @return SpecSource */ public function getSpecSource() { return $this->specSource; } /** * @param DeployedFleetStatus */ public function setStatus(DeployedFleetStatus $status) { $this->status = $status; } /** * @return DeployedFleetStatus */ public function getStatus() { return $this->status; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeployedFleet::class, 'Google_Service_GameServices_DeployedFleet');