passage = $passage; } /** * @return string */ public function getPassage() { return $this->passage; } /** * @param string[] */ public function setPredictions($predictions) { $this->predictions = $predictions; } /** * @return string[] */ public function getPredictions() { return $this->predictions; } /** * @param string */ public function setTarget($target) { $this->target = $target; } /** * @return string */ public function getTarget() { return $this->target; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VideoContentSearchGenerativePredictionFeatures::class, 'Google_Service_Contentwarehouse_VideoContentSearchGenerativePredictionFeatures');