bannedPhraseMatch = $bannedPhraseMatch; } /** * @return self::BANNED_PHRASE_MATCH_* */ public function getBannedPhraseMatch() { return $this->bannedPhraseMatch; } /** * Safety decision. * * Accepted values: SAFETY_DECISION_UNSPECIFIED, ACCEPTED_BY_SAFETY_CHECK, * REJECTED_BY_SAFETY_CHECK * * @param self::DECISION_* $decision */ public function setDecision($decision) { $this->decision = $decision; } /** * @return self::DECISION_* */ public function getDecision() { return $this->decision; } /** * The matched banned phrase if there was a match. * * @param string $matchedBannedPhrase */ public function setMatchedBannedPhrase($matchedBannedPhrase) { $this->matchedBannedPhrase = $matchedBannedPhrase; } /** * @return string */ public function getMatchedBannedPhrase() { return $this->matchedBannedPhrase; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3DataStoreConnectionSignalsSafetySignals');