clicked = $clicked; } /** * @return bool */ public function getClicked() { return $this->clicked; } /** * The correctness level of an answer. * * Accepted values: CORRECTNESS_LEVEL_UNSPECIFIED, NOT_CORRECT, * PARTIALLY_CORRECT, FULLY_CORRECT * * @param self::CORRECTNESS_LEVEL_* $correctnessLevel */ public function setCorrectnessLevel($correctnessLevel) { $this->correctnessLevel = $correctnessLevel; } /** * @return self::CORRECTNESS_LEVEL_* */ public function getCorrectnessLevel() { return $this->correctnessLevel; } /** * Indicates whether an answer or item was displayed to the human agent in the * agent desktop UI. * * @param bool $displayed */ public function setDisplayed($displayed) { $this->displayed = $displayed; } /** * @return bool */ public function getDisplayed() { return $this->displayed; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1alpha1AnswerFeedback::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1AnswerFeedback');