datasetValidationWarnings = $datasetValidationWarnings; } /** * @return string[] */ public function getDatasetValidationWarnings() { return $this->datasetValidationWarnings; } /** * Total number of valid labels provided for the question at the time of * tuining. * * @param string $totalValidLabelCount */ public function setTotalValidLabelCount($totalValidLabelCount) { $this->totalValidLabelCount = $totalValidLabelCount; } /** * @return string */ public function getTotalValidLabelCount() { return $this->totalValidLabelCount; } /** * Error status of the tuning operation for the question. Will only be set if * the tuning operation failed. * * @param string $tuningError */ public function setTuningError($tuningError) { $this->tuningError = $tuningError; } /** * @return string */ public function getTuningError() { return $this->tuningError; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata::class, 'Google_Service_Contactcenterinsights_GoogleCloudContactcenterinsightsV1QaQuestionTuningMetadata');