name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setScope($scope) { $this->scope = $scope; } /** * @return string */ public function getScope() { return $this->scope; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NetworkProfileLocation::class, 'Google_Service_Compute_NetworkProfileLocation');