bias = $bias; } /** * @return float */ public function getBias() { return $this->bias; } /** * @param float */ public function setConfidence($confidence) { $this->confidence = $confidence; } /** * @return float */ public function getConfidence() { return $this->confidence; } /** * @param float */ public function setHalfSalience($halfSalience) { $this->halfSalience = $halfSalience; } /** * @return float */ public function getHalfSalience() { return $this->halfSalience; } /** * @param float */ public function setNoiseCorrection($noiseCorrection) { $this->noiseCorrection = $noiseCorrection; } /** * @return float */ public function getNoiseCorrection() { return $this->noiseCorrection; } /** * @param float */ public function setObservedConfidence($observedConfidence) { $this->observedConfidence = $observedConfidence; } /** * @return float */ public function getObservedConfidence() { return $this->observedConfidence; } /** * @param float */ public function setObservedVolume($observedVolume) { $this->observedVolume = $observedVolume; } /** * @return float */ public function getObservedVolume() { return $this->observedVolume; } /** * @param float */ public function setRawVolume($rawVolume) { $this->rawVolume = $rawVolume; } /** * @return float */ public function getRawVolume() { return $this->rawVolume; } /** * @param string */ public function setSource($source) { $this->source = $source; } /** * @return string */ public function getSource() { return $this->source; } /** * @param float */ public function setVolume($volume) { $this->volume = $volume; } /** * @return float */ public function getVolume() { return $this->volume; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(QualitySalientTermsSignalData::class, 'Google_Service_Contentwarehouse_QualitySalientTermsSignalData');