name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param QueryParameterType */ public function setParameterType(QueryParameterType $parameterType) { $this->parameterType = $parameterType; } /** * @return QueryParameterType */ public function getParameterType() { return $this->parameterType; } /** * @param QueryParameterValue */ public function setParameterValue(QueryParameterValue $parameterValue) { $this->parameterValue = $parameterValue; } /** * @return QueryParameterValue */ public function getParameterValue() { return $this->parameterValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(QueryParameter::class, 'Google_Service_Bigquery_QueryParameter');