0, we will also add an * entry indicating the number of items under the confidence threshold. * * @var string */ public $predictedLabel; /** * Number of items being predicted as this label. * * @param string $itemCount */ public function setItemCount($itemCount) { $this->itemCount = $itemCount; } /** * @return string */ public function getItemCount() { return $this->itemCount; } /** * The predicted label. For confidence_threshold > 0, we will also add an * entry indicating the number of items under the confidence threshold. * * @param string $predictedLabel */ public function setPredictedLabel($predictedLabel) { $this->predictedLabel = $predictedLabel; } /** * @return string */ public function getPredictedLabel() { return $this->predictedLabel; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entry::class, 'Google_Service_Bigquery_Entry');