f1Score = $f1Score; } public function getF1Score() { return $this->f1Score; } public function setFalseNegativesCount($falseNegativesCount) { $this->falseNegativesCount = $falseNegativesCount; } public function getFalseNegativesCount() { return $this->falseNegativesCount; } public function setFalsePositivesCount($falsePositivesCount) { $this->falsePositivesCount = $falsePositivesCount; } public function getFalsePositivesCount() { return $this->falsePositivesCount; } public function setGroundTruthOccurrencesCount($groundTruthOccurrencesCount) { $this->groundTruthOccurrencesCount = $groundTruthOccurrencesCount; } public function getGroundTruthOccurrencesCount() { return $this->groundTruthOccurrencesCount; } public function setPrecision($precision) { $this->precision = $precision; } public function getPrecision() { return $this->precision; } public function setPredictedOccurrencesCount($predictedOccurrencesCount) { $this->predictedOccurrencesCount = $predictedOccurrencesCount; } public function getPredictedOccurrencesCount() { return $this->predictedOccurrencesCount; } public function setRecall($recall) { $this->recall = $recall; } public function getRecall() { return $this->recall; } public function setTotalDocumentsCount($totalDocumentsCount) { $this->totalDocumentsCount = $totalDocumentsCount; } public function getTotalDocumentsCount() { return $this->totalDocumentsCount; } public function setTruePositivesCount($truePositivesCount) { $this->truePositivesCount = $truePositivesCount; } public function getTruePositivesCount() { return $this->truePositivesCount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDocumentaiV1EvaluationMetrics::class, 'Google_Service_Document_GoogleCloudDocumentaiV1EvaluationMetrics');