EVOLUTION-MANAGER
Edit File: GoogleCloudDialogflowCxV3beta1TestCase.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Service\Dialogflow; class GoogleCloudDialogflowCxV3beta1TestCase extends \Google\Collection { protected $collection_key = 'testCaseConversationTurns'; /** * @var string */ public $creationTime; /** * @var string */ public $displayName; protected $lastTestResultType = GoogleCloudDialogflowCxV3beta1TestCaseResult::class; protected $lastTestResultDataType = ''; /** * @var string */ public $name; /** * @var string */ public $notes; /** * @var string[] */ public $tags; protected $testCaseConversationTurnsType = GoogleCloudDialogflowCxV3beta1ConversationTurn::class; protected $testCaseConversationTurnsDataType = 'array'; protected $testConfigType = GoogleCloudDialogflowCxV3beta1TestConfig::class; protected $testConfigDataType = ''; /** * @param string */ public function setCreationTime($creationTime) { $this->creationTime = $creationTime; } /** * @return string */ public function getCreationTime() { return $this->creationTime; } /** * @param string */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * @param GoogleCloudDialogflowCxV3beta1TestCaseResult */ public function setLastTestResult(GoogleCloudDialogflowCxV3beta1TestCaseResult $lastTestResult) { $this->lastTestResult = $lastTestResult; } /** * @return GoogleCloudDialogflowCxV3beta1TestCaseResult */ public function getLastTestResult() { return $this->lastTestResult; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setNotes($notes) { $this->notes = $notes; } /** * @return string */ public function getNotes() { return $this->notes; } /** * @param string[] */ public function setTags($tags) { $this->tags = $tags; } /** * @return string[] */ public function getTags() { return $this->tags; } /** * @param GoogleCloudDialogflowCxV3beta1ConversationTurn[] */ public function setTestCaseConversationTurns($testCaseConversationTurns) { $this->testCaseConversationTurns = $testCaseConversationTurns; } /** * @return GoogleCloudDialogflowCxV3beta1ConversationTurn[] */ public function getTestCaseConversationTurns() { return $this->testCaseConversationTurns; } /** * @param GoogleCloudDialogflowCxV3beta1TestConfig */ public function setTestConfig(GoogleCloudDialogflowCxV3beta1TestConfig $testConfig) { $this->testConfig = $testConfig; } /** * @return GoogleCloudDialogflowCxV3beta1TestConfig */ public function getTestConfig() { return $this->testConfig; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDialogflowCxV3beta1TestCase::class, 'Google_Service_Dialogflow_GoogleCloudDialogflowCxV3beta1TestCase');