httpHeader = $httpHeader; } /** * @return string */ public function getHttpHeader() { return $this->httpHeader; } /** * Define the name of the parameter, such as "api_key" . It is case sensitive. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Define the URL query parameter name to use for the parameter. It is case * sensitive. * * @param string $urlQueryParameter */ public function setUrlQueryParameter($urlQueryParameter) { $this->urlQueryParameter = $urlQueryParameter; } /** * @return string */ public function getUrlQueryParameter() { return $this->urlQueryParameter; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(SystemParameter::class, 'Google_Service_ServiceNetworking_SystemParameter');