name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setResult($result) { $this->result = $result; } /** * @return string */ public function getResult() { return $this->result; } /** * @param string */ public function setRunTime($runTime) { $this->runTime = $runTime; } /** * @return string */ public function getRunTime() { return $this->runTime; } /** * @param string[] */ public function setTestCaseResults($testCaseResults) { $this->testCaseResults = $testCaseResults; } /** * @return string[] */ public function getTestCaseResults() { return $this->testCaseResults; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3ContinuousTestResult::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3ContinuousTestResult');