boolValue = $boolValue; } /** * @return bool */ public function getBoolValue() { return $this->boolValue; } /** * A short string used as an identifier. Matches the value used in * QaQuestion.AnswerChoice.key. * * @param string $key */ public function setKey($key) { $this->key = $key; } /** * @return string */ public function getKey() { return $this->key; } /** * A value of "Not Applicable (N/A)". Should only ever be `true`. * * @param bool $naValue */ public function setNaValue($naValue) { $this->naValue = $naValue; } /** * @return bool */ public function getNaValue() { return $this->naValue; } public function setNormalizedScore($normalizedScore) { $this->normalizedScore = $normalizedScore; } public function getNormalizedScore() { return $this->normalizedScore; } public function setNumValue($numValue) { $this->numValue = $numValue; } public function getNumValue() { return $this->numValue; } public function setPotentialScore($potentialScore) { $this->potentialScore = $potentialScore; } public function getPotentialScore() { return $this->potentialScore; } public function setScore($score) { $this->score = $score; } public function getScore() { return $this->score; } /** * Output only. A value of "Skip". If provided, this field may only be set to * `true`. If a question receives this answer, it will be excluded from any * score calculations. This would mean that the question was not evaluated. * * @param bool $skipValue */ public function setSkipValue($skipValue) { $this->skipValue = $skipValue; } /** * @return bool */ public function getSkipValue() { return $this->skipValue; } /** * String value. * * @param string $strValue */ public function setStrValue($strValue) { $this->strValue = $strValue; } /** * @return string */ public function getStrValue() { return $this->strValue; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1alpha1QaAnswerAnswerValue');