documentId = $documentId; } /** * @return string */ public function getDocumentId() { return $this->documentId; } /** * Required. Reference to the match score of the Data Leak finding. This is a * float value greater than 0 and less than or equal to 1 calculated by the * matching engine based on the similarity of the document and the user * provided configurations. * * @param float $matchScore */ public function setMatchScore($matchScore) { $this->matchScore = $matchScore; } /** * @return float */ public function getMatchScore() { return $this->matchScore; } /** * Required. The severity of the Data Leak finding. This indicates the * potential impact of the threat. * * Accepted values: SEVERITY_UNSPECIFIED, LOW, MEDIUM, HIGH, CRITICAL * * @param self::SEVERITY_* $severity */ public function setSeverity($severity) { $this->severity = $severity; } /** * @return self::SEVERITY_* */ public function getSeverity() { return $this->severity; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DataLeakFindingDetail::class, 'Google_Service_ThreatIntelligenceService_DataLeakFindingDetail');