metricType = $metricType; } /** * @return string */ public function getMetricType() { return $this->metricType; } /** * @param string */ public function setSignalType($signalType) { $this->signalType = $signalType; } /** * @return string */ public function getSignalType() { return $this->signalType; } /** * @param float */ public function setValue($value) { $this->value = $value; } /** * @return float */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScholarCitationPredictionSignal::class, 'Google_Service_Contentwarehouse_ScholarCitationPredictionSignal');