feedback = $feedback; } /** * @return string */ public function getFeedback() { return $this->feedback; } /** * Optional. Custom reason labels for thumbs down rating provided by the user. * The maximum number of labels allowed is 10 and the maximum length of a * single label is 128 characters. * * @param string[] $reasonLabels */ public function setReasonLabels($reasonLabels) { $this->reasonLabels = $reasonLabels; } /** * @return string[] */ public function getReasonLabels() { return $this->reasonLabels; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3AnswerFeedbackRatingReason');